From 1a6ce32441c64c46646880c4d9de6ab30fb46b43 Mon Sep 17 00:00:00 2001 From: colaftc Date: Thu, 18 Dec 2025 17:36:43 +0800 Subject: [PATCH] feat: batch update for plate order --- api_v1/admin.py | 2 +- api_v1/management/__init__.py | 0 api_v1/management/commands/__init__.py | 0 .../commands/sync_mdy_plate_orders.py | 35 + api_v1/mdy_plate_order_sync.py | 232 + .../0005_mdy_plate_order_staging_related.py | 21 + ...06_mdy_plate_order_staging_raw_id_index.py | 19 + ...007_mdy_plate_order_staging_ctime_utime.py | 33 + api_v1/models.py | 30 + api_v1/tasks.py | 25 + api_v1/urls.py | 2 + api_v1/views/mingdaoyun/__init__.py | 5 + .../views/mingdaoyun/plate_order_staging.py | 102 + .../test_plate_order_staging_api.py | 101 + api_v1/views/printing/serializers.py | 12 +- api_v2/tests.py | 116 + api_v2/urls.py | 2 + api_v2/views/__init__.py | 2 + api_v2/views/printing.py | 194 + celerybeat-schedule | Bin 12288 -> 12288 bytes celerybeat-schedule-shm | Bin 32768 -> 32768 bytes celerybeat-schedule-wal | Bin 304912 -> 840512 bytes data-bak/db-backup-20251217-190000.sql | 30425 ++++++++++++++++ docs/2025-12-17.md | 59 + docs/api_v1_mdy_plate_order_staging.md | 112 + docs/api_v2_plate_orders_batch_update.md | 156 + flower/utils/__init__.py | 16 + flower/utils/mingdaoyun/__init__.py | 17 + flower/utils/mingdaoyun/fetch.py | 7 +- flower/utils/mingdaoyun/mappings.py | 168 + flower/utils/mingdaoyun/relations.py | 159 + ...0026_plateorder_printingjob_original_id.py | 31 + printing/models.py | 12 + 33 files changed, 32087 insertions(+), 8 deletions(-) create mode 100644 api_v1/management/__init__.py create mode 100644 api_v1/management/commands/__init__.py create mode 100644 api_v1/management/commands/sync_mdy_plate_orders.py create mode 100644 api_v1/mdy_plate_order_sync.py create mode 100644 api_v1/migrations/0005_mdy_plate_order_staging_related.py create mode 100644 api_v1/migrations/0006_mdy_plate_order_staging_raw_id_index.py create mode 100644 api_v1/migrations/0007_mdy_plate_order_staging_ctime_utime.py create mode 100644 api_v1/views/mingdaoyun/__init__.py create mode 100644 api_v1/views/mingdaoyun/plate_order_staging.py create mode 100644 api_v1/views/mingdaoyun/test_plate_order_staging_api.py create mode 100644 data-bak/db-backup-20251217-190000.sql create mode 100644 docs/2025-12-17.md create mode 100644 docs/api_v1_mdy_plate_order_staging.md create mode 100644 docs/api_v2_plate_orders_batch_update.md create mode 100644 flower/utils/mingdaoyun/relations.py create mode 100644 printing/migrations/0026_plateorder_printingjob_original_id.py diff --git a/api_v1/admin.py b/api_v1/admin.py index 5a675e6..8d9024b 100644 --- a/api_v1/admin.py +++ b/api_v1/admin.py @@ -35,7 +35,7 @@ class DataSyncAdmin(admin.ModelAdmin): @admin.register(MDYPlateOrderStaging) class MDYPlateOrderStagingAdmin(admin.ModelAdmin): - list_display = ['id', 'mdy_rowid', 'created_at', 'updated_at'] + list_display = ['id', 'mdy_rowid', 'ctime', 'utime', 'created_at', 'updated_at'] list_filter = ['created_at'] search_fields = ['mdy_rowid'] readonly_fields = ['created_at', 'updated_at'] diff --git a/api_v1/management/__init__.py b/api_v1/management/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/api_v1/management/commands/__init__.py b/api_v1/management/commands/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/api_v1/management/commands/sync_mdy_plate_orders.py b/api_v1/management/commands/sync_mdy_plate_orders.py new file mode 100644 index 0000000..01c7fb2 --- /dev/null +++ b/api_v1/management/commands/sync_mdy_plate_orders.py @@ -0,0 +1,35 @@ +from django.core.management.base import BaseCommand + +from api_v1.mdy_plate_order_sync import sync_mdy_plate_orders_to_staging + + +class Command(BaseCommand): + help = '同步明道云开版数据表到暂存表(可选抓取跨表关联数据)' + + def add_arguments(self, parser): + parser.add_argument('--page-size', type=int, default=100) + parser.add_argument('--max-pages', type=int, default=None) + parser.add_argument('--max-records', type=int, default=None) + + # 默认抓取关联表数据;如需关闭可显式传 --without-related + parser.add_argument('--with-related', dest='with_related', action='store_true', default=True) + parser.add_argument('--without-related', dest='with_related', action='store_false') + + parser.add_argument('--max-related-per-type', type=int, default=5) + parser.add_argument( + '--request-interval-seconds', + type=float, + default=0.02, + help='每次明道云请求之间的最小间隔(用于限流,50qps 建议 >= 0.02)', + ) + + def handle(self, *args, **options): + payload = sync_mdy_plate_orders_to_staging( + page_size=options['page_size'], + max_pages=options['max_pages'], + max_records=options['max_records'], + with_related=options['with_related'], + max_related_per_type=options['max_related_per_type'], + request_interval_seconds=options['request_interval_seconds'], + ) + self.stdout.write(self.style.SUCCESS(str(payload))) diff --git a/api_v1/mdy_plate_order_sync.py b/api_v1/mdy_plate_order_sync.py new file mode 100644 index 0000000..bcb0f21 --- /dev/null +++ b/api_v1/mdy_plate_order_sync.py @@ -0,0 +1,232 @@ +import asyncio +import logging +from datetime import datetime +import time + +from django.utils import timezone + +from api_v1 import models as api_models +from flower.utils.mingdaoyun.fetch import ( + fetch_plate_orders_from_mingdaoyun, + fetch_row_by_rowid_from_mingdaoyun, +) +from flower.utils.mingdaoyun.mappings import plate_order_related_worksheet_map +from flower.utils.mingdaoyun.relations import ( + extract_plate_order_related_rowids, + flatten_plate_order_related_row, +) + +logger = logging.getLogger(__name__) + + +def _parse_mdy_datetime(value: str | None): + if not value: + return None + try: + dt = datetime.strptime(value, "%Y-%m-%d %H:%M:%S") + except ValueError: + return None + if timezone.is_naive(dt): + dt = timezone.make_aware(dt, timezone.get_current_timezone()) + return dt + + +async def _fetch_related_flattened( + plate_order_row: dict, + *, + max_related_per_type: int = 5, + request_interval_seconds: float = 0.0, +) -> list[dict]: + """根据开版主表 row 的 Relation 字段,拉取并碾平关联表数据。""" + + related_rowids_map = extract_plate_order_related_rowids(plate_order_row) + if not related_rowids_map: + return [] + + flattened: list[dict] = [] + for related_key, rowids in related_rowids_map.items(): + wsid = plate_order_related_worksheet_map.get(related_key) + if not wsid: + continue + + for rid in rowids[: max_related_per_type or 0]: + related_row = await fetch_row_by_rowid_from_mingdaoyun( + worksheet_id=wsid, + rowid=rid, + ) + if not related_row: + continue + + flattened.append(flatten_plate_order_related_row(related_key, related_row)) + if request_interval_seconds: + await asyncio.sleep(request_interval_seconds) + + return flattened + + +async def _fetch_related_for_rows( + rows: list[dict], + *, + max_related_per_type: int, + request_interval_seconds: float = 0.0, +) -> dict[str, list[dict]]: + """批量拉取并碾平关联表数据(仅网络请求,不涉及 ORM)。""" + + result: dict[str, list[dict]] = {} + for row in rows: + rowid = row.get("rowid") + if not rowid: + continue + result[rowid] = await _fetch_related_flattened( + row, + max_related_per_type=max_related_per_type, + request_interval_seconds=request_interval_seconds, + ) + return result + + +def sync_mdy_plate_orders_to_staging( + *, + page_size: int = 100, + max_pages: int | None = None, + max_records: int | None = None, + with_related: bool = True, + max_related_per_type: int = 5, + request_interval_seconds: float = 0.02, +) -> dict: + """同步明道云开版数据表到暂存表(含可选跨表关联数据)。 + + - 写入 `api_v1.MDYPlateOrderStaging`: + - `raw`:整行原始数据 + - `related`:跨表数据(碾平 list[dict]) + - 进度记录到 `api_v1.DataSync`(table_name=plate_order) + + 说明: + - max_pages 表示“单次任务最多处理多少页”(不是最大页码) + - max_records 表示“单次任务最多处理多少条记录”(0/None 表示不限制) + """ + + max_records = max_records or 0 + + last_sync = api_models.DataSync.objects.filter( + table_name=api_models.DataSync.TableName.PLATE_ORDER + ).order_by("-created_at").first() + last_ctime = last_sync.last_ctime if last_sync else None + last_rowid = last_sync.last_rowid if last_sync else "" + start_page_index = last_sync.page_index if last_sync else 1 + + synced_rows = 0 + page_index = max(1, start_page_index) + pages_processed = 0 + total_count = 0 + latest_ctime = last_ctime + latest_rowid = last_rowid + + while True: + if max_pages is not None and pages_processed >= max_pages: + break + if max_records and synced_rows >= max_records: + break + + rows, total = asyncio.run( + fetch_plate_orders_from_mingdaoyun( + page=page_index, + page_size=page_size, + sort_id="ctime", + is_asc=True, + ) + ) + if request_interval_seconds: + time.sleep(request_interval_seconds) + total_count = total + if not rows: + break + + hit_max_records = False + to_process: list[dict] = [] + for row in rows: + if max_records and synced_rows + len(to_process) >= max_records: + hit_max_records = True + break + + rowid = row.get("rowid") + if not rowid: + continue + + record_ctime = _parse_mdy_datetime(row.get("ctime")) + + # 跳过已同步到的游标 + if last_ctime and record_ctime: + if record_ctime < last_ctime: + continue + if record_ctime == last_ctime and last_rowid and rowid == last_rowid: + continue + + to_process.append(row) + + related_map: dict[str, list[dict]] = {} + if with_related and to_process: + related_map = asyncio.run( + _fetch_related_for_rows( + to_process, + max_related_per_type=max_related_per_type, + request_interval_seconds=request_interval_seconds, + ) + ) + + for row in to_process: + rowid = row.get("rowid") + if not rowid: + continue + + api_models.MDYPlateOrderStaging.objects.update_or_create( + mdy_rowid=rowid, + defaults={ + "ctime": _parse_mdy_datetime(row.get("ctime")), + "utime": _parse_mdy_datetime(row.get("utime")), + "raw": row, + "related": related_map.get(rowid, []), + }, + ) + synced_rows += 1 + + record_ctime = _parse_mdy_datetime(row.get("ctime")) + if record_ctime: + if latest_ctime is None or record_ctime > latest_ctime: + latest_ctime = record_ctime + latest_rowid = rowid + elif record_ctime == latest_ctime: + latest_rowid = rowid + + pages_processed += 1 + if hit_max_records: + break + + if len(rows) < page_size: + break + page_index += 1 + + record_last_ctime = latest_ctime or last_ctime + record_last_rowid = latest_rowid or last_rowid + + api_models.DataSync.objects.create( + table_name=api_models.DataSync.TableName.PLATE_ORDER, + page_index=page_index, + page_size=page_size, + synced_rows=synced_rows, + total_count=total_count, + last_ctime=record_last_ctime, + last_rowid=record_last_rowid, + note=f"asc scan; with_related={with_related}", + ) + + payload = { + "synced_rows": synced_rows, + "page_index": page_index, + "page_size": page_size, + "total_count": total_count, + "last_ctime": record_last_ctime.isoformat() if record_last_ctime else None, + "with_related": with_related, + } + logger.info("明道云开版暂存同步完成: %s", payload) + return payload diff --git a/api_v1/migrations/0005_mdy_plate_order_staging_related.py b/api_v1/migrations/0005_mdy_plate_order_staging_related.py new file mode 100644 index 0000000..38286b4 --- /dev/null +++ b/api_v1/migrations/0005_mdy_plate_order_staging_related.py @@ -0,0 +1,21 @@ +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v1', '0004_mdy_plate_order_staging'), + ] + + operations = [ + migrations.AddField( + model_name='mdyplateorderstaging', + name='related', + field=models.JSONField( + blank=True, + default=list, + help_text='开版相关跨表数据(碾平 list[dict]),用于排查与后续属性化提取', + verbose_name='关联表数据', + ), + ), + ] diff --git a/api_v1/migrations/0006_mdy_plate_order_staging_raw_id_index.py b/api_v1/migrations/0006_mdy_plate_order_staging_raw_id_index.py new file mode 100644 index 0000000..bb90332 --- /dev/null +++ b/api_v1/migrations/0006_mdy_plate_order_staging_raw_id_index.py @@ -0,0 +1,19 @@ +from django.db import migrations, models +from django.db.models.fields.json import KeyTextTransform + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v1', '0005_mdy_plate_order_staging_related'), + ] + + operations = [ + migrations.AddIndex( + model_name='mdyplateorderstaging', + index=models.Index( + KeyTextTransform('62d52f4b8d2972284492dd0e', 'raw'), + name='api_mdy_po_raw_id_idx', + ), + ), + ] diff --git a/api_v1/migrations/0007_mdy_plate_order_staging_ctime_utime.py b/api_v1/migrations/0007_mdy_plate_order_staging_ctime_utime.py new file mode 100644 index 0000000..fc72d7d --- /dev/null +++ b/api_v1/migrations/0007_mdy_plate_order_staging_ctime_utime.py @@ -0,0 +1,33 @@ +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v1', '0006_mdy_plate_order_staging_raw_id_index'), + ] + + operations = [ + migrations.AddField( + model_name='mdyplateorderstaging', + name='ctime', + field=models.DateTimeField( + blank=True, + db_index=True, + help_text='明道云系统字段 ctime(用于排序/增量定位)', + null=True, + verbose_name='明道云创建时间', + ), + ), + migrations.AddField( + model_name='mdyplateorderstaging', + name='utime', + field=models.DateTimeField( + blank=True, + db_index=True, + help_text='明道云系统字段 utime(用于排序/增量定位)', + null=True, + verbose_name='明道云更新时间', + ), + ), + ] diff --git a/api_v1/models.py b/api_v1/models.py index 7027682..056d568 100644 --- a/api_v1/models.py +++ b/api_v1/models.py @@ -5,6 +5,7 @@ import os import uuid from django.db import models from django.contrib.auth import get_user_model +from django.db.models.fields.json import KeyTextTransform from flower.common import ModelBase User = get_user_model() @@ -90,6 +91,7 @@ class DataSync(ModelBase): class TableName(models.TextChoices): PRODUCT = 'product', '产品' CUSTOMER = 'customer', '客户' + PLATE_ORDER = 'plate_order', '开版(明道云)' table_name = models.CharField(max_length=50, choices=TableName.choices, verbose_name='同步目标') page_index = models.PositiveIntegerField(default=1, verbose_name='页码') @@ -126,18 +128,46 @@ class MDYPlateOrderStaging(ModelBase): verbose_name='明道云 RowID', help_text='明道云行记录的 rowid(全局唯一)', ) + ctime = models.DateTimeField( + null=True, + blank=True, + db_index=True, + verbose_name='明道云创建时间', + help_text='明道云系统字段 ctime(用于排序/增量定位)', + ) + utime = models.DateTimeField( + null=True, + blank=True, + db_index=True, + verbose_name='明道云更新时间', + help_text='明道云系统字段 utime(用于排序/增量定位)', + ) raw = models.JSONField( default=dict, blank=True, verbose_name='原始行数据', help_text='getFilterRows 返回的整行原始数据(包含各 controlId 字段)', ) + related = models.JSONField( + default=list, + blank=True, + verbose_name='关联表数据', + help_text='开版相关跨表数据(碾平 list[dict]),用于排查与后续属性化提取', + ) class Meta: db_table = 'api_mdy_plate_order_staging' verbose_name = '明道云开版暂存' verbose_name_plural = '明道云开版暂存' ordering = ['-created_at'] + indexes = [ + # 明道云字段:62d52f4b8d2972284492dd0e(开版表“订单id/设计编号”) + # 用于在暂存表中按该字段快速检索 + models.Index( + KeyTextTransform('62d52f4b8d2972284492dd0e', 'raw'), + name='api_mdy_po_raw_id_idx', + ), + ] def __str__(self): return f'{self.mdy_rowid}' diff --git a/api_v1/tasks.py b/api_v1/tasks.py index bc62fff..2c3898a 100644 --- a/api_v1/tasks.py +++ b/api_v1/tasks.py @@ -18,6 +18,7 @@ from flower.utils import ( fetch_products_from_mingdaoyun, fetch_customers_from_mingdaoyun, ) +from api_v1.mdy_plate_order_sync import sync_mdy_plate_orders_to_staging logger = logging.getLogger(__name__) @@ -441,3 +442,27 @@ def sync_mdy_customers(self, page_size: int = 300, max_pages: int | None = None, } logger.info('明道云客户同步完成: %s', payload) return payload + + +@shared_task(bind=True) +def sync_mdy_plate_orders( + self, + page_size: int = 300, + max_pages: int | None = None, + max_records: int | None = None, + with_related: bool = True, + max_related_per_type: int = 5, + request_interval_seconds: float = 0.02, +): + """从明道云同步开版数据表到暂存表(可选抓取跨表关联数据)。""" + + payload = sync_mdy_plate_orders_to_staging( + page_size=page_size, + max_pages=max_pages, + max_records=max_records, + with_related=with_related, + max_related_per_type=max_related_per_type, + request_interval_seconds=request_interval_seconds, + ) + payload["task_id"] = self.request.id + return payload diff --git a/api_v1/urls.py b/api_v1/urls.py index 3c94333..70521ce 100644 --- a/api_v1/urls.py +++ b/api_v1/urls.py @@ -24,6 +24,7 @@ from .views.upload import UploadFileViewSet from .views.products import ProductQuickViewSet from .views.parameters import StateParameterViewSet from .views.users import CreateUserWithProfileView +from .views.mingdaoyun import MDYPlateOrderStagingViewSet # 创建 DRF Router for Stateflow stateflow_router = DefaultRouter() @@ -39,6 +40,7 @@ main_router.register(r'plate-orders', PlateOrderViewSet, basename='plate-order') main_router.register(r'upload', UploadFileViewSet, basename='upload') main_router.register(r'products/quick', ProductQuickViewSet, basename='product-quick') main_router.register(r'parameters', StateParameterViewSet, basename='parameter') +main_router.register(r'mdy-plate-order-staging', MDYPlateOrderStagingViewSet, basename='mdy-plate-order-staging') urlpatterns = [ # 库存变动相关API diff --git a/api_v1/views/mingdaoyun/__init__.py b/api_v1/views/mingdaoyun/__init__.py new file mode 100644 index 0000000..ec7cb66 --- /dev/null +++ b/api_v1/views/mingdaoyun/__init__.py @@ -0,0 +1,5 @@ +"""MingdaoYun related API views.""" + +from .plate_order_staging import MDYPlateOrderStagingViewSet + +__all__ = ["MDYPlateOrderStagingViewSet"] diff --git a/api_v1/views/mingdaoyun/plate_order_staging.py b/api_v1/views/mingdaoyun/plate_order_staging.py new file mode 100644 index 0000000..c69f7d6 --- /dev/null +++ b/api_v1/views/mingdaoyun/plate_order_staging.py @@ -0,0 +1,102 @@ +"""开版暂存(明道云)查询 API。 + +需求: +- 默认按 -ctime 排序 +- 支持 raw__62d52f4b8d2972284492dd0e(设计编号)过滤 +- 支持 LimitOffset 分页 +- 返回时把 raw / related 两个 JSONField 做“可读化/碾平” +""" + +from __future__ import annotations + +from typing import Any + +from django.db.models import F +from rest_framework import serializers, viewsets +from rest_framework.pagination import LimitOffsetPagination +from rest_framework.permissions import DjangoModelPermissions + +from api_v1.models import MDYPlateOrderStaging +from flower.utils.mingdaoyun.mappings import plate_order_field_definitions +from flower.utils.mingdaoyun.relations import flatten_row_by_field_definitions, normalize_mdy_value + + +_PLATE_ORDER_DESIGN_NO_CONTROL_ID = "62d52f4b8d2972284492dd0e" + + +class MDYPlateOrderStagingSerializer(serializers.ModelSerializer): + """把 raw/related 输出为扁平的可读结构。""" + + design_no = serializers.SerializerMethodField() + raw = serializers.SerializerMethodField() + related = serializers.SerializerMethodField() + + class Meta: + model = MDYPlateOrderStaging + fields = [ + "id", + "mdy_rowid", + "ctime", + "utime", + "created_at", + "updated_at", + "design_no", + "raw", + "related", + ] + + def get_design_no(self, obj: MDYPlateOrderStaging) -> Any: + if isinstance(obj.raw, dict): + return obj.raw.get(_PLATE_ORDER_DESIGN_NO_CONTROL_ID) + return None + + def get_raw(self, obj: MDYPlateOrderStaging) -> dict[str, Any]: + if not isinstance(obj.raw, dict): + return {} + # 1) 已知字段:按映射转换为中文 key(更可读) + out = flatten_row_by_field_definitions(obj.raw, plate_order_field_definitions, include_system_keys=True) + + # 2) 未映射字段:为了排查方便,不静默丢弃,保留 controlId 原样 + known_control_ids = set(plate_order_field_definitions.keys()) + for k, v in obj.raw.items(): + if k in {"rowid", "ctime", "utime"}: + continue + if k in known_control_ids: + continue + out[str(k)] = normalize_mdy_value(v) + + return out + + def get_related(self, obj: MDYPlateOrderStaging) -> list[dict[str, Any]]: + if not obj.related: + return [] + if not isinstance(obj.related, list): + return [] + + out: list[dict[str, Any]] = [] + for item in obj.related: + if isinstance(item, dict): + out.append({k: normalize_mdy_value(v) for k, v in item.items()}) + else: + # 兜底:若数据被写成非 dict 元素,仍然返回原值,便于排查 + out.append({"value": item}) + return out + + +class MDYPlateOrderStagingViewSet(viewsets.ReadOnlyModelViewSet): + """开版暂存数据查询(只读)。""" + + serializer_class = MDYPlateOrderStagingSerializer + # permission_classes = [DjangoModelPermissions] + pagination_class = LimitOffsetPagination + + def get_queryset(self): + qs = MDYPlateOrderStaging.objects.all() + + # 支持按 raw 中的“设计编号/订单id”过滤(按你要求的 query param 名) + design_no = self.request.query_params.get(f"raw__{_PLATE_ORDER_DESIGN_NO_CONTROL_ID}") + if design_no: + qs = qs.filter(**{f"raw__{_PLATE_ORDER_DESIGN_NO_CONTROL_ID}": design_no}) + + # 默认 -ctime;ctime 为空的放最后,避免老数据(未回填)跑到前面 + return qs.order_by(F("ctime").desc(nulls_last=True), F("id").desc()) diff --git a/api_v1/views/mingdaoyun/test_plate_order_staging_api.py b/api_v1/views/mingdaoyun/test_plate_order_staging_api.py new file mode 100644 index 0000000..2f04ba2 --- /dev/null +++ b/api_v1/views/mingdaoyun/test_plate_order_staging_api.py @@ -0,0 +1,101 @@ +"""MDYPlateOrderStaging 查询 API 测试""" + +from datetime import timedelta + +from django.contrib.auth import get_user_model +from django.contrib.auth.models import Permission +from django.test import TestCase +from django.utils import timezone +from rest_framework.test import APIClient + +from api_v1.models import MDYPlateOrderStaging + + +User = get_user_model() + + +class MDYPlateOrderStagingAPITestCase(TestCase): + def setUp(self): + self.client = APIClient() + + self.user = User.objects.create_user( + username="testuser", + password="testpass123", + email="test@example.com", + ) + self.client.force_authenticate(user=self.user) + + view_perm = Permission.objects.get(codename="view_mdyplateorderstaging") + self.user.user_permissions.add(view_perm) + + now = timezone.now() + + # older + self.row1 = MDYPlateOrderStaging.objects.create( + mdy_rowid="row1", + ctime=now - timedelta(days=1), + utime=now - timedelta(days=1, minutes=1), + raw={ + "rowid": "row1", + "ctime": "2025-01-01 00:00:00", + "utime": "2025-01-01 00:01:00", + "62d52f4b8d2972284492dd0e": "A001", # 设计编号 + "62d52f4b8d2972284492dd2c": "款号A", # 款号名称 + }, + related=[ + { + "rowid": "rel1", + "source": "drawing", + "source_name": "画图", + "设计师名字": "张三", + } + ], + ) + + # newer + self.row2 = MDYPlateOrderStaging.objects.create( + mdy_rowid="row2", + ctime=now, + utime=now, + raw={ + "rowid": "row2", + "ctime": "2025-01-02 00:00:00", + "utime": "2025-01-02 00:01:00", + "62d52f4b8d2972284492dd0e": "A002", # 设计编号 + "62d52f4b8d2972284492dd2c": "款号B", # 款号名称 + }, + related=[], + ) + + def test_list_default_order_and_flatten(self): + resp = self.client.get("/api/v1/mdy-plate-order-staging/?limit=10&offset=0") + self.assertEqual(resp.status_code, 200) + + payload = resp.json() + self.assertEqual(payload["count"], 2) + + first = payload["results"][0] + self.assertEqual(first["mdy_rowid"], "row2") # -ctime 排序 + + # raw 已按字段定义“可读化” + self.assertIn("raw", first) + self.assertIn("设计编号", first["raw"]) + self.assertEqual(first["raw"]["设计编号"], "A002") + self.assertEqual(first["raw"]["款号名称"], "款号B") + + # related 以 list[dict] 返回 + self.assertIn("related", first) + self.assertEqual(first["related"], []) + + def test_filter_by_raw_design_no(self): + resp = self.client.get( + "/api/v1/mdy-plate-order-staging/?limit=10&offset=0&raw__62d52f4b8d2972284492dd0e=A001" + ) + self.assertEqual(resp.status_code, 200) + + payload = resp.json() + self.assertEqual(payload["count"], 1) + self.assertEqual(payload["results"][0]["mdy_rowid"], "row1") + + self.assertEqual(payload["results"][0]["raw"]["设计编号"], "A001") + self.assertEqual(payload["results"][0]["related"][0]["source"], "drawing") diff --git a/api_v1/views/printing/serializers.py b/api_v1/views/printing/serializers.py index a3bc4a8..eabe98c 100644 --- a/api_v1/views/printing/serializers.py +++ b/api_v1/views/printing/serializers.py @@ -236,7 +236,7 @@ class PrintingJobListSerializer(serializers.ModelSerializer): class Meta: model = models.PrintingJob fields = [ - 'id', 'printing_order', 'printing_order_id', 'product', 'product_name', + 'id', 'original_id', 'printing_order', 'printing_order_id', 'product', 'product_name', 'quantity', 'unit', 'size', 'pieces', 'description', 'work_state', 'work_state_display', 'status', 'is_completed', 'business_object_id', @@ -280,7 +280,7 @@ class PrintingJobDetailSerializer(serializers.ModelSerializer): class Meta: model = models.PrintingJob fields = [ - 'id', 'printing_order', 'printing_order_id', 'product', 'product_name', 'product_code', + 'id', 'original_id', 'printing_order', 'printing_order_id', 'product', 'product_name', 'product_code', 'quantity', 'unit', 'size', 'pieces', 'description', 'work_state', 'work_state_display', 'status', 'status_id', 'is_completed', 'has_started', 'business_object_id', @@ -312,7 +312,7 @@ class PrintingJobCreateUpdateSerializer(serializers.ModelSerializer): class Meta: model = models.PrintingJob fields = [ - 'id', 'printing_order', 'product', 'quantity', 'unit', 'size', 'pieces', 'description', + 'id', 'original_id', 'printing_order', 'product', 'quantity', 'unit', 'size', 'pieces', 'description', 'work_state', 'batch_advance_records', ] @@ -431,7 +431,7 @@ class PlateOrderListSerializer(PlateOrderDesignCodeMixin, serializers.ModelSeria model = models.PlateOrder fields = [ - 'id', 'design_code', 'plate_type', 'plate_date', 'plate_method', + 'id', 'original_id', 'design_code', 'plate_type', 'plate_date', 'plate_method', 'plate_image', 'plate_image_url', 'image_name', 'plate_notes', 'reprint_reason', 'urgency_level', 'is_invalid', 'customer', 'customer_name', 'area', 'default_address', @@ -504,7 +504,7 @@ class PlateOrderDetailSerializer(PlateOrderDesignCodeMixin, serializers.ModelSer class Meta: model = models.PlateOrder fields = [ - 'id', 'design_code', 'plate_type', 'plate_date', 'plate_method', + 'id', 'original_id', 'design_code', 'plate_type', 'plate_date', 'plate_method', 'plate_image', 'plate_image_url', 'image_name', 'plate_notes', 'reprint_reason', 'urgency_level', 'is_invalid', 'customer', 'customer_name', 'customer_phone', 'area', 'default_address', @@ -562,7 +562,7 @@ class PlateOrderCreateUpdateSerializer(serializers.ModelSerializer): class Meta: model = models.PlateOrder fields = [ - "id", "design_code", "plate_type", "plate_date", "plate_method", + "id", "original_id", "design_code", "plate_type", "plate_date", "plate_method", "plate_image", "image_name", "plate_notes", "reprint_reason", "urgency_level", "is_invalid", "customer", "area", "default_address", diff --git a/api_v2/tests.py b/api_v2/tests.py index d2ad369..becfa31 100644 --- a/api_v2/tests.py +++ b/api_v2/tests.py @@ -2,6 +2,7 @@ from decimal import Decimal import datetime from django.contrib.auth import get_user_model +from django.contrib.auth.models import Permission from django.test import TestCase from django.utils import timezone from rest_framework.test import APIClient, APIRequestFactory @@ -957,3 +958,118 @@ class PlateOrderByProcessV2APITest(TestCase): } ) self.assertEqual(resp.status_code, 400) + + +class PlateOrderBatchUpdateV2APITest(TestCase): + def setUp(self): + self.client = APIClient() + + # 工厂用户(满足 IsPrintingFactory) + self.merchant = basic_models.Merchant.objects.create( + name='印染工厂', + type=basic_models.MerchantTypeEnum.FACTORY, + ) + self.user = get_user_model().objects.create_user(username='factory_user2', password='pass12345') + basic_models.Employee.objects.create( + merchant=self.merchant, + sys_user=self.user, + name='工厂员工2', + ) + self.client.force_authenticate(user=self.user) + + # 赋予 change 权限(批量更新必需) + perm_change = Permission.objects.get(codename='change_plateorder') + self.user.user_permissions.add(perm_change) + + self.customer = basic_models.Customer.objects.create( + merchant=self.merchant, + name='客户A', + created_by=None, + ) + self.designer = basic_models.Employee.objects.create( + merchant=self.merchant, + name='设计师', + ) + + self.po1 = printing_models.PlateOrder.objects.create( + customer=self.customer, + design_code='D1', + urgency_level='正常', + style_name='S1', + ) + self.po2 = printing_models.PlateOrder.objects.create( + customer=self.customer, + design_code='D2', + urgency_level='正常', + style_name='S2', + ) + + def test_batch_update_success(self): + resp = self.client.post( + '/api/v2/plate-orders/batch-update/', + { + 'plate_order_ids': [self.po1.id, self.po2.id], + 'data': {'urgency_level': '加急', 'designer': self.designer.id}, + }, + format='json', + ) + self.assertEqual(resp.status_code, 200) + self.assertEqual(resp.data['updated_count'], 2) + + self.po1.refresh_from_db() + self.po2.refresh_from_db() + self.assertEqual(self.po1.urgency_level, '加急') + self.assertEqual(self.po2.urgency_level, '加急') + self.assertEqual(self.po1.designer_id, self.designer.id) + self.assertEqual(self.po2.designer_id, self.designer.id) + + def test_batch_update_fails_when_missing_ids(self): + resp = self.client.post( + '/api/v2/plate-orders/batch-update/', + { + 'plate_order_ids': [self.po1.id, 999999], + 'data': {'urgency_level': '加急'}, + }, + format='json', + ) + self.assertEqual(resp.status_code, 400) + self.assertIn('不存在', resp.data.get('detail', '')) + + def test_batch_update_fails_when_unknown_field(self): + resp = self.client.post( + '/api/v2/plate-orders/batch-update/', + { + 'plate_order_ids': [self.po1.id], + 'data': {'process': 123}, + }, + format='json', + ) + self.assertEqual(resp.status_code, 400) + self.assertIn('不支持批量更新字段', resp.data.get('detail', '')) + + def test_batch_update_is_invalid_requires_permission(self): + # 未授予 can_invalidate_plateorder + resp = self.client.post( + '/api/v2/plate-orders/batch-update/', + { + 'plate_order_ids': [self.po1.id], + 'data': {'is_invalid': True}, + }, + format='json', + ) + self.assertEqual(resp.status_code, 403) + + perm_invalidate = Permission.objects.get(codename='can_invalidate_plateorder') + self.user.user_permissions.add(perm_invalidate) + + resp2 = self.client.post( + '/api/v2/plate-orders/batch-update/', + { + 'plate_order_ids': [self.po1.id], + 'data': {'is_invalid': True}, + }, + format='json', + ) + self.assertEqual(resp2.status_code, 200) + self.po1.refresh_from_db() + self.assertTrue(self.po1.is_invalid) diff --git a/api_v2/urls.py b/api_v2/urls.py index bf8a179..27e824a 100644 --- a/api_v2/urls.py +++ b/api_v2/urls.py @@ -7,6 +7,7 @@ from api_v2.views import ( PrintingJobBatchAdvanceSubmitView, PlateOrderByProcessNodeView, PlateOrderByProcessView, + PlateOrderBatchUpdateView, BusinessObjectCloneView, ) @@ -17,6 +18,7 @@ urlpatterns = [ path('printing-jobs/batch-advance/', PrintingJobBatchAdvanceSubmitView.as_view(), name='api_v2_printing_job_batch_advance_submit'), path('plate-orders/by-process-node/', PlateOrderByProcessNodeView.as_view(), name='api_v2_plate_order_by_process_node'), path('plate-orders/by-process/', PlateOrderByProcessView.as_view(), name='api_v2_plate_order_by_process'), + path('plate-orders/batch-update/', PlateOrderBatchUpdateView.as_view(), name='api_v2_plate_order_batch_update'), path('stateflow/business-objects/clone/', BusinessObjectCloneView.as_view(), name='api_v2_stateflow_business_object_clone'), ] diff --git a/api_v2/views/__init__.py b/api_v2/views/__init__.py index 2a37561..6f3c1c5 100644 --- a/api_v2/views/__init__.py +++ b/api_v2/views/__init__.py @@ -10,6 +10,7 @@ from .printing import ( PrintingJobBatchAdvanceSubmitView, PlateOrderByProcessNodeView, PlateOrderByProcessView, + PlateOrderBatchUpdateView, ) from .stateflow import BusinessObjectCloneView @@ -21,6 +22,7 @@ __all__ = [ 'PrintingJobBatchAdvanceSubmitView', 'PlateOrderByProcessNodeView', 'PlateOrderByProcessView', + 'PlateOrderBatchUpdateView', 'BusinessObjectCloneView', ] diff --git a/api_v2/views/printing.py b/api_v2/views/printing.py index 9f22d55..006de9f 100644 --- a/api_v2/views/printing.py +++ b/api_v2/views/printing.py @@ -2,6 +2,7 @@ import datetime from django.utils import timezone from django.db import transaction +from django.db import models as django_models from django.db.models import Q, Count, CharField, Prefetch from django.db.models.functions import Cast, Coalesce from rest_framework import serializers, status, permissions @@ -41,6 +42,7 @@ class PrintingJobV2Serializer(serializers.ModelSerializer): model = printing_models.PrintingJob fields = [ 'id', + 'original_id', 'printing_order', 'product', 'work_state', @@ -385,6 +387,7 @@ class PlateOrderByProcessNodeSerializer(serializers.ModelSerializer): model = printing_models.PlateOrder fields = [ 'id', + 'original_id', 'design_code', 'customer', 'customer_name', @@ -627,6 +630,7 @@ class PlateOrderByProcessSerializer(serializers.ModelSerializer): model = printing_models.PlateOrder fields = [ 'id', + 'original_id', 'design_code', 'customer', 'customer_name', @@ -886,3 +890,193 @@ class PlateOrderByProcessView(APIView): 'previous': paginator.get_previous_link() if page is not None else None, 'results': srz.data, }) + + +# 允许批量更新的字段白名单:只改这里即可增减 +PLATE_ORDER_BATCH_UPDATE_ALLOWED_FIELDS = [ + "original_id", + "design_code", + "plate_type", + "plate_date", + "plate_method", + "image_name", + "plate_notes", + "reprint_reason", + "urgency_level", + "is_invalid", + "customer", + "area", + "default_address", + "salesperson", + "merchandiser", + "designer", + "style_name", + "fabric", + "fabric_source", + "width", + "production_method", + "is_mark_frame", + "drawing_rating", + "color_matching_rating", + "sample_rating", + "difficulty_rating", + "sample_meter", + "required_sample_meters", + "required_completion_date", + "completion_date", + "approval_result", + "is_ordered", + "customer_feedback", +] + + +class PlateOrderBatchUpdateDataSerializer(serializers.ModelSerializer): + """ + PlateOrder 批量更新允许字段(白名单)。 + + 说明: + - 不允许更新 process/business_object/created_by 等会触发流程副作用或越权的字段 + - plate_image 属于结构化字段(且 v1 有额外转换逻辑),暂不纳入批量更新,避免前端误用 + """ + + class Meta: + model = printing_models.PlateOrder + fields = PLATE_ORDER_BATCH_UPDATE_ALLOWED_FIELDS + + +class PlateOrderBatchUpdateRequestSerializer(serializers.Serializer): + plate_order_ids = serializers.ListField( + child=serializers.IntegerField(min_value=1), + allow_empty=False, + help_text="需要批量更新的 PlateOrder id 列表(同一组 data 会应用到所有 id)", + ) + data = serializers.DictField( + child=serializers.JSONField(), + allow_empty=False, + help_text='需要更新的字段集合,例如 {"urgency_level": "加急", "designer": 123}', + ) + dry_run = serializers.BooleanField( + required=False, + default=False, + help_text="仅校验与预览,不实际写库", + ) + + def validate_plate_order_ids(self, value): + # 去重保持稳定性(前端可能重复传) + deduped = list(dict.fromkeys(value)) + if not deduped: + raise serializers.ValidationError("plate_order_ids 不能为空") + return deduped + + def validate_data(self, value): + data_srz = PlateOrderBatchUpdateDataSerializer(data=value, partial=True) + data_srz.is_valid(raise_exception=True) + if not data_srz.validated_data: + raise serializers.ValidationError({"detail": "data 不能为空"}) + return data_srz.validated_data + + +class PlateOrderBatchUpdateView(APIView): + """ + PlateOrder 批量更新(同一份 data 应用到多个 plate_order)。 + + POST /api/v2/plate-orders/batch-update/ + Body: + { + "plate_order_ids": [1, 2, 3], + "data": {"urgency_level": "加急", "designer": 10}, + "dry_run": false + } + + 规则: + - 全成功/全失败(任意 id 不存在直接 400,不做部分更新) + - 需要 printing.change_plateorder 权限 + - 如包含 is_invalid: + - is_invalid=true 需要 printing.can_invalidate_plateorder + - is_invalid=false 需要 printing.can_activate_plateorder + """ + + permission_classes = [permissions.IsAuthenticated, IsPrintingFactory] + + def post(self, request): + # 注意:Django 会缓存 has_perm 结果(user._perm_cache)。 + # 在测试中 APIClient.force_authenticate 会复用同一个 user 实例, + # 可能导致“中途赋权后第二次请求仍判定无权限”的假阴性;这里主动清理缓存更稳妥。 + for cache_attr in ("_perm_cache", "_user_perm_cache", "_group_perm_cache"): + if hasattr(request.user, cache_attr): + delattr(request.user, cache_attr) + + if not request.user.has_perm("printing.change_plateorder"): + return Response({"detail": "您没有权限批量更新开版订单"}, status=status.HTTP_403_FORBIDDEN) + + # 先对 data 做“字段白名单”校验(保证错误输出为顶层 detail,便于前端/测试消费) + raw_data = request.data.get("data") if isinstance(request.data, dict) else None + if isinstance(raw_data, dict): + allowed = set(PLATE_ORDER_BATCH_UPDATE_ALLOWED_FIELDS) + unknown = sorted(set(raw_data.keys()) - allowed) + if unknown: + return Response( + {"detail": f"不支持批量更新字段: {', '.join(unknown)}", "allowed_fields": sorted(allowed)}, + status=status.HTTP_400_BAD_REQUEST, + ) + + srz = PlateOrderBatchUpdateRequestSerializer(data=request.data) + srz.is_valid(raise_exception=True) + payload = srz.validated_data + + plate_order_ids: list[int] = payload["plate_order_ids"] + data: dict = payload["data"] + dry_run: bool = payload.get("dry_run", False) + + # is_invalid 权限语义:沿用 v1 的作废/恢复权限 + if "is_invalid" in data: + if data["is_invalid"] is True and not request.user.has_perm("printing.can_invalidate_plateorder"): + return Response({"detail": "您没有权限作废开版订单"}, status=status.HTTP_403_FORBIDDEN) + if data["is_invalid"] is False and not request.user.has_perm("printing.can_activate_plateorder"): + return Response({"detail": "您没有权限恢复开版订单"}, status=status.HTTP_403_FORBIDDEN) + + qs = printing_models.PlateOrder.objects.filter(id__in=plate_order_ids) + found_ids = list(qs.values_list("id", flat=True)) + found_set = set(found_ids) + missing_ids = [str(i) for i in plate_order_ids if i not in found_set] + if missing_ids: + return Response({"detail": f"以下 PlateOrder 不存在: {', '.join(missing_ids)}"}, status=status.HTTP_400_BAD_REQUEST) + # 返回/展示时保持与入参一致的顺序 + found_ids = [i for i in plate_order_ids if i in found_set] + + # 将 validated_data 转换为 queryset.update 可用的 kwargs(处理 FK -> *_id) + update_kwargs: dict = {} + for k, v in data.items(): + try: + field = printing_models.PlateOrder._meta.get_field(k) + except Exception: + update_kwargs[k] = v + continue + + if isinstance(field, django_models.ForeignKey): + update_kwargs[f"{k}_id"] = v.pk if v is not None else None + else: + update_kwargs[k] = v + + update_kwargs["updated_at"] = timezone.now() + + if dry_run: + return Response( + { + "dry_run": True, + "plate_order_ids": found_ids, + "matched_count": len(found_ids), + "data": request.data.get("data") or {}, + } + ) + + with transaction.atomic(): + updated_count = qs.update(**update_kwargs) + + return Response( + { + "detail": "批量更新成功", + "updated_count": updated_count, + "plate_order_ids": found_ids, + } + ) diff --git a/celerybeat-schedule b/celerybeat-schedule index 5ac5ce23b18787ba1e2a52c0f6c3a5e64e468456..96019ee29caa2b63ab122b3aaebbc4699b82a7ab 100644 GIT binary patch delta 205 zcmZojXh_(=Cct%tf&UKwasEX-S2h+N;Sp~2ny$GaTYjT=wG$ZfiL$ap?g*Y{UB5G4I#M-6=P4UfVnmku-2}G1>Dok`E9`W?-Ql9Q%ZmuO7)bcI!|6IuOjBetRzxek{q9!mzb23n$p19p{F?2ar1ro qU;OHa*qH^GN~*XH@-Ry=LEXf?Sb$lHDL%d|wWv5VKQBI>>o5S@R6@4^ delta 189 zcmZojXh_(=Ccw3of&UKwasEX-TQ?RiYpoNB`&)$Ng*S5lOjTHL@o_44HBGSk@w znHhjUdvdF6G$YUChq9*x1^GcD8dEaF+NK0e@%_&@d5_!@0YQFNpr{U1)cexpLV20V zH|303OZAkdDotK0uOg<%tRzxek{q9!mzb23n$p19p{F=iVe@_YU;OF|*_j2HN~*XP e@Gwg;LEXT$M}S$0DL%d|wWv5VKQBI>YY_kuLp?75 diff --git a/celerybeat-schedule-shm b/celerybeat-schedule-shm index b273ec8069b874f04449be16844abaa0bac0c0ae..6b8920c6d33c95aa8e2a41e177a384d1d0edfdc0 100644 GIT binary patch delta 430 zcmb8r%Tta49L4d^^Y{l^`Xg8v#>UPtW0J@v%Keg}gd~^L^SI_tUY8Pj6`@eCmnfG+ zRJ60OG-E7m?2R$Qld-V%ojLQHIdkUBnO_`-aU4byKTkH!#zX-*W67P6sJ*4Cy6D4b zYhK0Ik+M(Iz7;lfe=I2dGU1IUpo^`2{P%NpfUYD+Y`*1nff_9H=1jn z`3fwu#8O3;TWPhm)+ZwcQRo?XpL$I+6VjI;_DlC!BIdqm&CSY1ZPZR@b$= z>6SaX+|w;1>ygL$JoVgwL9e|rY&7&fn+c|dsULH4qdfT*SZJ|A%M@E-l{MDckbJDn zW)&)JQ>9vs-S*n2UhIHFjyUSLlTJJ9obxVfa@iHvq_w%B!)=}Jy06Cr5A}MY-!m_~ R^vaO8M!XA+C0k}p{|yeth2a1I delta 166 zcmZo@U}|V!s+V}A%K!qZK+MR%Am9b0nSnU(>2>e7S7cdux2r4e6X%?D+`NO?#cA^eW)7ywe_XvbA7b9ZH2IeYh_S~E03**cn*aa+ diff --git a/celerybeat-schedule-wal b/celerybeat-schedule-wal index 1a866cf79055edf90122e6f48e01876ad337919f..7c1235611f45e404fbd98689620c0c5597a5a9ba 100644 GIT binary patch literal 840512 zcmeI*36z#~y$A5&9gy7tL=6`ba6yD&k;N@b#R|vW%v{HT8JrOqa264TL=D9pTnBM& zQA^CaZe*Idp_b-WqM5jBg{G#axSRL?q7RYT`@VMWx#w9v-gD0x27%x2!~gl8lh1d) zGw%4cPAnVt+!xBqdX?q>*?sB@ch^5X`jv|xoL;^2%bQOPpUSQI`JauOxx+IPM%~*p ze6nMYhs!FSsQ68fhbu10|2zI6K!5-N0t5&UAV7dXQUvDhwrEht4NmJ;*Vxk3P}e-S z)50aI{#P@P<`~s%9fhuDb1B1|8}c?`}Vdj;ZLe-X_!{G z=7;CB@6xUFi#__3=S_!%pPAU&Ftw$jvAMmi^AU9|H7zYo;m>UAa_scRx`xKd)5C`c zg%2m>KMbGmTHV?>qhZpNsdeoqx9=OK-Kn{uX83;fHH}Bq*EF810mhda)v`^eJ&(v*tYs-w*mg?Gurttd@ zubDApc%E$7#F{DXZ55Lnrq(sqOslJ&(Ns6N;g~Q{?Zog?t0Y_JwC8`LwqDa}XN8}i zUfVjUrMh`mcj4BS)+n{?iL|ol$c{U3GKAv32cLwQXIe)f`iu|4egxRj#dj{zpx9lcqP-h9BP@ zP24;G$4+W(ZkaxgsTwyMFR0wsjg)Iks{{du5-6JC_ga+uAaz zI{dXvoLW~qx6}N}0Sk93?=`;V*zgN_N59}xC#5ocK7R(wqyJv8&V!3D-SdT?U(+po zvSY!y=GOS{0^OE&F7K6VIkwyF zJ<2!8eez$(x?h_Ax7PSi4Bama3;j!8V9LDHzOeD$wR^433#>{DR6G&i#Z5+l009C7 z2oNAZfB=Di7myc_7Z}_oFEC)yW}iDR(Bst!A8b4S#9zt_{QJG)GXw|_AV7cs0RjXF z5FkJxwgUelFVOu*pD!;k=(+P}U%$tYm!iBtzFQ#QF%a9m4MutHAW>JIVF?f*K!5-N0t5&UAV47N0{~z3;UDsXEE1T0kxNY6qnue*fs%vXnY9`h+*HurfnKY$!MtfWLNp(}} znr2l_tgC5hZ|k|=r24wr)~R*7hTmjX`#A-E;YKwx8mf;TS=mz4Jf*qvY52G&Z-lbv~l5rKY8&Dg2pjU5=gJ zSl7@vd3yNppzz^@{D@N0kn+i%9m3ncH}Gcf@I1PBlyK!5-N0t5(TSfHf5z?J!bYmF~S=>Bhc zfxchA<9jX3_x#}FyugyOPx1mwGAwI#0t5&UAV7cs0RjYKC@}BHMMFa#V7Gtf0UnkI zsBHcu;E<0TOlq3m7~&B5m_t=rRe4*7A?@`W)o;`ivITS6CvKUKO>~>y+A^cHrMkAE zDdY`?*UXqPJRhMLHnC<(dt1fihN*RpHPh;!gbw7RB$j{F&)Zu{bA&m8^YHHID*hTb$9`q~cpq05I1 zAM<}Sb8F?mMgO1u0!wP&y7Pgb9o|P?Achy8kq8hVK!5-N0t5&UAV7e?e-bDuFYwc% zd4Yp^@6oUE;bHCi1^yGX&l4a(fB*pk1PBlykOYCyFEC8Mz^dkfs-A7VKIu(JL7re# zIDMm|SMxIxk|zj5=axo8Uso_sP``CmZT;w~T>Y5U8HfMxyudZ@{O*lC8jpTRULXlK zof!!bAV7cs0RjXF5FkK+z$XGF z`UQsT7f4^8ApZ_KH$Qqce^fI11@c3e4T^^TdBHqE4EhBgUN--azrXkT+42I3y7CN5 zfB*pk1PBlyK!5-N0$CR*DKBtU(Y(NixvwmIt zN54Qtcw9D%@&Gp!%mXB#U!eEQ>&|)o^>g=;7l`{UXg&f22oNAZfB*pk1PBlyu!cZM zd4X$-<^>)ZHfYm@_q?@grm?wxqzrZ(cs@V7CWmldnFOaxv&%gu-5FkK+009C72oNBUWr33N z0@oGI3mksXg8LudY;yAvQlfB*pk1PBm_zd-007_DDG9v~k50{y}RGa$+X z{IXykAOZaXv*)%Qf8m(f)8qx>e-E0F009C72oNAZfB*pk1PH7aC@C+nq-b8?)~7Fg zXz(}ods)B0YFQr;AV7cs0RjXF5Fn61fzU57M!!G`^923Fm+HS9y_#=HNWVZBx@?PR z=$i`W31ZMMQ2)%8gHLd28Bmv^*2fQRlz(!0{R8s zTXyH8r@j5nDe?kIxCzZjfB*pk1PBlyK!5-N0t7x0C@C*+ebKzY(SQ5;-FIGc&qVzK zP8IWZ%s(QKo~lAYBcoC1@i}(q40d6Un2S`A_z)QE!zT?2lf4D+k zAW>JMVF?f*K!5-N0t5&UAV47N0wv`IZYY`;sG9!4rVB2+tx~^0)(@2Z2@oJafB*pk z1PCNsAoL4tt6w06d4f^lTy7J+nm;-r{Q_a=+-1?ww-(G3#GqebWv_DvKC;U)@^2K(>#Q?FkSdK!5-N0t5&oT_E%eY_DG+ zeR+cJ;b7)gM6c#&CZk^&q&-eS4w2K+gzkobIJo*JH!V|Rm z`wiS#Fb|M`eu1|Cx$~~ahVFQppOuh)fiQI0 zplIm33g!u7&@a&8j7!)0%GhbcjQl++U;<8fka-7h9*FO009C72oNAZfB=E43Y3%=xUFbjp!3|FUK;g_%b(CM zkkx}^Zvq4e5FkK+009E&5D5JOJLwllVVS zuKER1m?sz&&gd4=tNGap=@$q?mv0;meQ&`$K@9o@{(S%9K@W5ov{YUoJ@=ta2oNAZ zfB*pk1PBlyKp+DGCFKR~Dw-FVUeoJ<`FFhYu6}_GoEa+;AV7cs0RjXF5J<2<=ok2^ zegS!ac=QX53s2IRC=YO7!8||$`UUoX;FfDP=v-YTFOc91(&z*T5FkK+009C72oNBU zJ%N()0>3Vr7npbUq5E(6!c|N33uNyI*_Z$U0t5&UAV7dXngl|>z}NH(q%TjsOlZ0m{o1yX-vEJ%O=0RjXF5FkJx(E_1g;OqJYBhblr)zAwYlt0RjXF5FkK+0D+VXl#~~^r)XZ_ z^vmC!cg-8Q6AuT1@iz2 z=ocufc;c#c-g`bLFOcv{()a`j5FkK+009C72oNBUErF8q0>3Sq7ue`W^SYdJ%4v`4 z7s%G}u`K}t1PBlyK!5;&vrQJV6Zl z1$KUG&$WNP==AgD1=4ma+J^uE0t5&UAV7cs0RjY4El^Tk;NGHnf!$utU3ld-UDnbs zkm}Q7IRXR-5FkK+009Dt7YO|VyXzN_2Z%?%K)>)jZ4%`H9x9jzNI<{9;^yO@Jg!6a zMe+iPza}j}fB*pk1PBlyK!5-N0$CC$DKBte(Y(Oyx0hGeb=kSAet|3<9=j4CK!5-N z0t5&UNS{FH7uZ9;Knn8&{li%u5WSk8n~;8iFm&$9Xy|1H^8_*I7pVH`+_n>%`kW*$ zkiL7-Mg#~DAV7cs0RjXF5Fn6Zfs*n9_ZQ6zto_Qn`}}R4?Z2*HAjN0JY6J)nAV7cs z0RjY4AQ1Wm_S7#R4-k)jfkEMknh@my9xj*%NI<{9Ya4uNtMw0>_f2_$6kL>6AV7cs z0RjXF5FkK+0D#EsutNq+p&P2K@rPR@^vbkMV~rkQYef&1feA1PBly zK!5-N0t5&UNUcCgd4UIu<^|S$_4k*5u-{2T^b4f+q*#mq0RjXF5FkK+Kq>@6zrf!5 z1>^zZ(JwG8JX2dmd4N9@%mXB#UtpuHH#vXKvzDY-1IL4W`O0t5&UAV7cs0Rq_&C@C-SP|>`= z54w-owC zb?a~T)OVkmv$KAIRGtz`5gG}n-aA@pEfB*pk1PBlyKp?#Wp6XaiF?-IS5|4u^s1;Ws|$D^SiFPJBY zLBGJy)_UQjdC&c>ue?Bd??;;vAV7cs0RjXF5FkK+Knev)$_qSFG%qmx=G?RUynpdb z{Q@aGBUU0nfB*pk1PBlykRpN5FYrzM0`dUy=ohF6PuA!t5Aa06JU{~a1?G=k|I)p# zTDp(CK#DF*s}LYSfB*pk1PBlyK!8B{1xm^b{Gn)GU~%^c?mTjx4W{T9NdJ+sAprse z2oNAZfB=Cs3xs}w1M~}|Fi+4ooZ3OrtND2e=@$q?=YAUv{ba#BK@9o@zIJu_cIVIR z`=q=;nr}$E5gU{Q~j;@#q)m7oM$AQ6Au_f_Z=h^b54FfA!8?A0F|Xyg;h1Ov?}; zK!5-N0t5&UAV7dX+679=3;eNYUf|aEyS;wO;`!U?7fAbou^#~f1PBlyK!5;&bPI%j zfdlmmq%cp=KYXeFPoh`zCnuy|APikLEE@Xhf_Z`%^b6dv#rN*5o%7UM@&f6;BW*{3 z009C72oNAZfB*pkDHA9uFYs8=yue+D&%7hoyGxaRfs~yO>kuG7fB*pk1PBmFnLy|l zI7q*MJU~491qOwuYx5`%@JzuxKmz&&ZodD%jgP5r0mkP4gmrL2oNAZfB*pk z1PG*CprpLO@}hZxbq>Gn=*w>&_mO^qbRQSn5gM z!q8=3j)s1|V4ffb{Q}FE?XbbKuiiaSULgJVqzwrWAV7cs0RjXF5FkJxMFJ(|1)eOL z7dU<2-7ox8>x&=g7f8|BunGYJ1PBlyK!5;&6bgiXfy49*$OFWqUtnB#!dB-2{!}mz zkbr)H2{+B1w&0vO-Q)#QcyU^Z009C72oNAZfB*pk1kx)|QeNPxqIrRPH@l(o*rD?~ z=od)uQLz~T0t5&UAV7csfh-7wet~NJ0_n>Wtero+tE>M{O-8>!e(2oyqJDut7t9mH zpkLt9vmU>%_erxKmlw#wO=(901PBlyK!5-N0t5&UNR2>Ad4Z>k<^|6D-hNeM+fMn8 zeu31S42uvTK!5-N0t5&UNTopN7dTwMfIL7f`UTeR6rQocQ6Atg1@iz2=oc72? zlUH6SFOZG9(v}1W5FkK+009C72oNBU5`mKP0?!uB3%vBw5gS)jzBov~KuXSqH3$$O zK!5-N0t5)8R3P*VOw=zR4-k)jfr{{yZ5HJLUMQFcNI<{9Ra-rB#<^#`wm@DWrI)9* z2oNAZfB*pk1PBlyKp>q0CFKR4E1DNLd!L{7dTsIeGxZCk^O)F*009C72oNAZfIwCR zLchQy{Q@b>6Z8!yc)RG;{Amg47YIY=Rz^d=STIizgMNX__aA@y)sNr!7kPoK+?Mtv zK!5-N0t5&UAV7csfm8^TloxouXkK7Ow-r6lx_{m6^$VopR9J!l0RjXF5FkK+Kxzd- zzd)^i0eOIU^b7P0&)Kjj5AfH5d4L4;3tT(@jgRKMo9iSmklO3hVgv{fAV7cs0RjXF z5Fn67fs*n9e=3?6xc{ns_Z@L?%ia0~(s)ShM1TMR0t5&UAV45H0-;}^PQO43^923F zm+H4hujbnl(k~E({^$2Ac&T8XAO`&cKm6!`uaAGKtWsVeJNKnc2@oJafB*pk1PBly zKp+JICFKSFTr@9m&dcvK^t-QifqsD$oCzxsAV7cs0RjXF5J<5==ogr*UqBup9{mD? z!jrZ|6k>R}U>+a={Q|#e9(iH)Ym>hyFOcF3)M^9>5FkK+009C72oNBUK7o?*0)Hu* z7ue(vvoG4At@cR$0_i&5 z(7DT^ph+(1PBlyK!5-N0t6B-P*PrCMbW&# zVH@24SoMK>bkZ-7_!D6P0t5&UAV7cs0RpKO2>k-}`UT_x;?XZKEIez&qddUh3g!V4 z&@XVn_`^@zbNx4F$_u3W3bh;o0t5&UAV7cs0RjXFq)nityub@Z^8(8*ytBt?Pwg;J zzd+g!h3|+o$H1w+l^8_*I z7kFsHV|F|8sUcsH7s%F~XLmg*Ns^l30W0RjXF z5FkK+0D;sCgnogk`UT_xV$m;9(J4G{1EV~^-wWme63{R3(DJE+XZGy&n!G^juTcvU zAV7cs0RjXF5FkK+K$-+f$_u<)G%xVzFCRbj$h}9F=@&@T;jjw<0t5&UAV7csf$Rx{ zet~KF1yYzN$iKuM9KD)9Ga>x~Vdz|QH1rz<^8_*I7wGouJAP9+>aVBE3uN!!v@rn! z1PBlyK!5-N0t5&oSfHf5z$-=b0>^)K_(vC9`R>K~1rmG~j81?60RjXF5FkJx0|KF6 zpi#eoJU~491@hl;U_g`yc(Y(0AOZaX9S=F7-xuq*{zzUR0~e_k2@oJafB*pk1PBly zKp;H=CFKSFRx~fL{glRs9yt4%>+}nx=V;i3009C72oNAZfIt=nLchRt{Q@b>6Z8$I zd1Ulz{;Y)b3xuI_H$_9QESM*VLBGH@?>C>h^96kt$_r%i=Cm^b0t5&UAV7cs0RjXF zBvzoLyuhnP^8$T;a@5fI+y3wc{Q`+S2?i%XfB*pk1PBlykO_g%FEB&DfIL7v`UU!h zXKrYe2Y9Ps9v}hz0<-4zdGDGHZ@5KXAQM-qB?%B9K!5-N0t5&UAV4530wv`IUMrdx zxNQGX6ZYJya;$!Vv>Xh35FkK+009C72oT7oK^i*R{@^bKTQB9Iam<4Tr)G1PBly zK!5-N0tB)v5c&mL^$VmhPcSN+>7mi9`SyhL3xuI_r$$4+UocM)gMNWs9$5MIW8b}C zw!A=g?@yZ(AV7cs0RjXF5FkK+Kmr9y$_uP4niuHP@5^7_>PvH;*DsL3Ghk!_1PBly zK!5-N0vQqr{Q^hp7mx>tN580xF7s$|sYE=RR z2oNAZfB*pk1PBmFzCcNNfwzk01vb9&r!C*@@`I)N1(JUxY(Rhj0RjXF5FkJx%L1Wa zV5WY7^yLY9g+raYDS9=(Fd6*<`Jv0kL_>dAFi#MJeu3x8uIzKhPfyxJULeaisND$= zAV7cs0RjXF5FkJxaRMdf1>P>27dWB+#FgJU^2`hM3ncCY7?=P70t5&UAV7dXrUXL2 zz%lv-dJw(n5e6Cgl<009C72oNAZ zfIz|oO3DkoTQo0l-@JYA-1_+uWAzIp?C;;W1PBlyK!5-N0t7N95c&m<)h{3q5RZO= zitzMp9_0bbR)rYKhYSzjfncML|F5Ne-}X7}6SthxJ~#pW0w;GlEVtJD!!DB-$k?T7 zT>=CM5FkK+009C72oOlNKuLLl_lo8PCXDU2c*qUA&(SZC?Big10t5&UAV7cs0RmYU z2>k-b=@&?0o}h0y*+ZgN^NSMFFA#<cDC@&LJld4L4;3;g8j#_hg!)R(K|1u}Q7T9^O<0t5&UAV7cs z0RjY)EKpKj;De%hfdxG-nY8X+6Z8*X zs(*I$YW}>0^b3Tc%XW%}E-#oTh(W)=^*24#I`onY{vj{m9wk74009C72oNAZfB*pk z2@)tNFYsZ}yuf4Cn@+y-gu&P87f8_Gy-^7eAV7cs0RjXFWKbaV3w&F@fIL7v`UM7s zCvbJYK*xf4fCTglJh|(E-?(wB4z2P68N67nOn?9Z0t5&UAV7cs0RqVtC@C-SkD_^j zZM#4H+a4qK9;II(xktg|1PBlyK!5-N0t5(@m4$wRg*!tXF3kIAaFW@F6K!5-N0t5&UAV7cs0RjmUC@C+{p=e&9eVhCDJ#@dTuhTD( zpuc;g5+Fc;009C72oT7iKla90o}hRBaIbzfe_=BE1@c4Z&WrK{T?^(3V$d(pdib78u4>%=XYvAW zQUU}B5FkK+009C72oNBUAc2zd0_8>X0vkSY#rHdJ+hu@$fdu{C8W4K*yqafvy+M88+s!n;z3IkldqSasmVh5FkK+009C7R`m;X(l3z0 zJVAJgojW0VHGfe;`UUcD-nWQ`?p`oY5QBb!x!t6>~NmI`I29^wuws+@oM}0t5&UAV7cs0RjY8^$T>?FOb4KLEmt?S6BaEoREHj zFm&#iC{NI{V4ffb{Q_IOa!;Rc&hB=cynvgO009C72oNAZfB*pk1PCNZprpJ&=c0Lm zZ!T$D_l(xwi}VX5=`hO3^^YI@US1%B7ps*C5FkK+009C72oNAZAh`l1<44tcwhOQ`>Cx}76 sKugnwmwx}AWe3U&xJd~RAV7cs0RjXF5FkK+K!OBH$_sS;x4gjr0?cfqFaQ7m literal 304912 zcmeI*4|o*yoyYNIHv#g`4Hoeb8VOuW46=bhr2YX52o+b*6aSpFx;MK!WT#1Xx4W}E zCLUso_>ZyTW#T>U+0)v3K2{VDq275FPlbZeN-0DkPy|sFxK?|$R6VNqn!>UEX(%szVBv!mW$ z`tVY5$lLe$7azI*x?stKLlxp+QTbYre~*7-`C9+O*7xv%00IagfB*srAbbz{rlxN#?%3Y_hZ~P)u~}oB5mmJ2)=*T@m9UalLt!P-lu4RKSwwAC zQ>}rps_3RsF+UPhqnT!PmUxj?vpvfbM=D7zv}j^LSJF-CK+nq^e|ggwEPj%zYb|Qu zhwbLf(m{vHhxjbCapEiCjMl7c@w90SYE*Sa*HhwW8iU&saaD^iOo)dI#KSq(Lvg$$ zl!+&`NK>OvhnXI$O#)p+A)9^3Un$@_{qK1+w zb)j~Xm?#<+U+R|3EHWv6XeOeE(yj4`87rze#ZjZ`Q-IcYhWb1;ZN^G^ zu>2NQjTswet!(Zm17ag;jH24Qi4(eqKY0NqNu^N@rL{KI3`UKT7UiapbtG*Dy+)b! zSxSv0Qc>~wCVS!`){l*3(t4srO`RC|6o-woPd&5!F+If%5_r%)sd#)xOa~GkPQ>-nDSE8ojmn z&Omj?C|~6zdYgE{ke=`NoO~h$#Bu8s_1V8KX#eIh?~{AGR+Wl_MgEsP{&)Rv_`Add zJ`g|v0R#|0009ILKmY**5I~@C1uA``y?uT!Q2PBrzDlp&R{Bu6?<{ZcFVISVVtrSi zUon(ECl>UnyufYmuleRjE0$k*JTK6l7Vz&W+=Vk40tg_000IagfB*srxKe<;0C|BL zgSsrKp1eS(rzb5?-swyA%b?{$7}*P5Sp4J0q%*xiwZA%Fk^2q1s}0tg_0 z00Ia&Q6R6pz<=hvAHjjzukHBPn)Q$M$qQ^O@8o_2PCR8;69NbzfB*srAbvV@{R5wQUSN8^??>SMer((a&!ig33pjd*WN`=}fB*srAbV5?M&kM{Lr8OMd*fE8?fa7;b7Ki`>2q1s}0tg_000Iag;3R>Q^8zpS-jAT4d4d1l zIbl%a(rs_rd4Zm^fd649QLz>T5I_I{1Q0*~0R#|mfdF{{@&XRZ3(WM5o*W7-Qd4Oy z5f6oKE$%4ky@-wChQN7&31;B*j?XAB@K3er3mS)QJ4jx@1^XmRL;wK<5I_I{1Q0*~ z0R#|mj==vdFYuB8=)Q$##WQ28*Hzv#dtYGlf$;3Px7c|Bt6RYTaCxV5pjZh42q1s} z0tg_000IcOLO|pNE-5-|`Cv7!r!+M!{(|-C?mzr^Jd4d5FO4 zk)}-2G|D1svzlrRgjGd1jf(k^m>SJAtFy$5w3_W%o;XrTYN16F1GboSHc;sS=Zue(-_pK>WZ$X#LqMaw&HeiX+6=RrcR7}io?d)r=Hn<@~4OPH1rM~+-}Y6 ztF03Ug!f4!$0h}%vB^Pitl{`bnZW3dzhu9_<^Mdp>yuZ;{eirIOZQHejQ|1&Abl<(0&6|J{Q_&{L}6+K5I_I{1Q0*~0R#|m ztiUp@W46cxTzaBEU_1Q*0rCLtsT5r)5XULZcbsASTXA8jWu z;Mm=hg&}|d0tg_000IagfB*srI8h+4yueR$<^}G1aF5<{!F}JRU%-hc32Q-E^b0t!Utp*>iA9+}PrtwbN%{rE&|cln6Le^b5#+Ixsx~2q1s} z0tg_000NE|5d8v|(Jw$ApfLIc#)#`}hMfo4nJo_>LBGHQ2hUlyZ^=%Dyny3(Q5J{* z0tg_000IagfB*srAmAi{yz&B@bLIu^IEvK72q1s}0tg_000IcO zP(btx1nC!WV4k2xoXpegegU5({Q_cW-+Vhyuq#`hpaA*>Hk7?R;>Xv&w1B*T3-?Wy zi~s@%Ab?t_}u&s`URYFVz3Sb5I_I{1Q0*~0R&tsAo>O7 z(l6k^JVCw3<6U6)3lvGxFCd2YRNHxi-P!U41<)@rY3*H?T{vn}8F>Mh?wu?f0R#|0 z009ILKmY**5I{gqfxPkpKhK#LIPl$Bn~R4&zn^{qIZp$oMgRc>5I_I{1Q0;LH3Fhv zU>^Mf(i%hW7rwohSHJwmd-r^b73V@caMR`}s50lNWID{>jo2KmY**5I_I{ z1Q0*~0R-d|$SW_fHD_MnC#RqJyA_`2CeSY+-zmVv2q1s}0tg_000IcON2*WM&M53n~|9zcSAfyZuNK5UY5>5JqAT(zUJSOgG2009ILKmY**5I_I{ z*#+{-3;ZHyUf>%wGiDxL`O#PC7m)pgV15J;KmY**5I_I{1Y9m4`UU=megOyO39P@x zZm|0W21?Q|Acpqtwetk8XUh{5K)=8r+S*UM`NQ-E@&Yd3Ls>oo2q1s}0tg_000Iag zfPh>AdF2JR<;)8_`-Sa`)Ny0aq+dX;x1VVdKmY**5I_I{1Q2kYfan*vihcp|0EN*n z;1}0lwVempmn{z>uF8TDKmY**5I_I{1Q0*~0R&_g$SW`K z%ba0Wz&ycF@lW-a*!=>7 zBK`@oW}PgbNKBrm{LiU0x#Ab*yD7V4k2x{8N3+?iVPLq+dV`?U`)n3Es+< zCn$h^f!4!&+dCIN`T=ux73P z@#V{YSVdmIjT5I_I{1Q0*~0R#|`Rv@puz|Nd`fhmbcmTsDQG)TXIv}Xc? zBY*$`2q1s}0tg_0fF&UM1+J%Gz=3&!dXJ}itKBb9DoMY982Ya-u=50OXUh{5K)*oe zwyGzuu6y@8d%t{Q?rb z_l$}F0tg_000IagfPfnXM8CiS`US`X6h^Ky zBrjl{YkVMp00IagfB*srAb+!`UM=AC$Rn&d$!##P%cTofEe1h#?BKQ$(AQ5fPR6-`djaAE!pujc>#Mf z;r|FAfB*srAb5kLR| z1Q0*~0R#|0009J~6UZwsus3I3VBet`$Mg|rw$U#j-5J2Z2q1s}0tg_000Iag&{sh8 z3xwzwaA2NbsK?{I#qJlVkfdKg4DI=%ohSHpwmd-r^b4#!TDJVhv%)LM3-sMkc#Hr7 z2q1s}0tg_000IagfIxu@r%BQ;Acpp;cAntfY= 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_mdy_plate_order_staging; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.api_mdy_plate_order_staging ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + mdy_rowid character varying(64) NOT NULL, + raw jsonb NOT NULL +); + + +ALTER TABLE public.api_mdy_plate_order_staging OWNER TO postgres; + +-- +-- Name: api_mdy_plate_order_staging_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +ALTER TABLE public.api_mdy_plate_order_staging ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.api_mdy_plate_order_staging_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 text, + 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, + printing_job_id bigint, + 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, + created_by_id integer, + original_id bigint, + CONSTRAINT printing_plateorder_original_id_check CHECK ((original_id >= 0)), + 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, + work_state integer NOT NULL, + original_id bigint, + CONSTRAINT printing_printingjob_original_id_check CHECK ((original_id >= 0)), + 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_printingjobbatchadvancerecord; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.printing_printingjobbatchadvancerecord ( + id bigint NOT NULL, + created_at timestamp with time zone NOT NULL, + updated_at timestamp with time zone NOT NULL, + parameters jsonb NOT NULL, + created_by_id integer, + printing_order_id bigint NOT NULL, + state_id bigint NOT NULL +); + + +ALTER TABLE public.printing_printingjobbatchadvancerecord OWNER TO postgres; + +-- +-- Name: printing_printingjobbatchadvancerecord_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +ALTER TABLE public.printing_printingjobbatchadvancerecord ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.printing_printingjobbatchadvancerecord_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: printing_printingjobbatchadvancerecord_printing_jobs; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.printing_printingjobbatchadvancerecord_printing_jobs ( + id bigint NOT NULL, + printingjobbatchadvancerecord_id bigint NOT NULL, + printingjob_id bigint NOT NULL +); + + +ALTER TABLE public.printing_printingjobbatchadvancerecord_printing_jobs OWNER TO postgres; + +-- +-- Name: printing_printingjobbatchadvancerecord_printing_jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +ALTER TABLE public.printing_printingjobbatchadvancerecord_printing_jobs ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.printing_printingjobbatchadvancerecord_printing_jobs_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 +114 2025-12-09 19:00:02.033763+00 2025-12-09 19:00:02.033769+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +115 2025-12-09 20:00:02.625341+00 2025-12-09 20:00:02.625348+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +116 2025-12-09 21:00:00.673736+00 2025-12-09 21:00:00.673742+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +117 2025-12-09 22:00:02.406177+00 2025-12-09 22:00:02.406183+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +118 2025-12-09 23:00:01.998055+00 2025-12-09 23:00:01.998061+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +119 2025-12-10 00:00:02.348564+00 2025-12-10 00:00:02.34857+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +120 2025-12-10 01:00:01.216192+00 2025-12-10 01:00:01.216198+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +121 2025-12-10 02:00:01.083534+00 2025-12-10 02:00:01.08354+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +122 2025-12-10 03:00:00.8483+00 2025-12-10 03:00:00.848306+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +123 2025-12-10 04:00:02.172956+00 2025-12-10 04:00:02.172963+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +124 2025-12-10 05:00:00.661057+00 2025-12-10 05:00:00.661064+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +125 2025-12-10 06:00:02.246847+00 2025-12-10 06:00:02.246853+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +126 2025-12-10 07:00:01.73964+00 2025-12-10 07:00:01.739646+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +127 2025-12-10 08:00:02.103673+00 2025-12-10 08:00:02.10368+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +128 2025-12-10 09:00:01.698863+00 2025-12-10 09:00:01.69887+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +129 2025-12-10 10:00:00.986996+00 2025-12-10 10:00:00.987002+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +130 2025-12-10 11:00:00.673032+00 2025-12-10 11:00:00.673039+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +131 2025-12-10 12:00:00.998191+00 2025-12-10 12:00:00.998197+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +132 2025-12-10 13:00:01.911645+00 2025-12-10 13:00:01.911652+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +133 2025-12-10 14:00:02.185054+00 2025-12-10 14:00:02.185061+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +134 2025-12-10 15:00:01.872884+00 2025-12-10 15:00:01.87289+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +135 2025-12-10 16:00:01.296712+00 2025-12-10 16:00:01.296718+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +136 2025-12-10 17:00:00.748068+00 2025-12-10 17:00:00.748075+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +137 2025-12-10 18:00:00.955365+00 2025-12-10 18:00:00.955371+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +138 2025-12-10 19:00:01.472321+00 2025-12-10 19:00:01.472328+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +139 2025-12-10 20:00:00.976641+00 2025-12-10 20:00:00.976647+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +140 2025-12-10 21:00:00.612485+00 2025-12-10 21:00:00.612491+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +141 2025-12-10 22:00:02.217301+00 2025-12-10 22:00:02.217307+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +142 2025-12-10 23:00:00.635041+00 2025-12-10 23:00:00.635048+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +143 2025-12-11 00:00:00.981119+00 2025-12-11 00:00:00.981126+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +144 2025-12-11 01:00:00.803153+00 2025-12-11 01:00:00.80316+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +145 2025-12-11 02:00:02.209417+00 2025-12-11 02:00:02.209423+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +146 2025-12-11 03:00:00.811471+00 2025-12-11 03:00:00.811477+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +147 2025-12-11 04:00:01.812461+00 2025-12-11 04:00:01.812468+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +148 2025-12-11 05:00:00.642621+00 2025-12-11 05:00:00.642628+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +149 2025-12-11 06:00:01.006186+00 2025-12-11 06:00:01.006192+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +150 2025-12-11 07:00:01.170133+00 2025-12-11 07:00:01.17014+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +151 2025-12-11 08:00:01.1949+00 2025-12-11 08:00:01.194906+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +152 2025-12-11 09:00:00.672311+00 2025-12-11 09:00:00.672317+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +153 2025-12-11 10:00:01.295486+00 2025-12-11 10:00:01.295492+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +154 2025-12-11 11:00:00.621941+00 2025-12-11 11:00:00.621947+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +155 2025-12-11 12:00:02.099292+00 2025-12-11 12:00:02.099299+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +156 2025-12-11 13:00:00.633332+00 2025-12-11 13:00:00.633338+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +157 2025-12-11 14:00:02.17408+00 2025-12-11 14:00:02.174087+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +158 2025-12-11 15:00:01.428906+00 2025-12-11 15:00:01.428913+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +159 2025-12-11 16:00:01.459219+00 2025-12-11 16:00:01.459225+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +160 2025-12-11 17:00:02.216276+00 2025-12-11 17:00:02.216282+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +161 2025-12-11 18:00:00.921905+00 2025-12-11 18:00:00.921911+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +162 2025-12-11 19:00:02.343351+00 2025-12-11 19:00:02.343357+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +163 2025-12-11 20:00:00.603587+00 2025-12-11 20:00:00.603593+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +164 2025-12-11 21:00:01.871759+00 2025-12-11 21:00:01.871765+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +165 2025-12-11 22:00:01.619334+00 2025-12-11 22:00:01.619341+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +166 2025-12-11 23:00:00.940606+00 2025-12-11 23:00:00.940612+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +167 2025-12-12 00:00:00.734641+00 2025-12-12 00:00:00.734647+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +168 2025-12-12 01:00:01.07306+00 2025-12-12 01:00:01.073066+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +169 2025-12-12 02:00:01.837832+00 2025-12-12 02:00:01.837839+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +170 2025-12-12 03:00:01.398695+00 2025-12-12 03:00:01.398701+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +171 2025-12-12 04:00:00.618029+00 2025-12-12 04:00:00.618035+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +172 2025-12-12 05:00:02.545333+00 2025-12-12 05:00:02.545339+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +173 2025-12-12 06:00:00.627008+00 2025-12-12 06:00:00.627015+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +174 2025-12-12 07:00:01.108572+00 2025-12-12 07:00:01.108578+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +175 2025-12-12 08:00:00.627836+00 2025-12-12 08:00:00.627842+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +176 2025-12-12 09:00:01.484804+00 2025-12-12 09:00:01.48481+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +177 2025-12-12 10:00:00.641692+00 2025-12-12 10:00:00.641698+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +178 2025-12-12 11:00:01.199997+00 2025-12-12 11:00:01.200004+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +179 2025-12-12 12:00:00.599805+00 2025-12-12 12:00:00.599811+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +180 2025-12-12 13:00:01.014662+00 2025-12-12 13:00:01.014668+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +181 2025-12-12 14:00:00.840988+00 2025-12-12 14:00:00.840995+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +182 2025-12-12 15:00:00.960038+00 2025-12-12 15:00:00.960044+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +183 2025-12-12 16:00:01.816452+00 2025-12-12 16:00:01.816458+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +184 2025-12-12 17:00:00.95729+00 2025-12-12 17:00:00.957296+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +185 2025-12-12 18:00:01.161056+00 2025-12-12 18:00:01.161062+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +186 2025-12-12 19:00:02.569288+00 2025-12-12 19:00:02.569294+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +187 2025-12-12 20:00:00.717492+00 2025-12-12 20:00:00.717499+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +188 2025-12-12 21:00:01.087522+00 2025-12-12 21:00:01.087528+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +189 2025-12-12 22:00:01.371942+00 2025-12-12 22:00:01.371948+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +190 2025-12-12 23:00:00.617432+00 2025-12-12 23:00:00.617439+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +191 2025-12-13 00:00:02.355136+00 2025-12-13 00:00:02.355142+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +192 2025-12-13 01:00:01.763528+00 2025-12-13 01:00:01.763535+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +193 2025-12-13 02:00:02.487673+00 2025-12-13 02:00:02.48768+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +194 2025-12-13 03:00:00.795339+00 2025-12-13 03:00:00.795346+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +195 2025-12-13 04:00:01.006104+00 2025-12-13 04:00:01.00611+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +196 2025-12-13 05:00:01.230506+00 2025-12-13 05:00:01.230513+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +197 2025-12-13 06:00:00.967943+00 2025-12-13 06:00:00.967949+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +198 2025-12-13 07:00:00.647476+00 2025-12-13 07:00:00.647482+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +199 2025-12-13 08:00:01.149594+00 2025-12-13 08:00:01.149601+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +200 2025-12-13 09:00:02.169239+00 2025-12-13 09:00:02.169245+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +201 2025-12-13 10:00:00.647573+00 2025-12-13 10:00:00.647579+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +202 2025-12-13 11:00:02.152464+00 2025-12-13 11:00:02.152472+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +203 2025-12-13 12:00:00.621564+00 2025-12-13 12:00:00.621569+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +204 2025-12-13 13:00:02.14727+00 2025-12-13 13:00:02.147277+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +205 2025-12-13 14:00:01.631829+00 2025-12-13 14:00:01.631836+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +206 2025-12-13 15:00:01.078682+00 2025-12-13 15:00:01.078688+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +207 2025-12-13 16:00:00.803649+00 2025-12-13 16:00:00.803655+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +208 2025-12-13 17:00:00.944632+00 2025-12-13 17:00:00.944638+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +209 2025-12-13 18:00:00.73119+00 2025-12-13 18:00:00.731196+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +210 2025-12-13 19:00:01.04491+00 2025-12-13 19:00:01.044917+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +211 2025-12-13 20:00:01.808305+00 2025-12-13 20:00:01.808311+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +212 2025-12-13 21:00:02.088948+00 2025-12-13 21:00:02.088955+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +213 2025-12-13 22:00:00.664261+00 2025-12-13 22:00:00.664268+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +214 2025-12-13 23:00:02.189422+00 2025-12-13 23:00:02.189429+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +215 2025-12-14 00:00:00.643152+00 2025-12-14 00:00:00.643158+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +216 2025-12-14 01:00:00.957125+00 2025-12-14 01:00:00.957131+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +217 2025-12-14 02:00:01.678799+00 2025-12-14 02:00:01.678805+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +218 2025-12-14 03:00:02.034173+00 2025-12-14 03:00:02.034179+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +219 2025-12-14 04:00:00.781959+00 2025-12-14 04:00:00.781965+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +220 2025-12-14 05:00:01.192422+00 2025-12-14 05:00:01.192429+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +221 2025-12-14 06:00:00.63858+00 2025-12-14 06:00:00.638586+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +222 2025-12-14 07:00:02.186809+00 2025-12-14 07:00:02.186815+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +223 2025-12-14 08:00:00.59357+00 2025-12-14 08:00:00.593576+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +224 2025-12-14 09:00:02.180682+00 2025-12-14 09:00:02.180688+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +225 2025-12-14 10:00:00.60618+00 2025-12-14 10:00:00.606186+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +226 2025-12-14 11:00:01.148021+00 2025-12-14 11:00:01.148028+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +227 2025-12-14 12:00:01.472614+00 2025-12-14 12:00:01.47262+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +228 2025-12-14 13:00:00.976474+00 2025-12-14 13:00:00.976481+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +229 2025-12-14 14:00:00.604633+00 2025-12-14 14:00:00.604639+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +230 2025-12-14 15:00:01.161427+00 2025-12-14 15:00:01.161433+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +231 2025-12-14 16:00:01.390859+00 2025-12-14 16:00:01.390866+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +232 2025-12-14 17:00:01.203559+00 2025-12-14 17:00:01.203565+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +233 2025-12-14 18:00:01.044367+00 2025-12-14 18:00:01.044373+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +234 2025-12-14 19:00:00.899332+00 2025-12-14 19:00:00.899338+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +235 2025-12-14 20:00:00.698229+00 2025-12-14 20:00:00.698236+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +236 2025-12-14 21:00:02.19213+00 2025-12-14 21:00:02.192137+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +237 2025-12-14 22:00:01.892665+00 2025-12-14 22:00:01.892672+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +238 2025-12-14 23:00:00.969992+00 2025-12-14 23:00:00.969999+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +239 2025-12-15 00:00:00.640029+00 2025-12-15 00:00:00.640035+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +240 2025-12-15 01:00:02.27857+00 2025-12-15 01:00:02.278576+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +241 2025-12-15 02:00:00.680203+00 2025-12-15 02:00:00.680209+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +242 2025-12-15 03:00:01.332197+00 2025-12-15 03:00:01.332203+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +243 2025-12-15 04:00:01.183948+00 2025-12-15 04:00:01.183954+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +244 2025-12-15 05:00:17.269817+00 2025-12-15 05:00:17.269821+00 product 3 100 490672 198 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +245 2025-12-15 05:10:01.079227+00 2025-12-15 05:10:01.079234+00 product 3 100 490680 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +246 2025-12-15 05:20:01.098436+00 2025-12-15 05:20:01.098443+00 product 3 100 490696 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +247 2025-12-15 05:30:00.916967+00 2025-12-15 05:30:00.916973+00 product 3 100 490703 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +248 2025-12-15 05:40:01.15366+00 2025-12-15 05:40:01.153666+00 product 3 100 490710 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +249 2025-12-15 05:50:00.79395+00 2025-12-15 05:50:00.793971+00 product 3 100 490718 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +250 2025-12-15 06:00:00.717636+00 2025-12-15 06:00:00.717642+00 product 3 100 490722 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +251 2025-12-15 06:10:00.996631+00 2025-12-15 06:10:00.996638+00 product 3 100 490722 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +252 2025-12-15 06:20:01.015194+00 2025-12-15 06:20:01.0152+00 product 3 100 490750 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +253 2025-12-15 06:30:01.039359+00 2025-12-15 06:30:01.039365+00 product 3 100 490751 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +254 2025-12-15 06:40:00.851234+00 2025-12-15 06:40:00.85124+00 product 3 100 490751 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +255 2025-12-15 06:50:01.118014+00 2025-12-15 06:50:01.118021+00 product 3 100 490756 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +256 2025-12-15 07:00:00.768807+00 2025-12-15 07:00:00.768814+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +257 2025-12-15 07:00:01.677669+00 2025-12-15 07:00:01.67768+00 product 3 100 490762 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +258 2025-12-15 07:10:00.881441+00 2025-12-15 07:10:00.881447+00 product 3 100 490774 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +259 2025-12-15 07:20:01.100883+00 2025-12-15 07:20:01.100891+00 product 3 100 490776 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +260 2025-12-15 07:30:01.778596+00 2025-12-15 07:30:01.778603+00 product 3 100 490778 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +261 2025-12-15 07:40:00.846396+00 2025-12-15 07:40:00.846407+00 product 3 100 490786 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +262 2025-12-15 07:50:01.114627+00 2025-12-15 07:50:01.114634+00 product 3 100 490808 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +263 2025-12-15 08:00:01.149051+00 2025-12-15 08:00:01.149058+00 product 3 100 490814 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +264 2025-12-15 08:10:00.781551+00 2025-12-15 08:10:00.781557+00 product 3 100 490832 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +265 2025-12-15 08:20:01.011007+00 2025-12-15 08:20:01.011014+00 product 3 100 490834 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +266 2025-12-15 08:30:00.768721+00 2025-12-15 08:30:00.768728+00 product 3 100 490840 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +267 2025-12-15 08:40:01.100913+00 2025-12-15 08:40:01.10092+00 product 3 100 490853 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +268 2025-12-15 08:50:00.782857+00 2025-12-15 08:50:00.782864+00 product 3 100 490857 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +269 2025-12-15 09:00:01.898406+00 2025-12-15 09:00:01.898414+00 product 3 100 490859 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +270 2025-12-15 09:10:02.156267+00 2025-12-15 09:10:02.156278+00 product 3 100 490859 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +271 2025-12-15 09:20:01.103498+00 2025-12-15 09:20:01.103505+00 product 3 100 490885 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +272 2025-12-15 09:30:00.906516+00 2025-12-15 09:30:00.906522+00 product 3 100 490885 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +273 2025-12-15 09:40:00.732834+00 2025-12-15 09:40:00.732841+00 product 3 100 490909 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +274 2025-12-15 09:50:01.100914+00 2025-12-15 09:50:01.10092+00 product 3 100 490945 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +275 2025-12-15 10:00:01.105247+00 2025-12-15 10:00:01.105255+00 product 3 100 490972 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +276 2025-12-15 10:10:01.083628+00 2025-12-15 10:10:01.083636+00 product 3 100 491017 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +277 2025-12-15 10:20:00.992689+00 2025-12-15 10:20:00.992695+00 product 3 100 491038 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +278 2025-12-15 10:30:00.970165+00 2025-12-15 10:30:00.970176+00 product 3 100 491038 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +279 2025-12-15 10:40:01.097264+00 2025-12-15 10:40:01.097271+00 product 3 100 491038 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +280 2025-12-15 10:50:00.962821+00 2025-12-15 10:50:00.962827+00 product 3 100 491063 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +281 2025-12-15 11:00:00.930446+00 2025-12-15 11:00:00.930452+00 product 3 100 491117 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +282 2025-12-15 11:10:00.900786+00 2025-12-15 11:10:00.900795+00 product 3 100 491160 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +283 2025-12-15 11:20:01.185862+00 2025-12-15 11:20:01.185868+00 product 3 100 491177 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +284 2025-12-15 11:30:00.84026+00 2025-12-15 11:30:00.840266+00 product 3 100 491183 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +285 2025-12-15 11:40:01.012451+00 2025-12-15 11:40:01.012457+00 product 3 100 491219 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +286 2025-12-15 11:50:00.985764+00 2025-12-15 11:50:00.985771+00 product 3 100 491237 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +287 2025-12-15 12:00:00.952529+00 2025-12-15 12:00:00.952535+00 product 3 100 491241 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +288 2025-12-15 12:00:02.163071+00 2025-12-15 12:00:02.163078+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +289 2025-12-15 12:10:00.92125+00 2025-12-15 12:10:00.921256+00 product 3 100 491243 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +290 2025-12-15 12:20:00.890594+00 2025-12-15 12:20:00.890601+00 product 3 100 491243 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +291 2025-12-15 12:30:00.90226+00 2025-12-15 12:30:00.902266+00 product 3 100 491280 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +292 2025-12-15 12:40:00.933228+00 2025-12-15 12:40:00.933234+00 product 3 100 491307 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +293 2025-12-15 12:50:00.901574+00 2025-12-15 12:50:00.90158+00 product 3 100 491341 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +294 2025-12-15 13:00:00.97347+00 2025-12-15 13:00:00.973476+00 product 3 100 491352 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +295 2025-12-15 13:10:00.885975+00 2025-12-15 13:10:00.885982+00 product 3 100 491354 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +296 2025-12-15 13:20:00.86934+00 2025-12-15 13:20:00.869346+00 product 3 100 491374 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +297 2025-12-15 13:30:00.87837+00 2025-12-15 13:30:00.878377+00 product 3 100 491374 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +298 2025-12-15 13:40:00.554006+00 2025-12-15 13:40:00.554013+00 product 3 100 491386 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +299 2025-12-15 13:50:00.877561+00 2025-12-15 13:50:00.877568+00 product 3 100 491394 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +300 2025-12-15 14:00:01.001078+00 2025-12-15 14:00:01.001085+00 product 3 100 491405 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +301 2025-12-15 14:10:00.574537+00 2025-12-15 14:10:00.574543+00 product 3 100 491406 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +302 2025-12-15 14:20:00.57679+00 2025-12-15 14:20:00.576797+00 product 3 100 491408 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +303 2025-12-15 14:30:00.95144+00 2025-12-15 14:30:00.951447+00 product 3 100 491411 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +304 2025-12-15 14:40:00.97738+00 2025-12-15 14:40:00.977387+00 product 3 100 491411 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +305 2025-12-15 14:50:00.780209+00 2025-12-15 14:50:00.780215+00 product 3 100 491415 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +306 2025-12-15 15:00:00.710843+00 2025-12-15 15:00:00.71085+00 product 3 100 491415 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +307 2025-12-15 15:10:00.76915+00 2025-12-15 15:10:00.769157+00 product 3 100 491430 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +308 2025-12-15 15:20:00.580746+00 2025-12-15 15:20:00.580753+00 product 3 100 491441 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +309 2025-12-15 15:30:00.984081+00 2025-12-15 15:30:00.984087+00 product 3 100 491441 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +310 2025-12-15 15:40:00.629858+00 2025-12-15 15:40:00.629864+00 product 3 100 491467 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +311 2025-12-15 15:50:00.967673+00 2025-12-15 15:50:00.96768+00 product 3 100 491471 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +312 2025-12-15 16:00:00.818774+00 2025-12-15 16:00:00.818781+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +313 2025-12-15 16:00:01.655177+00 2025-12-15 16:00:01.655183+00 product 3 100 491488 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +314 2025-12-15 16:10:00.620869+00 2025-12-15 16:10:00.620876+00 product 3 100 491488 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +315 2025-12-15 16:20:01.134735+00 2025-12-15 16:20:01.134742+00 product 3 100 491488 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +316 2025-12-15 16:30:00.57471+00 2025-12-15 16:30:00.574716+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +317 2025-12-15 16:40:00.569284+00 2025-12-15 16:40:00.56929+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +318 2025-12-15 16:50:00.547757+00 2025-12-15 16:50:00.547764+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +319 2025-12-15 17:00:00.736549+00 2025-12-15 17:00:00.736555+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +320 2025-12-15 17:10:00.547248+00 2025-12-15 17:10:00.547254+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +321 2025-12-15 17:20:00.559289+00 2025-12-15 17:20:00.559296+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +322 2025-12-15 17:30:00.882426+00 2025-12-15 17:30:00.882433+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +323 2025-12-15 17:40:00.583953+00 2025-12-15 17:40:00.583959+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +324 2025-12-15 17:50:00.744307+00 2025-12-15 17:50:00.744314+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +325 2025-12-15 18:00:00.653834+00 2025-12-15 18:00:00.65384+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +326 2025-12-15 18:10:00.582979+00 2025-12-15 18:10:00.582986+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +327 2025-12-15 18:20:00.567276+00 2025-12-15 18:20:00.567283+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +328 2025-12-15 18:30:00.579309+00 2025-12-15 18:30:00.579316+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +329 2025-12-15 18:40:00.541202+00 2025-12-15 18:40:00.541208+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +330 2025-12-15 18:50:00.531342+00 2025-12-15 18:50:00.531348+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +331 2025-12-15 19:00:00.653952+00 2025-12-15 19:00:00.653958+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +332 2025-12-15 19:10:00.553804+00 2025-12-15 19:10:00.553811+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +333 2025-12-15 19:20:00.559992+00 2025-12-15 19:20:00.559999+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +334 2025-12-15 19:30:00.790438+00 2025-12-15 19:30:00.790444+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +335 2025-12-15 19:40:00.6357+00 2025-12-15 19:40:00.635706+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +336 2025-12-15 19:50:00.595445+00 2025-12-15 19:50:00.595452+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +337 2025-12-15 20:00:00.544583+00 2025-12-15 20:00:00.544589+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +338 2025-12-15 20:10:00.637929+00 2025-12-15 20:10:00.637935+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +339 2025-12-15 20:20:00.699518+00 2025-12-15 20:20:00.699525+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +340 2025-12-15 20:30:00.563146+00 2025-12-15 20:30:00.563153+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +341 2025-12-15 20:40:00.73488+00 2025-12-15 20:40:00.734887+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +342 2025-12-15 20:50:00.623226+00 2025-12-15 20:50:00.623232+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +343 2025-12-15 21:00:01.776146+00 2025-12-15 21:00:01.776152+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +344 2025-12-15 21:00:02.83809+00 2025-12-15 21:00:02.838098+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +345 2025-12-15 21:10:00.715659+00 2025-12-15 21:10:00.715667+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +346 2025-12-15 21:20:00.721758+00 2025-12-15 21:20:00.721765+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +347 2025-12-15 21:30:00.734189+00 2025-12-15 21:30:00.734196+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +348 2025-12-15 21:40:00.72137+00 2025-12-15 21:40:00.721377+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +349 2025-12-15 21:50:00.637613+00 2025-12-15 21:50:00.63762+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +350 2025-12-15 22:00:00.753649+00 2025-12-15 22:00:00.753655+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +351 2025-12-15 22:10:00.612227+00 2025-12-15 22:10:00.612234+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +352 2025-12-15 22:20:00.695002+00 2025-12-15 22:20:00.695009+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +353 2025-12-15 22:30:00.722593+00 2025-12-15 22:30:00.7226+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +354 2025-12-15 22:40:00.637821+00 2025-12-15 22:40:00.637828+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +355 2025-12-15 22:50:00.713686+00 2025-12-15 22:50:00.713693+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +356 2025-12-15 23:00:00.613607+00 2025-12-15 23:00:00.613613+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +357 2025-12-15 23:10:00.723376+00 2025-12-15 23:10:00.723383+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +358 2025-12-15 23:20:00.705725+00 2025-12-15 23:20:00.705732+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +359 2025-12-15 23:30:00.687778+00 2025-12-15 23:30:00.687784+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +360 2025-12-15 23:40:00.700094+00 2025-12-15 23:40:00.7001+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +361 2025-12-15 23:50:00.663406+00 2025-12-15 23:50:00.663413+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +362 2025-12-16 00:00:00.887973+00 2025-12-16 00:00:00.887979+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +363 2025-12-16 00:10:00.637179+00 2025-12-16 00:10:00.637186+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +364 2025-12-16 00:20:00.688355+00 2025-12-16 00:20:00.688363+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +365 2025-12-16 00:30:00.874835+00 2025-12-16 00:30:00.874841+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +366 2025-12-16 00:40:00.710479+00 2025-12-16 00:40:00.710485+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +367 2025-12-16 00:50:00.722278+00 2025-12-16 00:50:00.722285+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +368 2025-12-16 01:00:00.755166+00 2025-12-16 01:00:00.755172+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +369 2025-12-16 01:10:00.716013+00 2025-12-16 01:10:00.716019+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +370 2025-12-16 01:20:00.800129+00 2025-12-16 01:20:00.800136+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +371 2025-12-16 01:30:00.82872+00 2025-12-16 01:30:00.828727+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +372 2025-12-16 01:40:01.224621+00 2025-12-16 01:40:01.224627+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +373 2025-12-16 01:50:00.756371+00 2025-12-16 01:50:00.756378+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +374 2025-12-16 02:00:00.927206+00 2025-12-16 02:00:00.927213+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +375 2025-12-16 02:00:02.067804+00 2025-12-16 02:00:02.067811+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +376 2025-12-16 02:10:00.78862+00 2025-12-16 02:10:00.788627+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +377 2025-12-16 02:20:00.933418+00 2025-12-16 02:20:00.933424+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +378 2025-12-16 02:30:00.783008+00 2025-12-16 02:30:00.783014+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +379 2025-12-16 02:40:00.732755+00 2025-12-16 02:40:00.732762+00 product 3 100 491510 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +380 2025-12-16 02:50:01.342599+00 2025-12-16 02:50:01.342605+00 product 3 100 491520 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +381 2025-12-16 03:00:00.752388+00 2025-12-16 03:00:00.752395+00 product 3 100 491529 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +382 2025-12-16 03:10:00.729944+00 2025-12-16 03:10:00.729951+00 product 3 100 491541 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +383 2025-12-16 03:20:00.896328+00 2025-12-16 03:20:00.896334+00 product 3 100 491541 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +384 2025-12-16 03:30:00.790307+00 2025-12-16 03:30:00.790313+00 product 3 100 491541 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +385 2025-12-16 03:40:00.87952+00 2025-12-16 03:40:00.879527+00 product 3 100 491542 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +386 2025-12-16 03:50:00.956022+00 2025-12-16 03:50:00.956029+00 product 3 100 491542 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +387 2025-12-16 04:00:00.76695+00 2025-12-16 04:00:00.766956+00 product 3 100 491542 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +388 2025-12-16 04:10:00.722688+00 2025-12-16 04:10:00.722695+00 product 3 100 491542 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +389 2025-12-16 04:20:00.70916+00 2025-12-16 04:20:00.709166+00 product 3 100 491542 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +390 2025-12-16 04:30:00.760297+00 2025-12-16 04:30:00.760304+00 product 3 100 491542 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +391 2025-12-16 04:40:00.604963+00 2025-12-16 04:40:00.604969+00 product 3 100 491542 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +392 2025-12-16 04:50:00.811682+00 2025-12-16 04:50:00.811689+00 product 3 100 491542 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +393 2025-12-16 05:00:00.746764+00 2025-12-16 05:00:00.746771+00 product 3 100 491571 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +394 2025-12-16 05:10:00.7781+00 2025-12-16 05:10:00.778107+00 product 3 100 491609 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +395 2025-12-16 05:20:00.72381+00 2025-12-16 05:20:00.723817+00 product 3 100 491679 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +396 2025-12-16 05:30:00.733319+00 2025-12-16 05:30:00.733326+00 product 3 100 491694 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +397 2025-12-16 05:40:00.72514+00 2025-12-16 05:40:00.725146+00 product 3 100 491717 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +398 2025-12-16 05:50:00.853435+00 2025-12-16 05:50:00.853441+00 product 3 100 491727 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +399 2025-12-16 06:00:00.722546+00 2025-12-16 06:00:00.722553+00 product 3 100 491739 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +400 2025-12-16 06:10:00.65312+00 2025-12-16 06:10:00.653126+00 product 3 100 491754 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +401 2025-12-16 06:20:01.364475+00 2025-12-16 06:20:01.364482+00 product 3 100 491793 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +402 2025-12-16 06:30:00.757556+00 2025-12-16 06:30:00.757562+00 product 3 100 491831 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +403 2025-12-16 06:40:00.740333+00 2025-12-16 06:40:00.74034+00 product 3 100 491833 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +404 2025-12-16 06:50:00.683655+00 2025-12-16 06:50:00.683662+00 product 3 100 491834 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +405 2025-12-16 07:00:00.742233+00 2025-12-16 07:00:00.74224+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +406 2025-12-16 07:00:01.495442+00 2025-12-16 07:00:01.495448+00 product 3 100 491834 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +407 2025-12-16 07:10:00.862943+00 2025-12-16 07:10:00.86295+00 product 3 100 491835 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +408 2025-12-16 07:20:00.729853+00 2025-12-16 07:20:00.729858+00 product 3 100 491844 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +409 2025-12-16 07:30:00.880508+00 2025-12-16 07:30:00.880515+00 product 3 100 491853 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +410 2025-12-16 07:40:00.793482+00 2025-12-16 07:40:00.793489+00 product 3 100 491855 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +411 2025-12-16 07:50:00.859407+00 2025-12-16 07:50:00.859413+00 product 3 100 491858 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +412 2025-12-16 08:00:00.785804+00 2025-12-16 08:00:00.78581+00 product 3 100 491869 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +413 2025-12-16 08:10:00.707608+00 2025-12-16 08:10:00.707615+00 product 3 100 491879 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +414 2025-12-16 08:20:00.669151+00 2025-12-16 08:20:00.669157+00 product 3 100 491899 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +415 2025-12-16 08:30:00.733144+00 2025-12-16 08:30:00.73315+00 product 3 100 491907 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +416 2025-12-16 08:40:01.033082+00 2025-12-16 08:40:01.033089+00 product 3 100 491916 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +417 2025-12-16 08:50:00.689529+00 2025-12-16 08:50:00.689539+00 product 3 100 491929 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +418 2025-12-16 09:00:00.826375+00 2025-12-16 09:00:00.826382+00 product 3 100 491941 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +419 2025-12-16 09:10:00.725012+00 2025-12-16 09:10:00.725019+00 product 3 100 491946 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +420 2025-12-16 09:20:00.708285+00 2025-12-16 09:20:00.708291+00 product 3 100 491962 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +421 2025-12-16 09:30:01.249995+00 2025-12-16 09:30:01.250001+00 product 3 100 491975 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +422 2025-12-16 09:40:00.758867+00 2025-12-16 09:40:00.758873+00 product 3 100 492013 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +423 2025-12-16 09:50:00.639225+00 2025-12-16 09:50:00.639232+00 product 3 100 492017 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +424 2025-12-16 10:00:00.909339+00 2025-12-16 10:00:00.909346+00 product 3 100 492029 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +425 2025-12-16 10:10:00.75303+00 2025-12-16 10:10:00.753036+00 product 3 100 492029 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +426 2025-12-16 10:20:00.716962+00 2025-12-16 10:20:00.716971+00 product 3 100 492029 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +427 2025-12-16 10:30:00.815319+00 2025-12-16 10:30:00.815325+00 product 3 100 492029 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +428 2025-12-16 10:40:00.707906+00 2025-12-16 10:40:00.707913+00 product 3 100 492029 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +429 2025-12-16 10:50:00.734049+00 2025-12-16 10:50:00.734056+00 product 3 100 492037 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +430 2025-12-16 11:00:00.588921+00 2025-12-16 11:00:00.588928+00 product 3 100 492049 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +431 2025-12-16 11:10:00.647937+00 2025-12-16 11:10:00.647943+00 product 3 100 492055 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +432 2025-12-16 11:20:00.592548+00 2025-12-16 11:20:00.592554+00 product 3 100 492058 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +433 2025-12-16 11:30:00.618081+00 2025-12-16 11:30:00.618088+00 product 3 100 492066 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +434 2025-12-16 11:40:00.600416+00 2025-12-16 11:40:00.600423+00 product 3 100 492076 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +435 2025-12-16 11:50:00.644304+00 2025-12-16 11:50:00.644311+00 product 3 100 492091 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +436 2025-12-16 12:00:00.729725+00 2025-12-16 12:00:00.729731+00 product 3 100 492110 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +437 2025-12-16 12:00:01.448323+00 2025-12-16 12:00:01.448331+00 customer 3 100 1849 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +438 2025-12-16 12:10:00.577585+00 2025-12-16 12:10:00.577592+00 product 3 100 492125 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +439 2025-12-16 12:20:00.620022+00 2025-12-16 12:20:00.620029+00 product 3 100 492141 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +440 2025-12-16 12:30:00.621513+00 2025-12-16 12:30:00.621519+00 product 3 100 492181 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +441 2025-12-16 12:40:00.611141+00 2025-12-16 12:40:00.611147+00 product 3 100 492208 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +442 2025-12-16 12:50:00.603916+00 2025-12-16 12:50:00.603923+00 product 3 100 492247 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +443 2025-12-16 13:00:00.635184+00 2025-12-16 13:00:00.635191+00 product 3 100 492265 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +444 2025-12-16 13:10:00.641405+00 2025-12-16 13:10:00.641412+00 product 3 100 492314 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +445 2025-12-16 13:20:00.568735+00 2025-12-16 13:20:00.568742+00 product 3 100 492356 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +446 2025-12-16 13:30:00.614874+00 2025-12-16 13:30:00.61488+00 product 3 100 492376 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +447 2025-12-16 13:40:00.535136+00 2025-12-16 13:40:00.535142+00 product 3 100 492400 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +448 2025-12-16 13:50:00.552986+00 2025-12-16 13:50:00.552993+00 product 3 100 492428 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +449 2025-12-16 14:00:00.699202+00 2025-12-16 14:00:00.699209+00 product 3 100 492447 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +450 2025-12-16 14:10:00.802261+00 2025-12-16 14:10:00.80227+00 product 3 100 492460 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +451 2025-12-16 14:20:00.665596+00 2025-12-16 14:20:00.665602+00 product 3 100 492483 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +452 2025-12-16 14:30:00.693092+00 2025-12-16 14:30:00.693099+00 product 3 100 492507 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +453 2025-12-16 14:40:00.629016+00 2025-12-16 14:40:00.629022+00 product 3 100 492550 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +454 2025-12-16 14:50:00.597795+00 2025-12-16 14:50:00.597801+00 product 3 100 492575 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +455 2025-12-16 15:00:00.652714+00 2025-12-16 15:00:00.652721+00 product 3 100 492601 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +456 2025-12-16 15:10:00.570385+00 2025-12-16 15:10:00.570392+00 product 3 100 492644 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +457 2025-12-16 15:20:00.566376+00 2025-12-16 15:20:00.566383+00 product 3 100 492651 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +458 2025-12-16 15:30:00.614247+00 2025-12-16 15:30:00.614254+00 product 3 100 492651 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +459 2025-12-16 15:40:00.588133+00 2025-12-16 15:40:00.58814+00 product 3 100 492653 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +460 2025-12-16 15:50:00.55892+00 2025-12-16 15:50:00.558931+00 product 3 100 492654 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +461 2025-12-16 16:00:00.917814+00 2025-12-16 16:00:00.91782+00 customer 3 100 1849 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +462 2025-12-16 16:00:02.820854+00 2025-12-16 16:00:02.820861+00 product 3 100 492656 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +463 2025-12-16 16:10:00.674194+00 2025-12-16 16:10:00.6742+00 product 3 100 492658 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +464 2025-12-16 16:20:00.627595+00 2025-12-16 16:20:00.627601+00 product 3 100 492658 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +465 2025-12-16 16:30:00.707288+00 2025-12-16 16:30:00.707294+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +466 2025-12-16 16:40:00.97927+00 2025-12-16 16:40:00.979276+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +467 2025-12-16 16:50:00.689072+00 2025-12-16 16:50:00.689081+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +468 2025-12-16 17:00:00.61432+00 2025-12-16 17:00:00.614327+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +469 2025-12-16 17:10:00.626793+00 2025-12-16 17:10:00.626805+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +470 2025-12-16 17:20:00.56818+00 2025-12-16 17:20:00.568187+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +471 2025-12-16 17:30:00.63886+00 2025-12-16 17:30:00.638866+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +472 2025-12-16 17:40:00.533887+00 2025-12-16 17:40:00.533894+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +473 2025-12-16 17:50:00.640913+00 2025-12-16 17:50:00.64092+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +474 2025-12-16 18:00:00.649603+00 2025-12-16 18:00:00.649609+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +475 2025-12-16 18:10:00.792361+00 2025-12-16 18:10:00.792367+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +476 2025-12-16 18:20:00.572662+00 2025-12-16 18:20:00.57267+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +477 2025-12-16 18:30:00.565926+00 2025-12-16 18:30:00.565933+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +478 2025-12-16 18:40:00.541231+00 2025-12-16 18:40:00.541237+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +479 2025-12-16 18:50:00.557907+00 2025-12-16 18:50:00.557913+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +480 2025-12-16 19:00:01.353888+00 2025-12-16 19:00:01.353896+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +481 2025-12-16 19:10:00.577028+00 2025-12-16 19:10:00.577035+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +482 2025-12-16 19:20:00.678337+00 2025-12-16 19:20:00.678344+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +483 2025-12-16 19:30:00.637085+00 2025-12-16 19:30:00.63709+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +484 2025-12-16 19:40:00.726616+00 2025-12-16 19:40:00.726622+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +485 2025-12-16 19:50:00.603114+00 2025-12-16 19:50:00.603121+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +486 2025-12-16 20:00:00.702027+00 2025-12-16 20:00:00.702034+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +487 2025-12-16 20:10:00.567412+00 2025-12-16 20:10:00.567418+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +488 2025-12-16 20:20:00.711537+00 2025-12-16 20:20:00.711544+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +489 2025-12-16 20:30:00.613492+00 2025-12-16 20:30:00.613499+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +490 2025-12-16 20:40:00.685782+00 2025-12-16 20:40:00.685789+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +491 2025-12-16 20:50:00.662225+00 2025-12-16 20:50:00.662231+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +492 2025-12-16 21:00:00.703594+00 2025-12-16 21:00:00.703601+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +493 2025-12-16 21:00:02.477212+00 2025-12-16 21:00:02.477219+00 customer 3 100 1849 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +494 2025-12-16 21:10:00.703013+00 2025-12-16 21:10:00.703019+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +495 2025-12-16 21:20:00.745527+00 2025-12-16 21:20:00.745534+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +496 2025-12-16 21:30:00.620385+00 2025-12-16 21:30:00.620392+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +497 2025-12-16 21:40:00.666448+00 2025-12-16 21:40:00.666455+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +498 2025-12-16 21:50:00.618569+00 2025-12-16 21:50:00.618576+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +499 2025-12-16 22:00:00.605615+00 2025-12-16 22:00:00.605621+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +500 2025-12-16 22:10:00.682301+00 2025-12-16 22:10:00.682309+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +501 2025-12-16 22:20:00.734953+00 2025-12-16 22:20:00.734959+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +502 2025-12-16 22:30:00.702647+00 2025-12-16 22:30:00.702653+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +503 2025-12-16 22:40:00.702527+00 2025-12-16 22:40:00.702534+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +504 2025-12-16 22:50:00.64118+00 2025-12-16 22:50:00.641186+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +505 2025-12-16 23:00:00.679648+00 2025-12-16 23:00:00.67966+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +506 2025-12-16 23:10:00.693898+00 2025-12-16 23:10:00.693904+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +507 2025-12-16 23:20:00.689551+00 2025-12-16 23:20:00.689558+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +508 2025-12-16 23:30:00.614353+00 2025-12-16 23:30:00.614359+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +509 2025-12-16 23:40:00.637214+00 2025-12-16 23:40:00.63722+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +510 2025-12-16 23:50:00.630838+00 2025-12-16 23:50:00.630844+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +511 2025-12-17 00:00:00.625324+00 2025-12-17 00:00:00.62533+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +512 2025-12-17 00:10:00.881695+00 2025-12-17 00:10:00.881702+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +513 2025-12-17 00:20:00.653962+00 2025-12-17 00:20:00.653968+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +514 2025-12-17 00:30:00.847022+00 2025-12-17 00:30:00.847029+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +515 2025-12-17 00:40:00.787968+00 2025-12-17 00:40:00.787974+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +516 2025-12-17 00:50:00.695318+00 2025-12-17 00:50:00.695325+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +517 2025-12-17 01:00:00.694122+00 2025-12-17 01:00:00.694128+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +518 2025-12-17 01:10:00.849109+00 2025-12-17 01:10:00.849116+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +519 2025-12-17 01:20:00.768782+00 2025-12-17 01:20:00.768788+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +520 2025-12-17 01:30:00.750514+00 2025-12-17 01:30:00.750521+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +521 2025-12-17 01:40:00.766845+00 2025-12-17 01:40:00.766852+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +522 2025-12-17 01:50:05.459746+00 2025-12-17 01:50:05.459753+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +523 2025-12-17 02:00:00.858976+00 2025-12-17 02:00:00.858982+00 customer 3 100 1849 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan +524 2025-12-17 02:00:01.667635+00 2025-12-17 02:00:01.667643+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +525 2025-12-17 02:10:00.681298+00 2025-12-17 02:10:00.681305+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +526 2025-12-17 02:20:00.768634+00 2025-12-17 02:20:00.768641+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +527 2025-12-17 02:30:02.029035+00 2025-12-17 02:30:02.029042+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +528 2025-12-17 02:40:00.855154+00 2025-12-17 02:40:00.855161+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +529 2025-12-17 02:50:00.833661+00 2025-12-17 02:50:00.833667+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +530 2025-12-17 03:00:00.725796+00 2025-12-17 03:00:00.725802+00 product 3 100 492659 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +531 2025-12-17 03:20:03.608435+00 2025-12-17 03:20:03.608442+00 product 3 100 492667 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +532 2025-12-17 03:40:00.841458+00 2025-12-17 03:40:00.841467+00 product 3 100 492680 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +533 2025-12-17 03:50:00.751523+00 2025-12-17 03:50:00.751535+00 product 3 100 492689 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +534 2025-12-17 04:00:00.739749+00 2025-12-17 04:00:00.739755+00 product 3 100 492689 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +535 2025-12-17 04:10:00.692783+00 2025-12-17 04:10:00.692794+00 product 3 100 492689 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +536 2025-12-17 04:20:00.698257+00 2025-12-17 04:20:00.698264+00 product 3 100 492689 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +537 2025-12-17 04:30:00.7119+00 2025-12-17 04:30:00.711908+00 product 3 100 492689 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +538 2025-12-17 04:40:00.770993+00 2025-12-17 04:40:00.770999+00 product 3 100 492689 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +539 2025-12-17 04:50:00.594988+00 2025-12-17 04:50:00.594994+00 product 3 100 492706 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +540 2025-12-17 05:00:00.651588+00 2025-12-17 05:00:00.651595+00 product 3 100 492721 6 2024-08-15 06:37:48+00 ac01561e-fec9-41ba-aab9-9c1276675e12 asc scan +541 2025-12-17 05:02:44.035651+00 2025-12-17 05:02:44.035657+00 customer 5 100 1851 200 2024-07-08 10:04:07+00 365a9f1a-b5ce-45f9-8052-0b6ce957ef89 asc scan +542 2025-12-17 05:05:00.723719+00 2025-12-17 05:05:00.723723+00 customer 7 100 1851 200 2024-08-23 11:10:43+00 50425e68-8772-4483-8c6d-087661397f96 asc scan +543 2025-12-17 05:10:00.960675+00 2025-12-17 05:10:00.960678+00 product 5 100 492727 199 2024-08-15 06:38:05+00 98646a5f-8d90-43fa-9957-698095cba57d asc scan +544 2025-12-17 05:10:01.683622+00 2025-12-17 05:10:01.683627+00 customer 9 100 1851 200 2025-04-07 11:05:12+00 1f1a416c-3c6e-4bd1-ba82-593722a94e7f asc scan +545 2025-12-17 05:15:00.685629+00 2025-12-17 05:15:00.685633+00 customer 11 100 1851 200 2025-08-20 03:28:34+00 7d80359e-3b49-4925-9087-e867900c5fa4 asc scan +546 2025-12-17 05:20:00.645123+00 2025-12-17 05:20:00.645126+00 customer 13 100 1851 200 2025-08-20 03:31:05+00 299488ab-b24b-4f40-9086-1fde75a6e25b asc scan +547 2025-12-17 05:20:01.775005+00 2025-12-17 05:20:01.775008+00 product 7 100 492727 200 2024-08-15 06:38:30+00 bbcaa767-4f32-45f8-858b-6f5634f6c8e1 asc scan +548 2025-12-17 05:25:00.68143+00 2025-12-17 05:25:00.681433+00 customer 15 100 1851 200 2025-08-20 03:32:15+00 0a667134-8557-4e41-a26f-7834c69248dd asc scan +549 2025-12-17 05:30:00.997913+00 2025-12-17 05:30:00.997916+00 product 9 100 492767 200 2024-08-15 06:39:05+00 a8156a3e-13d3-431d-a395-b688eb66d6d6 asc scan +550 2025-12-17 05:30:01.642558+00 2025-12-17 05:30:01.642561+00 customer 17 100 1851 200 2025-08-20 03:33:16+00 cc8097b9-9e08-4579-99da-0e4f865ed885 asc scan +551 2025-12-17 05:35:00.577146+00 2025-12-17 05:35:00.577153+00 customer 19 100 1851 43 2025-10-27 09:44:58+00 8768cc6b-86a0-4fee-b96a-946cafccfd7f asc scan +552 2025-12-17 05:40:00.935831+00 2025-12-17 05:40:00.935834+00 product 11 100 492768 200 2024-08-15 06:39:25+00 0cd84cbe-47ed-4b70-8dfd-91568e3bccea asc scan +553 2025-12-17 05:40:01.210283+00 2025-12-17 05:40:01.210286+00 customer 19 100 1851 9 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +554 2025-12-17 05:45:00.234696+00 2025-12-17 05:45:00.234708+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +555 2025-12-17 05:50:00.228584+00 2025-12-17 05:50:00.228596+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +556 2025-12-17 05:50:01.205268+00 2025-12-17 05:50:01.205276+00 product 13 100 492768 200 2024-08-15 06:39:46+00 527e17a0-045d-422a-9006-f56eae30260d asc scan +557 2025-12-17 05:55:00.23938+00 2025-12-17 05:55:00.239392+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +558 2025-12-17 06:00:00.981695+00 2025-12-17 06:00:00.981699+00 product 15 100 492768 200 2024-08-15 06:40:07+00 4d1792e9-37ef-429a-a69c-ba26d62678e3 asc scan +559 2025-12-17 06:00:01.237582+00 2025-12-17 06:00:01.237594+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +560 2025-12-17 06:05:00.230369+00 2025-12-17 06:05:00.230382+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +561 2025-12-17 06:10:00.232664+00 2025-12-17 06:10:00.232676+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +562 2025-12-17 06:10:01.268617+00 2025-12-17 06:10:01.268621+00 product 17 100 492808 200 2024-08-15 06:40:25+00 f2f5e1b8-78ee-42c1-8122-a029ee0fcfb1 asc scan +563 2025-12-17 06:15:01.746995+00 2025-12-17 06:15:01.747003+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +564 2025-12-17 06:20:00.962157+00 2025-12-17 06:20:00.962163+00 product 19 100 492821 200 2024-08-15 06:40:42+00 f710d8fa-6d07-4eda-a0d7-2a41aa42cadf asc scan +565 2025-12-17 06:20:01.213432+00 2025-12-17 06:20:01.213444+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +566 2025-12-17 06:25:00.217845+00 2025-12-17 06:25:00.217856+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +567 2025-12-17 06:30:00.328934+00 2025-12-17 06:30:00.328946+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +568 2025-12-17 06:30:01.403395+00 2025-12-17 06:30:01.403399+00 product 21 100 492827 200 2024-08-15 06:41:00+00 800de78b-874d-4f62-a547-0d5e9e314900 asc scan +569 2025-12-17 06:35:00.600642+00 2025-12-17 06:35:00.600653+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +570 2025-12-17 06:40:01.725979+00 2025-12-17 06:40:01.725983+00 product 23 100 492829 200 2024-08-15 06:41:18+00 7b6c8dc7-2045-4216-b7d9-2257099067e9 asc scan +571 2025-12-17 06:40:01.965848+00 2025-12-17 06:40:01.96586+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +572 2025-12-17 06:45:00.220204+00 2025-12-17 06:45:00.220215+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +573 2025-12-17 06:50:01.007161+00 2025-12-17 06:50:01.007165+00 product 25 100 492841 200 2024-08-15 06:41:37+00 35c67276-9bde-43e7-8da5-c3d1424858a4 asc scan +574 2025-12-17 06:50:01.245946+00 2025-12-17 06:50:01.245957+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +575 2025-12-17 06:55:00.382098+00 2025-12-17 06:55:00.382108+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +576 2025-12-17 07:00:01.204051+00 2025-12-17 07:00:01.204055+00 product 27 100 492853 200 2024-08-15 06:41:57+00 1f15a347-4a68-4d0d-8678-d7316635f788 asc scan +577 2025-12-17 07:00:01.444881+00 2025-12-17 07:00:01.444894+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +578 2025-12-17 07:05:01.174998+00 2025-12-17 07:05:01.17501+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +579 2025-12-17 07:10:01.033695+00 2025-12-17 07:10:01.033706+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +580 2025-12-17 07:10:02.765677+00 2025-12-17 07:10:02.765684+00 product 29 100 492869 200 2024-08-15 06:42:14+00 6aeec48d-f972-45b4-9cbc-e37fde883518 asc scan +581 2025-12-17 07:15:01.164621+00 2025-12-17 07:15:01.164632+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +582 2025-12-17 07:20:01.347985+00 2025-12-17 07:20:01.347988+00 product 31 100 492872 200 2024-08-15 06:42:35+00 cd9ad2dd-570e-4ed3-854e-d60e48829a73 asc scan +583 2025-12-17 07:20:02.463987+00 2025-12-17 07:20:02.463998+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +584 2025-12-17 07:25:00.283586+00 2025-12-17 07:25:00.283598+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +585 2025-12-17 07:30:01.005373+00 2025-12-17 07:30:01.005376+00 product 33 100 492893 199 2024-08-15 06:42:57+00 d2dd5e0b-f9d9-43a9-9f2e-3d25e42a3c26 asc scan +586 2025-12-17 07:30:01.251318+00 2025-12-17 07:30:01.251329+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +587 2025-12-17 07:35:00.236822+00 2025-12-17 07:35:00.236834+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +588 2025-12-17 07:40:01.040635+00 2025-12-17 07:40:01.040639+00 product 35 100 492915 200 2024-08-15 06:43:17+00 2ec106e3-e1ab-40c2-9c0c-f9b3f2a9e600 asc scan +589 2025-12-17 07:40:01.290118+00 2025-12-17 07:40:01.29013+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +590 2025-12-17 07:45:00.274071+00 2025-12-17 07:45:00.274082+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +591 2025-12-17 07:50:00.211033+00 2025-12-17 07:50:00.211044+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +592 2025-12-17 07:50:01.324909+00 2025-12-17 07:50:01.324912+00 product 37 100 492941 200 2024-08-15 06:43:30+00 98cd1f13-01c5-40a2-910b-0bd2fbddb0f2 asc scan +593 2025-12-17 07:55:00.275525+00 2025-12-17 07:55:00.275537+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +594 2025-12-17 08:00:01.11156+00 2025-12-17 08:00:01.111567+00 product 39 100 492945 200 2024-08-15 06:43:52+00 46b5228c-437d-4564-924c-af80117271bf asc scan +595 2025-12-17 08:00:01.395556+00 2025-12-17 08:00:01.395572+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +596 2025-12-17 08:05:00.245959+00 2025-12-17 08:05:00.245968+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +597 2025-12-17 08:10:01.161745+00 2025-12-17 08:10:01.161748+00 product 41 100 492945 200 2024-08-15 06:44:13+00 992ddc9e-05a7-4e22-a9c1-c490d9a91ef2 asc scan +598 2025-12-17 08:10:01.451054+00 2025-12-17 08:10:01.451066+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +599 2025-12-17 08:15:00.238168+00 2025-12-17 08:15:00.23818+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +600 2025-12-17 08:20:00.299994+00 2025-12-17 08:20:00.300008+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +601 2025-12-17 08:20:01.84376+00 2025-12-17 08:20:01.843769+00 product 43 100 492946 200 2024-08-15 06:44:34+00 3098908b-3682-486a-9164-5c02529e0621 asc scan +602 2025-12-17 08:25:00.225399+00 2025-12-17 08:25:00.225411+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +603 2025-12-17 08:30:01.061901+00 2025-12-17 08:30:01.061905+00 product 45 100 492958 200 2024-08-15 06:44:51+00 8c9656af-54e3-47f3-b1cb-0db886558f31 asc scan +604 2025-12-17 08:30:01.394135+00 2025-12-17 08:30:01.394145+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +605 2025-12-17 08:35:00.226698+00 2025-12-17 08:35:00.22671+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +606 2025-12-17 08:40:00.233351+00 2025-12-17 08:40:00.233363+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +607 2025-12-17 08:40:01.375678+00 2025-12-17 08:40:01.375683+00 product 47 100 492972 199 2024-08-15 06:45:09+00 086ecde3-cf75-483d-94fa-e1709536a7da asc scan +608 2025-12-17 08:45:00.233247+00 2025-12-17 08:45:00.233259+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +609 2025-12-17 08:50:01.21459+00 2025-12-17 08:50:01.214594+00 product 49 100 492992 200 2024-08-15 06:45:28+00 70c67bb1-85c7-4e5a-bd99-c7b653c79cfc asc scan +610 2025-12-17 08:50:01.447148+00 2025-12-17 08:50:01.447159+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +611 2025-12-17 08:55:00.273759+00 2025-12-17 08:55:00.27377+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +612 2025-12-17 09:00:01.094803+00 2025-12-17 09:00:01.094807+00 product 51 100 492997 200 2024-08-15 06:45:45+00 88b30d61-1a13-4e1d-8cf1-0b5bfffc1468 asc scan +613 2025-12-17 09:00:01.350441+00 2025-12-17 09:00:01.350453+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +614 2025-12-17 09:05:00.226094+00 2025-12-17 09:05:00.226105+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +615 2025-12-17 09:10:01.143296+00 2025-12-17 09:10:01.1433+00 product 53 100 493006 200 2024-08-15 06:46:07+00 dfcd83bc-0074-47a1-bdd8-0c74811ad167 asc scan +616 2025-12-17 09:10:01.410353+00 2025-12-17 09:10:01.410365+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +617 2025-12-17 09:15:00.246366+00 2025-12-17 09:15:00.246377+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +618 2025-12-17 09:20:00.220231+00 2025-12-17 09:20:00.220242+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +619 2025-12-17 09:20:01.397671+00 2025-12-17 09:20:01.397675+00 product 55 100 493007 200 2024-08-15 06:46:27+00 50fa8d8e-1105-4d19-848c-14ace4e34cd9 asc scan +620 2025-12-17 09:25:00.306018+00 2025-12-17 09:25:00.306026+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +621 2025-12-17 09:30:01.130584+00 2025-12-17 09:30:01.130588+00 product 57 100 493026 200 2024-08-15 06:46:49+00 0fb86b9c-eb53-4804-8e60-2ea8548ab243 asc scan +622 2025-12-17 09:30:01.357934+00 2025-12-17 09:30:01.357941+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +623 2025-12-17 09:35:00.244012+00 2025-12-17 09:35:00.244019+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +624 2025-12-17 09:40:01.137727+00 2025-12-17 09:40:01.137731+00 product 59 100 493042 200 2024-08-15 06:47:06+00 80d1aba2-4ee0-4136-bbd8-befe7ae984bf asc scan +625 2025-12-17 09:40:01.36659+00 2025-12-17 09:40:01.366601+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +626 2025-12-17 09:45:00.225465+00 2025-12-17 09:45:00.225476+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +627 2025-12-17 09:50:00.255345+00 2025-12-17 09:50:00.255357+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +628 2025-12-17 09:50:01.362812+00 2025-12-17 09:50:01.362816+00 product 61 100 493063 199 2024-08-15 06:47:22+00 d37a1f4d-7c6a-4faa-906c-46a2894966ca asc scan +629 2025-12-17 09:55:00.231597+00 2025-12-17 09:55:00.231611+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +630 2025-12-17 10:00:01.200313+00 2025-12-17 10:00:01.200317+00 product 63 100 493096 200 2024-08-15 06:47:45+00 584bbf52-7e40-4bb9-9ad6-79e764da6744 asc scan +631 2025-12-17 10:00:01.41808+00 2025-12-17 10:00:01.418088+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +632 2025-12-17 10:05:00.238737+00 2025-12-17 10:05:00.238748+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +633 2025-12-17 10:10:01.199528+00 2025-12-17 10:10:01.199532+00 product 65 100 493104 200 2024-08-15 06:48:07+00 51ec8930-7baf-4c5f-acb8-1274bdf25182 asc scan +634 2025-12-17 10:10:01.427349+00 2025-12-17 10:10:01.42736+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +635 2025-12-17 10:15:00.226604+00 2025-12-17 10:15:00.226615+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +636 2025-12-17 10:20:01.135319+00 2025-12-17 10:20:01.135323+00 product 67 100 493104 199 2024-08-15 06:48:30+00 509b45f4-3596-438b-a6ce-f584bc222c27 asc scan +637 2025-12-17 10:20:01.373179+00 2025-12-17 10:20:01.373191+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +638 2025-12-17 10:25:00.23696+00 2025-12-17 10:25:00.236968+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +639 2025-12-17 10:30:00.228127+00 2025-12-17 10:30:00.228135+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +640 2025-12-17 10:30:01.334007+00 2025-12-17 10:30:01.33401+00 product 69 100 493104 200 2024-08-15 06:48:55+00 dd9c4370-5568-4a79-ac47-ec842ae1067a asc scan +641 2025-12-17 10:35:00.338109+00 2025-12-17 10:35:00.33812+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +642 2025-12-17 10:40:01.250396+00 2025-12-17 10:40:01.250399+00 product 71 100 493104 200 2024-08-15 06:49:15+00 86478c24-3ae1-4d02-8570-6287cb550dc9 asc scan +643 2025-12-17 10:40:01.490247+00 2025-12-17 10:40:01.49026+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +644 2025-12-17 10:45:00.241711+00 2025-12-17 10:45:00.241723+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +645 2025-12-17 10:50:01.240203+00 2025-12-17 10:50:01.240208+00 product 73 100 493111 200 2024-08-15 06:49:34+00 2802dee5-b3b4-47a7-931c-97fd8dd0372a asc scan +646 2025-12-17 10:50:01.47493+00 2025-12-17 10:50:01.474942+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +647 2025-12-17 10:55:00.230055+00 2025-12-17 10:55:00.230063+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +648 2025-12-17 11:00:01.175305+00 2025-12-17 11:00:01.175308+00 product 75 100 493127 200 2024-08-15 06:49:52+00 7d3ff676-34bd-4d28-86ad-812888a7b42d asc scan +649 2025-12-17 11:00:01.594432+00 2025-12-17 11:00:01.594443+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +650 2025-12-17 11:05:00.226816+00 2025-12-17 11:05:00.226827+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +651 2025-12-17 11:10:00.210802+00 2025-12-17 11:10:00.210814+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +652 2025-12-17 11:10:01.47652+00 2025-12-17 11:10:01.476525+00 product 77 100 493134 200 2024-08-15 06:50:11+00 641925a0-1cf0-44c9-b053-69d31894a466 asc scan +653 2025-12-17 11:15:00.210435+00 2025-12-17 11:15:00.210446+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +654 2025-12-17 11:20:01.194285+00 2025-12-17 11:20:01.194288+00 product 79 100 493135 200 2024-08-15 06:50:33+00 9a3e1ede-766a-415f-bd35-402b3e7d63c7 asc scan +655 2025-12-17 11:20:01.430264+00 2025-12-17 11:20:01.430276+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +656 2025-12-17 11:25:00.266645+00 2025-12-17 11:25:00.266657+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +657 2025-12-17 11:30:01.19804+00 2025-12-17 11:30:01.198044+00 product 81 100 493192 200 2024-08-15 06:50:54+00 fb1b541e-d96c-4bbe-8056-1fb2e5e71ce6 asc scan +658 2025-12-17 11:30:01.447381+00 2025-12-17 11:30:01.447392+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +659 2025-12-17 11:35:00.211695+00 2025-12-17 11:35:00.211704+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +660 2025-12-17 11:40:00.219836+00 2025-12-17 11:40:00.219847+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +661 2025-12-17 11:40:01.425753+00 2025-12-17 11:40:01.425758+00 product 83 100 493229 200 2024-08-15 06:51:15+00 15ad89db-2e21-4956-974b-10ecb08310b3 asc scan +662 2025-12-17 11:45:00.305071+00 2025-12-17 11:45:00.305078+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +663 2025-12-17 11:50:01.178019+00 2025-12-17 11:50:01.178023+00 product 85 100 493237 200 2024-08-15 06:51:42+00 ccbdb76f-3c2d-43e3-892b-2d6333a735bc asc scan +664 2025-12-17 11:50:01.427804+00 2025-12-17 11:50:01.427811+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +665 2025-12-17 11:55:00.210552+00 2025-12-17 11:55:00.210567+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +666 2025-12-17 12:00:01.199299+00 2025-12-17 12:00:01.199305+00 product 87 100 493246 200 2024-08-15 06:52:05+00 a6fde27c-403e-4fa9-9ed1-9920bbe9a805 asc scan +667 2025-12-17 12:00:01.44387+00 2025-12-17 12:00:01.443882+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +668 2025-12-17 12:05:00.236471+00 2025-12-17 12:05:00.236483+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +669 2025-12-17 12:10:01.170901+00 2025-12-17 12:10:01.170904+00 product 89 100 493267 200 2024-08-15 06:52:30+00 9344c7a6-7b39-4e27-85a3-3e9949af8c30 asc scan +670 2025-12-17 12:10:01.373982+00 2025-12-17 12:10:01.373994+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +671 2025-12-17 12:15:00.213238+00 2025-12-17 12:15:00.213245+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +672 2025-12-17 12:20:00.225842+00 2025-12-17 12:20:00.225854+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +673 2025-12-17 12:20:01.381507+00 2025-12-17 12:20:01.381511+00 product 91 100 493267 200 2024-08-15 06:52:49+00 7598c754-7fd8-4d3a-b024-c7f6c64c75fa asc scan +674 2025-12-17 12:25:00.220202+00 2025-12-17 12:25:00.220214+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +675 2025-12-17 12:30:01.200891+00 2025-12-17 12:30:01.200895+00 product 93 100 493282 200 2024-08-15 06:53:07+00 c909c7de-cfab-4e29-b6e0-5943a71668a5 asc scan +676 2025-12-17 12:30:01.464093+00 2025-12-17 12:30:01.464104+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +677 2025-12-17 12:35:00.207549+00 2025-12-17 12:35:00.20756+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +678 2025-12-17 12:40:01.174406+00 2025-12-17 12:40:01.174413+00 product 95 100 493288 200 2024-08-15 06:53:28+00 1df73999-6489-4b4b-9a41-a1a7916db617 asc scan +679 2025-12-17 12:40:01.584215+00 2025-12-17 12:40:01.584226+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +680 2025-12-17 12:45:00.219172+00 2025-12-17 12:45:00.219179+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +681 2025-12-17 12:50:01.40133+00 2025-12-17 12:50:01.401334+00 product 97 100 493328 200 2024-08-15 06:53:49+00 b09c6140-e01e-4498-81bf-f227dcf7531f asc scan +682 2025-12-17 12:50:01.613787+00 2025-12-17 12:50:01.613799+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +683 2025-12-17 12:55:00.229019+00 2025-12-17 12:55:00.229031+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +684 2025-12-17 13:00:01.216517+00 2025-12-17 13:00:01.216521+00 product 99 100 493356 200 2024-08-15 06:54:09+00 67d09590-15d2-425b-9a5c-c2800b622e29 asc scan +685 2025-12-17 13:00:01.426353+00 2025-12-17 13:00:01.426365+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +686 2025-12-17 13:05:00.574953+00 2025-12-17 13:05:00.574965+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +687 2025-12-17 13:10:00.207327+00 2025-12-17 13:10:00.207339+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +688 2025-12-17 13:10:01.424805+00 2025-12-17 13:10:01.424811+00 product 101 100 493370 200 2024-08-15 06:54:31+00 2e9ba368-fd47-4300-91bd-09586ec83496 asc scan +689 2025-12-17 13:15:00.213479+00 2025-12-17 13:15:00.21349+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +690 2025-12-17 13:20:01.154406+00 2025-12-17 13:20:01.154411+00 product 103 100 493385 200 2024-08-15 06:54:48+00 4e4074e4-db11-4882-8b97-6409677540ba asc scan +691 2025-12-17 13:20:01.35928+00 2025-12-17 13:20:01.359288+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +692 2025-12-17 13:25:00.272388+00 2025-12-17 13:25:00.272398+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +693 2025-12-17 13:30:00.19831+00 2025-12-17 13:30:00.198321+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +694 2025-12-17 13:30:01.374548+00 2025-12-17 13:30:01.374552+00 product 105 100 493406 200 2024-08-15 06:55:07+00 6a0d7d12-9cd9-4320-8bfa-ef0cf305cda4 asc scan +695 2025-12-17 13:35:00.206543+00 2025-12-17 13:35:00.206554+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +696 2025-12-17 13:40:01.16715+00 2025-12-17 13:40:01.167154+00 product 107 100 493422 200 2024-08-15 06:55:29+00 c30867a5-241b-48b2-ae6d-f054b6635af5 asc scan +697 2025-12-17 13:40:01.38224+00 2025-12-17 13:40:01.382252+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +698 2025-12-17 13:45:00.210287+00 2025-12-17 13:45:00.210303+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +699 2025-12-17 13:50:00.205852+00 2025-12-17 13:50:00.205859+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +700 2025-12-17 13:50:02.256955+00 2025-12-17 13:50:02.256958+00 product 109 100 493436 200 2024-08-15 06:55:48+00 bbb3c4e0-cd86-4fd2-82ab-89dfbb7cec7c asc scan +701 2025-12-17 13:55:00.213135+00 2025-12-17 13:55:00.213148+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +702 2025-12-17 14:00:01.258895+00 2025-12-17 14:00:01.258899+00 product 111 100 493452 200 2024-08-15 06:56:11+00 4a441b75-a21f-4a68-8c27-c2d0117b781c asc scan +703 2025-12-17 14:00:01.474999+00 2025-12-17 14:00:01.475011+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +704 2025-12-17 14:05:00.231539+00 2025-12-17 14:05:00.231549+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +705 2025-12-17 14:10:00.207158+00 2025-12-17 14:10:00.20717+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +706 2025-12-17 14:10:01.353303+00 2025-12-17 14:10:01.353307+00 product 113 100 493470 200 2024-08-15 06:56:27+00 a13e2b41-bad3-4e66-ae17-407584c399df asc scan +707 2025-12-17 14:15:00.242718+00 2025-12-17 14:15:00.242731+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +708 2025-12-17 14:20:01.285692+00 2025-12-17 14:20:01.285697+00 product 115 100 493498 200 2024-08-15 06:56:45+00 89972932-f52f-466f-8310-ce24023b6f7f asc scan +709 2025-12-17 14:20:01.51282+00 2025-12-17 14:20:01.512828+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +710 2025-12-17 14:25:00.226724+00 2025-12-17 14:25:00.226737+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +711 2025-12-17 14:30:01.236225+00 2025-12-17 14:30:01.236228+00 product 117 100 493512 200 2024-08-15 06:57:07+00 82a243a5-a103-4c3d-9656-ebb9eb408451 asc scan +712 2025-12-17 14:30:01.448997+00 2025-12-17 14:30:01.449009+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +713 2025-12-17 14:35:00.198636+00 2025-12-17 14:35:00.198646+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +714 2025-12-17 14:40:01.229802+00 2025-12-17 14:40:01.229807+00 product 119 100 493566 200 2024-08-15 06:57:28+00 df1ce5ba-0e41-4c23-8acc-f3facbc5c912 asc scan +715 2025-12-17 14:40:01.422875+00 2025-12-17 14:40:01.422886+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +716 2025-12-17 14:45:00.331681+00 2025-12-17 14:45:00.331689+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +717 2025-12-17 14:50:01.245057+00 2025-12-17 14:50:01.245062+00 product 121 100 493566 200 2024-08-15 06:57:49+00 cd27792e-b954-4fee-af89-f5e7287963a5 asc scan +718 2025-12-17 14:50:01.466663+00 2025-12-17 14:50:01.466675+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +719 2025-12-17 14:55:00.209533+00 2025-12-17 14:55:00.209545+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +720 2025-12-17 15:00:00.224256+00 2025-12-17 15:00:00.224262+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +721 2025-12-17 15:00:01.616094+00 2025-12-17 15:00:01.616097+00 product 123 100 493566 200 2024-08-15 06:58:03+00 40c80f1d-002d-4f70-a990-7871e2772158 asc scan +722 2025-12-17 15:05:00.203493+00 2025-12-17 15:05:00.203505+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +723 2025-12-17 15:10:01.209047+00 2025-12-17 15:10:01.209052+00 product 125 100 493582 200 2024-08-15 06:58:21+00 a3c071bd-f55b-4b1d-8526-68c227e80990 asc scan +724 2025-12-17 15:10:01.440659+00 2025-12-17 15:10:01.440668+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +725 2025-12-17 15:15:00.205064+00 2025-12-17 15:15:00.205076+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +726 2025-12-17 15:20:00.21729+00 2025-12-17 15:20:00.217301+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +727 2025-12-17 15:20:01.505326+00 2025-12-17 15:20:01.505331+00 product 127 100 493582 200 2024-08-15 06:58:41+00 a44c1278-41ed-4232-ba38-c1991931dde4 asc scan +728 2025-12-17 15:25:00.195003+00 2025-12-17 15:25:00.195011+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +729 2025-12-17 15:30:01.33278+00 2025-12-17 15:30:01.332783+00 product 129 100 493582 200 2024-08-15 06:59:02+00 fb00211d-551e-4bb2-85b1-04a9d2a6c5fa asc scan +730 2025-12-17 15:30:01.571711+00 2025-12-17 15:30:01.571721+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +731 2025-12-17 15:35:00.19515+00 2025-12-17 15:35:00.195159+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +732 2025-12-17 15:40:01.27465+00 2025-12-17 15:40:01.274654+00 product 131 100 493582 200 2024-08-15 06:59:21+00 07240983-3af5-456f-bf06-f2ea6df7a1ad asc scan +733 2025-12-17 15:40:01.483413+00 2025-12-17 15:40:01.483424+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +734 2025-12-17 15:45:00.201963+00 2025-12-17 15:45:00.201973+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +735 2025-12-17 15:50:00.205598+00 2025-12-17 15:50:00.205609+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +736 2025-12-17 15:50:01.446058+00 2025-12-17 15:50:01.446062+00 product 133 100 493582 200 2024-08-15 06:59:39+00 a1542a83-ddb7-40b8-a53b-708cc2b28230 asc scan +737 2025-12-17 15:55:00.207412+00 2025-12-17 15:55:00.207423+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +738 2025-12-17 16:00:01.592234+00 2025-12-17 16:00:01.592237+00 product 135 100 493582 200 2024-08-15 07:00:00+00 d31c1ca3-4548-41cd-a129-923528f7ea19 asc scan +739 2025-12-17 16:00:01.86908+00 2025-12-17 16:00:01.869088+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +740 2025-12-17 16:05:00.298158+00 2025-12-17 16:05:00.298169+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +741 2025-12-17 16:10:00.215484+00 2025-12-17 16:10:00.215496+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +742 2025-12-17 16:10:01.488627+00 2025-12-17 16:10:01.488632+00 product 137 100 493582 200 2024-08-15 07:00:19+00 bd9801f1-6162-445b-b995-d04f0f095083 asc scan +743 2025-12-17 16:15:00.212539+00 2025-12-17 16:15:00.212551+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +744 2025-12-17 16:20:01.33488+00 2025-12-17 16:20:01.334884+00 product 139 100 493582 200 2024-08-15 07:00:46+00 169e5313-806a-4f7a-9d79-15daf57f9b82 asc scan +745 2025-12-17 16:20:01.558259+00 2025-12-17 16:20:01.558268+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +746 2025-12-17 16:25:00.209466+00 2025-12-17 16:25:00.209477+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +747 2025-12-17 16:30:01.269091+00 2025-12-17 16:30:01.269097+00 product 141 100 493582 200 2024-08-15 07:01:08+00 ef1f9754-14bb-4e1e-ac84-787d548a3dea asc scan +748 2025-12-17 16:30:01.501549+00 2025-12-17 16:30:01.50156+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +749 2025-12-17 16:35:00.202196+00 2025-12-17 16:35:00.202207+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +750 2025-12-17 16:40:00.218012+00 2025-12-17 16:40:00.21802+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +751 2025-12-17 16:40:01.587506+00 2025-12-17 16:40:01.587509+00 product 143 100 493582 199 2024-08-15 07:01:32+00 8944b112-42dc-4b5e-bec7-e3aa8479741d asc scan +752 2025-12-17 16:45:00.312704+00 2025-12-17 16:45:00.312716+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +753 2025-12-17 16:50:01.397386+00 2025-12-17 16:50:01.39739+00 product 145 100 493582 200 2024-08-15 07:01:59+00 c1853652-65b9-4493-91e4-db3ae16eb763 asc scan +754 2025-12-17 16:50:01.730788+00 2025-12-17 16:50:01.730796+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +755 2025-12-17 16:55:00.256202+00 2025-12-17 16:55:00.256214+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +756 2025-12-17 17:00:01.58756+00 2025-12-17 17:00:01.587568+00 product 147 100 493582 200 2024-08-15 07:02:22+00 9ef63406-04cb-4978-9de2-acdd56eb7ce1 asc scan +757 2025-12-17 17:00:01.820873+00 2025-12-17 17:00:01.820885+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +758 2025-12-17 17:05:00.205924+00 2025-12-17 17:05:00.205936+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +759 2025-12-17 17:10:01.364895+00 2025-12-17 17:10:01.364903+00 product 149 100 493582 200 2024-08-15 07:02:44+00 4acea120-b98e-4985-a27d-eabb9dbc1857 asc scan +760 2025-12-17 17:10:01.567408+00 2025-12-17 17:10:01.56742+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +761 2025-12-17 17:15:00.19309+00 2025-12-17 17:15:00.193102+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +762 2025-12-17 17:20:01.345883+00 2025-12-17 17:20:01.345888+00 product 151 100 493582 200 2024-08-15 07:03:08+00 7fac0932-8bbf-4546-b90e-fc9ae0650c8c asc scan +763 2025-12-17 17:20:01.550239+00 2025-12-17 17:20:01.55025+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +764 2025-12-17 17:25:00.204539+00 2025-12-17 17:25:00.20455+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +765 2025-12-17 17:30:01.352952+00 2025-12-17 17:30:01.352957+00 product 153 100 493582 200 2024-08-15 07:03:32+00 74d36b43-35dc-4507-a019-e6a7b623185d asc scan +766 2025-12-17 17:30:01.574061+00 2025-12-17 17:30:01.574073+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +767 2025-12-17 17:35:00.20216+00 2025-12-17 17:35:00.202168+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +768 2025-12-17 17:40:01.477546+00 2025-12-17 17:40:01.477549+00 product 155 100 493582 200 2024-08-15 07:03:53+00 cb1bedff-d86d-4611-bce1-812bf89edaa8 asc scan +769 2025-12-17 17:40:01.682785+00 2025-12-17 17:40:01.682793+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +770 2025-12-17 17:45:00.216947+00 2025-12-17 17:45:00.216954+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +771 2025-12-17 17:50:01.477841+00 2025-12-17 17:50:01.477845+00 product 157 100 493582 200 2024-08-15 07:04:19+00 84e25f8f-d0d2-4688-bdb3-a01d1cd5b55d asc scan +772 2025-12-17 17:50:01.700516+00 2025-12-17 17:50:01.700527+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +773 2025-12-17 17:55:00.200309+00 2025-12-17 17:55:00.200321+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +774 2025-12-17 18:00:00.200999+00 2025-12-17 18:00:00.201008+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +775 2025-12-17 18:00:01.594045+00 2025-12-17 18:00:01.59405+00 product 159 100 493582 200 2024-08-15 07:04:42+00 54e77bf8-1499-476e-8cb0-592a0b5f2ace asc scan +776 2025-12-17 18:05:00.258543+00 2025-12-17 18:05:00.258554+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +777 2025-12-17 18:10:01.386034+00 2025-12-17 18:10:01.386038+00 product 161 100 493582 200 2024-08-15 07:05:03+00 e9d2327d-6d01-4a22-89d9-c3b9c14ec40c asc scan +778 2025-12-17 18:10:01.584027+00 2025-12-17 18:10:01.584038+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +779 2025-12-17 18:15:00.205623+00 2025-12-17 18:15:00.205635+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +780 2025-12-17 18:20:00.20299+00 2025-12-17 18:20:00.202997+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +781 2025-12-17 18:20:01.608729+00 2025-12-17 18:20:01.608737+00 product 163 100 493582 200 2024-08-15 07:05:28+00 7eb80a0a-cfd8-4158-a21e-925fff9c24a6 asc scan +782 2025-12-17 18:25:00.20541+00 2025-12-17 18:25:00.205421+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +783 2025-12-17 18:30:01.39438+00 2025-12-17 18:30:01.394384+00 product 165 100 493582 200 2024-08-15 07:05:53+00 7c5f9e5c-4b71-4bae-b3fe-fab0769f51aa asc scan +784 2025-12-17 18:30:01.587855+00 2025-12-17 18:30:01.587862+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +785 2025-12-17 18:35:00.209862+00 2025-12-17 18:35:00.20987+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +786 2025-12-17 18:40:00.204786+00 2025-12-17 18:40:00.204797+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +787 2025-12-17 18:40:01.601774+00 2025-12-17 18:40:01.601777+00 product 167 100 493582 200 2024-08-15 07:06:12+00 5a51c6b9-3d13-44f3-bda8-57d47a878cb5 asc scan +788 2025-12-17 18:45:00.214634+00 2025-12-17 18:45:00.214646+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +789 2025-12-17 18:50:01.374004+00 2025-12-17 18:50:01.37401+00 product 169 100 493582 200 2024-08-15 07:06:29+00 18e11dc3-083c-4131-9fae-da951680cbae asc scan +790 2025-12-17 18:50:01.581539+00 2025-12-17 18:50:01.581551+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +791 2025-12-17 18:55:00.29375+00 2025-12-17 18:55:00.293761+00 customer 19 100 1851 0 2025-12-17 03:28:10+00 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 asc scan +\. + + +-- +-- Data for Name: api_mdy_plate_order_staging; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.api_mdy_plate_order_staging (id, created_at, updated_at, mdy_rowid, raw) FROM stdin; +\. + + +-- +-- 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 +64 2025-12-11 09:14:34.364488+00 2025-12-11 09:14:34.364499+00 uploads/2025/12/11/986bb363b99e427bbc9c5d3a9a14d45d.png f image.png 24760 image/png 2 +65 2025-12-13 05:06:35.538784+00 2025-12-13 05:06:35.538792+00 uploads/2025/12/13/7ebdc7ef319e409c8ce874cb255fb6a5.jpg f photo_1765602393544.jpg 101524 image/jpeg 2 +66 2025-12-13 05:09:17.084739+00 2025-12-13 05:09:17.084746+00 uploads/2025/12/13/f0074bf6b82c41c99909895b3f23d2ba.jpg f photo_1765602554969.jpg 93561 image/jpeg 2 +67 2025-12-13 05:09:21.037898+00 2025-12-13 05:09:21.037907+00 uploads/2025/12/13/12b8565eb01e452094f862ccada06ffa.jpg f photo_1765602558754.jpg 93789 image/jpeg 2 +68 2025-12-13 05:09:24.40556+00 2025-12-13 05:09:24.405569+00 uploads/2025/12/13/37bd9bf1dbb74b478133b089a7790396.jpg f photo_1765602562336.jpg 93250 image/jpeg 2 +69 2025-12-13 05:09:29.357956+00 2025-12-13 05:09:29.357964+00 uploads/2025/12/13/524eee85c0c14f7e9277758056145d91.jpg f photo_1765602567340.jpg 93207 image/jpeg 2 +70 2025-12-13 07:15:38.047132+00 2025-12-13 07:15:38.047143+00 uploads/2025/12/13/23bba9618fc743bc94cef715e46abd24.jpg f photo_1765610135178.jpg 546779 image/jpeg 2 +71 2025-12-13 07:15:44.051426+00 2025-12-13 07:15:44.051442+00 uploads/2025/12/13/0ef5df8880ba4abfa69487d2db68e5fe.jpg f photo_1765610141671.jpg 572413 image/jpeg 2 +72 2025-12-13 07:19:42.695406+00 2025-12-13 07:19:42.695415+00 uploads/2025/12/13/9f0474e9bd804ac393fbc900f3e25700.jpg f photo_1765610379908.jpg 135341 image/jpeg 2 +73 2025-12-13 09:43:29.692733+00 2025-12-13 09:43:29.692747+00 uploads/2025/12/13/fde848ede76f45c0b59ece0c987d15f4.jpg f photo_1765619006031.jpg 280173 image/jpeg 2 +74 2025-12-13 09:43:41.979923+00 2025-12-13 09:43:41.979938+00 uploads/2025/12/13/b1770f724d684c2087a8e63c45d6764b.jpg f photo_1765619018278.jpg 308923 image/jpeg 2 +75 2025-12-13 09:43:47.566917+00 2025-12-13 09:43:47.566927+00 uploads/2025/12/13/47cc0f01e73c4479bf81bd5d721659ef.jpg f photo_1765619024253.jpg 283697 image/jpeg 2 +76 2025-12-13 09:43:50.960852+00 2025-12-13 09:43:50.960869+00 uploads/2025/12/13/5dc25fa5a2244600899bf323262dc8f6.jpg f photo_1765619027563.jpg 257831 image/jpeg 2 +77 2025-12-13 09:46:18.632216+00 2025-12-13 09:46:18.632227+00 uploads/2025/12/13/34f32e8bce5f44ae93e322cfe2cddfbb.jpg f photo_1765619168204.jpg 305319 image/jpeg 2 +78 2025-12-13 09:46:20.939636+00 2025-12-13 09:46:20.939646+00 uploads/2025/12/13/440dd15910ee4a04aec5e9f7067564aa.jpg f photo_1765619163139.jpg 305319 image/jpeg 2 +79 2025-12-13 09:46:24.837436+00 2025-12-13 09:46:24.837445+00 uploads/2025/12/13/0edbd42b3b7046459384c4423152374b.jpg f photo_1765619173265.jpg 325088 image/jpeg 2 +80 2025-12-13 09:46:35.264187+00 2025-12-13 09:46:35.264196+00 uploads/2025/12/13/a47edf290a0a46b2b05244a2a604478c.jpg f photo_1765619178578.jpg 310002 image/jpeg 2 +81 2025-12-13 09:46:38.968253+00 2025-12-13 09:46:38.968267+00 uploads/2025/12/13/161cdc35079d49feafaa48aeb18edd09.jpg f photo_1765619188234.jpg 311761 image/jpeg 2 +82 2025-12-13 09:48:29.261905+00 2025-12-13 09:48:29.261914+00 uploads/2025/12/13/7a511cbb52894e3eb95c32700c64f318.jpg f photo_1765619298345.jpg 316959 image/jpeg 2 +83 2025-12-13 11:22:40.248593+00 2025-12-13 11:22:40.248609+00 uploads/2025/12/13/e0070166832248f9819fc652215fd2fd.jpg f photo_1765624956623.jpg 472359 image/jpeg 27 +84 2025-12-15 03:45:50.774469+00 2025-12-15 03:45:50.774486+00 uploads/2025/12/15/8a58e9b800e24901b297bc3eac7261d8.jpg f 张晓鹏2025-12-15.1.jpg 140300 image/jpeg 14 +85 2025-12-15 03:52:20.323119+00 2025-12-15 03:52:20.323129+00 uploads/2025/12/15/851e079955b840f882e17c0c10773fe4.jpg f 张晓鹏2025-12-15.2.jpg 180072 image/jpeg 14 +86 2025-12-15 08:29:54.791218+00 2025-12-15 08:29:54.791228+00 uploads/2025/12/15/296b5a57a95d4e8b9aa15dce3c3c3e0b.png f 周焕光2025-12-15.1.png 1096558 image/png 14 +87 2025-12-15 08:33:37.20709+00 2025-12-15 08:33:37.207104+00 uploads/2025/12/15/b7d4c53f852d4cfdb675d1acc27a7efd.png f 周焕光2025-12-15.2.png 807995 image/png 14 +88 2025-12-15 08:33:44.852269+00 2025-12-15 08:33:44.85228+00 uploads/2025/12/15/368cc19f6af54cffab1d84cb77de0a57.png f 周焕光2025-12-15.2 (2).png 1599765 image/png 14 +89 2025-12-15 08:34:35.938889+00 2025-12-15 08:34:35.938902+00 uploads/2025/12/15/93e90d4010db4cc7aafbefef934cefd7.png f 周焕光2025-12-15.3.png 1756504 image/png 14 +90 2025-12-15 08:34:40.814576+00 2025-12-15 08:34:40.814586+00 uploads/2025/12/15/6fcbb036fd2d45e38b19f30383a9cee2.png f 周焕光2025-12-15.3 (2).png 781021 image/png 14 +91 2025-12-15 08:38:05.354185+00 2025-12-15 08:38:05.354197+00 uploads/2025/12/15/18bfb7f1c3434e78ad4ccf22de0289b1.png f 周焕光2025-12-15.4.png 616061 image/png 14 +92 2025-12-15 08:38:08.685023+00 2025-12-15 08:38:08.685035+00 uploads/2025/12/15/f97c8161e8c242119a737a3517b93ca2.png f 周焕光2025-12-15.4.png 616061 image/png 14 +93 2025-12-15 08:38:18.338584+00 2025-12-15 08:38:18.3386+00 uploads/2025/12/15/dae4b5e3402545e49b746fa30aa42ea7.png f 周焕光2025-12-15.4 (2).png 1044345 image/png 14 +94 2025-12-15 08:42:01.844344+00 2025-12-15 08:42:01.844355+00 uploads/2025/12/15/296f4776ce604cfd84a6cb347d8e4b70.png f 周焕光2025-12-15.5.png 1366256 image/png 14 +95 2025-12-15 08:42:02.556476+00 2025-12-15 08:42:02.556488+00 uploads/2025/12/15/45db395d203449f79ab5d7b5061dd8d2.png f 周焕光2025-12-15.5 (2).png 241045 image/png 14 +96 2025-12-15 08:43:58.948355+00 2025-12-15 08:43:58.948365+00 uploads/2025/12/15/7274eca7d001454395d85e4fa65e6917.png f 周焕光2025-12-15.6.png 1446348 image/png 14 +97 2025-12-15 08:44:01.682029+00 2025-12-15 08:44:01.682039+00 uploads/2025/12/15/75f0696f70bb49f899bfc76d9fb95170.png f 周焕光2025-12-15.6 (2).png 767996 image/png 14 +98 2025-12-15 08:45:35.601946+00 2025-12-15 08:45:35.601962+00 uploads/2025/12/15/16161ca653384d1e83e9a7036042848c.png f 周焕光2025-12-15.7.png 630147 image/png 14 +99 2025-12-15 08:45:41.554471+00 2025-12-15 08:45:41.554482+00 uploads/2025/12/15/13c712ab11804e3b8774bbe9ef967208.png f 周焕光2025-12-15.7 (2).png 1266007 image/png 14 +100 2025-12-15 08:46:34.635229+00 2025-12-15 08:46:34.63524+00 uploads/2025/12/15/c0085e3b13f34d299a81a40a53ea9c31.png f 周焕光2025-12-15.8.png 975037 image/png 14 +101 2025-12-15 08:46:38.612239+00 2025-12-15 08:46:38.61225+00 uploads/2025/12/15/6f1c845cb24f413386dd5803170e6661.png f 周焕光2025-12-15.8 (2).png 685571 image/png 14 +102 2025-12-15 08:58:17.570558+00 2025-12-15 08:58:17.570572+00 uploads/2025/12/15/18dd8241b9af4b6486203025bb0169fe.png f 周焕光2025-12-15.9.png 1134358 image/png 14 +103 2025-12-15 08:58:20.518709+00 2025-12-15 08:58:20.518722+00 uploads/2025/12/15/1c0c28c1746445378c57027fd5759da9.png f 周焕光2025-12-15.9 (2).png 767935 image/png 14 +104 2025-12-15 11:53:13.160626+00 2025-12-15 11:53:13.160643+00 uploads/2025/12/15/a62c2bc2f56b418e8111bb51d4ba163e.png f 张晓鹏2025-12-15.3.png 1616860 image/png 14 +105 2025-12-17 08:25:55.863473+00 2025-12-17 08:25:55.863486+00 uploads/2025/12/17/b44a3211e70f4ddeab419c0baebc4801.jpg f 鲁小超2025-12-17.1.jpg 113938 image/jpeg 29 +106 2025-12-17 08:31:19.947777+00 2025-12-17 08:31:19.94779+00 uploads/2025/12/17/4421e29ca90f4405a41efebb04b7a49e.jpg f 鲁小超2025-12-17.2.jpg 124861 image/jpeg 29 +107 2025-12-17 08:32:33.992488+00 2025-12-17 08:32:33.992499+00 uploads/2025/12/17/2470dfbc4ee44780ae5d5b2fddb83fc4.jpg f 鲁小超2025-12-17.2.jpg 124861 image/jpeg 29 +\. + + +-- +-- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.auth_group (id, name) FROM stdin; +2 跟单组 +3 下单组 +4 设计组 +\. + + +-- +-- 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 +435 4 1 +436 4 2 +437 4 3 +438 4 4 +439 4 5 +440 4 6 +441 4 7 +442 4 8 +443 4 9 +444 4 10 +445 4 11 +446 4 12 +447 4 13 +448 4 14 +449 4 15 +450 4 16 +451 4 17 +452 4 18 +453 4 19 +454 4 20 +455 4 21 +456 4 22 +457 4 23 +458 4 24 +459 4 25 +460 4 26 +461 4 27 +462 4 28 +463 4 29 +464 4 30 +465 4 31 +466 4 32 +467 4 33 +468 4 34 +469 4 35 +470 4 36 +471 4 37 +472 4 38 +473 4 39 +474 4 40 +475 4 41 +476 4 42 +477 4 43 +478 4 44 +479 4 45 +480 4 46 +481 4 47 +482 4 48 +483 4 49 +484 4 50 +485 4 51 +486 4 52 +487 4 53 +488 4 54 +489 4 55 +490 4 56 +491 4 57 +492 4 58 +493 4 59 +494 4 60 +495 4 61 +496 4 62 +497 4 63 +498 4 64 +499 4 65 +500 4 66 +501 4 67 +502 4 68 +503 4 69 +504 4 70 +505 4 71 +506 4 72 +507 4 73 +508 4 74 +509 4 75 +510 4 76 +511 4 77 +512 4 78 +513 4 79 +514 4 80 +515 4 81 +516 4 82 +517 4 83 +518 4 84 +519 4 85 +520 4 86 +521 4 87 +522 4 88 +523 4 89 +524 4 90 +525 4 91 +526 4 92 +527 4 93 +528 4 94 +529 4 95 +530 4 96 +531 4 97 +532 4 98 +533 4 99 +534 4 100 +535 4 101 +536 4 102 +537 4 103 +538 4 104 +539 4 105 +540 4 106 +541 4 107 +542 4 108 +543 4 109 +544 4 110 +545 4 111 +546 4 112 +547 4 113 +548 4 114 +549 4 115 +550 4 116 +551 4 117 +552 4 118 +553 4 119 +554 4 120 +555 4 121 +556 4 122 +557 4 123 +558 4 124 +559 4 125 +560 4 126 +561 4 127 +562 4 128 +563 4 129 +564 4 130 +565 4 131 +566 4 132 +567 4 133 +568 4 134 +569 4 135 +570 4 136 +571 4 137 +572 4 138 +573 4 139 +574 4 140 +575 4 141 +576 4 142 +577 4 143 +578 4 144 +579 4 145 +580 4 146 +581 4 147 +582 4 148 +583 4 149 +584 4 150 +585 4 151 +586 4 152 +587 4 153 +588 4 154 +589 4 155 +590 4 156 +591 4 157 +592 4 158 +593 4 159 +594 4 160 +595 4 161 +596 4 162 +597 4 163 +598 4 164 +599 4 165 +600 4 166 +601 4 167 +602 4 168 +603 4 169 +604 4 170 +605 4 171 +606 4 172 +607 4 173 +608 4 174 +609 4 175 +610 4 176 +611 4 177 +612 4 178 +613 4 179 +614 4 180 +615 4 181 +616 4 182 +617 4 183 +618 4 184 +619 4 185 +620 4 186 +621 4 187 +622 4 188 +623 4 189 +624 4 190 +625 4 191 +626 4 192 +627 4 193 +628 4 194 +629 4 195 +630 4 196 +631 4 197 +632 4 198 +633 4 199 +634 4 200 +635 4 201 +636 4 202 +637 4 203 +638 4 204 +639 4 205 +640 4 206 +641 4 207 +642 4 208 +643 4 209 +644 4 210 +645 4 211 +646 4 212 +647 4 213 +648 4 214 +649 4 215 +650 4 216 +651 4 217 +652 4 218 +653 4 219 +654 4 220 +655 4 221 +656 4 222 +657 4 223 +658 4 224 +659 4 225 +660 4 226 +661 4 227 +662 4 228 +663 4 229 +\. + + +-- +-- 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 +222 Can add 销售单与印染明细关联 55 add_salesorderprintingjobrelation +223 Can change 销售单与印染明细关联 55 change_salesorderprintingjobrelation +224 Can delete 销售单与印染明细关联 55 delete_salesorderprintingjobrelation +225 Can view 销售单与印染明细关联 55 view_salesorderprintingjobrelation +226 Can add 印染任务批量推进记录 56 add_printingjobbatchadvancerecord +227 Can change 印染任务批量推进记录 56 change_printingjobbatchadvancerecord +228 Can delete 印染任务批量推进记录 56 delete_printingjobbatchadvancerecord +229 Can view 印染任务批量推进记录 56 view_printingjobbatchadvancerecord +230 Can add 明道云开版暂存 57 add_mdyplateorderstaging +231 Can change 明道云开版暂存 57 change_mdyplateorderstaging +232 Can delete 明道云开版暂存 57 delete_mdyplateorderstaging +233 Can view 明道云开版暂存 57 view_mdyplateorderstaging +\. + + +-- +-- 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; +47 pbkdf2_sha256$1000000$81fCJGJ4eetriVXJ2GiPRF$iQgLbmH9bhnASItwonRqDy2TEfMzNY4oXNT6ZoaEiZc= 2025-12-15 06:03:00+00 f 李兴 17796077643 f t 2025-12-15 05:06:00+00 +38 pbkdf2_sha256$1000000$L7Rvf0lxrxpA0UCxF8t5Pg$FzQP3FTQLko9KHczAbumHWDZ7u77kCV5jRZKJrGBTbA= 2025-12-16 05:32:13.293174+00 f 马锦文 18774480424 f t 2025-12-15 04:56:00+00 +30 pbkdf2_sha256$1000000$nkXO6Ldk4rKFVRHb4A3qMw$ShuhzfIK1voIRSB9wuErN8D9MyhE5ETfwspH5K7Zm/c= 2025-12-15 06:08:32.578253+00 f 沈翰宏 15817101407 f t 2025-12-15 04:52:55.026362+00 +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 +33 pbkdf2_sha256$1000000$iXGUz3SnnvBrYwEqQMRsaC$0sVVXcHH3K5Pw4t0rsv+N7Wufvz9ELI/hsUclzKlvGE= 2025-12-15 11:45:12.012666+00 f 徐煜耀 18819215091 f t 2025-12-15 04:54:00+00 +14 pbkdf2_sha256$1000000$3cXzJtomgVsxYpXsRYq2Wj$8fvB061f7icuhK8H8dj34r/srMH5rYDAMZyL+BrEzTA= 2025-12-17 11:08:56.571824+00 f 陈紫莹 f t 2025-12-04 06:11:00+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 +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 +9 pbkdf2_sha256$1000000$7fHcKnjC9MsFNWvgmYndyZ$CNph1RseTOnvjE+ve3ExLeAms+ovmCF3AUnxqw7Ae34= \N f 丹红 f t 2025-12-04 06:05:00+00 +28 pbkdf2_sha256$1000000$p1Oa2oMJMSHGLKSdKjPNW5$DCkFk+52C1DCttgWfSndTvBObcVy4EtiT4YO3ZmMo20= 2025-12-15 12:48:53.629843+00 f 王中文 18257317991 f t 2025-12-15 04:52:00+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 +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 +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 +24 pbkdf2_sha256$1000000$XRssJtzwzRAZlrwGNfEq2e$GTd0X5T2w2Vk+9gawVJ+BzfKboyNAavNbXEFBPY57FI= \N f test_user_1764836864862_958 测试员工 f t 2025-12-04 08:27:46.316135+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 +45 pbkdf2_sha256$1000000$IKammQyLjfJcbMtHaCwIqz$SUz4rU4BB63uhfbrJ/4AjaAIOw+I5EupVCA0lpS1rx4= 2025-12-15 06:01:00+00 f 秦焌 13430306747 f t 2025-12-15 05:05:00+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 +2 pbkdf2_sha256$1000000$FQEiwQ12oi0PN5Eiy8yBj8$5K56mG8hMRXmQDNAJaeacM1f7ILZ0cF/6Ad6wTI69QA= 2025-12-17 09:28:00.914707+00 f jimi f t 2025-11-18 05:59:00+00 +27 pbkdf2_sha256$1000000$365Ai9plo1kZKO18CKZWYP$HA7DaItbm1Kx/uKXMxN11o5qaooBXXIoSfCRqNxr7GQ= 2025-12-13 11:21:39.503657+00 f ruicai16888 测试 f t 2025-12-13 09:26:38.385023+00 +39 pbkdf2_sha256$1000000$o6fJj5J4l7qESxvOCirL6h$u3Fjx2ekgqOr0lc3oCgVjZMC9AWPewVrw0dieEFrWxE= 2025-12-16 02:18:00.111956+00 f 范明星 15521071458 f t 2025-12-15 04:56:00+00 +32 pbkdf2_sha256$1000000$kqMwZLpyygNlJhoVkpONtm$FYXZfQJcjvG2ACs3x6fKben2wvbYg9pldd0KLNKshLQ= \N f 明参 13066304456 f t 2025-12-15 04:53:00+00 +1 pbkdf2_sha256$1000000$NyR8RyN6CWu3xEJP4rXclZ$vKH5DuApHqxxHaxiWd/b6Ek0BTozUZ+ZaJXcxtfRkiA= 2025-12-17 00:57:36.828955+00 t admin t t 2025-11-18 05:58:19.271303+00 +35 pbkdf2_sha256$1000000$c4f4hj9cCIDerK4x2zUPD1$8kG5Yo42T/FGWQ65M9AjZ/NY6/dZu5B1tW8tMYAy8Zk= 2025-12-16 06:46:37.094851+00 f 赵保棠 18697730350 f t 2025-12-15 04:55:13.157755+00 +67 pbkdf2_sha256$1000000$Ya9brlhafYJjmnPy3Oc9Sq$nsF+kkT4Wsme+rdSdWzJcsB+FNreMCoBS6nCzFqx8Pc= 2025-12-17 03:07:57.335306+00 f 李露 李露 f t 2025-12-17 03:03:48.970391+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 +42 pbkdf2_sha256$1000000$QdbJTsCTdjcejdxDC4iBeD$vrbySzba/+k+g2bEkUKJYQxJlaUueZgbX3jmWIudzYs= 2025-12-17 08:06:09.102928+00 f 杨乐 17872123771 f t 2025-12-15 05:01:00+00 +29 pbkdf2_sha256$1000000$kQ7tBNN4DBalViPi39U545$Ux1C0GV120uVptUsO/yxUphtin15KhtBTVLGk0r9IDc= 2025-12-15 06:35:00+00 f 戴佳冕 18218677806 f t 2025-12-15 04:52:00+00 +34 pbkdf2_sha256$1000000$NZYKzGH7aXAmXZGNIT1UrK$rRSjg9PMCUykpleYsHptR53D5b4o0iIdg93W+442V2U= 2025-12-15 06:18:00+00 f 柯尚雄 19886187951 f t 2025-12-15 04:55:00+00 +36 pbkdf2_sha256$1000000$OCLzFWemVcrQkZ4CfgMu2d$b6g2/JDWruLHAeQRYccr4fAMk+E2NbQyOXXKaWT46OA= 2025-12-15 06:14:00+00 f 任啟洋 18334106374 f t 2025-12-15 04:55:00+00 +37 pbkdf2_sha256$1000000$2GdwqKihY44nVSfVWRv9Gb$9bjflWixAk4yU4+DKE4M66vBhZifqkilEye6k5IMqjg= 2025-12-15 06:40:00+00 f 周丁国 17620876714 f t 2025-12-15 04:55:00+00 +43 pbkdf2_sha256$1000000$zdcSHBBVVcfNvyJ6HiAGR7$Yv+xyK/VOUkhdoLPeK75jgEn73ski6FX79ErmkYrW2Y= 2025-12-15 06:36:05.571636+00 f 陈桂花 18620499805 f t 2025-12-15 05:05:05.239841+00 +44 pbkdf2_sha256$1000000$IcdvcJYaKsySsiUYAspqFh$renOQqdCckYhoD0i4Ubo8ioFsZ35p1sPjQvhjcpIPI8= 2025-12-15 06:42:04.888789+00 f 徐秋云 18689322980 f t 2025-12-15 05:05:30.591867+00 +40 pbkdf2_sha256$1000000$1BBC17bnpjQZPgACESW7Q6$GCNEHx9Vjho2dEvvO1YrF/AI4bTpcAer3DsKFegNQec= 2025-12-15 06:48:00+00 f 陈进 15826351321 f t 2025-12-15 04:56:00+00 +7 pbkdf2_sha256$1000000$gXVjPP0SD9cgTNxOOsTPbG$/dtOlfY+1WsASF/pW+EtompccUEORJMTMyhL9YebZxo= \N f apitest666 f t 2025-11-24 06:16:49.620831+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 +46 pbkdf2_sha256$1000000$TGSBNoQiohwk2n85RJ4Wyy$/zXqkyiDz25Gu4y3NXjLSc0rhn9FJPnAGYrI61VJ0yM= 2025-12-15 07:49:51.991278+00 f 林静 18407129396 f t 2025-12-15 05:06:03.710229+00 +31 pbkdf2_sha256$1000000$xVdQQxjTRHuB85rbzGinHN$FDg1AH8wA4Gbnu19N/Zuzq0R2lUaCyVnccbkXTn693U= 2025-12-15 08:28:57.433742+00 f 谢菁钰 18975997125 f t 2025-12-15 04:53:00+00 +52 pbkdf2_sha256$1000000$qguZAuOuP8FQTCXQODt3x6$Kq34Y+FIG9n8nuMGshGtfbKLzu+Fx+zpZPx+V1KJ+w8= 2025-12-16 02:13:35.121776+00 f 廖智仁 18711387949 f t 2025-12-15 05:07:56.667708+00 +51 pbkdf2_sha256$1000000$0y2479p6NDJ4Dk4zSDfn9V$hCiHfEqJ5qp1qGOFDTobhNqXPNZk9iVlDdRSUaBLW9I= 2025-12-16 03:21:45.234929+00 f 钟永盛 13250208813 f t 2025-12-15 05:07:00+00 +65 pbkdf2_sha256$1000000$BKdLyePYxvg7GFLXQpjHGj$r6th9SIbO0QE657PKv8gYKE5BH2hxnXXHRAzI4WGU9M= 2025-12-16 06:52:50.163149+00 f 夏帅 15217923367 f t 2025-12-15 05:53:00+00 +53 pbkdf2_sha256$1000000$UZIFGSozqvVfXs3b0bUalP$vjxkzqlgSkjQhtRF0zkpNuhXGc/NsUaB82VWS/fXVKw= 2025-12-15 07:47:53.101853+00 f 高万林 17820135077 f t 2025-12-15 05:08:00+00 +66 pbkdf2_sha256$1000000$xGSJWHP8yKVT61NS1w0vXw$U7MwS8fTRGN7rIhhKg6WFcqp/EXhFKPN00Yo4takM3k= 2025-12-15 08:02:53.318762+00 f 陈海 18502084425 f t 2025-12-15 05:54:00+00 +62 pbkdf2_sha256$1000000$AT6GyVSnkAOMCfAxlUx6bI$MNySqoOKHdbfiBnRWjjOliGnlz3ZbIKsiM2qUKcM8YU= 2025-12-15 05:59:00+00 f 吴杰 15170331713 f t 2025-12-15 05:11:00+00 +56 pbkdf2_sha256$1000000$5vkUEbCOVbB1VCe0JdVapU$7gyG4PcH1ImsxCnv4o1es+EDcgaAWU0cKiFmSoBg3+8= 2025-12-15 08:28:59.581237+00 f 熊思晴 13574999921 f t 2025-12-15 05:09:00+00 +50 pbkdf2_sha256$1000000$ly3qHoB5cWsTnnbWF5KeWZ$LwIff42XTdLwXLAYLf8VJgX32YsnAPaJm+2iVhrqbwk= 2025-12-15 05:53:00+00 f 李名彬 18674036273 f t 2025-12-15 05:07:00+00 +49 pbkdf2_sha256$1000000$gT0ZRkQiWnB6zpsPCGtCuB$Syd8uq5NMNYQ7//mjHSwpQHEwXY1HrZ1s89J1MJ4vKg= \N f 夏志明 13377678673 f t 2025-12-15 05:07:00+00 +59 pbkdf2_sha256$1000000$PM76FOhvSxmW62QqQFsV6q$a9wXOS73IuU0X+GILX2FCOgS/wtLIxIzWxiezEJS6rc= 2025-12-15 06:00:00+00 f 雷婷 18376993583 f t 2025-12-15 05:10:00+00 +63 pbkdf2_sha256$1000000$NYkzjXGLD69sMwo2thwAXv$2wwBLGMB2g2CkNxZSXfwXYE8CWvfcnKR8zlwgWyi/FE= 2025-12-15 06:15:00+00 f 覃结珍 15631237370 f t 2025-12-15 05:11:00+00 +60 pbkdf2_sha256$1000000$sXLbBOK0VvI8jsIIb8b2Of$VisslGIczoV7A/IIw+vqjwMJnwLoxQKlsmT5o5NE6H8= 2025-12-15 06:35:00+00 f 陈晓惠 15819599116 f t 2025-12-15 05:10:00+00 +58 pbkdf2_sha256$1000000$Nv5RDvOcAvyCiNpD4T7PKt$rNY+7Y3O7TRn+pyGmhSHd6f+0Ctzu9ZszUglmCxGtLE= 2025-12-15 06:04:00+00 f 陈达城 15889803652 f t 2025-12-15 05:10:00+00 +55 pbkdf2_sha256$1000000$nlgL9Ueawf3B5Li6O686KD$h9jBtZr+hr2RKbGzu5xb08UyANysBr8nyY398hqVECw= 2025-12-15 09:39:29.084812+00 f 邓盛峰 15918642634 f t 2025-12-15 05:09:00+00 +57 pbkdf2_sha256$1000000$df0W7kpNUmEu5e75mafB5n$4FkG+UQ4dzlmTbdeoI0jjWgrlBg7ZnSlmdkkcM1Jac8= 2025-12-15 06:42:00+00 f 夏佳佑 17773984343 f t 2025-12-15 05:09:00+00 +19 pbkdf2_sha256$1000000$r4MzOEUTSt82z1iAuyJV7u$2E6ope6V06oM7XQRCtuMgvhuhwMDeofadB8ifHhoMIM= \N f test_user_1764834638834_409 测试员工 f t 2025-12-04 07:50:40.177367+00 +48 pbkdf2_sha256$1000000$cxOkrKw8ZLClxjak7mFT5F$2AqASMrl3y/UIYPDopjTM6lojSzkolOVCoTIaSPbSGg= 2025-12-15 06:07:00+00 f 谢芳盛 19958760068 f t 2025-12-15 05:06:00+00 +61 pbkdf2_sha256$1000000$ROBW5ek1bPZwLWP9o30giL$C9v9rtvVieUgtQ9iJmx8K/d7/mlz3b84hoDHELGyzGQ= 2025-12-15 06:03:00+00 f 徐佩文 15688226201 f t 2025-12-15 05:11:00+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 +14 32 4 +17 45 4 +20 34 4 +21 31 4 +22 33 4 +23 38 4 +27 42 4 +29 62 4 +30 37 4 +32 50 4 +33 39 4 +34 59 4 +35 29 4 +36 47 4 +38 63 4 +39 55 4 +40 66 4 +42 36 4 +43 28 4 +45 30 4 +51 35 4 +59 43 4 +60 44 4 +62 46 4 +67 52 4 +83 61 4 +101 40 4 +104 53 4 +106 51 4 +107 49 4 +108 56 4 +113 60 4 +115 58 4 +116 57 4 +117 48 4 +119 65 4 +\. + + +-- +-- 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-17 05:25:00.278844+00 2025-12-17 05:25:00.278856+00 1810 H-杜敏 \N \N \N \N 1 \N f6a71a01-ffc9-4a52-a01c-d5e6d045d3d7 t +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.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 +2025-12-17 05:02:43.610543+00 2025-12-17 05:02:43.610559+00 810 彭铁军戴云飞 \N 龙潭 \N \N \N 1 \N e8180ce3-eebc-4278-bfa7-4c57d3ce2f99 t +2025-12-17 05:02:43.612813+00 2025-12-17 05:02:43.612819+00 811 马总 \N 龙潭 \N \N \N 1 \N bbe75199-9d85-4a2f-9f22-11146866ea2e t +2025-12-17 05:02:43.613802+00 2025-12-17 05:02:43.613807+00 812 郭总 \N 龙潭 \N \N \N 1 \N 7b1617eb-42cd-4942-8b92-623db04e1691 t +2025-12-17 05:02:43.614655+00 2025-12-17 05:02:43.614659+00 813 歌斯拉 \N 龙潭 \N \N \N 1 \N 96701063-debf-4cd3-84e5-2b8b68fe54dc t +2025-12-17 05:02:43.615496+00 2025-12-17 05:02:43.6155+00 814 许汉深 \N 龙潭 \N \N \N 1 \N 3c33a170-6e6c-428a-9a12-6bb998d13be5 t +2025-12-17 05:02:43.616381+00 2025-12-17 05:02:43.616385+00 815 黄又文 \N 龙潭 \N \N \N 1 \N 1a3594ed-f04d-46c1-a522-e56d1c13c4f1 t +2025-12-17 05:02:43.61738+00 2025-12-17 05:02:43.617386+00 816 罗珊 \N 龙潭 \N \N \N 1 \N deca509e-efe7-41dd-8ef9-7150f9b652fa t +2025-12-17 05:02:43.618365+00 2025-12-17 05:02:43.61837+00 817 芳辰服饰 \N 龙潭 \N \N \N 1 \N 4e24007b-df6b-408f-9f56-384a757e107a t +2025-12-17 05:02:43.619456+00 2025-12-17 05:02:43.61946+00 818 圣若依 \N 龙潭 \N \N \N 1 \N 8e5f0ffb-7610-4c06-af3b-f365e4d8ad81 t +2025-12-17 05:02:43.62053+00 2025-12-17 05:02:43.620534+00 819 陈思钦 \N 龙潭 \N \N \N 1 \N f2e5cbe0-2292-4af1-97be-6dca3151df9d t +2025-12-17 05:02:43.621633+00 2025-12-17 05:02:43.621637+00 820 密妆服饰 \N 龙潭 \N \N \N 1 \N fa1b0641-a1ec-4c35-aeda-9588cc0f96a5 t +2025-12-17 05:02:43.622733+00 2025-12-17 05:02:43.622737+00 821 轩思服饰 \N 龙潭 \N \N \N 1 \N 1ef5a4f8-de56-44e8-b554-f5a559d4fab2 t +2025-12-17 05:02:43.623887+00 2025-12-17 05:02:43.623892+00 822 蔓莱芙 \N 蔓莱芙 \N \N \N 1 \N 86dc1042-5c4a-4cd9-aa5a-07903ed671d3 t +2025-12-17 05:02:43.625082+00 2025-12-17 05:02:43.625086+00 823 杨芳 \N 龙潭 \N \N \N 1 \N 0a2cba4b-fac3-41b9-954e-feb77d28660c t +2025-12-17 05:02:43.62624+00 2025-12-17 05:02:43.626244+00 824 鸿团服饰 \N 龙潭 \N \N \N 1 \N cdef0296-fed8-45b0-a43b-a8840d5bb703 t +2025-12-17 05:02:43.62732+00 2025-12-17 05:02:43.627324+00 825 鑫仁 \N 龙潭 \N \N \N 1 \N 2b9ab381-7bc9-4d8a-83b6-3775a063aa4a t +2025-12-17 05:02:43.628216+00 2025-12-17 05:02:43.62822+00 826 永成服饰 \N 龙潭 \N \N \N 1 \N 8347f9f9-5f40-49b1-9b9a-b8f4b7c5254b t +2025-12-17 05:02:43.629045+00 2025-12-17 05:02:43.629049+00 827 赤沙李总 \N 龙潭 \N \N \N 1 \N 78eb05ba-62fc-4cd3-8afa-d94df7a06036 t +2025-12-17 05:02:43.629901+00 2025-12-17 05:02:43.629905+00 828 锦润荣森 \N 龙潭 \N \N \N 1 \N ea71f946-5f08-4733-a53b-39f3935cc29a t +2025-12-17 05:02:43.630722+00 2025-12-17 05:02:43.630726+00 829 林森 \N 龙潭 \N \N \N 1 \N e7aed70f-f885-4654-b37a-0d74a4a917b4 t +2025-12-17 05:02:43.631525+00 2025-12-17 05:02:43.63153+00 830 依世家服饰 \N 龙潭 \N \N \N 1 \N ba523721-63a8-400c-a8d2-d03dac0a840b t +2025-12-17 05:02:43.632343+00 2025-12-17 05:02:43.632347+00 831 李家豪 \N 龙潭 \N \N \N 1 \N 31b06c41-b340-44a7-8333-63737da08c06 t +2025-12-17 05:02:43.633125+00 2025-12-17 05:02:43.633129+00 832 彤翔 \N 龙潭 \N \N \N 1 \N 5da0099a-f6a3-46d5-928a-82a4a4665b94 t +2025-12-17 05:02:43.634143+00 2025-12-17 05:02:43.634148+00 833 森盛服饰 \N 龙潭 \N \N \N 1 \N c69bac54-1d99-4c62-afc5-95e04aa7d783 t +2025-12-17 05:02:43.634936+00 2025-12-17 05:02:43.63494+00 834 骏凌服饰 \N 龙潭 \N \N \N 1 \N 11212f99-cbe9-4e6e-aa48-00c42d238a12 t +2025-12-17 05:02:43.635715+00 2025-12-17 05:02:43.635719+00 835 赖生 \N 龙潭 \N \N \N 1 \N 008b0eed-c322-4c0b-b1a6-ddd3b94acbd9 t +2025-12-17 05:02:43.636506+00 2025-12-17 05:02:43.63651+00 836 朱莹 \N 龙潭 \N \N \N 1 \N ad9b8041-2a3a-4357-82c6-208fcd34eec0 t +2025-12-17 05:02:43.637303+00 2025-12-17 05:02:43.637307+00 837 首际服饰 \N 龙潭 \N \N \N 1 \N ddc6f2f3-7943-4559-9a52-ebe5cda48b9c t +2025-12-17 05:02:43.638111+00 2025-12-17 05:02:43.638117+00 838 江总 \N 龙潭 \N \N \N 1 \N b4020de0-a89e-4a54-8797-17c58c7aa18d t +2025-12-17 05:02:43.63896+00 2025-12-17 05:02:43.638964+00 839 芊熹服饰 \N 龙潭 \N \N \N 1 \N 2fce3c11-27c6-4751-9e30-31b4221f242f t +2025-12-17 05:02:43.63976+00 2025-12-17 05:02:43.639765+00 840 能辉服饰 \N 龙潭 \N \N \N 1 \N 8930dceb-5d80-4d3f-8756-24a6de20b7b6 t +2025-12-17 05:02:43.640547+00 2025-12-17 05:02:43.640551+00 841 郑杨 \N 龙潭 \N \N \N 1 \N 3af10962-8c82-4b05-ab74-3d259aa75422 t +2025-12-17 05:02:43.641322+00 2025-12-17 05:02:43.641326+00 842 古梦溪服饰 \N 龙潭 \N \N \N 1 \N 40c745ec-d668-4046-a888-849cffc1517d t +2025-12-17 05:02:43.642129+00 2025-12-17 05:02:43.642133+00 843 创兴 \N 龙潭 \N \N \N 1 \N 211149fd-382e-4dfb-99a6-69f08c165029 t +2025-12-17 05:02:43.642933+00 2025-12-17 05:02:43.642938+00 844 圣飞亚 \N 龙潭 \N \N \N 1 \N 33568869-0ef1-455e-ba18-2a18acc72435 t +2025-12-17 05:02:43.643813+00 2025-12-17 05:02:43.643817+00 845 晴天 \N 龙潭 \N \N \N 1 \N 81790f2b-eadf-40a0-a62e-4ba899f047bf t +2025-12-17 05:02:43.644681+00 2025-12-17 05:02:43.644685+00 846 糖糖服饰 \N 龙潭 \N \N \N 1 \N 5e1f992d-83a9-4f0b-86b3-3eff0031b37c t +2025-12-17 05:02:43.645495+00 2025-12-17 05:02:43.645499+00 847 妙曼姿服饰 \N 龙潭 \N \N \N 1 \N d635ccae-4bda-4376-bf8a-c88d00de51c3 t +2025-12-17 05:02:43.64629+00 2025-12-17 05:02:43.646294+00 848 米拉贝乐 \N 龙潭 \N \N \N 1 \N ff943f9d-6a1d-41b8-b447-a31f48e819d0 t +2025-12-17 05:02:43.647061+00 2025-12-17 05:02:43.647065+00 849 梦之欣贸易 \N 龙潭 \N \N \N 1 \N 0c80e138-2862-4293-a9dc-531769312f19 t +2025-12-17 05:02:43.647861+00 2025-12-17 05:02:43.647866+00 850 鸿烨服饰 \N 龙潭 \N \N \N 1 \N 0cc9ec9a-e935-47ba-86ee-d86f546658b4 t +2025-12-17 05:02:43.648661+00 2025-12-17 05:02:43.648664+00 851 美楠服饰 \N 龙潭 \N \N \N 1 \N 70f6b950-9ffe-4dc8-b7af-72ba33982ef0 t +2025-12-17 05:02:43.649442+00 2025-12-17 05:02:43.649446+00 852 何剑锋 \N 龙潭 \N \N \N 1 \N 7f69881e-78c3-453b-a910-f82c3037ad13 t +2025-12-17 05:02:43.650323+00 2025-12-17 05:02:43.650328+00 853 李泽柔 \N 龙潭 \N \N \N 1 \N e331af43-f254-4136-99a8-0b4c227ec9bd t +2025-12-17 05:02:43.65112+00 2025-12-17 05:02:43.651124+00 854 盛达-王涛 \N 龙潭 \N \N \N 1 \N d8c00dbf-bee1-4d20-affc-d849327e07a1 t +2025-12-17 05:02:43.651942+00 2025-12-17 05:02:43.651946+00 855 高云波 \N 龙潭 \N \N \N 1 \N 9f3a411b-7146-4e7a-9ee4-6ae8123c248b t +2025-12-17 05:02:43.652753+00 2025-12-17 05:02:43.652757+00 856 龙志谦 \N 龙潭 \N \N \N 1 \N f81881dd-dc66-4861-8a9d-e4e05779dd86 t +2025-12-17 05:02:43.654523+00 2025-12-17 05:02:43.654527+00 857 昌荣纺织 \N 龙潭 \N \N \N 1 \N 41ce09ba-c997-4129-8e66-a01e137d363e t +2025-12-17 05:02:43.655306+00 2025-12-17 05:02:43.65531+00 858 杜辉 \N 龙潭 \N \N \N 1 \N 9f8a09a1-25ac-4f23-bc5e-982edf6f8e03 t +2025-12-17 05:02:43.656067+00 2025-12-17 05:02:43.656071+00 859 添记校服 \N 龙潭 \N \N \N 1 \N db8f9892-1173-4637-9087-ae79cffea358 t +2025-12-17 05:02:43.656864+00 2025-12-17 05:02:43.656868+00 860 团子 \N 龙潭 \N \N \N 1 \N dddcfb31-5837-46ae-9283-57db211d8d94 t +2025-12-17 05:02:43.65765+00 2025-12-17 05:02:43.657654+00 861 布洛瑟 \N 龙潭 \N \N \N 1 \N 6a244e6c-078b-4964-92f2-8f65482fadf4 t +2025-12-17 05:02:43.658524+00 2025-12-17 05:02:43.658528+00 862 李玉堂 \N 龙潭 \N \N \N 1 \N 923357d5-f056-459f-9935-21bde07a3b59 t +2025-12-17 05:02:43.659333+00 2025-12-17 05:02:43.659337+00 863 罗楚佳 \N 龙潭 \N \N \N 1 \N 2df61150-1319-4330-b6ec-d3ccba11e252 t +2025-12-17 05:02:43.660115+00 2025-12-17 05:02:43.660118+00 864 锦晖外贸宝哥 \N 龙潭 \N \N \N 1 \N 035fa956-32a1-44ed-b0a8-c80eb36f530f t +2025-12-17 05:02:43.6609+00 2025-12-17 05:02:43.660904+00 865 茂总 \N 龙潭 \N \N \N 1 \N 26e86d2f-3f50-485f-8cc9-6ae4a5f66913 t +2025-12-17 05:02:43.661687+00 2025-12-17 05:02:43.661691+00 866 联衣舍刘玲 \N 龙潭 \N \N \N 1 \N e5977f46-fbb6-471a-8eea-ea4bbb7e0aca t +2025-12-17 05:02:43.662491+00 2025-12-17 05:02:43.662495+00 867 刘伟 \N 龙潭 \N \N \N 1 \N cc126bdd-9415-4ac5-bafe-20aea9008bea t +2025-12-17 05:02:43.663308+00 2025-12-17 05:02:43.663312+00 868 冯鑫 \N 龙潭 \N \N \N 1 \N cb90da43-9e28-4b44-b47a-94a8aa75d336 t +2025-12-17 05:02:43.664088+00 2025-12-17 05:02:43.664092+00 869 嘉之隆 \N 龙潭 \N \N \N 1 \N 943ef2a4-f3cf-45af-aa5c-579183a5b40d t +2025-12-17 05:02:43.664882+00 2025-12-17 05:02:43.664886+00 870 彭铁军-邓老板 \N 龙潭 \N \N \N 1 \N 75be84a5-231e-4933-bbb1-5b89db97349d t +2025-12-17 05:02:43.665718+00 2025-12-17 05:02:43.665722+00 871 盛达-唐老板 \N 龙潭 \N \N \N 1 \N 1b4ac51f-9522-4672-8a20-f9a4d9e2ba56 t +2025-12-17 05:02:43.666509+00 2025-12-17 05:02:43.666513+00 872 卢老板 \N 龙潭 \N \N \N 1 \N c3882d0b-ce24-4fd0-b30b-aa1310fa0090 t +2025-12-17 05:02:43.667305+00 2025-12-17 05:02:43.667309+00 873 肖科 \N 龙潭 \N \N \N 1 \N 14da4c03-7ce5-4942-a358-00c1e15e3de5 t +2025-12-17 05:02:43.668078+00 2025-12-17 05:02:43.668082+00 874 黄钟鹏 \N 龙潭 \N \N \N 1 \N 268954bc-60ec-4650-980c-e70109f063fd t +2025-12-17 05:02:43.66886+00 2025-12-17 05:02:43.668864+00 875 马家强-金佳利 \N 龙潭 \N \N \N 1 \N 89c3debe-81d5-42b6-b102-f40ee4cf4134 t +2025-12-17 05:02:43.669652+00 2025-12-17 05:02:43.669656+00 876 宋鹏 \N 龙潭 \N \N \N 1 \N 1ea65606-4cc8-41c8-bf70-df60c6fc2ff1 t +2025-12-17 05:02:43.67042+00 2025-12-17 05:02:43.670423+00 877 盛达张老板 \N 龙潭 \N \N \N 1 \N ed3b5608-ba7a-437d-b011-405ff50d466c t +2025-12-17 05:02:43.671212+00 2025-12-17 05:02:43.671216+00 878 白云 \N 龙潭 \N \N \N 1 \N b9c84ef3-aa2f-4884-849f-f602b07bb451 t +2025-12-17 05:02:43.672001+00 2025-12-17 05:02:43.672005+00 879 姜硕 \N 龙潭 \N \N \N 1 \N 7ff2aaa8-30d9-4601-b85e-32be34902540 t +2025-12-17 05:02:43.672804+00 2025-12-17 05:02:43.672808+00 880 欧尚 \N 龙潭 \N \N \N 1 \N 08cb579d-a927-40e7-a95e-72c2f4b0d9b6 t +2025-12-17 05:02:43.673661+00 2025-12-17 05:02:43.673666+00 881 众缘 \N 龙潭 \N \N \N 1 \N b3219ce6-54cb-49b3-9ee4-5c4c4648aa7c t +2025-12-17 05:02:43.674438+00 2025-12-17 05:02:43.674442+00 882 洽隆 \N 龙潭 \N \N \N 1 \N 4073eeb0-3509-4fab-a3a2-e55c45fd2569 t +2025-12-17 05:02:43.6752+00 2025-12-17 05:02:43.675204+00 883 鸿发 \N 龙潭 \N \N \N 1 \N 454bb36a-2cc7-4fab-9ae0-8805ed0ba2e9 t +2025-12-17 05:02:43.675963+00 2025-12-17 05:02:43.675967+00 884 可依 \N 龙潭 \N \N \N 1 \N c15ddf41-93ca-466e-b3b7-deb75d19138a t +2025-12-17 05:02:43.676838+00 2025-12-17 05:02:43.676842+00 885 陈水勇 \N 龙潭 \N \N \N 1 \N c5a63aec-c8bd-4797-99f3-473750189ca8 t +2025-12-17 05:02:43.677737+00 2025-12-17 05:02:43.67774+00 886 别坤 \N 龙潭 \N \N \N 1 \N d107f35c-d95b-4b8f-b3ce-75f2e7d08f44 t +2025-12-17 05:02:43.678691+00 2025-12-17 05:02:43.678695+00 887 盛达-张大校 \N 龙潭 \N \N \N 1 \N 229983df-820e-4f14-845a-527d1d36f97f t +2025-12-17 05:02:43.679596+00 2025-12-17 05:02:43.6796+00 888 能兴纺织 \N 龙潭 \N \N \N 1 \N 29420b60-adc1-4650-9ed6-7a3f6f2013d3 t +2025-12-17 05:02:43.680482+00 2025-12-17 05:02:43.680486+00 889 汕头广州数码 \N 龙潭 \N \N \N 1 \N 04898e43-0a4f-45cc-9a00-668b384d8f17 t +2025-12-17 05:02:43.681402+00 2025-12-17 05:02:43.681406+00 890 天霸 \N 龙潭 \N \N \N 1 \N 6a4115a2-e3fa-4087-866c-6d96474222c8 t +2025-12-17 05:02:43.682391+00 2025-12-17 05:02:43.682396+00 891 旧梦 \N 龙潭 \N \N \N 1 \N 4cc81b21-6a12-43e9-93fb-36ebd9492042 t +2025-12-17 05:02:43.683357+00 2025-12-17 05:02:43.683362+00 892 李小群 \N 龙潭 \N \N \N 1 \N 00da343e-cb79-4987-8881-a1564c3b30e1 t +2025-12-17 05:02:43.68432+00 2025-12-17 05:02:43.684324+00 893 俏衣人 \N 龙潭 \N \N \N 1 \N 9d6b2d6d-7f42-4028-8d8c-ed0e2ffa15f5 t +2025-12-17 05:02:43.685206+00 2025-12-17 05:02:43.68521+00 894 钟刚 \N 龙潭 \N \N \N 1 \N a0e3930e-42e0-4258-ac23-a15f8ee32301 t +2025-12-17 05:02:43.686032+00 2025-12-17 05:02:43.686036+00 895 丹妮 \N 龙潭 \N \N \N 1 \N 0a1a6fd7-ff3f-4116-bd72-568f31967d4a t +2025-12-17 05:02:43.686845+00 2025-12-17 05:02:43.686849+00 896 宏美乐 \N 龙潭 \N \N \N 1 \N 271e9e99-1ed3-48b4-b0b8-933c001835ae t +2025-12-17 05:02:43.687644+00 2025-12-17 05:02:43.687648+00 897 金源 \N 金源 \N \N \N 1 \N 546a785c-b60b-4d9f-a1a1-bfdd23488abc t +2025-12-17 05:02:43.688436+00 2025-12-17 05:02:43.68844+00 898 危佩 \N 龙潭 \N \N \N 1 \N 25874e4b-9dc1-42c0-9d9b-813811b5d10a t +2025-12-17 05:02:43.689213+00 2025-12-17 05:02:43.689217+00 899 蔡一谨 \N 龙潭 \N \N \N 1 \N e9cc0806-62db-4b30-888a-43cb04674f5c t +2025-12-17 05:02:43.690067+00 2025-12-17 05:02:43.690071+00 900 A李宇波 \N 龙潭 \N \N \N 1 \N 54a40f80-033d-4b3f-a265-ef109210101c t +2025-12-17 05:02:43.690972+00 2025-12-17 05:02:43.690977+00 901 尹毅然 \N 龙潭 \N \N \N 1 \N c12259ae-71d5-4819-90db-2206dd567acd t +2025-12-17 05:02:43.69192+00 2025-12-17 05:02:43.691924+00 902 危生 \N 龙潭 \N \N \N 1 \N 81d444e3-195b-44c5-ae6d-920e5b04b7a6 t +2025-12-17 05:02:43.6929+00 2025-12-17 05:02:43.692904+00 903 吕淡佳 \N 龙潭 \N \N \N 1 \N b1e1a11c-5d79-4a4c-84b6-1808a3822958 t +2025-12-17 05:02:43.693706+00 2025-12-17 05:02:43.69371+00 904 盛达-陈生 \N 龙潭 \N \N \N 1 \N b679bef2-dc8c-45dc-aeeb-030489ab2502 t +2025-12-17 05:02:43.694499+00 2025-12-17 05:02:43.694503+00 905 龙正 \N 龙潭 \N \N \N 1 \N 0bc58af4-408c-439f-9512-a898019a26a3 t +2025-12-17 05:02:43.695302+00 2025-12-17 05:02:43.695306+00 906 尚品服饰 \N 龙潭 \N \N \N 1 \N 1c818d75-0de1-4313-aac9-7377e3df0332 t +2025-12-17 05:02:43.696077+00 2025-12-17 05:02:43.696081+00 907 盛达林总 \N 龙潭 \N \N \N 1 \N ace0a1ca-46a4-4135-adfd-67324df75bc5 t +2025-12-17 05:02:43.696862+00 2025-12-17 05:02:43.696866+00 908 蔡国梁 \N 龙潭 \N \N \N 1 \N 488ada68-f953-4785-ba44-c2a19edb4c67 t +2025-12-17 05:02:43.697659+00 2025-12-17 05:02:43.697663+00 909 星月 \N 龙潭 \N \N \N 1 \N 5a2c1c15-b284-4df9-97bb-2d174c36223f t +2025-12-17 05:02:43.947335+00 2025-12-17 05:02:43.947347+00 910 招招 \N 龙潭 \N \N \N 1 \N f58ddb03-4ede-4a91-9560-139e6a9b9e86 t +2025-12-17 05:02:43.949216+00 2025-12-17 05:02:43.949224+00 911 大洋 \N 龙潭 \N \N \N 1 \N 154423d8-27e1-40e7-b329-653a2ce6ff2f t +2025-12-17 05:02:43.95051+00 2025-12-17 05:02:43.950516+00 912 龙小姐 \N 龙潭 \N \N \N 1 \N 553cfa60-5ecb-4666-9739-c8e8894665e8 t +2025-12-17 05:02:43.951413+00 2025-12-17 05:02:43.951417+00 913 徐黎 \N 龙潭 \N \N \N 1 \N 66b77db1-b090-4dcc-9510-f472072d8292 t +2025-12-17 05:02:43.952246+00 2025-12-17 05:02:43.952249+00 914 丁伟 \N 龙潭 \N \N \N 1 \N 987e9b46-b739-42cd-abea-423804be9295 t +2025-12-17 05:02:43.9531+00 2025-12-17 05:02:43.953105+00 915 满洲-荣润 \N 龙潭 \N \N \N 1 \N e7038a4e-92d0-4d6e-b490-62f94f7d355c t +2025-12-17 05:02:43.95423+00 2025-12-17 05:02:43.954234+00 916 杨东杰 \N 龙潭 \N \N \N 1 \N c6a3b420-b970-4121-a946-cb2251951bae t +2025-12-17 05:02:43.955054+00 2025-12-17 05:02:43.955058+00 917 依我所属 \N 龙潭 \N \N \N 1 \N ad82e052-d7bc-400b-bc22-23f42ac5ad8b t +2025-12-17 05:02:43.955885+00 2025-12-17 05:02:43.95589+00 918 卢鸿生(卢总) \N 龙潭 \N \N \N 1 \N 2fc3ec52-dc97-4ef0-815b-299aecbb08f2 t +2025-12-17 05:02:43.957487+00 2025-12-17 05:02:43.957495+00 919 卢鸿生 \N 龙潭 \N \N \N 1 \N b9dece4c-c80f-4f57-9d5e-83be531765ca t +2025-12-17 05:02:43.958529+00 2025-12-17 05:02:43.958533+00 920 盛达米奇 \N 龙潭 \N \N \N 1 \N d9b830d4-19cd-4da7-b33a-3a712648e5fe t +2025-12-17 05:02:43.959383+00 2025-12-17 05:02:43.959387+00 921 然英 \N 龙潭 \N \N \N 1 \N 3ef2f980-9972-436e-9b28-931199fd144e t +2025-12-17 05:02:43.960182+00 2025-12-17 05:02:43.960187+00 922 新琪服饰 \N 龙潭 \N \N \N 1 \N 6ce36747-7e55-44d7-8a25-0a92ed34e874 t +2025-12-17 05:02:43.960964+00 2025-12-17 05:02:43.960967+00 923 大唐 \N 龙潭 \N \N \N 1 \N 7c8c04af-d068-44d3-9596-6af453a2413e t +2025-12-17 05:02:43.961773+00 2025-12-17 05:02:43.961777+00 924 徐书剑 \N 龙潭 \N \N \N 1 \N 36f7f9ad-7a15-410a-b11b-a00b92f840e8 t +2025-12-17 05:02:43.962574+00 2025-12-17 05:02:43.962578+00 925 陈跃春 \N 龙潭 \N \N \N 1 \N 854d7758-e4e2-4f49-9dd9-f34ab73f53de t +2025-12-17 05:02:43.963359+00 2025-12-17 05:02:43.963362+00 926 危亮 \N 龙潭 \N \N \N 1 \N 79062bf4-fe29-47bf-af09-2bbaccc7c408 t +2025-12-17 05:02:43.964198+00 2025-12-17 05:02:43.964203+00 927 盛达-王武 \N 龙潭 \N \N \N 1 \N 74be2397-a4e9-47d5-957b-7e3e4cc0a8ac t +2025-12-17 05:02:43.965061+00 2025-12-17 05:02:43.965065+00 928 盛达-杨蒙 \N 龙潭 \N \N \N 1 \N e6b1ac8c-f32c-41d9-a32d-9d86dc9ccd8e t +2025-12-17 05:02:43.96588+00 2025-12-17 05:02:43.965884+00 929 赵亮 \N 龙潭 \N \N \N 1 \N 8e403e0b-e37c-4f27-a453-6e8530b4c0bb t +2025-12-17 05:02:43.966838+00 2025-12-17 05:02:43.966843+00 930 杨赛英 \N 龙潭 \N \N \N 1 \N 95351379-081c-47cf-973b-fa3b32605cd7 t +2025-12-17 05:02:43.967778+00 2025-12-17 05:02:43.967783+00 931 英豪服饰 \N 龙潭 \N \N \N 1 \N a9fde648-c487-466f-b7b1-d9d49363a703 t +2025-12-17 05:02:43.968726+00 2025-12-17 05:02:43.968731+00 932 盛达-袁水明 \N 龙潭 \N \N \N 1 \N 1b19231a-245b-4227-a10a-b0b2fb885af5 t +2025-12-17 05:02:43.969621+00 2025-12-17 05:02:43.969625+00 933 张飘 \N 龙潭 \N \N \N 1 \N 7f89b36d-3f9a-4af9-bfaf-102ae6df0673 t +2025-12-17 05:02:43.970727+00 2025-12-17 05:02:43.970732+00 934 黄英宝 \N 龙潭 \N \N \N 1 \N 9a5fe980-cf69-4613-aada-2e3f14abaffd t +2025-12-17 05:02:43.971613+00 2025-12-17 05:02:43.971617+00 935 周亚峰 \N 龙潭 \N \N \N 1 \N 737f2fd2-29e8-4870-9add-52b0d8e48cd7 t +2025-12-17 05:02:43.972433+00 2025-12-17 05:02:43.972437+00 936 EP郑敏生 \N 龙潭 \N \N \N 1 \N 7082bbd0-d9da-455a-adc6-5d08806bfec8 t +2025-12-17 05:02:43.973271+00 2025-12-17 05:02:43.973276+00 937 盛达陈奇 \N 龙潭 \N \N \N 1 \N 58f4e0b1-b72c-4b80-9d73-845a7a12e64a t +2025-12-17 05:02:43.974079+00 2025-12-17 05:02:43.974083+00 938 黄嘉欣 \N 龙潭 \N \N \N 1 \N f319bc0d-21f0-4663-8027-996f972a3089 t +2025-12-17 05:02:43.974885+00 2025-12-17 05:02:43.974889+00 939 关鸿乔 \N 龙潭 \N \N \N 1 \N c8516ee4-eceb-4d05-9e18-d7cc1ebbd821 t +2025-12-17 05:02:43.975715+00 2025-12-17 05:02:43.975719+00 940 盛世纺织 \N 龙潭 \N \N \N 1 \N e2ae3c40-7312-417e-ab43-b114a374f597 t +2025-12-17 05:02:43.976518+00 2025-12-17 05:02:43.976522+00 941 昕昕服装厂 \N 龙潭 \N \N \N 1 \N 4e4e58f2-5539-453c-bc11-a736ca79f57f t +2025-12-17 05:02:43.977315+00 2025-12-17 05:02:43.977319+00 942 徐豪波 \N 龙潭 \N \N \N 1 \N 7e1e1ee7-6f74-4a6c-ab29-be5cdf42474e t +2025-12-17 05:02:43.978385+00 2025-12-17 05:02:43.978389+00 943 辰星服饰 \N 龙潭 \N \N \N 1 \N 5df6c8ab-0c7a-43ae-9b4c-9260b1bb7497 t +2025-12-17 05:02:43.979506+00 2025-12-17 05:02:43.97951+00 944 王鹏涛 \N 龙潭 \N \N \N 1 \N 27054442-685b-4383-b744-778286284061 t +2025-12-17 05:02:43.980592+00 2025-12-17 05:02:43.980596+00 945 王飞 \N 龙潭 \N \N \N 1 \N be097d38-a6a0-4d96-a6d3-b85da6afecbc t +2025-12-17 05:02:43.981681+00 2025-12-17 05:02:43.981685+00 946 邓拓 \N 龙潭 \N \N \N 1 \N d6d5e96a-355f-46fe-9676-27991e69bfbd t +2025-12-17 05:02:43.982839+00 2025-12-17 05:02:43.982844+00 947 3J3服饰 \N 龙潭 \N \N \N 1 \N ad1e94c0-788a-4031-8916-157b01b39404 t +2025-12-17 05:02:43.983957+00 2025-12-17 05:02:43.983961+00 948 龙馨服饰 \N 龙潭 \N \N \N 1 \N e1a4a0f5-6363-442c-b08b-d4ddb84565c5 t +2025-12-17 05:02:43.985063+00 2025-12-17 05:02:43.985067+00 949 江亿 \N 龙潭 \N \N \N 1 \N 4d4be0d8-66b8-4661-a51c-877f9308daba t +2025-12-17 05:02:43.986151+00 2025-12-17 05:02:43.986155+00 950 盛达-柯老板 \N 龙潭 \N \N \N 1 \N ef3ad5a3-db12-4f73-8816-2c645bf58f5c t +2025-12-17 05:02:43.986966+00 2025-12-17 05:02:43.98697+00 951 李若华 \N 龙潭 \N \N \N 1 \N a603f182-3fa5-4316-9be6-7af019920e8c t +2025-12-17 05:02:43.987769+00 2025-12-17 05:02:43.987773+00 952 彩摩石 \N 龙潭 \N \N \N 1 \N eac39032-81ba-417f-8111-3b7f58303be5 t +2025-12-17 05:02:43.988676+00 2025-12-17 05:02:43.988681+00 953 盛达钢哥 \N 龙潭 \N \N \N 1 \N e9052e50-2d6d-4a88-8e14-40bfd691fbf4 t +2025-12-17 05:02:43.989705+00 2025-12-17 05:02:43.98971+00 954 陈康 \N 龙潭 \N \N \N 1 \N 2d17edaa-444a-442e-84a0-b55160b72f06 t +2025-12-17 05:02:43.990556+00 2025-12-17 05:02:43.99056+00 955 盛达-张子龙 \N 龙潭 \N \N \N 1 \N bad86590-66da-40f9-82c6-f69bc8e85d8d t +2025-12-17 05:02:43.991436+00 2025-12-17 05:02:43.99144+00 956 钟盛 \N 龙潭 \N \N \N 1 \N 937edc7f-9e87-45ce-b83c-fadb6102c4e5 t +2025-12-17 05:02:43.992367+00 2025-12-17 05:02:43.992371+00 957 陈泽龙 \N 龙潭 \N \N \N 1 \N 5eaac79d-19c5-4aa7-9781-1852d62cb73e t +2025-12-17 05:02:43.993209+00 2025-12-17 05:02:43.993214+00 958 周边 \N 陈泽龙 \N \N \N 1 \N 7e861e09-6ba0-4d31-84cb-d8453a209a6e t +2025-12-17 05:02:43.994019+00 2025-12-17 05:02:43.994023+00 959 兵胜厂 \N 龙潭 \N \N \N 1 \N 24182b96-9777-4f1e-8645-83dd04d95370 t +2025-12-17 05:02:43.994809+00 2025-12-17 05:02:43.994813+00 960 黄钰琴 \N 龙潭 \N \N \N 1 \N 6b10ed32-293d-4d8f-b450-e90d7f0bc34e t +2025-12-17 05:02:43.99562+00 2025-12-17 05:02:43.995624+00 961 新润纺织 \N 龙潭 \N \N \N 1 \N 828598bb-1c90-40a7-a12a-7c7267d41a78 t +2025-12-17 05:02:43.996453+00 2025-12-17 05:02:43.996457+00 962 盛达-何飞 \N 龙潭 \N \N \N 1 \N 5b856fc7-d60f-47b3-8a9b-c1d89ad12066 t +2025-12-17 05:02:43.997413+00 2025-12-17 05:02:43.997418+00 963 万亮 \N 龙潭 \N \N \N 1 \N 519bcaa4-18ce-4690-b1ce-aaff15f4f599 t +2025-12-17 05:02:43.998284+00 2025-12-17 05:02:43.998288+00 964 阳光吴老板娘 \N 龙潭 \N \N \N 1 \N 707ba619-50a9-46b2-8970-2a59603703ac t +2025-12-17 05:02:43.999159+00 2025-12-17 05:02:43.999164+00 965 鸿量 \N 龙潭 \N \N \N 1 \N ade29285-20b7-42f7-bc03-a0ba656891ef t +2025-12-17 05:02:44.000004+00 2025-12-17 05:02:44.000008+00 966 柏易 \N 龙潭 \N \N \N 1 \N e261f474-2840-4da9-95ed-1bd300b9650a t +2025-12-17 05:02:44.00093+00 2025-12-17 05:02:44.000934+00 967 金润 \N 龙潭 \N \N \N 1 \N 63b2cb55-6c10-4935-9f69-d0b8ccb92766 t +2025-12-17 05:02:44.001763+00 2025-12-17 05:02:44.001767+00 968 盛达-王子龙 \N 龙潭 \N \N \N 1 \N dc788a92-7f47-4a42-977f-eebba405fb61 t +2025-12-17 05:02:44.00255+00 2025-12-17 05:02:44.002554+00 969 凯哥 \N 龙潭 \N \N \N 1 \N bd19d74d-49af-461c-90b9-6a521aa3af1c t +2025-12-17 05:02:44.003372+00 2025-12-17 05:02:44.003376+00 970 李小姐 \N 龙潭 \N \N \N 1 \N b16fa2f4-a922-4b4a-a2fc-314dd15d1db1 t +2025-12-17 05:02:44.004166+00 2025-12-17 05:02:44.00417+00 971 艾琳纺织(林总) \N 龙潭 \N \N \N 1 \N 22183b88-1e05-4dc6-96eb-4d22fddcc8a6 t +2025-12-17 05:02:44.004948+00 2025-12-17 05:02:44.004951+00 972 郑培雄 \N 龙潭 \N \N \N 1 \N ed31733e-c150-4b22-bcaa-74464fec8aa7 t +2025-12-17 05:02:44.005732+00 2025-12-17 05:02:44.005736+00 973 盛达-孙总 \N 龙潭 \N \N \N 1 \N 2b7d00ba-7179-4c31-8686-1ee1de0904ed t +2025-12-17 05:02:44.006532+00 2025-12-17 05:02:44.006536+00 974 盛达-杨总 \N 龙潭 \N \N \N 1 \N fee41c2a-c6a4-4ae5-99cd-f82b48478316 t +2025-12-17 05:02:44.007317+00 2025-12-17 05:02:44.00732+00 975 陈杰骏 \N 龙潭 \N \N \N 1 \N a5c67d32-e7eb-44bf-9738-35984d95a77f t +2025-12-17 05:02:44.008085+00 2025-12-17 05:02:44.008089+00 976 黄莉 \N 龙潭 \N \N \N 1 \N 7b4148b0-384e-4169-8d37-fef27d3747a7 t +2025-12-17 05:02:44.00888+00 2025-12-17 05:02:44.008884+00 977 盛达叶小姐 \N 龙潭 \N \N \N 1 \N f6fa8d54-1032-4a3f-89f1-793c3763bc10 t +2025-12-17 05:02:44.009687+00 2025-12-17 05:02:44.009691+00 978 杨豪 \N 龙潭 \N \N \N 1 \N 7f4f5056-238a-4c6b-b988-f76b797b96da t +2025-12-17 05:02:44.01047+00 2025-12-17 05:02:44.010474+00 979 徐金 \N 龙潭 \N \N \N 1 \N 3295f523-4118-478f-8342-8a0af7eee350 t +2025-12-17 05:02:44.011259+00 2025-12-17 05:02:44.011263+00 980 陈俊青 \N 龙潭 \N \N \N 1 \N 37bfa115-4161-4efc-bf22-450392bb09fb t +2025-12-17 05:02:44.012035+00 2025-12-17 05:02:44.012038+00 981 李文超 \N 龙潭 \N \N \N 1 \N ecb053ff-37d7-43f5-8e5c-091909361e11 t +2025-12-17 05:02:44.012895+00 2025-12-17 05:02:44.0129+00 982 盛达-万佳 \N 龙潭 \N \N \N 1 \N 13359e5b-660a-4985-bf83-6e874be1d765 t +2025-12-17 05:02:44.013772+00 2025-12-17 05:02:44.013776+00 983 盛达-林海明 \N 龙潭 \N \N \N 1 \N c52bcb3f-01f8-45cc-88d0-57e72d74aa33 t +2025-12-17 05:02:44.014578+00 2025-12-17 05:02:44.014582+00 984 盛达-刘艳兵 \N 龙潭 \N \N \N 1 \N c7601f6b-7694-447f-9995-315255de89eb t +2025-12-17 05:02:44.015447+00 2025-12-17 05:02:44.015452+00 985 胡总(胡匪) \N 龙潭 \N \N \N 1 \N efbe30f3-b64b-4b4d-a606-f818b2382e3a t +2025-12-17 05:02:44.016288+00 2025-12-17 05:02:44.016292+00 986 成总 \N 龙潭 \N \N \N 1 \N 01f3b67a-526b-4bda-a551-4c4132d542c1 t +2025-12-17 05:02:44.017089+00 2025-12-17 05:02:44.017092+00 987 盛达-张保华 \N 龙潭 \N \N \N 1 \N 154264f2-99de-4573-a499-ca9d7913d893 t +2025-12-17 05:02:44.017884+00 2025-12-17 05:02:44.017888+00 988 崔小姐 \N 龙潭 \N \N \N 1 \N e00cc755-1ea2-419c-ae5d-b4cf80e528f2 t +2025-12-17 05:02:44.01868+00 2025-12-17 05:02:44.018684+00 989 百川 \N 龙潭 \N \N \N 1 \N f56beb2c-259d-44a6-9e4a-5711bbf2d105 t +2025-12-17 05:02:44.01947+00 2025-12-17 05:02:44.019475+00 990 朱文俊 \N 龙潭 \N \N \N 1 \N 700be622-0aeb-4e07-a97e-16e3a07ac146 t +2025-12-17 05:02:44.020433+00 2025-12-17 05:02:44.020438+00 991 姚老板 \N 龙潭 \N \N \N 1 \N 9116dc08-6bc9-404b-b147-7510694b7afc t +2025-12-17 05:02:44.021306+00 2025-12-17 05:02:44.02131+00 992 海量 \N 龙潭 \N \N \N 1 \N 2d2ba894-62f9-44a4-8044-6daf53d9f95f t +2025-12-17 05:02:44.022115+00 2025-12-17 05:02:44.022119+00 993 盛达杨总 \N 龙潭 \N \N \N 1 \N 3fd1f6e5-6f1a-4a83-808d-a55589760607 t +2025-12-17 05:02:44.022932+00 2025-12-17 05:02:44.022936+00 994 胡雄武 \N 龙潭 \N \N \N 1 \N 30ae9f45-c37f-417d-a7e3-36d0cd3e82d6 t +2025-12-17 05:02:44.023722+00 2025-12-17 05:02:44.023726+00 995 明鑫 \N 龙潭 \N \N \N 1 \N 196596a5-780c-46f1-8b44-5fd922f2e794 t +2025-12-17 05:02:44.024511+00 2025-12-17 05:02:44.024515+00 996 LINA林小姐 \N 龙潭 \N \N \N 1 \N 5a281c19-2654-4508-b3f8-026817efcedc t +2025-12-17 05:02:44.02536+00 2025-12-17 05:02:44.025364+00 997 崔小平 \N 龙潭 \N \N \N 1 \N 6805188a-0240-496e-8f43-449bd3c21641 t +2025-12-17 05:02:44.026169+00 2025-12-17 05:02:44.026172+00 998 洪老板 \N 龙潭 \N \N \N 1 \N 669a5d10-fcfc-4fe7-af62-57f5dfd44063 t +2025-12-17 05:02:44.026951+00 2025-12-17 05:02:44.026955+00 999 蔡坤煜 \N 龙潭 \N \N \N 1 \N a7c5f940-833d-4d2b-b90c-05aa2b44cadf t +2025-12-17 05:02:44.027768+00 2025-12-17 05:02:44.027771+00 1000 龚总 \N 龙潭 \N \N \N 1 \N a2e45ffa-18df-4ef1-a0db-0578c1acf75c t +2025-12-17 05:02:44.028548+00 2025-12-17 05:02:44.028552+00 1001 张腾 \N 谭江 \N \N \N 1 \N 40319d88-0638-4d87-a068-9f52842259fa t +2025-12-17 05:02:44.029334+00 2025-12-17 05:02:44.029338+00 1002 盛达-洪老板 \N 龙潭 \N \N \N 1 \N 36396dba-b461-47d5-b6b1-4b80abd5c1aa t +2025-12-17 05:02:44.030124+00 2025-12-17 05:02:44.030128+00 1003 辰寅圣 \N \N \N \N 1 \N 10a4163f-9e08-44de-9e62-7bd0c48aa04c t +2025-12-17 05:02:44.030918+00 2025-12-17 05:02:44.030922+00 1004 陈小姐 \N 陈小姐 \N \N \N 1 \N 5c8ad442-be43-466d-a158-bf88a3f0c322 t +2025-12-17 05:02:44.031717+00 2025-12-17 05:02:44.031721+00 1005 姜宇 \N 龙潭 \N \N \N 1 \N 383973cb-9cde-4d40-8f6f-ccba33855c69 t +2025-12-17 05:02:44.032509+00 2025-12-17 05:02:44.032513+00 1006 迪玛 \N 龙潭 \N \N \N 1 \N d2780890-fca3-421e-832a-3fa40de73370 t +2025-12-17 05:02:44.033316+00 2025-12-17 05:02:44.03332+00 1007 乐乐 \N 龙潭 \N \N \N 1 \N d0e90b33-77d7-4386-b5cb-42a12deedb6a t +2025-12-17 05:02:44.034117+00 2025-12-17 05:02:44.034121+00 1008 盛达-黑马 \N 龙潭 \N \N \N 1 \N f0bcd2f4-7d0d-4f0a-b040-e8fba3864856 t +2025-12-17 05:02:44.03496+00 2025-12-17 05:02:44.034965+00 1009 广亿隆纺织 \N 龙潭 \N \N \N 1 \N ef79fea6-e4a7-4d44-bd6b-fab269ec7a70 t +2025-12-17 05:05:00.25491+00 2025-12-17 05:05:00.254922+00 1010 熊锐哲 \N 龙潭 \N \N \N 1 \N 5e00e485-f49d-45d2-b5b7-9ac6d1123175 t +2025-12-17 05:05:00.256445+00 2025-12-17 05:05:00.25645+00 1011 金建强 \N 龙潭 \N \N \N 1 \N 6accb510-c4c7-4ffe-bc74-61abdee05727 t +2025-12-17 05:05:00.257352+00 2025-12-17 05:05:00.257357+00 1012 熹绒服饰 \N 龙潭 \N \N \N 1 \N 9b71e0fd-9f46-4319-9839-7108c1df653d t +2025-12-17 05:05:00.258184+00 2025-12-17 05:05:00.258188+00 1013 彭铁军 \N 龙潭 \N \N \N 1 \N f7963665-0413-49a5-93e2-3e276bd90fff t +2025-12-17 05:05:00.259604+00 2025-12-17 05:05:00.259612+00 1014 孙传明 \N 龙潭 \N \N \N 1 \N 8b01e953-45b6-481b-8f19-029bd0ad8829 t +2025-12-17 05:05:00.261337+00 2025-12-17 05:05:00.261344+00 1015 邓宇 \N 龙潭 \N \N \N 1 \N b82e9c8b-6c83-45e2-b514-481856c7629f t +2025-12-17 05:05:00.262634+00 2025-12-17 05:05:00.26264+00 1016 盛达-鸭子 \N 龙潭 \N \N \N 1 \N 7d46bdc2-37d4-4cbd-a36a-ef128879edfc t +2025-12-17 05:05:00.263574+00 2025-12-17 05:05:00.263579+00 1017 徐永光 \N 龙潭 \N \N \N 1 \N 593ccb1a-93fb-46bd-bd53-4ec073fafbff t +2025-12-17 05:05:00.264414+00 2025-12-17 05:05:00.264418+00 1018 别刚 \N 龙潭 \N \N \N 1 \N 8109fc92-0614-41b6-a8b5-715eba5ea724 t +2025-12-17 05:05:00.265226+00 2025-12-17 05:05:00.26523+00 1019 李文峰 \N 龙潭 \N \N \N 1 \N 7d1b1a1f-6285-4a1e-a5f0-ccd9aa40104c t +2025-12-17 05:05:00.266033+00 2025-12-17 05:05:00.266037+00 1020 鑫莱 \N 龙潭 \N \N \N 1 \N bba0f1bf-859e-4e57-8df9-23dbddb1a499 t +2025-12-17 05:05:00.266836+00 2025-12-17 05:05:00.26684+00 1021 雷锋 \N 龙潭 \N \N \N 1 \N 6eb5750a-5d56-40e2-b7cb-1fd8e83912a1 t +2025-12-17 05:05:00.267649+00 2025-12-17 05:05:00.267653+00 1022 陈鸿盛 \N 龙潭 \N \N \N 1 \N 742ce1cc-bc41-401e-ad4a-6fd1bbc9b8ac t +2025-12-17 05:05:00.268438+00 2025-12-17 05:05:00.268442+00 1023 严锦龙 \N 严锦龙 \N \N \N 1 \N 28966aaf-457d-4a6e-b406-809e6ed791fb t +2025-12-17 05:05:00.269215+00 2025-12-17 05:05:00.269219+00 1024 陈练练 \N 龙潭 \N \N \N 1 \N c50d478b-66e5-46f9-a4b7-c72593965fc0 t +2025-12-17 05:05:00.27001+00 2025-12-17 05:05:00.270014+00 1025 荣泰 \N 龙潭 \N \N \N 1 \N 8cba2adc-4779-45bb-bc5f-69f1ccc15675 t +2025-12-17 05:05:00.270806+00 2025-12-17 05:05:00.27081+00 1026 丁文娟 \N 龙潭 \N \N \N 1 \N f93227e6-c88b-4201-98a3-c5ec4557668c t +2025-12-17 05:05:00.27158+00 2025-12-17 05:05:00.271583+00 1027 朗驰 \N 龙潭 \N \N \N 1 \N d1e0290f-2a15-4f25-a7a4-76d1d11f6e45 t +2025-12-17 05:05:00.272357+00 2025-12-17 05:05:00.272361+00 1028 华连 \N 龙潭 \N \N \N 1 \N ea3698ff-74c7-4b58-9856-ca77e591c74e t +2025-12-17 05:05:00.273162+00 2025-12-17 05:05:00.273166+00 1029 李进 \N 龙潭 \N \N \N 1 \N 8d3c86ae-e319-4a30-a484-45a2e47386ae t +2025-12-17 05:05:00.273937+00 2025-12-17 05:05:00.273941+00 1030 川兄 \N 龙潭 \N \N \N 1 \N 09c9c159-a683-4955-bfb0-f6fade22a1a1 t +2025-12-17 05:05:00.274725+00 2025-12-17 05:05:00.274729+00 1031 华盛和 \N 龙潭 \N \N \N 1 \N 1d75a5d1-ae90-432c-ac0a-544305255947 t +2025-12-17 05:05:00.275741+00 2025-12-17 05:05:00.275744+00 1032 李兵波 \N 龙潭 \N \N \N 1 \N 8461020d-950e-4080-90eb-a0b338e79468 t +2025-12-17 05:05:00.276509+00 2025-12-17 05:05:00.276513+00 1033 严总 \N 龙潭 \N \N \N 1 \N 27754f11-9a2d-4da9-9bb5-00675b348f7d t +2025-12-17 05:05:00.277309+00 2025-12-17 05:05:00.277312+00 1034 爱民服饰 \N 龙潭 \N \N \N 1 \N bb8e0532-51f0-4581-adc0-c5f866a7afd8 t +2025-12-17 05:05:00.278073+00 2025-12-17 05:05:00.278077+00 1035 普哥 \N 龙潭 \N \N \N 1 \N 4f7a3736-83a4-4e35-b86e-ec33ab59ffc6 t +2025-12-17 05:05:00.278871+00 2025-12-17 05:05:00.278875+00 1036 王维山 \N 龙潭 \N \N \N 1 \N b17653ac-d212-4b5d-9920-08e9c13f1d21 t +2025-12-17 05:05:00.279714+00 2025-12-17 05:05:00.27972+00 1037 洪宇 \N 洪宇 \N \N \N 1 \N 07f1adf2-fe82-4adf-81ea-86bf27a87790 t +2025-12-17 05:05:00.280605+00 2025-12-17 05:05:00.28061+00 1038 林汉才 \N 龙潭 \N \N \N 1 \N 0eb8b069-1f6f-4857-b04d-866118150efe t +2025-12-17 05:05:00.281447+00 2025-12-17 05:05:00.281451+00 1039 展生纺织 \N 龙潭 \N \N \N 1 \N 4a530030-dafb-4500-88a3-9b83952d7096 t +2025-12-17 05:05:00.282246+00 2025-12-17 05:05:00.282249+00 1040 林发 \N 龙潭 \N \N \N 1 \N 4b7d3f3e-236d-4400-9f1d-73970809d04b t +2025-12-17 05:05:00.283824+00 2025-12-17 05:05:00.283831+00 1041 盛达-恒美 \N 龙潭 \N \N \N 1 \N 72bf9d4f-6b58-4ab1-9024-6764a71a8666 t +2025-12-17 05:05:00.285837+00 2025-12-17 05:05:00.285844+00 1042 王总(王诗鹤) \N 龙潭 \N \N \N 1 \N 701d2c3b-c474-4671-b235-768345b20056 t +2025-12-17 05:05:00.287827+00 2025-12-17 05:05:00.287835+00 1043 中臣纺织 \N 龙潭 \N \N \N 1 \N 6f32633f-3d08-4d8f-8e32-aa9a51b60427 t +2025-12-17 05:05:00.289917+00 2025-12-17 05:05:00.289924+00 1044 徐星梅 \N 龙潭 \N \N \N 1 \N e570b0b4-23aa-41cd-a74e-c26fe8646b05 t +2025-12-17 05:05:00.291546+00 2025-12-17 05:05:00.291552+00 1045 新杰艺 \N 龙潭 \N \N \N 1 \N 8f1094c7-cedf-43a6-a73c-9bc178ad4b13 t +2025-12-17 05:05:00.293149+00 2025-12-17 05:05:00.293155+00 1046 柯生 \N 龙潭 \N \N \N 1 \N e53f8565-3896-4543-a55e-1085af4a3e7d t +2025-12-17 05:05:00.294755+00 2025-12-17 05:05:00.294761+00 1047 维依靓 \N 龙潭 \N \N \N 1 \N 926383f5-4cd5-4068-9d67-d8f7be6b6835 t +2025-12-17 05:05:00.296347+00 2025-12-17 05:05:00.296353+00 1048 卢小姐 \N 龙潭 \N \N \N 1 \N 66574fb3-3e2a-4cd0-b4ec-60ddf3fd911f t +2025-12-17 05:05:00.297611+00 2025-12-17 05:05:00.297617+00 1049 盼哥 \N 龙潭 \N \N \N 1 \N 85604e08-076d-4fc4-8202-e3dd3f780ed2 t +2025-12-17 05:05:00.299066+00 2025-12-17 05:05:00.299073+00 1050 红欣布行 \N 龙潭 \N \N \N 1 \N caa3d9f5-6ed6-4bc5-b8cc-f2c08e45104d t +2025-12-17 05:05:00.300284+00 2025-12-17 05:05:00.30029+00 1051 A曾总 \N 白云 \N \N \N 1 \N 3e27aa1e-d870-455b-99a0-619acffc6c9a t +2025-12-17 05:05:00.301599+00 2025-12-17 05:05:00.301607+00 1052 吴总 \N A曾总 \N \N \N 1 \N 05137c7c-170c-433b-8f47-bcb987a7e787 t +2025-12-17 05:05:00.302892+00 2025-12-17 05:05:00.302898+00 1053 天纺布业 \N 龙潭 \N \N \N 1 \N 7a48a99b-8a5d-49b7-8041-a3d1c902f86c t +2025-12-17 05:05:00.304186+00 2025-12-17 05:05:00.304193+00 1054 翁先生 \N 龙潭 \N \N \N 1 \N 14b897f5-c9df-49a7-8f24-772b98b21c79 t +2025-12-17 05:05:00.305442+00 2025-12-17 05:05:00.305448+00 1055 锐杰 \N 龙潭 \N \N \N 1 \N 4546b746-30f9-4ba1-b8d6-a294ea577445 t +2025-12-17 05:05:00.306873+00 2025-12-17 05:05:00.30688+00 1056 盛达-林生 \N 龙潭 \N \N \N 1 \N 124ceaf8-890f-4399-a36d-af3a41c63e3d t +2025-12-17 05:05:00.308156+00 2025-12-17 05:05:00.308163+00 1057 何志波 \N 龙潭 \N \N \N 1 \N c68fe700-de3b-475c-a323-fa28840ec233 t +2025-12-17 05:05:00.309417+00 2025-12-17 05:05:00.309424+00 1058 阙永珍 \N 龙潭 \N \N \N 1 \N 780ab118-f950-427b-932a-4d4d30ff8506 t +2025-12-17 05:05:00.310689+00 2025-12-17 05:05:00.310695+00 1059 群紫 \N 龙潭 \N \N \N 1 \N 19a3f7ca-c8c8-43d4-976d-42f8db385bae t +2025-12-17 05:05:00.311935+00 2025-12-17 05:05:00.311941+00 1060 韵裳轩 \N 龙潭 \N \N \N 1 \N 20372715-5b46-41f1-9487-bcc2a9597043 t +2025-12-17 05:05:00.313167+00 2025-12-17 05:05:00.313173+00 1061 小轩 \N 韵裳轩 \N \N \N 1 \N 43aa64c9-2e64-41e5-964e-c9f3647a4a25 t +2025-12-17 05:05:00.314396+00 2025-12-17 05:05:00.314402+00 1062 朱伟洪 \N 朱伟洪 \N \N \N 1 \N f8d41b05-6f5a-4b35-8316-bc6d358db078 t +2025-12-17 05:05:00.315539+00 2025-12-17 05:05:00.315544+00 1063 张家明 \N 龙潭 \N \N \N 1 \N a6d74c15-2918-480a-9ad8-7174da82a7a0 t +2025-12-17 05:05:00.316401+00 2025-12-17 05:05:00.316405+00 1064 美沙特 \N 龙潭 \N \N \N 1 \N b7a4b527-6dc0-4c75-a1bd-2c043a72310c t +2025-12-17 05:05:00.317239+00 2025-12-17 05:05:00.317243+00 1065 爱艺 \N 龙潭 \N \N \N 1 \N 156036df-c7e7-405f-8b80-43696610dcf4 t +2025-12-17 05:05:00.318046+00 2025-12-17 05:05:00.31805+00 1066 凡高 \N 龙潭 \N \N \N 1 \N f66063b3-5697-42b0-b620-763179c86d01 t +2025-12-17 05:05:00.318853+00 2025-12-17 05:05:00.318857+00 1067 金波 \N 龙潭 \N \N \N 1 \N d623faaa-8c74-4446-9cdb-c5ca4b93f9cc t +2025-12-17 05:05:00.319649+00 2025-12-17 05:05:00.319653+00 1068 舒老板 \N 龙潭 \N \N \N 1 \N a7b1b3bb-0803-43d8-bb3e-dc1ec7c99f40 t +2025-12-17 05:05:00.320443+00 2025-12-17 05:05:00.320447+00 1069 黄创俊 \N 白云 \N \N \N 1 \N 19bfbb28-5376-459d-83b8-70dccbf1ed1e t +2025-12-17 05:05:00.32122+00 2025-12-17 05:05:00.321224+00 1070 鑫金莱服饰 \N 龙潭 \N \N \N 1 \N 3f19bc80-0e76-4ba1-8730-a253d3b5aa0f t +2025-12-17 05:05:00.322013+00 2025-12-17 05:05:00.322017+00 1071 嘉发 \N 龙潭 \N \N \N 1 \N 3d0d447a-75cb-4b9d-862f-ef2eacf636dd t +2025-12-17 05:05:00.322808+00 2025-12-17 05:05:00.322812+00 1072 赤沙-黄总 \N 龙潭 \N \N \N 1 \N 96476faa-1f2d-4e96-b163-109427c29461 t +2025-12-17 05:05:00.323593+00 2025-12-17 05:05:00.323597+00 1073 彭刚 \N 龙潭 \N \N \N 1 \N 2ff96cda-1d6d-4659-9883-4daa137cf398 t +2025-12-17 05:05:00.324385+00 2025-12-17 05:05:00.324389+00 1074 Z永发 \N 龙潭 \N \N \N 1 \N 59940da4-8488-41d1-8f03-420f6aa9d9fd t +2025-12-17 05:05:00.325176+00 2025-12-17 05:05:00.32518+00 1075 盛达小易 \N 龙潭 \N \N \N 1 \N 80f9af28-5f56-4f1a-9747-6603cf72a9c2 t +2025-12-17 05:05:00.326123+00 2025-12-17 05:05:00.326128+00 1076 刘昌 \N 龙潭 \N \N \N 1 \N 7a1cdf2e-9334-4fb3-bfed-0ef2e23e1b1b t +2025-12-17 05:05:00.327236+00 2025-12-17 05:05:00.327241+00 1077 新客户 \N 龙潭 \N \N \N 1 \N 61db2711-31f8-4fc2-9cce-75839d135dcd t +2025-12-17 05:05:00.328065+00 2025-12-17 05:05:00.32807+00 1078 陈伟 \N 龙潭 \N \N \N 1 \N b01db248-abdb-4ac7-9f6a-7450054f1e07 t +2025-12-17 05:05:00.3289+00 2025-12-17 05:05:00.328904+00 1079 A粤焱沈总 \N 白云 \N \N \N 1 \N 7d0a68ed-ec59-48c9-86cd-a9cc8c5b96e1 t +2025-12-17 05:05:00.329708+00 2025-12-17 05:05:00.329712+00 1080 秦洪伍 \N 龙潭 \N \N \N 1 \N a49f0f16-46ce-4fde-a96c-7b450ff27d4f t +2025-12-17 05:05:00.330569+00 2025-12-17 05:05:00.330573+00 1081 广达 \N 龙潭 \N \N \N 1 \N a9a084ae-1200-42c8-b178-5f43e1645383 t +2025-12-17 05:05:00.331386+00 2025-12-17 05:05:00.33139+00 1082 伍想 \N 龙潭 \N \N \N 1 \N 61c028c0-8a29-4412-b47a-610be68d8883 t +2025-12-17 05:05:00.332181+00 2025-12-17 05:05:00.332185+00 1083 张涛 \N 龙潭 \N \N \N 1 \N 7a6ca7f3-3303-4923-a07f-db3cdbda0d7b t +2025-12-17 05:05:00.333007+00 2025-12-17 05:05:00.333011+00 1084 唐胜 \N 龙潭 \N \N \N 1 \N 82d2fcea-4a54-46e9-8a3d-a86a1a9e1573 t +2025-12-17 05:05:00.333813+00 2025-12-17 05:05:00.333817+00 1085 程旭 \N 龙潭 \N \N \N 1 \N bc7f8620-af83-4262-8e85-c6d4dbb67e6a t +2025-12-17 05:05:00.334631+00 2025-12-17 05:05:00.334635+00 1086 江宏 \N 龙潭 \N \N \N 1 \N 253ec637-817c-40e2-ae4c-c78d90398f6b t +2025-12-17 05:05:00.335433+00 2025-12-17 05:05:00.335436+00 1087 林骏源 \N 龙潭 \N \N \N 1 \N 1f94e097-02f8-42f2-b348-6df5dd51eb01 t +2025-12-17 05:05:00.336211+00 2025-12-17 05:05:00.336215+00 1088 徐夏 \N 龙潭 \N \N \N 1 \N ddf6a6a3-bb86-4ed1-95f4-ab404956b90a t +2025-12-17 05:05:00.337133+00 2025-12-17 05:05:00.337138+00 1089 林庆福 \N 龙潭 \N \N \N 1 \N 22dab4c3-90b8-4113-bdcc-ddd837c39f4f t +2025-12-17 05:05:00.338026+00 2025-12-17 05:05:00.338034+00 1090 杨波 \N 龙潭 \N \N \N 1 \N 51a5837a-8967-42bd-b3fe-089819fa499a t +2025-12-17 05:05:00.338919+00 2025-12-17 05:05:00.338924+00 1091 程辉 \N 龙潭 \N \N \N 1 \N 8778b720-97d1-4308-aa34-745051eb23c3 t +2025-12-17 05:05:00.339791+00 2025-12-17 05:05:00.339795+00 1092 张一夫 \N 龙潭 \N \N \N 1 \N 0a7f1d3b-324f-482a-9c89-14b9c4cdaf87 t +2025-12-17 05:05:00.340638+00 2025-12-17 05:05:00.340641+00 1093 杨培龙 \N 龙潭 \N \N \N 1 \N cf102d7a-fdd1-41cb-aefc-0dcdccda44f9 t +2025-12-17 05:05:00.341426+00 2025-12-17 05:05:00.341429+00 1094 易达尔贸易 \N 龙潭 \N \N \N 1 \N 30fc818f-eaa1-46dc-8ac3-da64197a4c2e t +2025-12-17 05:05:00.342265+00 2025-12-17 05:05:00.342269+00 1095 盛达-张总 \N 龙潭 \N \N \N 1 \N 1ffcb96d-04a5-42ea-a0ff-6bf29524b7cd t +2025-12-17 05:05:00.343115+00 2025-12-17 05:05:00.343119+00 1096 来发裁床 \N 龙潭 \N \N \N 1 \N 49a357ee-1c31-4e1d-903f-cfba3971f3ca t +2025-12-17 05:05:00.343916+00 2025-12-17 05:05:00.34392+00 1097 金博 \N 金博 \N \N \N 1 \N 3b629084-942a-4cbb-957a-ef190a2098e2 t +2025-12-17 05:05:00.344704+00 2025-12-17 05:05:00.344707+00 1098 恒远 \N 龙潭 \N \N \N 1 \N 954b5a02-52df-4ca1-8ff4-a0736435e549 t +2025-12-17 05:05:00.34552+00 2025-12-17 05:05:00.345524+00 1099 A李生 \N 白云 \N \N \N 1 \N c4f0b2a9-a7f5-4aa8-a36b-6c6184a4c5a6 t +2025-12-17 05:05:00.346319+00 2025-12-17 05:05:00.346322+00 1100 盛达-黄子诺 \N 龙潭 \N \N \N 1 \N f00462b8-0e98-4306-a973-9ab83ad9eade t +2025-12-17 05:05:00.34709+00 2025-12-17 05:05:00.347093+00 1101 彭铁军-彭伟 \N 龙潭 \N \N \N 1 \N b191203b-a1dd-4513-9930-d5bfe95a556f t +2025-12-17 05:05:00.347923+00 2025-12-17 05:05:00.347927+00 1102 川大纺织 \N 龙潭 \N \N \N 1 \N c0dbb45c-2cdc-4212-968f-42fbd63cb875 t +2025-12-17 05:05:00.348772+00 2025-12-17 05:05:00.348776+00 1103 王克威 \N 龙潭 \N \N \N 1 \N adf806f5-6070-492f-a390-33dfa90911af t +2025-12-17 05:05:00.350091+00 2025-12-17 05:05:00.350095+00 1104 丰艺 \N 龙潭 \N \N \N 1 \N 869456e3-dc95-45cb-a3dc-311a18d0bb67 t +2025-12-17 05:05:00.350868+00 2025-12-17 05:05:00.350871+00 1105 柯月庭 \N 龙潭 \N \N \N 1 \N c204ceef-1132-4ac9-adfa-c261d9701928 t +2025-12-17 05:05:00.351668+00 2025-12-17 05:05:00.351672+00 1106 郑必荣 \N 龙潭 \N \N \N 1 \N 3be2c30f-33db-4b44-a799-d29853a2b8f8 t +2025-12-17 05:05:00.352451+00 2025-12-17 05:05:00.352455+00 1107 Z美乐 \N 龙潭 \N \N \N 1 \N 8a8b70e8-896c-472e-afb4-71278c1af311 t +2025-12-17 05:05:00.353231+00 2025-12-17 05:05:00.353234+00 1108 杨子货 \N 龙潭 \N \N \N 1 \N 931854dc-55a7-4fa1-b909-22aa5bc459a6 t +2025-12-17 05:05:00.354136+00 2025-12-17 05:05:00.35414+00 1109 海虹 \N 龙潭 \N \N \N 1 \N cd55f146-d679-4622-9edd-61f989470412 t +2025-12-17 05:05:00.627138+00 2025-12-17 05:05:00.627149+00 1110 凯祺蕊娜 \N 龙潭 \N \N \N 1 \N 1e294455-cb0b-4633-9c30-7f0b379572e0 t +2025-12-17 05:05:00.628747+00 2025-12-17 05:05:00.628754+00 1111 旭兴 \N 龙潭 \N \N \N 1 \N a0b96e78-7e4c-4d2f-8e44-38beb0875cb7 t +2025-12-17 05:05:00.629986+00 2025-12-17 05:05:00.629992+00 1112 冯俊 \N 龙潭 \N \N \N 1 \N 8861389e-b4d2-4fca-8e86-facbce53280f t +2025-12-17 05:05:00.631211+00 2025-12-17 05:05:00.631218+00 1113 邱小姐 \N 龙潭 \N \N \N 1 \N 82e4a02e-a09f-4f68-a76d-39a138363f45 t +2025-12-17 05:05:00.632432+00 2025-12-17 05:05:00.632438+00 1114 旭升 \N 龙潭 \N \N \N 1 \N 1b674232-9991-4bc0-b255-3c8407761b66 t +2025-12-17 05:05:00.633679+00 2025-12-17 05:05:00.633685+00 1115 张文溢 \N 龙潭 \N \N \N 1 \N 38037902-bde4-4bee-b5e9-dff8a4c1fce0 t +2025-12-17 05:05:00.63474+00 2025-12-17 05:05:00.634744+00 1116 金科富 \N 龙潭 \N \N \N 1 \N cfbcd464-532e-4ade-9844-61933e1779f3 t +2025-12-17 05:05:00.635596+00 2025-12-17 05:05:00.6356+00 1117 盛达刘生 \N 龙潭 \N \N \N 1 \N 3c269e52-9ac1-45b2-ab90-2064cac5a0df t +2025-12-17 05:05:00.636401+00 2025-12-17 05:05:00.636405+00 1118 盛达胡小姐 \N 龙潭 \N \N \N 1 \N 8bd15630-216a-4666-91f3-d60c73e82f45 t +2025-12-17 05:05:00.637201+00 2025-12-17 05:05:00.637205+00 1119 伊程制衣厂 \N 龙潭 \N \N \N 1 \N 49a14564-4d27-4920-b5d1-b2b193429683 t +2025-12-17 05:05:00.637994+00 2025-12-17 05:05:00.637998+00 1120 王俊 \N 龙潭 \N \N \N 1 \N 0ee71cbd-abf2-4f1c-a562-540962a94eee t +2025-12-17 05:05:00.638768+00 2025-12-17 05:05:00.638772+00 1121 姚生 \N 龙潭 \N \N \N 1 \N 676aafd8-151d-4a8c-bb9f-3d511be77c57 t +2025-12-17 05:05:00.639571+00 2025-12-17 05:05:00.639575+00 1122 盛达刘老板 \N 龙潭 \N \N \N 1 \N 68a7b097-df09-4fe6-b5e1-9939123b653c t +2025-12-17 05:05:00.64036+00 2025-12-17 05:05:00.640364+00 1123 胡鼎 \N 龙潭 \N \N \N 1 \N d511bb6c-94f6-4aa6-9e53-07ba0dcc5bc8 t +2025-12-17 05:05:00.641131+00 2025-12-17 05:05:00.641134+00 1124 李群 \N 龙潭 \N \N \N 1 \N 4e322c93-6c49-4002-939f-d9da9b6224a1 t +2025-12-17 05:05:00.641908+00 2025-12-17 05:05:00.641912+00 1125 解正忠 \N 龙潭 \N \N \N 1 \N 9ed4c7c6-8efa-4221-a744-fa189cc64081 t +2025-12-17 05:05:00.642702+00 2025-12-17 05:05:00.642705+00 1126 盛达 \N 龙潭 \N \N \N 1 \N 7513efdf-78c7-4bbe-a646-fd5e2b3a3ef7 t +2025-12-17 05:05:00.64347+00 2025-12-17 05:05:00.643473+00 1127 四海 \N 龙潭 \N \N \N 1 \N a2321048-2eee-4e18-aeee-4e77ab61cc55 t +2025-12-17 05:05:00.644351+00 2025-12-17 05:05:00.644355+00 1128 玲姐 \N 龙潭 \N \N \N 1 \N ea7b0b61-fe0f-4795-90fa-7da379e87208 t +2025-12-17 05:05:00.645144+00 2025-12-17 05:05:00.645147+00 1129 吴仰希 \N 龙潭 \N \N \N 1 \N a049e839-a2ed-4a42-854a-c8400b8bf89c t +2025-12-17 05:05:00.645946+00 2025-12-17 05:05:00.64595+00 1130 Z李璋 \N 龙潭 \N \N \N 1 \N ca96a6ce-1d97-4ef1-91a5-805a2e1a84ab t +2025-12-17 05:05:00.646741+00 2025-12-17 05:05:00.646744+00 1131 丽君姐 \N 龙潭 \N \N \N 1 \N 8502ef63-e5d6-4e19-917a-f7012b474d1e t +2025-12-17 05:05:00.647519+00 2025-12-17 05:05:00.647523+00 1132 美涵 \N 龙潭 \N \N \N 1 \N e3d12788-da66-4996-bc54-d19d3832a309 t +2025-12-17 05:05:00.648349+00 2025-12-17 05:05:00.648353+00 1133 曾念 \N 龙潭 \N \N \N 1 \N 49440e24-bd68-4fa0-90e5-90d3a8248309 t +2025-12-17 05:05:00.64914+00 2025-12-17 05:05:00.649144+00 1134 何玄 \N 龙潭 \N \N \N 1 \N 446fa0e4-cef1-4462-ada5-f74b135574be t +2025-12-17 05:05:00.649908+00 2025-12-17 05:05:00.649912+00 1135 盛达张恒 \N 龙潭 \N \N \N 1 \N 57b04774-b049-490c-872c-decac9268005 t +2025-12-17 05:05:00.650725+00 2025-12-17 05:05:00.650729+00 1136 伍丹 \N 龙潭 \N \N \N 1 \N 84e4794a-87c1-4a45-8d84-c1a7f15b9324 t +2025-12-17 05:05:00.651518+00 2025-12-17 05:05:00.651522+00 1137 杰恩 \N 龙潭 \N \N \N 1 \N b1745a18-de55-4bd2-80ed-e28ea1fec540 t +2025-12-17 05:05:00.65229+00 2025-12-17 05:05:00.652294+00 1138 曾凡起 \N 龙潭 \N \N \N 1 \N 8c0c80eb-16c3-4574-83b8-069af370a2c9 t +2025-12-17 05:05:00.653048+00 2025-12-17 05:05:00.653051+00 1139 桃太萌 \N 龙潭 \N \N \N 1 \N cc670032-7e18-44f3-ba89-478c1ed91ce0 t +2025-12-17 05:05:00.653843+00 2025-12-17 05:05:00.653847+00 1140 东方纺织 \N 龙潭 \N \N \N 1 \N 98190b0a-e62c-4b53-8423-c87074898e89 t +2025-12-17 05:05:00.654622+00 2025-12-17 05:05:00.654626+00 1141 杰哥 \N 龙潭 \N \N \N 1 \N a6e61103-9640-41ce-83fa-81985717edaa t +2025-12-17 05:05:00.655407+00 2025-12-17 05:05:00.655412+00 1142 彤彤服饰 \N 龙潭 \N \N \N 1 \N 9cf1d765-ade1-48f5-9edc-df5a882cc3c2 t +2025-12-17 05:05:00.656202+00 2025-12-17 05:05:00.656206+00 1143 张奕鹏 \N 龙潭 \N \N \N 1 \N b088e8e7-455b-4517-aa06-c72114559a9f t +2025-12-17 05:05:00.656972+00 2025-12-17 05:05:00.656976+00 1144 土华宋老板 \N 龙潭 \N \N \N 1 \N ed6ec20d-b9cd-487f-a7be-c030bca5d27e t +2025-12-17 05:05:00.657744+00 2025-12-17 05:05:00.657748+00 1145 张俊锋 \N 龙潭 \N \N \N 1 \N f4b5391b-1018-412d-b004-9649f71b2fd1 t +2025-12-17 05:05:00.658524+00 2025-12-17 05:05:00.658528+00 1146 万绣 \N 龙潭 \N \N \N 1 \N 8635c36f-a407-40c6-bf4b-07d583556a9f t +2025-12-17 05:05:00.65929+00 2025-12-17 05:05:00.659293+00 1147 九歌 \N 龙潭 \N \N \N 1 \N 40b19db7-2593-4a54-95ba-a4e7b08b1c0f t +2025-12-17 05:05:00.660071+00 2025-12-17 05:05:00.660075+00 1148 栢兴纺织 \N 龙潭 \N \N \N 1 \N e7054542-b7f5-4685-a8e1-9921847dc404 t +2025-12-17 05:05:00.660957+00 2025-12-17 05:05:00.660962+00 1149 盛达周生 \N 龙潭 \N \N \N 1 \N 6ffedcf2-c3e5-4890-bc78-4b73f4a6df25 t +2025-12-17 05:05:00.661782+00 2025-12-17 05:05:00.661786+00 1150 童帅 \N 龙潭 \N \N \N 1 \N ca8596d1-d0d0-4c85-8952-bda8b7b563fa t +2025-12-17 05:05:00.66265+00 2025-12-17 05:05:00.662655+00 1151 刘洋 \N 龙潭 \N \N \N 1 \N f60acda9-b443-479b-be33-6d4694c6610c t +2025-12-17 05:05:00.66384+00 2025-12-17 05:05:00.663844+00 1152 聂俊华 \N 龙潭 \N \N \N 1 \N 4b3f4963-4d29-43a1-9c82-03d55efbed06 t +2025-12-17 05:05:00.664628+00 2025-12-17 05:05:00.664632+00 1153 罗兵 \N 龙潭 \N \N \N 1 \N e22a9afd-e2c0-4295-a95d-572ae592dbe4 t +2025-12-17 05:05:00.665434+00 2025-12-17 05:05:00.665438+00 1154 许侃 \N 龙潭 \N \N \N 1 \N 25213c59-41e2-4ace-ae67-6865ed05d042 t +2025-12-17 05:05:00.666219+00 2025-12-17 05:05:00.666223+00 1155 Z九头鸟 \N 龙潭 \N \N \N 1 \N a4cbb55a-82de-4f16-b7c4-3d4da2b73446 t +2025-12-17 05:05:00.667027+00 2025-12-17 05:05:00.667031+00 1156 万佰仟 \N 龙潭 \N \N \N 1 \N 9eae47f1-925d-4fcc-82bf-3fc331a787fb t +2025-12-17 05:05:00.667809+00 2025-12-17 05:05:00.667812+00 1157 洪辉 \N 龙潭 \N \N \N 1 \N d73e4eea-f677-47de-b640-fb60f8f6115d t +2025-12-17 05:05:00.668572+00 2025-12-17 05:05:00.668575+00 1158 江涛 \N 龙潭 \N \N \N 1 \N 920af9b6-f8f6-4d53-b4de-9f2e75ffa17f t +2025-12-17 05:05:00.669447+00 2025-12-17 05:05:00.669451+00 1159 林弟 \N 龙潭 \N \N \N 1 \N 132d963c-e84f-4bad-8af7-a4a343f303ff t +2025-12-17 05:05:00.670298+00 2025-12-17 05:05:00.670302+00 1160 盛达柯生 \N 龙潭 \N \N \N 1 \N 43832632-6e05-48de-8425-e003f1a6a2d0 t +2025-12-17 05:05:00.671115+00 2025-12-17 05:05:00.671119+00 1161 豪美 \N 龙潭 \N \N \N 1 \N b25b9fb3-0da8-47af-bf99-db84c63768ad t +2025-12-17 05:05:00.671913+00 2025-12-17 05:05:00.671916+00 1162 F珊羽 \N 佛山 \N \N \N 1 \N 6305524e-954d-4173-a0de-d45354200171 t +2025-12-17 05:05:00.672691+00 2025-12-17 05:05:00.672694+00 1163 A一步一步 \N 白云 \N \N \N 1 \N a7f4a23e-7a40-4325-800d-04b97d0532be t +2025-12-17 05:05:00.673464+00 2025-12-17 05:05:00.673468+00 1164 刘家勇 \N 龙潭 \N \N \N 1 \N 5c7d0b6c-2fd3-4cc7-90d8-e937dd6504a9 t +2025-12-17 05:05:00.674342+00 2025-12-17 05:05:00.674347+00 1165 丰果服饰-蔡总 \N 龙潭 \N \N \N 1 \N 0ae81442-9f65-4e7f-b2fb-c24635bcadd0 t +2025-12-17 05:05:00.675219+00 2025-12-17 05:05:00.675223+00 1166 彭铁军-刘少敏 \N 龙潭 \N \N \N 1 \N 37ee8387-8c12-4cfe-b2dd-eabe1e1410b5 t +2025-12-17 05:05:00.6765+00 2025-12-17 05:05:00.676508+00 1167 Z嘉鑫 \N 龙潭 \N \N \N 1 \N 675818a0-e7ab-4124-92b8-b269097046ad t +2025-12-17 05:05:00.677917+00 2025-12-17 05:05:00.677924+00 1168 梁汉杰 \N 龙潭 \N \N \N 1 \N b004c868-2414-44b2-baa1-48a7af8edba7 t +2025-12-17 05:05:00.679441+00 2025-12-17 05:05:00.679448+00 1169 恒升服饰 \N 龙潭 \N \N \N 1 \N 438e77cc-5e46-4370-803a-a75a0619f6f3 t +2025-12-17 05:05:00.681045+00 2025-12-17 05:05:00.681052+00 1170 简里服饰 \N 龙潭 \N \N \N 1 \N 160838b6-c023-428d-b531-7a3204211f53 t +2025-12-17 05:05:00.682647+00 2025-12-17 05:05:00.682653+00 1171 Z长扬 \N 龙潭 \N \N \N 1 \N 74bf854f-9b20-4a7c-b003-d8c9d8e35b1d t +2025-12-17 05:05:00.684198+00 2025-12-17 05:05:00.684204+00 1172 鸿总 \N 龙潭 \N \N \N 1 \N 7c8a4b30-b9f4-4502-be15-1e1d9f2f2894 t +2025-12-17 05:05:00.685706+00 2025-12-17 05:05:00.685711+00 1173 鸿立 \N 龙潭 \N \N \N 1 \N 8d590685-dee8-4f1b-922f-3817936a2d28 t +2025-12-17 05:05:00.687226+00 2025-12-17 05:05:00.687232+00 1174 谢浩托 \N 龙潭 \N \N \N 1 \N 54688626-540b-46f7-a507-4187cea07f60 t +2025-12-17 05:05:00.688881+00 2025-12-17 05:05:00.688888+00 1175 希音OEM佐豪 \N 龙潭 \N \N \N 1 \N aa54825c-a9f6-4fbd-99df-b7045cf4adb0 t +2025-12-17 05:05:00.690538+00 2025-12-17 05:05:00.690545+00 1176 戴本远 \N 龙潭 \N \N \N 1 \N d0682c56-4051-40f0-9918-489cb3213b72 t +2025-12-17 05:05:00.691976+00 2025-12-17 05:05:00.691983+00 1177 解老板 \N 龙潭 \N \N \N 1 \N 9a46029f-ea4f-4583-b733-5349d173482a t +2025-12-17 05:05:00.69319+00 2025-12-17 05:05:00.693196+00 1178 吴子见 \N 龙潭 \N \N \N 1 \N 79b93295-960a-4f9a-9322-266e3ba6b661 t +2025-12-17 05:05:00.694389+00 2025-12-17 05:05:00.694396+00 1179 A峰铭 \N 白云 \N \N \N 1 \N b6ab7417-25e3-4274-99d4-5b0821a72b6d t +2025-12-17 05:05:00.695587+00 2025-12-17 05:05:00.695593+00 1180 陈少勇 \N 龙潭 \N \N \N 1 \N 11cefd95-6511-4c17-8c15-0b13811c5797 t +2025-12-17 05:05:00.696783+00 2025-12-17 05:05:00.696789+00 1181 刘佳 \N 龙潭 \N \N \N 1 \N 1866b1db-1d42-449f-a355-d5e7eb2d3633 t +2025-12-17 05:05:00.698002+00 2025-12-17 05:05:00.698009+00 1182 杨泳凯 \N 龙潭 \N \N \N 1 \N 4968cb46-14a0-4008-85bd-f7d432965886 t +2025-12-17 05:05:00.699288+00 2025-12-17 05:05:00.699293+00 1183 杨锐辉 \N 龙潭 \N \N \N 1 \N b9ee4015-618f-4c15-8a85-8d1f36473917 t +2025-12-17 05:05:00.700503+00 2025-12-17 05:05:00.700509+00 1184 A唯依 \N 白云 \N \N \N 1 \N 205f9e98-e299-4fef-8232-5fdb1b9478d7 t +2025-12-17 05:05:00.701731+00 2025-12-17 05:05:00.701737+00 1185 陈瑜 \N 龙潭 \N \N \N 1 \N 95b4a31e-d882-4556-b38c-f6bd1776ffec t +2025-12-17 05:05:00.702926+00 2025-12-17 05:05:00.702931+00 1186 彭铁军-斌牌 \N 龙潭 \N \N \N 1 \N c0fc284c-231d-42fe-b501-450ec40d7961 t +2025-12-17 05:05:00.704114+00 2025-12-17 05:05:00.70412+00 1187 谷总 \N 龙潭 \N \N \N 1 \N fd925a4d-c260-4da8-acb2-c4cab3736189 t +2025-12-17 05:05:00.705302+00 2025-12-17 05:05:00.705308+00 1188 张晓鹏 \N 龙潭 \N \N \N 1 \N 4d81b4f0-3958-409f-862a-9f145993dd51 t +2025-12-17 05:05:00.706444+00 2025-12-17 05:05:00.706449+00 1189 永丰 \N 龙潭 \N \N \N 1 \N 525e0dd5-f8e3-4bf1-a788-a1ce43bfd741 t +2025-12-17 05:05:00.70734+00 2025-12-17 05:05:00.707344+00 1190 盛达肖老板 \N 龙潭 \N \N \N 1 \N bb441f97-4b6b-4ad4-a7d8-1555ed6b1842 t +2025-12-17 05:05:00.708201+00 2025-12-17 05:05:00.708205+00 1191 曼罗服饰 \N 龙潭 \N \N \N 1 \N d5b263a5-eda0-42e3-b130-21ae906cdf04 t +2025-12-17 05:05:00.709081+00 2025-12-17 05:05:00.709085+00 1192 黄宇禧 \N 龙潭 \N \N \N 1 \N c68835d5-64b8-4c4b-a3e3-bec76994afbb t +2025-12-17 05:05:00.709911+00 2025-12-17 05:05:00.709915+00 1193 哆啦服饰 \N 龙潭 \N \N \N 1 \N 992029d6-3c0d-443e-a79f-792ec016e955 t +2025-12-17 05:05:00.71074+00 2025-12-17 05:05:00.710745+00 1194 英姿服饰 \N 龙潭 \N \N \N 1 \N e8323836-d4ad-4e0a-8e07-2fda6f917c13 t +2025-12-17 05:05:00.711575+00 2025-12-17 05:05:00.711579+00 1195 龙潭宋总 \N 龙潭 \N \N \N 1 \N 29dc0e84-18f8-497f-ade9-5fc4fcbd4ef7 t +2025-12-17 05:05:00.712366+00 2025-12-17 05:05:00.71237+00 1196 杨凌服饰 \N 龙潭 \N \N \N 1 \N 452a2e97-501f-4191-8943-281e3328b735 t +2025-12-17 05:05:00.713145+00 2025-12-17 05:05:00.713149+00 1197 华珍服饰 \N 龙潭 \N \N \N 1 \N f7acba5f-f696-428e-93bb-3cdc267d67f9 t +2025-12-17 05:05:00.713961+00 2025-12-17 05:05:00.713965+00 1198 赤沙夏丰 \N 龙潭 \N \N \N 1 \N db1ec255-f1fa-45b9-8d32-6a1ba7116fbb t +2025-12-17 05:05:00.714763+00 2025-12-17 05:05:00.714768+00 1199 吴广贤(吴总) \N 龙潭 \N \N \N 1 \N 51fa41c4-d9c5-43f1-91c9-462f2bd89a1b t +2025-12-17 05:05:00.715757+00 2025-12-17 05:05:00.715761+00 1200 九洲-国泰 \N 龙潭 \N \N \N 1 \N 6571fec0-050a-49da-9ffa-8442be1c94f3 t +2025-12-17 05:05:00.716558+00 2025-12-17 05:05:00.716562+00 1201 土华-程总 \N 龙潭 \N \N \N 1 \N 5dbeadce-001d-4535-9165-719821e2cf87 t +2025-12-17 05:05:00.717534+00 2025-12-17 05:05:00.717539+00 1202 天诚 \N 龙潭 \N \N \N 1 \N 7c79e56a-1168-44e2-aa84-ca6803175ef9 t +2025-12-17 05:05:00.718368+00 2025-12-17 05:05:00.718372+00 1203 自然界服饰 \N 龙潭 \N \N \N 1 \N fcbaab5b-b27d-4b80-a0fd-0178e46b9b53 t +2025-12-17 05:05:00.71916+00 2025-12-17 05:05:00.719163+00 1204 何小姐 \N 龙潭 \N \N \N 1 \N 1ee334d4-0f61-46dc-a90c-0c0fd64a14b4 t +2025-12-17 05:05:00.719966+00 2025-12-17 05:05:00.71997+00 1205 黄明华 \N 龙潭 \N \N \N 1 \N 3ecc4c5a-70f5-477b-b367-f6a0e76fa00d t +2025-12-17 05:05:00.720779+00 2025-12-17 05:05:00.720783+00 1206 MQ服饰 \N 龙潭 \N \N \N 1 \N 4d78daab-bca5-47ff-82f0-9e643d60878f t +2025-12-17 05:05:00.721577+00 2025-12-17 05:05:00.72158+00 1207 恋衣坊 \N 龙潭 \N \N \N 1 \N 7c8c151b-2ef4-4dc7-ab4e-54c6429054bf t +2025-12-17 05:05:00.722384+00 2025-12-17 05:05:00.722389+00 1208 利群服饰 \N 龙潭 \N \N \N 1 \N 779c0695-4a42-4bae-9524-5ef6bf4f7665 t +2025-12-17 05:05:00.723174+00 2025-12-17 05:05:00.723178+00 1209 岱丽服饰 \N 龙潭 \N \N \N 1 \N 50425e68-8772-4483-8c6d-087661397f96 t +2025-12-17 05:10:01.2532+00 2025-12-17 05:10:01.253209+00 1210 振轩布行 \N 龙潭 \N \N \N 1 \N 1c33cf18-0f8b-4e1b-958d-90bf9d76bde4 t +2025-12-17 05:10:01.255036+00 2025-12-17 05:10:01.255042+00 1211 麦莲娜 \N 龙潭 \N \N \N 1 \N bb9c1cc8-06a8-4ed3-8484-58e2e100b11b t +2025-12-17 05:10:01.25601+00 2025-12-17 05:10:01.256016+00 1212 陈旋 \N 龙潭 \N \N \N 1 \N d44c352f-da66-47bb-a3cd-63892e788c78 t +2025-12-17 05:10:01.256919+00 2025-12-17 05:10:01.256923+00 1213 赤沙熊总 \N 龙潭 \N \N \N 1 \N 35f48a3e-f58e-4177-b5df-61e83ac25ae0 t +2025-12-17 05:10:01.257815+00 2025-12-17 05:10:01.257819+00 1214 欧歌诗 \N 龙潭 \N \N \N 1 \N 1fddc42f-ed3e-4dc8-9043-8ca730eecc1c t +2025-12-17 05:10:01.258754+00 2025-12-17 05:10:01.258758+00 1215 依之美 \N 龙潭 \N \N \N 1 \N 79eb384d-807c-4d37-a460-ea3fd78d0157 t +2025-12-17 05:10:01.259688+00 2025-12-17 05:10:01.259692+00 1216 测试 \N 龙潭 \N \N \N 1 \N 4f282039-9ff7-49e1-bb57-5c14d4d15507 t +2025-12-17 05:10:01.26093+00 2025-12-17 05:10:01.260935+00 1217 恒耀丰 \N 龙潭 \N \N \N 1 \N d5014946-5e6b-46cf-b1ba-7262ce71f560 t +2025-12-17 05:10:01.262422+00 2025-12-17 05:10:01.26243+00 1218 特设服饰 \N 龙潭 \N \N \N 1 \N 1d3b3a62-9677-4b6d-9f0f-cf3f8deb8a0c t +2025-12-17 05:10:01.264047+00 2025-12-17 05:10:01.264054+00 1219 程总 \N 龙潭 \N \N \N 1 \N a5886cb5-f1ab-4080-90b1-de4b8d219eb1 t +2025-12-17 05:10:01.265949+00 2025-12-17 05:10:01.265959+00 1220 彬宇服饰 \N 龙潭 \N \N \N 1 \N e299b788-87ce-45da-91aa-144f5d53af4b t +2025-12-17 05:10:01.267873+00 2025-12-17 05:10:01.267883+00 1221 兴业纺织 \N 龙潭 \N \N \N 1 \N c1c0e74d-d0fc-4a4f-b9bb-4dddda266281 t +2025-12-17 05:10:01.269623+00 2025-12-17 05:10:01.26963+00 1222 王威王总 \N 龙潭 \N \N \N 1 \N 158f42eb-594d-4f5a-82ed-d7ba9da55cf7 t +2025-12-17 05:10:01.271243+00 2025-12-17 05:10:01.27125+00 1223 衣上型服饰 \N 龙潭 \N \N \N 1 \N 28a0ba05-8e02-4855-8655-e37c55c82c6b t +2025-12-17 05:10:01.272844+00 2025-12-17 05:10:01.272851+00 1224 鹏鑫服饰 \N 龙潭 \N \N \N 1 \N e9096397-262f-4b40-b7fb-bfb42671e352 t +2025-12-17 05:10:01.27408+00 2025-12-17 05:10:01.274085+00 1225 朝新服饰 \N 龙潭 \N \N \N 1 \N 2d0b03b5-e28e-46b4-b151-bb559b037f16 t +2025-12-17 05:10:01.274979+00 2025-12-17 05:10:01.274983+00 1226 歌斯拉-铭萱 \N 龙潭 \N \N \N 1 \N edbe7859-9629-424b-b891-b1a112aa75fe t +2025-12-17 05:10:01.275807+00 2025-12-17 05:10:01.275811+00 1227 番禺江南贝拉莱服饰 \N 龙潭 \N \N \N 1 \N 9bf50d65-6557-415d-80bb-15a554f5e52b t +2025-12-17 05:10:01.276642+00 2025-12-17 05:10:01.276646+00 1228 梓杰服饰 \N 龙潭 \N \N \N 1 \N 558cd4c8-58e4-4284-bca0-9b10b26eff61 t +2025-12-17 05:10:01.277474+00 2025-12-17 05:10:01.277478+00 1229 硕秀纺织(卓越) \N 龙潭 \N \N \N 1 \N cc6ca319-9d25-4813-82c1-5c2d710a0fc1 t +2025-12-17 05:10:01.278463+00 2025-12-17 05:10:01.278467+00 1230 锦穗服饰 \N 龙潭 \N \N \N 1 \N ba303a3c-497d-4790-bda4-133e4c016900 t +2025-12-17 05:10:01.279327+00 2025-12-17 05:10:01.279331+00 1231 腾跃服饰 \N 龙潭 \N \N \N 1 \N 466c6027-73cd-4d32-86a4-3aee3856207a t +2025-12-17 05:10:01.280126+00 2025-12-17 05:10:01.28013+00 1232 爱思博 \N 龙潭 \N \N \N 1 \N 63e0afb0-1216-4a8d-aadc-28e900c625bd t +2025-12-17 05:10:01.28092+00 2025-12-17 05:10:01.280924+00 1233 衣饰界 \N 龙潭 \N \N \N 1 \N 5d3a0536-988c-42d3-bc54-7da4c064f5a5 t +2025-12-17 05:10:01.2818+00 2025-12-17 05:10:01.281806+00 1234 娜洛莹服饰 \N 龙潭 \N \N \N 1 \N 9831d405-f68e-4569-9343-a8d826a07f0b t +2025-12-17 05:10:01.28269+00 2025-12-17 05:10:01.282694+00 1235 顺兴纺织 \N 龙潭 \N \N \N 1 \N a6ffe227-c73d-4a18-8c87-fac1b39eabbf t +2025-12-17 05:10:01.28352+00 2025-12-17 05:10:01.283524+00 1236 A林二姐 \N 白云 \N \N \N 1 \N 1354933d-ee49-424d-bc87-368173c0e0b3 t +2025-12-17 05:10:01.284324+00 2025-12-17 05:10:01.284328+00 1237 A粤焱集团-永盛 \N 白云 \N \N \N 1 \N e0f71dce-255a-43b0-aaa9-804d9b61a987 t +2025-12-17 05:10:01.285118+00 2025-12-17 05:10:01.285122+00 1238 A志娟 \N 白云 \N \N \N 1 \N d71a4848-92c2-4075-9ddc-ab8cfb41bb62 t +2025-12-17 05:10:01.285916+00 2025-12-17 05:10:01.28592+00 1239 歌斯拉-耶利亚服饰 \N 龙潭 \N \N \N 1 \N 2b698377-4cc9-40f5-8b66-48b364b65bd1 t +2025-12-17 05:10:01.286685+00 2025-12-17 05:10:01.286689+00 1240 歌斯拉-鑫雅衣 \N 龙潭 \N \N \N 1 \N 73988c91-da72-40e6-bc29-f50fccea3b24 t +2025-12-17 05:10:01.287461+00 2025-12-17 05:10:01.287466+00 1241 赫伊琪 \N 龙潭 \N \N \N 1 \N a0c1c372-a914-4c5f-8988-b53956b9968c t +2025-12-17 05:10:01.288265+00 2025-12-17 05:10:01.288269+00 1242 越之恒 \N 龙潭 \N \N \N 1 \N 32af5b03-5363-4d24-ab21-f572b2742311 t +2025-12-17 05:10:01.289052+00 2025-12-17 05:10:01.289055+00 1243 利彬缘服饰 \N 龙潭 \N \N \N 1 \N ce5d800e-8b02-4c82-b231-c3eac66c27a3 t +2025-12-17 05:10:01.289879+00 2025-12-17 05:10:01.289884+00 1244 昱莹服饰 \N 龙潭 \N \N \N 1 \N 4476049e-9664-4627-a36a-54b29a4a112f t +2025-12-17 05:10:01.290676+00 2025-12-17 05:10:01.29068+00 1245 棒棒糖服饰 \N 龙潭 \N \N \N 1 \N 34dd942f-37df-4fc1-b886-8a15f87620dc t +2025-12-17 05:10:01.291518+00 2025-12-17 05:10:01.291522+00 1246 大眼6(杨东杰) \N \N \N \N 1 \N 045a3fd9-e2f4-4812-a0de-54260ae42870 t +2025-12-17 05:10:01.292373+00 2025-12-17 05:10:01.292377+00 1247 歌斯拉-枫桦 \N \N \N \N 1 \N eb4c2a34-c851-4614-93be-7d0f39d14061 t +2025-12-17 05:10:01.293167+00 2025-12-17 05:10:01.293171+00 1248 歌斯拉-艾妮霏 \N 龙潭 \N \N \N 1 \N a6d38fea-d71d-40dc-b21d-ec6e7fed5b89 t +2025-12-17 05:10:01.293937+00 2025-12-17 05:10:01.293941+00 1249 广州织女星服饰 \N 龙潭 \N \N \N 1 \N 7430bb0b-bea6-4427-aa61-6a39f3b8b4d1 t +2025-12-17 05:10:01.294733+00 2025-12-17 05:10:01.294737+00 1250 江南汇尚 \N 龙潭 \N \N \N 1 \N 9a8094e0-4c18-4dc9-880a-332f00c8e4b6 t +2025-12-17 05:10:01.295506+00 2025-12-17 05:10:01.295509+00 1251 歌斯拉-刘蒙 \N 龙潭 \N \N \N 1 \N 465b29f9-cf9c-486b-94a0-574ad203df96 t +2025-12-17 05:10:01.296304+00 2025-12-17 05:10:01.296308+00 1252 歌斯拉-七仔服装 \N 龙潭 \N \N \N 1 \N 1a0259a7-171b-45c9-95ff-c223f06b9145 t +2025-12-17 05:10:01.297089+00 2025-12-17 05:10:01.297093+00 1253 润峰 \N 龙潭 \N \N \N 1 \N 9e3740ba-5a0c-48c2-a126-40826ac24279 t +2025-12-17 05:10:01.29786+00 2025-12-17 05:10:01.297864+00 1254 倾四季服饰 \N 歌斯拉-倾四季服饰 \N \N \N 1 \N 4290208e-da66-426e-ae82-cffa50f03746 t +2025-12-17 05:10:01.298656+00 2025-12-17 05:10:01.298661+00 1255 歌斯拉-倾四季服饰 \N 歌斯拉-倾四季服饰 \N \N \N 1 \N 76b1b92e-efa9-4347-935e-55d7f9594405 t +2025-12-17 05:10:01.299444+00 2025-12-17 05:10:01.299448+00 1256 陈晓波陈总 \N 龙潭 \N \N \N 1 \N 293a7743-7a4f-4301-a282-f01d65a241ec t +2025-12-17 05:10:01.300211+00 2025-12-17 05:10:01.300215+00 1257 歌斯拉-新诺 \N 龙潭 \N \N \N 1 \N 354aa54c-cede-4306-b582-3c9433fb431f t +2025-12-17 05:10:01.301001+00 2025-12-17 05:10:01.301005+00 1258 佳菲服饰 \N 龙潭 \N \N \N 1 \N cb17bdd6-1f3f-415b-81de-ff055e8e3bc1 t +2025-12-17 05:10:01.301783+00 2025-12-17 05:10:01.301787+00 1259 歌斯拉-程真 \N 龙潭 \N \N \N 1 \N 311ac459-a884-4e37-9385-8f0db2ee680d t +2025-12-17 05:10:01.302618+00 2025-12-17 05:10:01.302622+00 1260 盛达-欣源盛 \N 龙潭 \N \N \N 1 \N c8f015c5-236f-45e0-9de9-e19f8ed06032 t +2025-12-17 05:10:01.30344+00 2025-12-17 05:10:01.303445+00 1261 万辰(大石) \N 龙潭 \N \N \N 1 \N 5edf3efb-5506-4f30-bd2d-0b2e19089038 t +2025-12-17 05:10:01.304364+00 2025-12-17 05:10:01.304368+00 1262 广旭源服饰 \N 龙潭 \N \N \N 1 \N a0babb44-00a4-4487-a157-ca0ebe1c8e7a t +2025-12-17 05:10:01.305324+00 2025-12-17 05:10:01.305328+00 1263 希色服饰 \N 龙潭 \N \N \N 1 \N 0bcec705-b5b0-49c4-8869-e0a8f302312b t +2025-12-17 05:10:01.306271+00 2025-12-17 05:10:01.306276+00 1264 诚一(大石) \N 龙潭 \N \N \N 1 \N f0f262eb-3984-4a43-b01b-aa86c4ec1055 t +2025-12-17 05:10:01.307114+00 2025-12-17 05:10:01.307118+00 1265 姿依惠 \N 中大 \N \N \N 1 \N a7219d7a-ae84-4960-83aa-9ed35a9bc6b8 t +2025-12-17 05:10:01.307952+00 2025-12-17 05:10:01.307957+00 1266 歌斯拉-黄勇 \N 龙潭 \N \N \N 1 \N 18c58b78-8fbb-4d01-bc1b-88d9285b6821 t +2025-12-17 05:10:01.308809+00 2025-12-17 05:10:01.308813+00 1267 王川 \N 龙潭 \N \N \N 1 \N 1d2956df-a52d-47be-9bbd-84cfcadd932b t +2025-12-17 05:10:01.309634+00 2025-12-17 05:10:01.309638+00 1268 联卓(塘步西) \N 龙潭 \N \N \N 1 \N 6b061695-2971-4bba-98ef-7c87afe426a2 t +2025-12-17 05:10:01.310458+00 2025-12-17 05:10:01.310462+00 1269 意颜 \N 龙潭 \N \N \N 1 \N 010b504d-3aac-4d0e-9781-bb9907147287 t +2025-12-17 05:10:01.311277+00 2025-12-17 05:10:01.311281+00 1270 丽文丽(大石) \N 龙潭 \N \N \N 1 \N 9ba77912-b3b9-4d7b-b3ff-6c4da27e9763 t +2025-12-17 05:10:01.312066+00 2025-12-17 05:10:01.31207+00 1271 妍魅服饰 \N 龙潭 \N \N \N 1 \N 06c3aa3d-000c-4083-8bc6-175b8dcdd94d t +2025-12-17 05:10:01.312907+00 2025-12-17 05:10:01.312911+00 1272 歌斯拉-东莞市亦懂服饰 \N 龙潭 \N \N \N 1 \N 5f10093a-224b-439b-9347-0d6e52339e15 t +2025-12-17 05:10:01.31372+00 2025-12-17 05:10:01.313723+00 1273 朵怡 \N 龙潭 \N \N \N 1 \N 7d2d547c-1cc9-4f99-b76e-fd82da4f67a8 t +2025-12-17 05:10:01.314516+00 2025-12-17 05:10:01.31452+00 1274 鸿博 \N 中大 \N \N \N 1 \N a893f8ab-ed21-45ac-87a2-5976ac65d126 t +2025-12-17 05:10:01.315317+00 2025-12-17 05:10:01.315321+00 1275 吴涛 \N 龙潭 \N \N \N 1 \N bac824dc-9bdc-4ffa-ac34-da4400171f49 t +2025-12-17 05:10:01.316111+00 2025-12-17 05:10:01.316115+00 1276 歌斯拉-兰图服饰 \N 龙潭 \N \N \N 1 \N f0c55075-14c2-4fcc-805c-181b3068c8ba t +2025-12-17 05:10:01.316907+00 2025-12-17 05:10:01.316911+00 1277 凯伦(塘步西) \N 龙潭 \N \N \N 1 \N 5fad754f-6d05-4d67-8b00-1e68a836d8f4 t +2025-12-17 05:10:01.317702+00 2025-12-17 05:10:01.317706+00 1278 歌斯拉-依我所属 \N 歌斯拉-依我所属 \N \N \N 1 \N 775d054c-6632-4628-8301-36ed174d802a t +2025-12-17 05:10:01.318478+00 2025-12-17 05:10:01.318482+00 1279 歌斯拉-寰玛服饰 \N 龙潭 \N \N \N 1 \N c4438609-6f93-4fc7-bbd4-dcdd7ce4d166 t +2025-12-17 05:10:01.319258+00 2025-12-17 05:10:01.319262+00 1280 瑞隆纺织 \N 龙潭 \N \N \N 1 \N 3fa966cb-7742-476f-bd0d-9cf0198dba38 t +2025-12-17 05:10:01.320045+00 2025-12-17 05:10:01.320048+00 1281 A陈玲 \N 白云 \N \N \N 1 \N 6bfbc00a-47d8-46cb-a175-86690eeef602 t +2025-12-17 05:10:01.320833+00 2025-12-17 05:10:01.320837+00 1282 关波 \N 龙潭 \N \N \N 1 \N c07a2043-117c-405a-a50c-e38b7df399aa t +2025-12-17 05:10:01.321602+00 2025-12-17 05:10:01.321606+00 1283 廖华波 \N 龙潭 \N \N \N 1 \N 940b4cd4-e030-4997-8996-6462a8a5d9bc t +2025-12-17 05:10:01.322397+00 2025-12-17 05:10:01.3224+00 1284 歌斯拉-亿莉丝服饰 \N 歌斯拉-亿莉丝服饰 \N \N \N 1 \N a987613c-2991-4cf6-b0cd-5ba88dc9b5fd t +2025-12-17 05:10:01.323166+00 2025-12-17 05:10:01.32317+00 1285 歌斯拉-欧阳燕莉 \N 歌斯拉-欧阳燕莉 \N \N \N 1 \N 581d6099-7f59-46f6-8694-6102559fcc9d t +2025-12-17 05:10:01.32394+00 2025-12-17 05:10:01.323944+00 1286 秋皓 \N 龙潭 \N \N \N 1 \N 1517a6bf-9d51-4c9b-be2d-6dc65d879a9d t +2025-12-17 05:10:01.32474+00 2025-12-17 05:10:01.324744+00 1287 莉莎服饰 \N 龙潭 \N \N \N 1 \N 349eefa6-4176-4e4e-8a52-fbe9bed64cd5 t +2025-12-17 05:10:01.325527+00 2025-12-17 05:10:01.325531+00 1288 宜莱服饰 \N 龙潭 \N \N \N 1 \N a9995582-36ad-48e3-8209-056120df533d t +2025-12-17 05:10:01.326327+00 2025-12-17 05:10:01.326331+00 1289 歌斯拉-小马哥服装有限公司 \N 龙潭 \N \N \N 1 \N 852c5d5b-5af7-4a7d-8295-ae3aa3f89746 t +2025-12-17 05:10:01.327124+00 2025-12-17 05:10:01.327128+00 1290 纪梵黎(东联) \N 龙潭 \N \N \N 1 \N f68c3ce8-410c-407e-b4ab-302252bd070b t +2025-12-17 05:10:01.328054+00 2025-12-17 05:10:01.328059+00 1291 佳尼服饰 \N 龙潭 \N \N \N 1 \N 964bcaa5-1e4f-4b32-ab3b-dd8346bdbda7 t +2025-12-17 05:10:01.328996+00 2025-12-17 05:10:01.329+00 1292 郑冬 \N 龙潭 \N \N \N 1 \N 0b8c4459-9ff1-4b34-b545-d48fd5a83490 t +2025-12-17 05:10:01.329863+00 2025-12-17 05:10:01.329867+00 1293 原宇宙 \N 中大 \N \N \N 1 \N c2a7e607-2108-426c-a22d-51b3eaa8df97 t +2025-12-17 05:10:01.33068+00 2025-12-17 05:10:01.330684+00 1294 张波涛 \N 龙潭 \N \N \N 1 \N e48c38b4-2998-4fcd-9766-cf510342507e t +2025-12-17 05:10:01.331471+00 2025-12-17 05:10:01.331475+00 1295 聪辉(大山) \N 龙潭 \N \N \N 1 \N 21d66668-61b0-4e9a-819b-e9b8f14e00ba t +2025-12-17 05:10:01.332277+00 2025-12-17 05:10:01.332281+00 1296 杨荣 \N 龙潭 \N \N \N 1 \N 5718a6e3-afda-40cb-9ba1-53b34c03bc56 t +2025-12-17 05:10:01.333064+00 2025-12-17 05:10:01.333068+00 1297 唐航世(杨东杰) \N 唐航世(杨东杰) \N \N \N 1 \N 3239cd44-a001-4a67-8116-05b989b7d285 t +2025-12-17 05:10:01.333853+00 2025-12-17 05:10:01.333857+00 1298 A粤焱集团-永永发DS单 \N 白云 \N \N \N 1 \N 8e928a30-3238-47c8-9a36-8f2870c47041 t +2025-12-17 05:10:01.334642+00 2025-12-17 05:10:01.334646+00 1299 百合女裤 \N 龙潭 \N \N \N 1 \N 8eb47ec3-ed7f-44fc-90c7-c37b869fb127 t +2025-12-17 05:10:01.335539+00 2025-12-17 05:10:01.335543+00 1300 XY \N XY \N \N \N 1 \N 6b29de4a-7f50-454a-b978-63af06866005 t +2025-12-17 05:10:01.336374+00 2025-12-17 05:10:01.336378+00 1301 柏豪服饰 \N 龙潭 \N \N \N 1 \N d0107bab-b8ac-4353-ba1b-02df8c334910 t +2025-12-17 05:10:01.33718+00 2025-12-17 05:10:01.337185+00 1302 A龚姐 \N 白云 \N \N \N 1 \N c5fa8842-1207-4780-a84f-7280fe2d4b1a t +2025-12-17 05:10:01.337979+00 2025-12-17 05:10:01.337983+00 1303 美领服饰 \N 龙潭 \N \N \N 1 \N 48fda511-fd9f-4c53-96a2-3def811d45ee t +2025-12-17 05:10:01.338756+00 2025-12-17 05:10:01.33876+00 1304 歌斯拉-仟亿佳 \N 歌斯拉-仟亿佳 \N \N \N 1 \N b5f1d0d8-99e3-4400-8a0a-1e72d4b10487 t +2025-12-17 05:10:01.339549+00 2025-12-17 05:10:01.339553+00 1305 杰福雅供应商红果服饰 \N 龙潭 \N \N \N 1 \N 2a8957bd-0dd0-426d-addc-a9d026a88bc0 t +2025-12-17 05:10:01.340343+00 2025-12-17 05:10:01.340347+00 1306 汇尚(江南) \N 汇尚(江南) \N \N \N 1 \N bd425da4-f152-4f62-85cd-9f687587cd76 t +2025-12-17 05:10:01.341127+00 2025-12-17 05:10:01.341131+00 1307 歌斯拉-希贝儿 \N 龙潭 \N \N \N 1 \N c166055f-8396-4ea9-93fb-7cbd9dd8316e t +2025-12-17 05:10:01.341925+00 2025-12-17 05:10:01.341929+00 1308 王仲钿 \N 龙潭 \N \N \N 1 \N 13354536-7001-4fa5-ba80-00ec8475623a t +2025-12-17 05:10:01.342716+00 2025-12-17 05:10:01.34272+00 1309 志达鹏制衣厂 \N 龙潭 \N \N \N 1 \N b1207c6b-4778-4457-9b79-470a58bfc0ea t +2025-12-17 05:10:01.58535+00 2025-12-17 05:10:01.585361+00 1310 仑灵纺织 \N 龙潭 \N \N \N 1 \N d9243f43-30e8-4af9-a86c-da89f43efb01 t +2025-12-17 05:10:01.58715+00 2025-12-17 05:10:01.587157+00 1311 嘉毓服饰 \N 龙潭 \N \N \N 1 \N 80842aca-1ed3-4268-bd62-d239dfe1182a t +2025-12-17 05:10:01.588414+00 2025-12-17 05:10:01.58842+00 1312 伊可儿 \N 龙潭 \N \N \N 1 \N 67f20b9e-0f09-4d81-9cc9-1d6dd7e0c0f1 t +2025-12-17 05:10:01.58964+00 2025-12-17 05:10:01.589646+00 1313 陶俊 \N 龙潭 \N \N \N 1 \N 63eb2a11-b3fe-45da-81db-56574f964efe t +2025-12-17 05:10:01.590854+00 2025-12-17 05:10:01.59086+00 1314 胡肖宇 \N 龙潭 \N \N \N 1 \N 8d4e9112-3b2c-43f9-8bf8-28ad9a0f0a60 t +2025-12-17 05:10:01.592057+00 2025-12-17 05:10:01.592063+00 1315 水南服饰 \N 龙潭 \N \N \N 1 \N f73da979-0b60-4114-9629-cdafdf500f7d t +2025-12-17 05:10:01.593241+00 2025-12-17 05:10:01.593247+00 1316 歌斯拉-轩彩服饰 \N \N \N \N 1 \N ccc53cc3-c3fc-479d-92e8-a23dc47eb21d t +2025-12-17 05:10:01.594416+00 2025-12-17 05:10:01.594421+00 1317 为丰布行 \N 为丰布行 \N \N \N 1 \N 91dd943d-1cb5-4c34-b78a-79aebee242ae t +2025-12-17 05:10:01.595315+00 2025-12-17 05:10:01.595319+00 1318 君豪服饰 \N 龙潭 \N \N \N 1 \N 1b9ec1a0-4fa8-4c0f-890f-35d2f052efbe t +2025-12-17 05:10:01.596204+00 2025-12-17 05:10:01.596208+00 1319 A燕子 \N 白云 \N \N \N 1 \N cb5a2b9d-b970-4c56-8482-70ca56e58939 t +2025-12-17 05:10:01.597035+00 2025-12-17 05:10:01.597038+00 1320 美妮 \N 龙潭 \N \N \N 1 \N e6bbe9f1-b081-4985-a1a6-12035dbfc439 t +2025-12-17 05:10:01.597857+00 2025-12-17 05:10:01.597861+00 1321 歌斯拉-尤赛特 \N 龙潭 \N \N \N 1 \N 0602bd86-6d73-4918-aa2f-60f1e6615b8e t +2025-12-17 05:10:01.598666+00 2025-12-17 05:10:01.59867+00 1322 佐花 \N 中大 \N \N \N 1 \N 05637fa3-0473-4847-9573-d81b7cdd88e7 t +2025-12-17 05:10:01.599465+00 2025-12-17 05:10:01.599469+00 1323 歌斯拉-瑞晟服饰 \N 龙潭 \N \N \N 1 \N 62b2a94c-f4b7-41e1-a1ac-1c0ce1dfe650 t +2025-12-17 05:10:01.600259+00 2025-12-17 05:10:01.600263+00 1324 歌斯拉-爱马尼 \N 龙潭 \N \N \N 1 \N 959071d8-738f-43dd-b19f-1f84f6cb0ff7 t +2025-12-17 05:10:01.601039+00 2025-12-17 05:10:01.601043+00 1325 A黄宇 \N 白云 \N \N \N 1 \N 58faa566-f59f-4979-b226-b2d573eb211d t +2025-12-17 05:10:01.60181+00 2025-12-17 05:10:01.601814+00 1326 A付总 \N 白云 \N \N \N 1 \N 01c947bb-86c6-4ba3-b3cd-ffae025f720e t +2025-12-17 05:10:01.602607+00 2025-12-17 05:10:01.602611+00 1327 A粤焱-梅姐 \N 白云 \N \N \N 1 \N a1394266-2e8d-4474-ae0e-8dc50a761840 t +2025-12-17 05:10:01.603381+00 2025-12-17 05:10:01.603384+00 1328 歌斯拉-胜利星厂 \N 龙潭 \N \N \N 1 \N d75797c1-afe0-4381-9f59-d043515f24f0 t +2025-12-17 05:10:01.604151+00 2025-12-17 05:10:01.604154+00 1329 A芳芳服饰 \N 白云 \N \N \N 1 \N 8c8a8fcc-60b0-4ea3-9fcd-e0f0d31dbbbd t +2025-12-17 05:10:01.604943+00 2025-12-17 05:10:01.604947+00 1330 A衣潮服饰 \N 白云 \N \N \N 1 \N 7053a68d-aef7-440f-ae38-d2015beec6ea t +2025-12-17 05:10:01.605726+00 2025-12-17 05:10:01.60573+00 1331 江辉 \N 龙潭 \N \N \N 1 \N 8d611ef8-b313-434d-870c-aeac65a38f1c t +2025-12-17 05:10:01.606491+00 2025-12-17 05:10:01.606494+00 1332 A陈红燕 \N 白云 \N \N \N 1 \N f8ffbaef-5901-44a2-b83b-d7a81fa84c7b t +2025-12-17 05:10:01.607272+00 2025-12-17 05:10:01.607277+00 1333 歌斯拉-鑫依风尚 \N 龙潭 \N \N \N 1 \N 24724964-4369-4a14-86cf-f56cbaad0c9f t +2025-12-17 05:10:01.608052+00 2025-12-17 05:10:01.608056+00 1334 盛缘 \N 龙潭 \N \N \N 1 \N d9a9527f-2e33-4df6-82af-e98f463091e7 t +2025-12-17 05:10:01.608834+00 2025-12-17 05:10:01.608837+00 1335 歌紫慕斯服饰 \N 龙潭 \N \N \N 1 \N 22e05cd3-1f36-4a7c-80e5-6a88359206d6 t +2025-12-17 05:10:01.609897+00 2025-12-17 05:10:01.609902+00 1336 沐瑾 \N 龙潭 \N \N \N 1 \N 0786fcda-2b79-4231-9701-2c802a9b5032 t +2025-12-17 05:10:01.610944+00 2025-12-17 05:10:01.610949+00 1337 A粤焱-C组 \N 白云 \N \N \N 1 \N 3bbe16a4-f086-434d-a172-a79baaab6cd7 t +2025-12-17 05:10:01.611862+00 2025-12-17 05:10:01.611867+00 1338 盛达-陈伟 \N 龙潭 \N \N \N 1 \N 47812d3e-28df-4ffc-b3d0-0ad715d1f181 t +2025-12-17 05:10:01.61271+00 2025-12-17 05:10:01.612714+00 1339 A粤焱-F组 \N 白云 \N \N \N 1 \N 5323d68b-6604-4cdb-94ac-9c2d66a6bcf6 t +2025-12-17 05:10:01.613808+00 2025-12-17 05:10:01.613812+00 1340 飞腾服饰 \N 龙潭 \N \N \N 1 \N 589532bc-dddb-4aff-ad04-639767f8210a t +2025-12-17 05:10:01.614907+00 2025-12-17 05:10:01.614911+00 1341 锦焱服饰 \N 龙潭 \N \N \N 1 \N db514662-6875-46c8-981d-49977a9233cd t +2025-12-17 05:10:01.615998+00 2025-12-17 05:10:01.616002+00 1342 A粤焱-庄 \N 白云 \N \N \N 1 \N 97559f64-1deb-4d65-9041-c3b44cb84fae t +2025-12-17 05:10:01.617091+00 2025-12-17 05:10:01.617095+00 1343 澳通服装江涛 \N 龙潭 \N \N \N 1 \N ab759f5b-28bf-4983-9a3b-84a31b4acc1e t +2025-12-17 05:10:01.618159+00 2025-12-17 05:10:01.618163+00 1344 粤盛 \N 龙潭 \N \N \N 1 \N 0855ac25-20cc-4c10-bd0d-e1f1175de4cd t +2025-12-17 05:10:01.619224+00 2025-12-17 05:10:01.619228+00 1345 鑫凯特 \N 龙潭 \N \N \N 1 \N 50a9666f-ce6c-4452-823a-86354863b75e t +2025-12-17 05:10:01.620303+00 2025-12-17 05:10:01.620306+00 1346 琪琪儿 \N 龙潭(业务;阿鑫) \N \N \N 1 \N 7105fade-212c-4fd2-9a25-773590aeb537 t +2025-12-17 05:10:01.621356+00 2025-12-17 05:10:01.621359+00 1347 歌斯拉余超 \N 龙潭 \N \N \N 1 \N 490e7845-6d92-419a-8a8d-f507c826bd61 t +2025-12-17 05:10:01.682801+00 2025-12-17 05:10:01.682806+00 1409 F颜美芬 \N 佛山 \N \N \N 1 \N 1f1a416c-3c6e-4bd1-ba82-593722a94e7f t +2025-12-17 05:10:01.622144+00 2025-12-17 05:10:01.622148+00 1348 歌斯拉-盛世宝贝 \N 龙潭 \N \N \N 1 \N bf30df87-27eb-41da-aee3-b1b3bfb71703 t +2025-12-17 05:10:01.622956+00 2025-12-17 05:10:01.62296+00 1349 东升太阳 \N 龙潭 \N \N \N 1 \N 3e4eef2b-952d-413a-a1e4-602e69cd585a t +2025-12-17 05:10:01.62374+00 2025-12-17 05:10:01.623744+00 1350 金鑫昇 \N 龙潭 \N \N \N 1 \N 4d1734c1-515b-49ea-99d6-8db1c862b517 t +2025-12-17 05:10:01.62456+00 2025-12-17 05:10:01.624568+00 1351 杨少波 \N 龙潭 \N \N \N 1 \N d31b7da8-10dd-4107-a54d-073b02680aef t +2025-12-17 05:10:01.62537+00 2025-12-17 05:10:01.625373+00 1352 A年华 \N 白云 \N \N \N 1 \N bd76afd7-f54a-4e23-9c50-9c38d67e42ce t +2025-12-17 05:10:01.626167+00 2025-12-17 05:10:01.626171+00 1353 昊旺 \N 龙潭 \N \N \N 1 \N 98564737-6be8-468c-884b-3b1f02fa0853 t +2025-12-17 05:10:01.626963+00 2025-12-17 05:10:01.626966+00 1354 歌斯拉琦艺 \N 龙潭 \N \N \N 1 \N 6b61d673-84a0-406d-a430-f5afb13830e6 t +2025-12-17 05:10:01.627942+00 2025-12-17 05:10:01.627948+00 1355 歌斯拉-张斌 \N 龙潭 \N \N \N 1 \N 3a6507f9-abb8-4cc4-8031-aa6f52b16bb6 t +2025-12-17 05:10:01.629182+00 2025-12-17 05:10:01.629187+00 1356 莫小姐 \N 龙潭 \N \N \N 1 \N 270cba13-f8a5-4904-8dda-144ca0583e54 t +2025-12-17 05:10:01.630242+00 2025-12-17 05:10:01.630247+00 1357 A何燕 \N 白云 \N \N \N 1 \N 92f44bf7-f24b-4bea-8137-33b8c47ba77e t +2025-12-17 05:10:01.631234+00 2025-12-17 05:10:01.631239+00 1358 思儒 \N 龙潭 \N \N \N 1 \N 7bb834c6-eacd-47a8-be64-e3813070d41b t +2025-12-17 05:10:01.632258+00 2025-12-17 05:10:01.632263+00 1359 盛达段刚 \N 龙潭 \N \N \N 1 \N d102649c-9893-48b0-a1ce-da62f0df268c t +2025-12-17 05:10:01.633254+00 2025-12-17 05:10:01.633259+00 1360 慕彤服饰刘姐 \N 龙潭 \N \N \N 1 \N 1ae9a5e8-ef43-49ca-a32b-b0115591e4e0 t +2025-12-17 05:10:01.634248+00 2025-12-17 05:10:01.634252+00 1361 凯樾 \N 龙潭 \N \N \N 1 \N 7a90da57-8953-4854-a9e8-22fd8adf70be t +2025-12-17 05:10:01.635657+00 2025-12-17 05:10:01.635662+00 1362 觅妍服饰 \N 龙潭 \N \N \N 1 \N 46177f8f-3bcc-4192-ab41-22aba7d7fd83 t +2025-12-17 05:10:01.636654+00 2025-12-17 05:10:01.636659+00 1363 艾尚嘉品服饰 \N 龙潭 \N \N \N 1 \N 7c5f9656-e842-44c4-9b6a-a2904779c5e0 t +2025-12-17 05:10:01.637644+00 2025-12-17 05:10:01.637648+00 1364 歌斯拉锦飞宇 \N 龙潭 \N \N \N 1 \N f3b47b64-5c3f-4ebc-b178-b1c0bf6465f2 t +2025-12-17 05:10:01.63863+00 2025-12-17 05:10:01.638639+00 1365 海鲸服饰李总 \N 龙潭 \N \N \N 1 \N 38a54e27-e4b4-4eaa-b1c1-2ea03f1f3191 t +2025-12-17 05:10:01.63963+00 2025-12-17 05:10:01.639634+00 1366 歌斯拉-禅城跳皮狗服饰 \N 龙潭 \N \N \N 1 \N 99f71be3-2c99-4ce4-805b-b1306c3777a9 t +2025-12-17 05:10:01.640639+00 2025-12-17 05:10:01.640644+00 1367 歌斯拉-佛山毅利发制衣厂 \N 龙潭 \N \N \N 1 \N 3eb99f36-ea08-4fa2-88bb-61d8aa591cea t +2025-12-17 05:10:01.641638+00 2025-12-17 05:10:01.641643+00 1368 许文杰(飞腾) \N 龙潭 \N \N \N 1 \N 54b6499d-77aa-417a-ad21-abc14bfd5ade t +2025-12-17 05:10:01.642623+00 2025-12-17 05:10:01.642627+00 1369 盛达-华哥 \N 龙潭 \N \N \N 1 \N 2a0cadb1-fd4d-470d-a3e8-7955379f5e7f t +2025-12-17 05:10:01.643613+00 2025-12-17 05:10:01.643618+00 1370 A芬芳服饰 \N 白云 \N \N \N 1 \N 1cffe97d-cc22-48f9-9ce2-459b482d3f80 t +2025-12-17 05:10:01.644585+00 2025-12-17 05:10:01.64459+00 1371 神马三师弟服装 \N \N \N \N 1 \N 45ac2978-6cb2-4136-b072-4b1a03f19ec2 t +2025-12-17 05:10:01.645573+00 2025-12-17 05:10:01.645578+00 1372 蒂芬妮亚 \N 龙潭 \N \N \N 1 \N f4b7f414-e29b-45f6-996a-b66b1a4fcee9 t +2025-12-17 05:10:01.646567+00 2025-12-17 05:10:01.646572+00 1373 刘小姐 \N 龙潭 \N \N \N 1 \N 9be28ca8-4f8d-473f-a001-b2d1ca3ed461 t +2025-12-17 05:10:01.64755+00 2025-12-17 05:10:01.647555+00 1374 三杨服装 \N 龙潭 \N \N \N 1 \N c00a9311-a5bd-4a8a-95f4-0bec20d2270b t +2025-12-17 05:10:01.648549+00 2025-12-17 05:10:01.648554+00 1375 金秀如服饰 \N 龙潭 \N \N \N 1 \N 9d233228-a113-4a01-932d-a67d4e14792a t +2025-12-17 05:10:01.649545+00 2025-12-17 05:10:01.64955+00 1376 宏腾莉服饰 \N 龙潭 \N \N \N 1 \N ce5e9663-31d7-4482-b463-9c8e6fb6a94f t +2025-12-17 05:10:01.650543+00 2025-12-17 05:10:01.650547+00 1377 佳航服饰 \N 龙潭 \N \N \N 1 \N dc99292e-acf5-4640-8fb3-975828b85285 t +2025-12-17 05:10:01.651538+00 2025-12-17 05:10:01.651543+00 1378 歌斯拉-杨伟明 \N 龙潭 \N \N \N 1 \N df3fdda7-8bfa-4863-bcde-caaa42fbd724 t +2025-12-17 05:10:01.652535+00 2025-12-17 05:10:01.652539+00 1379 A汪建文 \N 白云 \N \N \N 1 \N 0541e1ef-be66-4418-ba6c-4a266d3b05f8 t +2025-12-17 05:10:01.653532+00 2025-12-17 05:10:01.653537+00 1380 鑫起点 \N 龙潭 \N \N \N 1 \N 0a3b51bf-25ee-4521-a031-eb9d86d1cc8d t +2025-12-17 05:10:01.65453+00 2025-12-17 05:10:01.654535+00 1381 盛达-利彬缘 \N 龙潭 \N \N \N 1 \N 2a0a8c16-3b52-4ae8-a646-7a3f9ba25d69 t +2025-12-17 05:10:01.655518+00 2025-12-17 05:10:01.655522+00 1382 山屿 \N 龙潭 \N \N \N 1 \N 2a452c01-d528-4256-9618-f13b228f27c1 t +2025-12-17 05:10:01.656527+00 2025-12-17 05:10:01.656532+00 1383 虎门合森纺织 \N 龙潭 \N \N \N 1 \N 7b1293c9-4215-4851-a648-ca4706b01687 t +2025-12-17 05:10:01.657518+00 2025-12-17 05:10:01.657523+00 1384 衣鸣 \N 龙潭 \N \N \N 1 \N 056e3053-53fc-4a2e-bcce-728645eab9d6 t +2025-12-17 05:10:01.658498+00 2025-12-17 05:10:01.658502+00 1385 歌斯拉-蒂拉维制衣厂 \N 龙潭 \N \N \N 1 \N eee1d689-8603-4eab-87ba-98ba868bf504 t +2025-12-17 05:10:01.660012+00 2025-12-17 05:10:01.660017+00 1386 宏隆发 \N 龙潭 \N \N \N 1 \N 71d41d08-3d4e-4950-9cf3-683f7c3bc77c t +2025-12-17 05:10:01.661003+00 2025-12-17 05:10:01.661008+00 1387 刘建 \N 龙潭 \N \N \N 1 \N abe36820-8d15-4bc8-8206-41dac5ef5f21 t +2025-12-17 05:10:01.66199+00 2025-12-17 05:10:01.661995+00 1388 瑞丰 \N 龙潭 \N \N \N 1 \N 2ba3f265-59be-4599-9533-fe71c03638dd t +2025-12-17 05:10:01.662976+00 2025-12-17 05:10:01.662981+00 1389 淳帅 \N 龙潭 \N \N \N 1 \N 5368e74e-b858-4767-a8d2-114c96ac236d t +2025-12-17 05:10:01.663972+00 2025-12-17 05:10:01.663977+00 1390 豪哥 \N 龙潭 \N \N \N 1 \N 02204ede-ce1f-4c86-892e-c8e20b84cd01 t +2025-12-17 05:10:01.664959+00 2025-12-17 05:10:01.664964+00 1391 盛达-胜达 \N 龙潭 \N \N \N 1 \N 101f1a77-3afc-4dff-bf21-af1bba013ce0 t +2025-12-17 05:10:01.665957+00 2025-12-17 05:10:01.665962+00 1392 华瀚吕总 \N 中大 \N \N \N 1 \N 2317158b-6991-4ff6-9a98-4d80fa4079f0 t +2025-12-17 05:10:01.666939+00 2025-12-17 05:10:01.666944+00 1393 高柳 \N 龙潭 \N \N \N 1 \N 8c2b0e21-1d64-425b-bf17-5f22cfe2c0c5 t +2025-12-17 05:10:01.667922+00 2025-12-17 05:10:01.667926+00 1394 佳豪服饰 \N 龙潭 \N \N \N 1 \N a9188c6b-aa57-46ff-93af-9c9d45aececf t +2025-12-17 05:10:01.668911+00 2025-12-17 05:10:01.668915+00 1395 蛮潮(南村) \N 中大 \N \N \N 1 \N 8e27e957-1cba-46b1-995e-5c83768033f1 t +2025-12-17 05:10:01.669899+00 2025-12-17 05:10:01.669904+00 1396 恒泰服饰 \N 中大 \N \N \N 1 \N 709b9de5-d454-4e8b-b778-ad75cc29d8d9 t +2025-12-17 05:10:01.67088+00 2025-12-17 05:10:01.670885+00 1397 丰盛 \N 龙潭 \N \N \N 1 \N ef1da44c-5aad-47a8-91f3-ba72e9c89a0c t +2025-12-17 05:10:01.671871+00 2025-12-17 05:10:01.671876+00 1398 衫马服饰 \N 龙潭 \N \N \N 1 \N 54463784-7fb6-4e78-9f9d-8d880033bb07 t +2025-12-17 05:10:01.672863+00 2025-12-17 05:10:01.672868+00 1399 林树叔 \N 龙潭 \N \N \N 1 \N 79a0e0fa-02aa-469d-95c7-d6860eabfbfb t +2025-12-17 05:10:01.673861+00 2025-12-17 05:10:01.673866+00 1400 艾亚微 \N \N \N \N 1 \N 3d4379cd-c194-4622-bf23-290474971083 t +2025-12-17 05:10:01.674858+00 2025-12-17 05:10:01.674863+00 1401 尚丽佳人 \N 龙潭 \N \N \N 1 \N 9e7e3b63-a0cf-46f5-9f53-0993279fdeed t +2025-12-17 05:10:01.675844+00 2025-12-17 05:10:01.675849+00 1402 歌斯拉-赫斯尼服饰有限公司 \N 龙潭 \N \N \N 1 \N f7294c5c-de7b-47fd-9f08-a3d1f819a3e8 t +2025-12-17 05:10:01.676823+00 2025-12-17 05:10:01.676828+00 1403 伊比秀 \N 龙潭 \N \N \N 1 \N 516203cf-e69e-4975-88ea-02bcea416479 t +2025-12-17 05:10:01.677816+00 2025-12-17 05:10:01.67782+00 1404 玥悦服饰 \N 龙潭 \N \N \N 1 \N adc9963a-6574-4edc-8445-83aa868fb1dd t +2025-12-17 05:10:01.678803+00 2025-12-17 05:10:01.678808+00 1405 信德盛 \N 龙潭 \N \N \N 1 \N 7ab92b96-b87d-4b2b-b088-00501e2328f9 t +2025-12-17 05:10:01.679814+00 2025-12-17 05:10:01.679818+00 1406 A魏先生 \N 白云 \N \N \N 1 \N 13ffe4fd-4b21-4cc0-a8aa-935191511a9b t +2025-12-17 05:10:01.680806+00 2025-12-17 05:10:01.68081+00 1407 F陈伶波 \N 佛山 \N \N \N 1 \N ee1010e5-d14b-479c-827a-316b726b3f84 t +2025-12-17 05:10:01.681804+00 2025-12-17 05:10:01.681809+00 1408 F尹佣兵 \N 佛山 \N \N \N 1 \N f318bf02-f680-4769-84d2-f361e5868fbb t +2025-12-17 05:15:00.278887+00 2025-12-17 05:15:00.278899+00 1410 柒予 \N 中大 \N \N \N 1 \N 88116ea1-cd22-42c8-b393-7b36c5f3cdca t +2025-12-17 05:15:00.281129+00 2025-12-17 05:15:00.281134+00 1411 杨生 \N 龙潭 \N \N \N 1 \N 0cf44b40-9b81-4381-9c9f-7f33232a70c2 t +2025-12-17 05:15:00.282055+00 2025-12-17 05:15:00.282059+00 1412 F欧阳国兵 \N 佛山 \N \N \N 1 \N 3cc09f06-34b8-4a18-a6e4-e69b246a49a1 t +2025-12-17 05:15:00.2829+00 2025-12-17 05:15:00.282904+00 1413 程朝惠 \N \N \N \N 1 \N 75d4042b-34f0-492f-8d32-309a2ca2f38e t +2025-12-17 05:15:00.283737+00 2025-12-17 05:15:00.283741+00 1414 A陈娟 \N 白云 \N \N \N 1 \N caf561c5-e6d8-4c77-81ae-1930931385f9 t +2025-12-17 05:15:00.284549+00 2025-12-17 05:15:00.284553+00 1415 杨魔魔 \N \N \N \N 1 \N 44b4d0a4-1a5a-41e9-a4d5-9bbb618ddedd t +2025-12-17 05:15:00.28534+00 2025-12-17 05:15:00.285344+00 1416 潮亮 \N 龙潭 \N \N \N 1 \N 35652cd3-3ecc-4406-aca4-6b31f8416ee7 t +2025-12-17 05:15:00.28616+00 2025-12-17 05:15:00.286164+00 1417 高飞 \N 龙潭 \N \N \N 1 \N e5043b35-597d-464b-8647-f86505da8289 t +2025-12-17 05:15:00.287005+00 2025-12-17 05:15:00.287009+00 1418 A伊佣兵 \N 白云 \N \N \N 1 \N b4c83281-411b-4686-b990-d4adcfd1cee6 t +2025-12-17 05:15:00.287879+00 2025-12-17 05:15:00.287883+00 1419 末颜服饰 \N 龙潭 \N \N \N 1 \N f26ad524-4ea0-44ad-bbc1-a371b054432a t +2025-12-17 05:15:00.288744+00 2025-12-17 05:15:00.288748+00 1420 歌斯拉林汉才 \N 龙潭 \N \N \N 1 \N 9c2d03d1-f28a-4acf-94fb-493a9581dbb8 t +2025-12-17 05:15:00.289606+00 2025-12-17 05:15:00.28961+00 1421 香港英易贸易 \N \N \N \N 1 \N 58ea94be-f909-4a84-8a21-c933294b6d23 t +2025-12-17 05:15:00.29062+00 2025-12-17 05:15:00.290625+00 1422 A粤焱-A组 \N 白云 \N \N \N 1 \N 02dd92ef-d189-41e2-ad18-462c9ca58b75 t +2025-12-17 05:15:00.291594+00 2025-12-17 05:15:00.291599+00 1423 A林桂升 \N 白云 \N \N \N 1 \N 228918fe-4c90-4e8c-af59-8eedccbe1e2d t +2025-12-17 05:15:00.292551+00 2025-12-17 05:15:00.292555+00 1424 A晨晨服饰 \N 白云 \N \N \N 1 \N 05c2ffc4-c581-4d03-9f84-6f96b095248e t +2025-12-17 05:15:00.29339+00 2025-12-17 05:15:00.293393+00 1425 珠江国际1204 \N 中大 \N \N \N 1 \N 3e8576ad-bbab-43cc-aeb8-4db550089cf0 t +2025-12-17 05:15:00.294213+00 2025-12-17 05:15:00.294217+00 1426 桐宇 \N \N \N \N 1 \N 87ecfb72-9e9b-48cb-af7d-ef35816ebc9a t +2025-12-17 05:15:00.295026+00 2025-12-17 05:15:00.29503+00 1427 金喻 \N \N \N \N 1 \N 48bb51c7-5b0b-4cd9-bdb4-082004dea713 t +2025-12-17 05:15:00.295828+00 2025-12-17 05:15:00.295831+00 1428 昱莹童装部 \N \N \N \N 1 \N 00de8401-f366-4016-a950-84f21fe5a328 t +2025-12-17 05:15:00.296629+00 2025-12-17 05:15:00.296632+00 1429 费峻辰 \N \N \N \N 1 \N f7beb591-ee2b-4871-8eb5-dca813cd9b37 t +2025-12-17 05:15:00.297429+00 2025-12-17 05:15:00.297433+00 1430 雨涵 \N \N \N \N 1 \N 8cc165a0-4e06-45ec-b322-98cb37b99173 t +2025-12-17 05:15:00.298218+00 2025-12-17 05:15:00.298221+00 1431 A李芬 \N 白云 \N \N \N 1 \N a46ce1a3-ca8b-4c2b-96a7-0745ea935eed t +2025-12-17 05:15:00.299012+00 2025-12-17 05:15:00.299017+00 1432 蔡维克 \N \N \N \N 1 \N 59edb5c5-ffd4-4b09-b023-8c9803cb6de1 t +2025-12-17 05:15:00.299812+00 2025-12-17 05:15:00.299816+00 1433 元亨 \N \N \N \N 1 \N 46c30e94-d8f4-4b1f-b42a-fc89cceb8506 t +2025-12-17 05:15:00.300603+00 2025-12-17 05:15:00.300607+00 1434 A永利服饰 \N 白云 \N \N \N 1 \N cc2eb98e-ff25-435d-98e1-e2a2985da33d t +2025-12-17 05:15:00.301435+00 2025-12-17 05:15:00.301439+00 1435 电商公司 \N \N \N \N 1 \N 87fdfc5e-bbba-4506-967d-83d77f17b106 t +2025-12-17 05:15:00.302228+00 2025-12-17 05:15:00.302232+00 1436 盛达-刘千武 \N 龙潭 \N \N \N 1 \N 1540d1bc-1ba1-414c-ae93-0d9b809cf077 t +2025-12-17 05:15:00.303008+00 2025-12-17 05:15:00.303012+00 1437 A妮娜纺织 \N 白云 \N \N \N 1 \N 6d6914da-9787-4226-b41f-dd6fe51fef58 t +2025-12-17 05:15:00.303827+00 2025-12-17 05:15:00.303832+00 1438 A苗苗 \N 白云 \N \N \N 1 \N 1fbe7c2b-628f-4bc4-9d68-2dc9bc16bbd4 t +2025-12-17 05:15:00.304646+00 2025-12-17 05:15:00.30465+00 1439 羽屹 \N 龙潭 \N \N \N 1 \N 2abbac56-4547-4c5e-bc9d-f391b7a78fb3 t +2025-12-17 05:15:00.305528+00 2025-12-17 05:15:00.305531+00 1440 啊牛物流-吴志立 \N \N \N \N 1 \N 0c126865-ebab-412f-82ea-a671c0219304 t +2025-12-17 05:15:00.306361+00 2025-12-17 05:15:00.306366+00 1441 陈勇 \N \N \N \N 1 \N 74006654-95cf-47a8-bcc4-1180529abff9 t +2025-12-17 05:15:00.307173+00 2025-12-17 05:15:00.307177+00 1442 A李勇 \N 白云 \N \N \N 1 \N 72027eac-04e8-4a66-9e86-bc2798220458 t +2025-12-17 05:15:00.307951+00 2025-12-17 05:15:00.307954+00 1443 F陈龙工厂 \N 佛山 \N \N \N 1 \N 716e14c3-09d0-4f7e-b4f5-0cc4f0dc6cbe t +2025-12-17 05:15:00.308738+00 2025-12-17 05:15:00.308742+00 1444 杨洋 \N \N \N \N 1 \N ece0d793-0a93-43f5-931c-48b18643f34d t +2025-12-17 05:15:00.309805+00 2025-12-17 05:15:00.30981+00 1445 卡拉奇 \N \N \N \N 1 \N 697d0a26-0028-4460-95cc-1b702624f6e9 t +2025-12-17 05:15:00.310804+00 2025-12-17 05:15:00.310808+00 1446 电商公司刘祖涌 \N \N \N \N 1 \N b7aa4cd2-0a9c-4253-97d3-db1787ddad96 t +2025-12-17 05:15:00.311669+00 2025-12-17 05:15:00.311673+00 1447 A陈明星 \N 白云 \N \N \N 1 \N 9bf1401f-8856-455a-a8e9-d1034052589b t +2025-12-17 05:15:00.312499+00 2025-12-17 05:15:00.312503+00 1448 A谭总 \N 白云 \N \N \N 1 \N 1ea9cf66-effd-4d61-bcc0-854fa51202b8 t +2025-12-17 05:15:00.313403+00 2025-12-17 05:15:00.313407+00 1449 F雨洁服饰 \N 佛山 \N \N \N 1 \N 8995aa43-a74f-49e3-bb60-e0f5060ad59c t +2025-12-17 05:15:00.314307+00 2025-12-17 05:15:00.314311+00 1450 A芮磊 \N 白云 \N \N \N 1 \N f36a84be-f65a-48b2-95c1-b5e24203bcad t +2025-12-17 05:15:00.315542+00 2025-12-17 05:15:00.315549+00 1451 广州鑫炎服饰 \N 龙潭 \N \N \N 1 \N 805c95d2-6d31-44cc-b6ea-fad3a78698cc t +2025-12-17 05:15:00.316831+00 2025-12-17 05:15:00.316851+00 1452 夏瑶服饰 \N 周边 \N \N \N 1 \N 2eed085c-d8fd-4937-a3b2-01c27a178b2c t +2025-12-17 05:15:00.317902+00 2025-12-17 05:15:00.317906+00 1453 A陈燕英 \N 白云 \N \N \N 1 \N 43dd2e0e-b974-4912-acaa-d9df7b4f837c t +2025-12-17 05:15:00.31883+00 2025-12-17 05:15:00.318833+00 1454 肖攀 \N \N \N \N 1 \N 64ba117f-4809-4144-a76a-c99f959a0810 t +2025-12-17 05:15:00.319712+00 2025-12-17 05:15:00.319716+00 1455 胡倩颖 \N 龙潭 \N \N \N 1 \N 567d092b-5b2f-4a7c-88f6-18218111c5c5 t +2025-12-17 05:15:00.320554+00 2025-12-17 05:15:00.320558+00 1456 周乔峰 \N \N \N \N 1 \N b8c76986-b4c6-412f-b5b1-23610baf9f43 t +2025-12-17 05:15:00.321364+00 2025-12-17 05:15:00.321368+00 1457 璇紫 \N \N \N \N 1 \N 6a5d36a7-6b25-499d-b07f-d16d21cc8608 t +2025-12-17 05:15:00.322173+00 2025-12-17 05:15:00.322178+00 1458 A陈建波 \N 白云 \N \N \N 1 \N b7825d8b-35ef-4615-92ed-8c617c269e19 t +2025-12-17 05:15:00.322988+00 2025-12-17 05:15:00.322992+00 1459 A维那外贸 \N 白云 \N \N \N 1 \N a6d07baa-1fc0-421b-8ae8-fef7100a1bb6 t +2025-12-17 05:15:00.323787+00 2025-12-17 05:15:00.323791+00 1460 鸿发纺织 \N \N \N \N 1 \N 16c1bcfd-29c8-469c-9f69-033c9442f30e t +2025-12-17 05:15:00.324594+00 2025-12-17 05:15:00.324598+00 1461 F阳光外贸服饰 \N 佛山 \N \N \N 1 \N c855d805-fa83-43f8-9e31-c9074f2aa9a6 t +2025-12-17 05:15:00.325387+00 2025-12-17 05:15:00.325391+00 1462 君和 \N \N \N \N 1 \N 12002260-bcd3-45a3-9c88-9477dc5ac08b t +2025-12-17 05:15:00.326217+00 2025-12-17 05:15:00.326221+00 1463 A妮可 \N 白云 \N \N \N 1 \N dc975e40-cb0f-4b55-acef-04a14d5301f0 t +2025-12-17 05:15:00.327086+00 2025-12-17 05:15:00.327091+00 1464 粤焱-泉哥 \N \N \N \N 1 \N addf7f7b-74e5-4e07-b2e9-72a97d46ac69 t +2025-12-17 05:15:00.327917+00 2025-12-17 05:15:00.327921+00 1465 A龚晓芬 \N 白云 \N \N \N 1 \N 921b4e00-f345-4d35-ad3c-e1b1cb2276f6 t +2025-12-17 05:15:00.328835+00 2025-12-17 05:15:00.32884+00 1466 A留言 \N 白云 \N \N \N 1 \N cbf18504-f14d-4782-a597-d1399f7e7192 t +2025-12-17 05:15:00.329831+00 2025-12-17 05:15:00.329835+00 1467 A升都103 \N 白云 \N \N \N 1 \N 7ddca1f1-a827-46a5-b1b4-898f09b5e936 t +2025-12-17 05:15:00.330768+00 2025-12-17 05:15:00.330774+00 1468 A格丽堡服饰 \N 白云 \N \N \N 1 \N 8118b41b-937f-4c38-afb8-e4e020afd8c8 t +2025-12-17 05:15:00.331747+00 2025-12-17 05:15:00.331751+00 1469 A陈鸣皋 \N 白云 \N \N \N 1 \N 9cd5a509-43da-4051-b640-1d025c0ee0cc t +2025-12-17 05:15:00.332951+00 2025-12-17 05:15:00.332959+00 1470 袜厂 \N 佛山 \N \N \N 1 \N 0b09cbea-a919-4ef3-9c55-83f9fff28c7f t +2025-12-17 05:15:00.334253+00 2025-12-17 05:15:00.33426+00 1471 F雨霏 \N 佛山 \N \N \N 1 \N 28d87358-93c2-4085-ad7a-5a5ed0dad246 t +2025-12-17 05:15:00.335551+00 2025-12-17 05:15:00.335558+00 1472 A欧阳华总 \N 白云 \N \N \N 1 \N c56daa6a-f20d-43db-a9aa-da6f7ab19035 t +2025-12-17 05:15:00.3371+00 2025-12-17 05:15:00.337107+00 1473 A小何 \N 白云 \N \N \N 1 \N 556fe726-e533-4af0-b2ed-fe81051caa8e t +2025-12-17 05:15:00.338656+00 2025-12-17 05:15:00.338663+00 1474 宋水槟 \N \N \N \N 1 \N 0dba20ba-4dda-4573-87c7-6e2a047e3ac5 t +2025-12-17 05:15:00.340243+00 2025-12-17 05:15:00.34025+00 1475 A博豪 \N 白云 \N \N \N 1 \N 0f5a8d28-5ab9-4225-9ed2-548df1e9a665 t +2025-12-17 05:15:00.341794+00 2025-12-17 05:15:00.3418+00 1476 速象服饰 \N \N \N \N 1 \N 89345d00-b336-4141-9af9-6d0258cc7142 t +2025-12-17 05:15:00.343371+00 2025-12-17 05:15:00.343379+00 1477 轩衣诺服饰 \N \N \N \N 1 \N 9213471f-d7ea-4772-b092-05930eecae3f t +2025-12-17 05:15:00.344748+00 2025-12-17 05:15:00.344753+00 1478 A唐校长 \N 白云 \N \N \N 1 \N a9f34a6f-ba8b-4d3e-88c3-d689213417df t +2025-12-17 05:15:00.345908+00 2025-12-17 05:15:00.345913+00 1479 A李贤芬 \N 白云 \N \N \N 1 \N 390b0de1-d05d-4de3-bdec-6a8cdfaa09a3 t +2025-12-17 05:15:00.347009+00 2025-12-17 05:15:00.347012+00 1480 腊哥 \N 龙潭 \N \N \N 1 \N 99a7b7f0-8e00-441b-a23f-7289ac6edda8 t +2025-12-17 05:15:00.347813+00 2025-12-17 05:15:00.347817+00 1481 谢浩拖 \N \N \N \N 1 \N 1eb575a0-272c-4eae-90d3-7f0125a3ac5f t +2025-12-17 05:15:00.348621+00 2025-12-17 05:15:00.348625+00 1482 A美人服饰 \N 白云 \N \N \N 1 \N 9589f2cc-a121-4b7b-97dd-b17a1944392d t +2025-12-17 05:15:00.349414+00 2025-12-17 05:15:00.349418+00 1483 F梦多美服饰 \N 佛山 \N \N \N 1 \N b0db4e70-8a6c-4eab-80a1-b4c3ee080ccd t +2025-12-17 05:15:00.350205+00 2025-12-17 05:15:00.350209+00 1484 歌斯拉-刘传彪 \N \N \N \N 1 \N 6b0e86f8-e44c-48d2-8c1e-a158d0cf00a1 t +2025-12-17 05:15:00.351001+00 2025-12-17 05:15:00.351005+00 1485 郑金鸿 \N \N \N \N 1 \N 1fff6647-07c9-452f-b615-150c716eb986 t +2025-12-17 05:15:00.351776+00 2025-12-17 05:15:00.351779+00 1486 梅姐 \N \N \N \N 1 \N 8a97d34d-7d6f-49dc-a2c1-797ce9112234 t +2025-12-17 05:15:00.352595+00 2025-12-17 05:15:00.3526+00 1487 A欧阳湘 \N 白云 \N \N \N 1 \N 899bb41d-7cca-4afb-8353-258cc14ad977 t +2025-12-17 05:15:00.353467+00 2025-12-17 05:15:00.353472+00 1488 夏瑶服装 \N \N \N \N 1 \N c1e78fa8-5dde-44a7-9bd6-92a58b0be2e9 t +2025-12-17 05:15:00.354301+00 2025-12-17 05:15:00.354305+00 1489 A霓虹克斯 \N 白云 \N \N \N 1 \N dda1120c-5322-42b5-b3ff-5af60334802e t +2025-12-17 05:15:00.355271+00 2025-12-17 05:15:00.355276+00 1490 盛达谢老板 \N \N \N \N 1 \N ff4b0b65-18dc-4e78-a793-6cdee27bff5e t +2025-12-17 05:15:00.356156+00 2025-12-17 05:15:00.356161+00 1491 A彭天明 \N 白云 \N \N \N 1 \N de0d716e-281e-422a-b834-9ae28e0269b5 t +2025-12-17 05:15:00.356989+00 2025-12-17 05:15:00.356994+00 1492 龚可乐 \N 周边 \N \N \N 1 \N c5d15781-a8bd-4292-803a-b6da82018a49 t +2025-12-17 05:15:00.357813+00 2025-12-17 05:15:00.357817+00 1493 A颜志者 \N 白云 \N \N \N 1 \N c08d4e43-9e42-4ac2-93cd-29d67a185da4 t +2025-12-17 05:15:00.358681+00 2025-12-17 05:15:00.358685+00 1494 隆双马 \N 中大 \N \N \N 1 \N b00bb21c-2060-426d-b3a2-7987d12e53b7 t +2025-12-17 05:15:00.359675+00 2025-12-17 05:15:00.35968+00 1495 A依美服饰 \N 白云 \N \N \N 1 \N ef855e40-ab3b-45c3-a2c2-3b90caa37510 t +2025-12-17 05:15:00.360684+00 2025-12-17 05:15:00.360688+00 1496 A莱米 \N 白云 \N \N \N 1 \N 7c2622cc-0238-4255-bb35-a01b2ca0a223 t +2025-12-17 05:15:00.361682+00 2025-12-17 05:15:00.361687+00 1497 A李红 \N 白云 \N \N \N 1 \N 0aae4e35-60cb-48d5-87ad-9e4cf4a18b07 t +2025-12-17 05:15:00.362681+00 2025-12-17 05:15:00.362686+00 1498 A德丰服饰 \N 白云 \N \N \N 1 \N 6755cb64-911d-46d2-90ef-f96d9c5365eb t +2025-12-17 05:15:00.363675+00 2025-12-17 05:15:00.363679+00 1499 A美美服饰 \N 白云 \N \N \N 1 \N c81d7ace-ab9d-43c5-bf2e-1e34da906f14 t +2025-12-17 05:15:00.364682+00 2025-12-17 05:15:00.364687+00 1500 A钟洪春 \N 白云 \N \N \N 1 \N b3d58ddd-8be0-4527-9b3e-aae78d611ae0 t +2025-12-17 05:15:00.365697+00 2025-12-17 05:15:00.365702+00 1501 卡妮尔 \N \N \N \N 1 \N 376be2b2-58e1-4c99-b81c-74c9152cb493 t +2025-12-17 05:15:00.366715+00 2025-12-17 05:15:00.36672+00 1502 拉可尔 \N \N \N \N 1 \N 9f527a71-739f-43e3-9e92-a872b70d4d0d t +2025-12-17 05:15:00.367718+00 2025-12-17 05:15:00.367723+00 1503 岱利 \N \N \N \N 1 \N e25a15a1-ad21-4bff-8ee9-6d4ecdb22b49 t +2025-12-17 05:15:00.368711+00 2025-12-17 05:15:00.368716+00 1504 A小卓 \N 白云 \N \N \N 1 \N aeb0d22b-fb0a-40d6-a77e-3372aff6e4b0 t +2025-12-17 05:15:00.369708+00 2025-12-17 05:15:00.369713+00 1505 A徐华岚 \N 白云 \N \N \N 1 \N 158be9e1-c584-448d-a9b3-3561dc47fc8e t +2025-12-17 05:15:00.370713+00 2025-12-17 05:15:00.370717+00 1506 A爱娅外贸 \N 白云 \N \N \N 1 \N 0f8f964a-1728-42b8-9126-fba8cba8291e t +2025-12-17 05:15:00.371709+00 2025-12-17 05:15:00.371714+00 1507 粤焱C组 \N \N \N \N 1 \N 4d59005a-46df-401d-9cd4-d6899e8e4e2b t +2025-12-17 05:15:00.372708+00 2025-12-17 05:15:00.372712+00 1508 粤焱F \N \N \N \N 1 \N f619c9c9-58d8-42b4-9cf9-88bb0995466a t +2025-12-17 05:15:00.37371+00 2025-12-17 05:15:00.373715+00 1509 老吴测试 \N \N \N \N 1 \N 7eb0d64a-c05e-40c6-b355-871ce404581f t +2025-12-17 05:15:00.598683+00 2025-12-17 05:15:00.598694+00 1510 哥斯拉 \N \N \N \N 1 \N f02f11ab-47e6-47b1-843b-83e40fd7fd2b t +2025-12-17 05:15:00.600417+00 2025-12-17 05:15:00.600424+00 1511 黄总 \N \N \N \N 1 \N 35b4306e-a7b1-41b9-abca-17c5f202fc97 t +2025-12-17 05:15:00.601676+00 2025-12-17 05:15:00.601682+00 1512 A-ADDY \N 白云 \N \N \N 1 \N e1da8e35-b727-47e3-839f-92f2dd3cf067 t +2025-12-17 05:15:00.602911+00 2025-12-17 05:15:00.602917+00 1513 A利团服饰 \N 白云 \N \N \N 1 \N a6017e2a-d3ad-404d-b68e-a31333276fb2 t +2025-12-17 05:15:00.604125+00 2025-12-17 05:15:00.60413+00 1514 威都 \N \N \N \N 1 \N c86266a7-647d-42c7-ab72-73ff08548eac t +2025-12-17 05:15:00.605024+00 2025-12-17 05:15:00.605028+00 1515 A蓝朵儿服饰 \N 白云 \N \N \N 1 \N 52be0f44-5303-47d7-a46b-5f2b9e857f3a t +2025-12-17 05:15:00.605851+00 2025-12-17 05:15:00.605855+00 1516 F胜金服饰 \N 佛山 \N \N \N 1 \N 2fbeb8d0-cb24-4a58-b89f-fb1bee9869c6 t +2025-12-17 05:15:00.606675+00 2025-12-17 05:15:00.606679+00 1517 A龙厚武 \N 白云 \N \N \N 1 \N 3159ea7d-2619-4f47-86e6-55932fc3c0f5 t +2025-12-17 05:15:00.607501+00 2025-12-17 05:15:00.607505+00 1518 A升都208A \N 白云 \N \N \N 1 \N 4a3625dd-a145-4e97-b620-c5cc07d8229a t +2025-12-17 05:15:00.608295+00 2025-12-17 05:15:00.608299+00 1519 A付朝顺 \N 白云 \N \N \N 1 \N cac7973d-0702-4321-869c-dfac29da82b5 t +2025-12-17 05:15:00.609157+00 2025-12-17 05:15:00.609162+00 1520 A龚增华 \N 白云 \N \N \N 1 \N f01f2ff5-53ab-444a-9eca-649cee84ca60 t +2025-12-17 05:15:00.61045+00 2025-12-17 05:15:00.610456+00 1521 A尼彩 \N 白云 \N \N \N 1 \N 586a28a5-0851-4bbb-b844-96c21abb97f7 t +2025-12-17 05:15:00.611541+00 2025-12-17 05:15:00.611546+00 1522 越南 \N \N \N \N 1 \N 7633b35c-98e3-4413-8766-923e38cd6f01 t +2025-12-17 05:15:00.612427+00 2025-12-17 05:15:00.612431+00 1523 冰冰 \N \N \N \N 1 \N c3160e6d-8729-4cb2-8077-13dc16c2b3b3 t +2025-12-17 05:15:00.613259+00 2025-12-17 05:15:00.613263+00 1524 A颜永平 \N 白云 \N \N \N 1 \N b1236b52-b17f-436c-a7f7-40d58f2bfbe6 t +2025-12-17 05:15:00.614061+00 2025-12-17 05:15:00.614065+00 1525 米老板 \N \N \N \N 1 \N ae422e85-1e8b-46de-a092-dc85b8c9eccd t +2025-12-17 05:15:00.614874+00 2025-12-17 05:15:00.614878+00 1526 A欣美服饰 \N 白云 \N \N \N 1 \N 481e9b77-9498-4e8f-ad57-00ae31871452 t +2025-12-17 05:15:00.615681+00 2025-12-17 05:15:00.615684+00 1527 A禹金服饰 \N \N \N \N 1 \N c2ad6d1c-477d-465b-9a75-ea87dd2a683b t +2025-12-17 05:15:00.616475+00 2025-12-17 05:15:00.616479+00 1528 A禹金 \N \N \N \N 1 \N ed238e8b-0cb6-4728-bc3b-7977590f4fb3 t +2025-12-17 05:15:00.617291+00 2025-12-17 05:15:00.617295+00 1529 A ADDY服饰 \N \N \N \N 1 \N 958909b9-b237-42bb-a54c-f19b3e44fc2c t +2025-12-17 05:15:00.61807+00 2025-12-17 05:15:00.618074+00 1530 盛达-宋生 \N \N \N \N 1 \N 7ece4ab0-5a6c-4655-abe0-2f23f72cba09 t +2025-12-17 05:15:00.618846+00 2025-12-17 05:15:00.61885+00 1531 A黄总江夏 \N \N \N \N 1 \N abfea5d8-29e0-4d28-9f65-767a345027c6 t +2025-12-17 05:15:00.619653+00 2025-12-17 05:15:00.619657+00 1532 胜金服饰 \N \N \N \N 1 \N 8ae15597-fdf6-4252-8717-a3db7e4da32e t +2025-12-17 05:15:00.620458+00 2025-12-17 05:15:00.620462+00 1533 妮娜纺织 \N \N \N \N 1 \N 08dc6dab-47b4-4c93-919d-7117c9b7cee1 t +2025-12-17 05:15:00.621259+00 2025-12-17 05:15:00.621262+00 1534 A海琳服饰 \N 白云 \N \N \N 1 \N 5c85593a-6276-4d59-b67d-fb2d77b4d7fc t +2025-12-17 05:15:00.622042+00 2025-12-17 05:15:00.622046+00 1535 盛达-谢老板 \N \N \N \N 1 \N 1665e45f-fe22-4a0f-8c8a-495545d7eed0 t +2025-12-17 05:15:00.622848+00 2025-12-17 05:15:00.622852+00 1536 A粤焱集团-F \N \N \N \N 1 \N b6b04392-81dc-4239-90ec-8a305e374aa2 t +2025-12-17 05:15:00.623624+00 2025-12-17 05:15:00.623627+00 1537 22222 \N \N \N \N 1 \N 0b4af797-6963-48e9-bc4f-e749be0d83c5 t +2025-12-17 05:15:00.624399+00 2025-12-17 05:15:00.624402+00 1538 歌斯拉-广州鑫诚 \N \N \N \N 1 \N ee22d0ac-1f13-4992-b873-2e799d6f0c11 t +2025-12-17 05:15:00.625212+00 2025-12-17 05:15:00.625216+00 1539 A卡蔓 \N 白云 \N \N \N 1 \N a15c1718-e1c5-4510-857a-aca42c75449c t +2025-12-17 05:15:00.62601+00 2025-12-17 05:15:00.626014+00 1540 A旺旺服饰周总 \N \N \N \N 1 \N bb25ca12-89ed-4cb1-886c-7c4da597d8a8 t +2025-12-17 05:15:00.626808+00 2025-12-17 05:15:00.626812+00 1541 歌斯拉-诗瑶服饰 \N \N \N \N 1 \N 60dc0c65-4839-4b46-a279-6bf3733e3cb8 t +2025-12-17 05:15:00.627611+00 2025-12-17 05:15:00.627615+00 1542 A雨霏服饰 \N \N \N \N 1 \N 8c595c13-1e6f-47c9-965d-250ceebd29df t +2025-12-17 05:15:00.628452+00 2025-12-17 05:15:00.628455+00 1543 歌斯拉-余少伟 \N \N \N \N 1 \N f14b3d15-022d-4ea5-b13b-15b4802fa2dc t +2025-12-17 05:15:00.629232+00 2025-12-17 05:15:00.629235+00 1544 轩衣诺 \N \N \N \N 1 \N 659f2e6b-311a-429e-96f2-5ba1d219f6ac t +2025-12-17 05:15:00.630027+00 2025-12-17 05:15:00.630031+00 1545 歌斯拉-圣利凯斯服饰 \N \N \N \N 1 \N 9b3b36c1-5ac7-446e-a8af-32575581cc8e t +2025-12-17 05:15:00.630822+00 2025-12-17 05:15:00.630826+00 1546 A妮可服饰-颜先生 \N 白云 \N \N \N 1 \N 1eaeae79-b904-4562-b265-65a4a233afc3 t +2025-12-17 05:15:00.631601+00 2025-12-17 05:15:00.631605+00 1547 A留言服饰 \N 白云 \N \N \N 1 \N eb37c030-14c0-42bd-8d23-5632cf934d31 t +2025-12-17 05:15:00.632398+00 2025-12-17 05:15:00.632402+00 1548 00 \N \N \N \N 1 \N a4d2c183-10d1-426a-94de-caf3ae1d78ee t +2025-12-17 05:15:00.633211+00 2025-12-17 05:15:00.633215+00 1549 汕头弟仔兄 \N \N \N \N 1 \N c04f85ac-7e17-426a-9097-557dd62a8545 t +2025-12-17 05:15:00.633978+00 2025-12-17 05:15:00.633981+00 1550 歌斯拉-大星服饰 \N \N \N \N 1 \N fa692618-27b7-4f46-bb95-8e33b8ba5a4f t +2025-12-17 05:15:00.634886+00 2025-12-17 05:15:00.634891+00 1551 A-谭总 \N \N \N \N 1 \N 9ddf3721-5808-4996-9835-23b25eb46a35 t +2025-12-17 05:15:00.635723+00 2025-12-17 05:15:00.635727+00 1552 卡拉奇服饰 \N \N \N \N 1 \N 405f2f27-abbf-46a9-9317-d4822ad3c324 t +2025-12-17 05:15:00.636538+00 2025-12-17 05:15:00.636542+00 1553 A陈龙工厂 \N \N \N \N 1 \N 9a5e5fe7-a9d8-4e5a-8d38-59ba737af5d1 t +2025-12-17 05:15:00.637337+00 2025-12-17 05:15:00.637341+00 1554 1688电商 \N \N \N \N 1 \N 2da46bd7-0f47-4ba3-8d4e-0441974b5b16 t +2025-12-17 05:15:00.638121+00 2025-12-17 05:15:00.638125+00 1555 蔡维克(蔡总) \N \N \N \N 1 \N b6c74e5c-49ba-4b38-b03b-96811f09b57b t +2025-12-17 05:15:00.638927+00 2025-12-17 05:15:00.638931+00 1556 雨涵服饰 \N \N \N \N 1 \N b521dac6-5267-41e4-9fcb-6b193e139427 t +2025-12-17 05:15:00.639721+00 2025-12-17 05:15:00.639725+00 1557 歌斯拉-普宁张姐 \N \N \N \N 1 \N 815bf684-5b03-43b1-8ad9-52bd61712870 t +2025-12-17 05:15:00.640501+00 2025-12-17 05:15:00.640504+00 1558 A粤焱集团-A \N \N \N \N 1 \N 7623dfb4-5de7-4b8a-8811-81dac9ce7585 t +2025-12-17 05:15:00.641276+00 2025-12-17 05:15:00.64128+00 1559 英易贸易 \N \N \N \N 1 \N df115e5c-dd99-4c9b-8fb2-3d054f015840 t +2025-12-17 05:15:00.642075+00 2025-12-17 05:15:00.642079+00 1560 歌斯拉-林汉才 \N \N \N \N 1 \N 4cb9c987-2ae3-4994-b852-a58b4427b64a t +2025-12-17 05:15:00.642869+00 2025-12-17 05:15:00.642872+00 1561 柒予服饰 \N \N \N \N 1 \N ba53fbb7-3d41-4ced-a6b6-7b4accd0e4f8 t +2025-12-17 05:15:00.643758+00 2025-12-17 05:15:00.643763+00 1562 蛮潮(南村) \N \N \N \N 1 \N 8b532f9a-0aa8-4ed0-bbd0-8d0dbc48010e t +2025-12-17 05:15:00.644582+00 2025-12-17 05:15:00.644586+00 1563 恒泰 \N \N \N \N 1 \N 4a82834e-1372-44f0-8800-88d73eda6863 t +2025-12-17 05:15:00.645402+00 2025-12-17 05:15:00.645406+00 1564 A欧阳国兵 \N \N \N \N 1 \N 857c0c6c-a804-4517-a216-ce855dfc8e59 t +2025-12-17 05:15:00.646189+00 2025-12-17 05:15:00.646193+00 1565 22 \N \N \N \N 1 \N fb96eab2-2904-4513-8ea9-547bc8ae5d40 t +2025-12-17 05:15:00.64696+00 2025-12-17 05:15:00.646964+00 1566 山屿服饰 \N \N \N \N 1 \N ec8b0139-7056-4570-8019-7dccc8e2fbda t +2025-12-17 05:15:00.647818+00 2025-12-17 05:15:00.647823+00 1567 衣鸣服饰 \N \N \N \N 1 \N edceec9f-4d11-481b-94be-fa1e5ac34151 t +2025-12-17 05:15:00.648628+00 2025-12-17 05:15:00.648632+00 1568 000 \N \N \N \N 1 \N 704a48bc-91b6-45f7-9bf0-6b103d43e1bc t +2025-12-17 05:15:00.649408+00 2025-12-17 05:15:00.649412+00 1569 君豪林生 \N \N \N \N 1 \N 4a33b7db-efc7-453f-a2a3-28cf798c0f2a t +2025-12-17 05:15:00.650189+00 2025-12-17 05:15:00.650193+00 1570 佳豪 \N \N \N \N 1 \N 395681a8-a76b-49c1-896f-d8b49a69eb51 t +2025-12-17 05:15:00.650978+00 2025-12-17 05:15:00.650982+00 1571 歌斯拉-琦艺 \N \N \N \N 1 \N db62f1be-3cc2-4ae8-99fd-f6867d99e5f6 t +2025-12-17 05:15:00.651807+00 2025-12-17 05:15:00.651811+00 1572 觅妍 \N \N \N \N 1 \N c9bdecfe-3b40-4b46-b9f5-f5e8e92e321f t +2025-12-17 05:15:00.65267+00 2025-12-17 05:15:00.652675+00 1573 歌斯拉-张明 \N \N \N \N 1 \N 4307d29f-9bdc-434f-a9c1-b8ea26da97f3 t +2025-12-17 05:15:00.653665+00 2025-12-17 05:15:00.653669+00 1574 歌斯拉-锦飞宇 \N \N \N \N 1 \N 123fef79-9ce1-4a2b-81f4-d47768d668c5 t +2025-12-17 05:15:00.654514+00 2025-12-17 05:15:00.654518+00 1575 大眼(杨东杰) \N \N \N \N 1 \N 30e8c19f-0631-425a-b79d-96d59865ef69 t +2025-12-17 05:15:00.655354+00 2025-12-17 05:15:00.655358+00 1576 金秀如 \N \N \N \N 1 \N 9d0ce6f6-70fe-4340-b16e-85284f83f742 t +2025-12-17 05:15:00.656177+00 2025-12-17 05:15:00.656181+00 1577 歌斯拉-余超 \N \N \N \N 1 \N 5ae08055-6bc6-47f5-a6f7-49607ab1f483 t +2025-12-17 05:15:00.656965+00 2025-12-17 05:15:00.656969+00 1578 歌斯拉-歌洛萱服饰 \N \N \N \N 1 \N 34fdbc49-af01-43a5-8e6d-fe0cbf60ccd1 t +2025-12-17 05:15:00.657753+00 2025-12-17 05:15:00.657758+00 1579 海光 \N \N \N \N 1 \N fd04012d-c537-4cb8-8916-fe2afd8e43fa t +2025-12-17 05:15:00.658546+00 2025-12-17 05:15:00.658549+00 1580 123456 \N \N \N \N 1 \N 5615fb6e-011c-4932-a956-53e55752ddf5 t +2025-12-17 05:15:00.65936+00 2025-12-17 05:15:00.659363+00 1581 沐瑾服饰 \N \N \N \N 1 \N c811161e-df7d-4901-85ef-ddd52dccba5f t +2025-12-17 05:15:00.660173+00 2025-12-17 05:15:00.660177+00 1582 盛缘服饰 \N \N \N \N 1 \N 3ff9824f-1b30-404d-9dee-53bf3dc54eaf t +2025-12-17 05:15:00.660969+00 2025-12-17 05:15:00.660972+00 1583 歌斯拉-爱马尼服饰 \N \N \N \N 1 \N 68458dc8-2b61-4cbe-b3ae-97b06ab9fbb2 t +2025-12-17 05:15:00.661753+00 2025-12-17 05:15:00.661757+00 1584 华森纺织 \N \N \N \N 1 \N a854bf5d-f28e-47df-9aed-185cec577705 t +2025-12-17 05:15:00.662554+00 2025-12-17 05:15:00.662558+00 1585 番禺杰福雅外贸(红果) \N \N \N \N 1 \N 4e892472-5932-4ceb-b6b3-c39a0850023f t +2025-12-17 05:15:00.66333+00 2025-12-17 05:15:00.663333+00 1586 源兴纺织 \N \N \N \N 1 \N c7651dad-c24e-4507-a41f-3447e22a3694 t +2025-12-17 05:15:00.664113+00 2025-12-17 05:15:00.664117+00 1587 雅迪 \N \N \N \N 1 \N d989f79f-2232-4098-8bc9-cb5707b99ee0 t +2025-12-17 05:15:00.664909+00 2025-12-17 05:15:00.664913+00 1588 歌斯拉-景奇 \N \N \N \N 1 \N 35ad4655-98cd-45b9-a880-6d9f8b253a63 t +2025-12-17 05:15:00.665685+00 2025-12-17 05:15:00.665689+00 1589 A粤焱集团-全民MAb单 \N \N \N \N 1 \N 95edda79-0f81-4d2e-87f1-42f666cf577e t +2025-12-17 05:15:00.666508+00 2025-12-17 05:15:00.666512+00 1590 A粤焱集团-龙哥F单 \N \N \N \N 1 \N 3a65d275-e876-41ba-a7b9-935b1b61aece t +2025-12-17 05:15:00.667306+00 2025-12-17 05:15:00.66731+00 1591 A粤焱集团-永永发 \N \N \N \N 1 \N d97af989-3b7c-41fd-97e7-94294e1d4d25 t +2025-12-17 05:15:00.668078+00 2025-12-17 05:15:00.668081+00 1592 A粤焱集团-永永发F单 \N \N \N \N 1 \N 9fc60c39-28a9-416c-9363-b74321ea9c21 t +2025-12-17 05:15:00.66885+00 2025-12-17 05:15:00.668854+00 1593 纪梵黎 \N \N \N \N 1 \N 1ea8d7fb-07a6-43ea-a2c4-30932f5ba5f5 t +2025-12-17 05:15:00.669644+00 2025-12-17 05:15:00.669648+00 1594 歌斯拉-肖轻奢 \N \N \N \N 1 \N aa1cf441-f23a-4d57-b723-bf3183a2d5da t +2025-12-17 05:15:00.670411+00 2025-12-17 05:15:00.670415+00 1595 A粤焱集团-全民F单 \N \N \N \N 1 \N cc9fe313-7855-4ca6-a4b2-a7583a6bb7f1 t +2025-12-17 05:15:00.67119+00 2025-12-17 05:15:00.671193+00 1596 A粤焱集团-刘生 \N \N \N \N 1 \N 8f0d098a-17f3-4850-b8b5-40db30af30ef t +2025-12-17 05:15:00.671975+00 2025-12-17 05:15:00.671979+00 1597 A粤焱集团-全民B单 \N \N \N \N 1 \N 3cee3448-288e-4a0d-8214-bfe20a8ef855 t +2025-12-17 05:15:00.672761+00 2025-12-17 05:15:00.672764+00 1598 聪辉 \N \N \N \N 1 \N d6d6bc81-3f79-4e68-81e4-395817345d8b t +2025-12-17 05:15:00.673534+00 2025-12-17 05:15:00.673538+00 1599 歌斯拉-科翰服饰 \N \N \N \N 1 \N 94668a87-15a3-4275-b025-233f409e7c68 t +2025-12-17 05:15:00.67435+00 2025-12-17 05:15:00.674354+00 1600 陈晓波 \N \N \N \N 1 \N 7bd591c5-7e4e-4415-8fea-55de7111ba43 t +2025-12-17 05:15:00.675405+00 2025-12-17 05:15:00.675409+00 1601 歌斯拉-菡亿服饰 \N \N \N \N 1 \N 6ac0ef5b-492a-4d97-b53f-d32c5eb7e2bb t +2025-12-17 05:15:00.676528+00 2025-12-17 05:15:00.676533+00 1602 盛达-欣盛源 \N \N \N \N 1 \N 4352a410-3180-41d6-b00b-20da93349866 t +2025-12-17 05:15:00.677639+00 2025-12-17 05:15:00.677643+00 1603 广旭源 \N \N \N \N 1 \N 1dc551aa-c35f-4e93-855e-fb242454bb13 t +2025-12-17 05:15:00.678794+00 2025-12-17 05:15:00.678799+00 1604 歌斯拉-犇腾 \N \N \N \N 1 \N b1672d99-f548-40de-9513-67a5db9a91bd t +2025-12-17 05:15:00.680059+00 2025-12-17 05:15:00.680065+00 1605 A粤焱集团-C组 \N 白云 \N \N \N 1 \N 63bcd42d-2662-439b-ab4c-f74cc9a83f90 t +2025-12-17 05:15:00.68148+00 2025-12-17 05:15:00.681486+00 1606 赫伊琪服饰 \N \N \N \N 1 \N 0adaeda7-11e0-47a3-999e-2422e6578fa8 t +2025-12-17 05:15:00.68279+00 2025-12-17 05:15:00.682794+00 1607 歌斯拉-喜的屋 \N \N \N \N 1 \N 1dc7b0c1-e626-4c43-9fff-9587605287e0 t +2025-12-17 05:15:00.684004+00 2025-12-17 05:15:00.684008+00 1608 天诚服饰 \N \N \N \N 1 \N abafbebe-57a1-4dc5-9873-d1467af5f9b3 t +2025-12-17 05:15:00.684959+00 2025-12-17 05:15:00.684964+00 1609 泽昱 \N \N \N \N 1 \N 7d80359e-3b49-4925-9087-e867900c5fa4 t +2025-12-17 05:20:00.263532+00 2025-12-17 05:20:00.263544+00 1610 歌斯拉-耶利亚 \N \N \N \N 1 \N 51be1a64-6b3a-4c6f-a6da-711b83c60f56 t +2025-12-17 05:20:00.266024+00 2025-12-17 05:20:00.266032+00 1611 A粤焱集团-全民 \N \N \N \N 1 \N 69157800-8d31-43a6-9650-bf14f5e8532f t +2025-12-17 05:20:00.267295+00 2025-12-17 05:20:00.267301+00 1612 江南贝拉莱服饰 \N \N \N \N 1 \N e1caef8d-006b-4997-81f8-7a8dd96a384c t +2025-12-17 05:20:00.268522+00 2025-12-17 05:20:00.268526+00 1613 越之恒周劲松 \N \N \N \N 1 \N ffd5e39f-839a-4d7c-aba0-e9115649b9f2 t +2025-12-17 05:20:00.269705+00 2025-12-17 05:20:00.26971+00 1614 希唯陈小姐 \N \N \N \N 1 \N a404fd18-e18a-4d63-90d1-9531c04abad8 t +2025-12-17 05:20:00.270927+00 2025-12-17 05:20:00.270931+00 1615 A唐小波 \N 白云 \N \N \N 1 \N c0268a4b-b701-4692-9368-ffa80bd849e9 t +2025-12-17 05:20:00.272065+00 2025-12-17 05:20:00.272069+00 1616 赤沙熊总(ok) \N \N \N \N 1 \N 4dc753a9-4e7c-4180-bfff-b8a0770c7f47 t +2025-12-17 05:20:00.273188+00 2025-12-17 05:20:00.273192+00 1617 番禺塘步西朝新服饰 \N \N \N \N 1 \N b570989f-9944-49f7-b856-008d4c7e2298 t +2025-12-17 05:20:00.27399+00 2025-12-17 05:20:00.273995+00 1618 衣上型 \N \N \N \N 1 \N 8553cf29-2525-4945-8ca1-46b396b3198f t +2025-12-17 05:20:00.274798+00 2025-12-17 05:20:00.274802+00 1619 A粤焱集团-葵哥 \N \N \N \N 1 \N 091d3597-5e54-400f-b4bb-79b15b0d14df t +2025-12-17 05:20:00.275702+00 2025-12-17 05:20:00.275709+00 1620 A粤焱集团-庄 \N \N \N \N 1 \N 339aa768-3b9d-4301-bb5f-87e0a640afa4 t +2025-12-17 05:20:00.276616+00 2025-12-17 05:20:00.27662+00 1621 A粤焱集团-梅姐 \N \N \N \N 1 \N f5278325-5eef-4596-a216-b603b2c8150c t +2025-12-17 05:20:00.277454+00 2025-12-17 05:20:00.277458+00 1622 江辉(江总) \N \N \N \N 1 \N 63433803-5f58-4949-aa44-49cdf25603f1 t +2025-12-17 05:20:00.278246+00 2025-12-17 05:20:00.278249+00 1623 陈先生 \N \N \N \N 1 \N 06569ea2-9cda-4e0c-9869-cd1f08ac6dba t +2025-12-17 05:20:00.279049+00 2025-12-17 05:20:00.279053+00 1624 翁结林(杨东杰) \N \N \N \N 1 \N 49e0aa1f-831a-47c2-bdc3-4274a2ebc837 t +2025-12-17 05:20:00.27986+00 2025-12-17 05:20:00.279863+00 1625 A粤焱集团-众乐 \N \N \N \N 1 \N 196f4a33-ddce-484d-9884-a37e3a20efbe t +2025-12-17 05:20:00.280653+00 2025-12-17 05:20:00.280657+00 1626 A粤焱集团-佳佳 \N \N \N \N 1 \N a5c0a716-5c4e-49a9-b718-6b2f89ee3d8b t +2025-12-17 05:20:00.281435+00 2025-12-17 05:20:00.281439+00 1627 A粤焱-青年组 \N \N \N \N 1 \N a1acd90c-9ebe-4b09-a7ff-0b7207c69485 t +2025-12-17 05:20:00.282236+00 2025-12-17 05:20:00.28224+00 1628 A永盛 \N \N \N \N 1 \N 8263a13a-c415-4021-8adc-dff1e1eb6985 t +2025-12-17 05:20:00.283009+00 2025-12-17 05:20:00.283012+00 1629 自然界 \N \N \N \N 1 \N b61014d4-cbf5-412e-8749-e552d1c10708 t +2025-12-17 05:20:00.283799+00 2025-12-17 05:20:00.283803+00 1630 华盛(九州) \N \N \N \N 1 \N d56bfb6b-24fd-4570-9e4c-2b44ae40b90a t +2025-12-17 05:20:00.28462+00 2025-12-17 05:20:00.284624+00 1631 兴旺(九州经五街) \N \N \N \N 1 \N 5e57de4d-a764-4146-855d-c4bccf5e946c t +2025-12-17 05:20:00.285408+00 2025-12-17 05:20:00.285412+00 1632 A珊妮-志娟 \N \N \N \N 1 \N dd37f5d9-70cd-46e9-90fe-a1feb9e42276 t +2025-12-17 05:20:00.286187+00 2025-12-17 05:20:00.28619+00 1633 吴广贤 \N \N \N \N 1 \N 2e971a18-683a-48d3-a58f-cc3fee4e1c2d t +2025-12-17 05:20:00.286997+00 2025-12-17 05:20:00.287001+00 1634 华珍 \N \N \N \N 1 \N 5a0f5aa6-7733-455b-9b70-cfb672b6fa64 t +2025-12-17 05:20:00.287779+00 2025-12-17 05:20:00.287782+00 1635 A粤焱集团B \N \N \N \N 1 \N 9b3d0bfb-b776-4493-9c29-b1840c1e50c8 t +2025-12-17 05:20:00.288551+00 2025-12-17 05:20:00.288554+00 1636 盛达-肖老板 \N \N \N \N 1 \N 75b748e7-0df3-47f1-ad0b-b6fa6528b443 t +2025-12-17 05:20:00.289345+00 2025-12-17 05:20:00.28935+00 1637 朵晨服装 \N \N \N \N 1 \N d21dc569-5915-4c9c-8cfe-0971c782f78e t +2025-12-17 05:20:00.290116+00 2025-12-17 05:20:00.290119+00 1638 杨南 \N \N \N \N 1 \N 35fbf651-a319-4dbd-9cb5-e2f0371b4cab t +2025-12-17 05:20:00.290893+00 2025-12-17 05:20:00.290897+00 1639 尚艺服饰 \N \N \N \N 1 \N eb915905-2778-4ec1-b354-b749721ecc5b t +2025-12-17 05:20:00.291678+00 2025-12-17 05:20:00.291683+00 1640 尚表服饰 \N \N \N \N 1 \N 5e7661b1-6efb-4f39-9d5f-98da20720663 t +2025-12-17 05:20:00.292715+00 2025-12-17 05:20:00.292719+00 1641 QS浩瀚服饰 \N \N \N \N 1 \N 83e32d76-e11d-4027-9ad3-e2635e130e55 t +2025-12-17 05:20:00.293498+00 2025-12-17 05:20:00.293502+00 1642 子杰 \N \N \N \N 1 \N d593adbc-d3bc-4b98-8d95-b68283655b0d t +2025-12-17 05:20:00.294309+00 2025-12-17 05:20:00.294313+00 1643 淡雅服饰 \N \N \N \N 1 \N aba86a34-7325-4a2d-a9a7-ec0b848d2b90 t +2025-12-17 05:20:00.295077+00 2025-12-17 05:20:00.295081+00 1644 仙鹤 \N \N \N \N 1 \N 8fe6adab-d896-4b0f-9118-3e2a85b2d1f5 t +2025-12-17 05:20:00.295868+00 2025-12-17 05:20:00.295872+00 1645 盛达-黄小姐 \N \N \N \N 1 \N 60ac94b4-8da3-4bdd-b15d-4c8f0aa76cc7 t +2025-12-17 05:20:00.296661+00 2025-12-17 05:20:00.296665+00 1646 贾杰 \N \N \N \N 1 \N aa6459f9-2091-4a17-9b2d-209591fabd11 t +2025-12-17 05:20:00.297444+00 2025-12-17 05:20:00.297448+00 1647 歌斯拉-熊高 \N \N \N \N 1 \N 72a9560d-6b5c-4f3c-9894-3b6b19ed2f99 t +2025-12-17 05:20:00.298245+00 2025-12-17 05:20:00.298249+00 1648 盛达-黄生 \N \N \N \N 1 \N 9785fd3c-8fe6-466a-abab-e53bfdff146e t +2025-12-17 05:20:00.299026+00 2025-12-17 05:20:00.29903+00 1649 盛达雅泰 \N \N \N \N 1 \N 5c0da94b-9cf7-4bab-86cb-e7ea0c0356c2 t +2025-12-17 05:20:00.2998+00 2025-12-17 05:20:00.299804+00 1650 janey(珍妮服饰) \N \N \N \N 1 \N 1fb925fe-f550-4a9d-94a2-e36287b92852 t +2025-12-17 05:20:00.300598+00 2025-12-17 05:20:00.300602+00 1651 粟小姐 \N \N \N \N 1 \N b361c627-8b8a-4b04-a08a-180a664c7aa9 t +2025-12-17 05:20:00.301375+00 2025-12-17 05:20:00.301379+00 1652 A蔡业炜 \N \N \N \N 1 \N 5da0b9d5-0cbe-4e9f-a701-c3cdb770d72d t +2025-12-17 05:20:00.30215+00 2025-12-17 05:20:00.302153+00 1653 周辉 \N \N \N \N 1 \N 24a1b730-728d-4ae6-8175-441126a59099 t +2025-12-17 05:20:00.30294+00 2025-12-17 05:20:00.302944+00 1654 歌斯拉-曾旺 \N \N \N \N 1 \N 702515c3-2c63-41e5-a7cc-aeae4145ca5f t +2025-12-17 05:20:00.303723+00 2025-12-17 05:20:00.303727+00 1655 应收盛达 \N \N \N \N 1 \N a3f0222c-6c69-4ffd-8914-c057789752f5 t +2025-12-17 05:20:00.304559+00 2025-12-17 05:20:00.304567+00 1656 丝韵 \N \N \N \N 1 \N 97ad3c61-ca79-4bda-a09a-81cf5271b834 t +2025-12-17 05:20:00.305358+00 2025-12-17 05:20:00.305362+00 1657 彤翔服饰 \N \N \N \N 1 \N 51974d7a-441d-47cd-9c9e-832351123547 t +2025-12-17 05:20:00.306127+00 2025-12-17 05:20:00.306131+00 1658 伊人服装 \N \N \N \N 1 \N 05f0181c-20cd-4862-b81d-93f753608775 t +2025-12-17 05:20:00.307099+00 2025-12-17 05:20:00.307109+00 1659 韩柚 \N \N \N \N 1 \N cc97abe4-8f0c-4f77-89f1-1b8e4b056079 t +2025-12-17 05:20:00.30798+00 2025-12-17 05:20:00.307984+00 1660 歌斯拉-曾总 \N \N \N \N 1 \N 9fbec768-9791-45a9-a9e4-862b83b93fc9 t +2025-12-17 05:20:00.308793+00 2025-12-17 05:20:00.308797+00 1661 哥斯拉—墨韵清菡优选服饰 \N \N \N \N 1 \N b1375c15-c790-4878-9328-1905626feaf5 t +2025-12-17 05:20:00.309589+00 2025-12-17 05:20:00.309593+00 1662 圣若依服饰 \N \N \N \N 1 \N 84dcb6c4-4cda-40c6-b187-72f5e5b10767 t +2025-12-17 05:20:00.310419+00 2025-12-17 05:20:00.310424+00 1663 歌斯拉-维尼斯 \N \N \N \N 1 \N ded9455b-bd77-4dae-a679-24857b8e40a6 t +2025-12-17 05:20:00.311228+00 2025-12-17 05:20:00.311232+00 1664 彭铁军-戴云飞 \N \N \N \N 1 \N 3323ab51-9745-4b90-9caf-abd2261ef2b5 t +2025-12-17 05:20:00.312299+00 2025-12-17 05:20:00.312303+00 1665 歌斯拉-衣佳依 \N \N \N \N 1 \N 033ee77b-9949-4843-b37c-43fd005ed380 t +2025-12-17 05:20:00.313107+00 2025-12-17 05:20:00.313111+00 1666 歌斯拉-芳辰 \N \N \N \N 1 \N 699ae39f-7af9-4c67-8995-c78f66b86512 t +2025-12-17 05:20:00.313898+00 2025-12-17 05:20:00.313902+00 1667 古梦溪 \N \N \N \N 1 \N d4f89e1f-1931-4b38-b0c8-6599d892d02d t +2025-12-17 05:20:00.314756+00 2025-12-17 05:20:00.31476+00 1668 森盛 \N \N \N \N 1 \N 0da38443-abde-4b1f-ad0d-86bd2266e3eb t +2025-12-17 05:20:00.315548+00 2025-12-17 05:20:00.315552+00 1669 盛达-唐总 \N \N \N \N 1 \N 32298c83-65d0-4fca-adf9-bd40634c8d2b t +2025-12-17 05:20:00.316386+00 2025-12-17 05:20:00.31639+00 1670 A晴天 \N \N \N \N 1 \N 7703cd3a-d264-416a-963a-e3e56bba0ab8 t +2025-12-17 05:20:00.317268+00 2025-12-17 05:20:00.317273+00 1671 A龙志谦 \N \N \N \N 1 \N 5eeedec3-aaac-4994-b4b2-18bdede83c90 t +2025-12-17 05:20:00.31807+00 2025-12-17 05:20:00.318074+00 1672 A蒋老板 \N \N \N \N 1 \N 3caffa4d-2b51-49ed-b309-6ba62ee0e164 t +2025-12-17 05:20:00.318854+00 2025-12-17 05:20:00.318857+00 1673 黄格 \N \N \N \N 1 \N ebd3cb14-18aa-46ae-8c45-a6aa3f37a11c t +2025-12-17 05:20:00.319731+00 2025-12-17 05:20:00.319736+00 1674 A颜娟小姐 \N \N \N \N 1 \N fb67effa-b080-4251-b35d-a15a0be74088 t +2025-12-17 05:20:00.320584+00 2025-12-17 05:20:00.320588+00 1675 联衣社服饰 \N \N \N \N 1 \N 50d73567-54dc-43ac-b126-442413f05fad t +2025-12-17 05:20:00.321394+00 2025-12-17 05:20:00.321397+00 1676 锦辉外贸 \N \N \N \N 1 \N 493a5612-9a37-43b4-8208-7b37c43d94fc t +2025-12-17 05:20:00.322194+00 2025-12-17 05:20:00.322197+00 1677 克依 \N \N \N \N 1 \N ac1e9ca3-aff4-488b-9883-f9a762197f92 t +2025-12-17 05:20:00.322995+00 2025-12-17 05:20:00.323+00 1678 艾琳 \N \N \N \N 1 \N 63bf7cbd-1e40-4b44-b1d4-cdf957736266 t +2025-12-17 05:20:00.323797+00 2025-12-17 05:20:00.323801+00 1679 龙正纺织 \N \N \N \N 1 \N e2433d83-24eb-4ed3-ae84-60eb2dfb714b t +2025-12-17 05:20:00.324571+00 2025-12-17 05:20:00.324575+00 1680 盛达-周生 \N \N \N \N 1 \N 427fdf12-6aed-4a56-aa2e-ead753bbbbd7 t +2025-12-17 05:20:00.325357+00 2025-12-17 05:20:00.325362+00 1681 A问号 \N \N \N \N 1 \N e7f0252b-17ee-41f1-8692-34a794ea52a1 t +2025-12-17 05:20:00.3262+00 2025-12-17 05:20:00.326204+00 1682 盛达-罗小溪 \N \N \N \N 1 \N 9d95659c-e33b-4be2-81bb-f17f311efef6 t +2025-12-17 05:20:00.327024+00 2025-12-17 05:20:00.327028+00 1683 超麦汇大洋 \N \N \N \N 1 \N df56b0c2-39d3-4da4-9776-7112380b9309 t +2025-12-17 05:20:00.327833+00 2025-12-17 05:20:00.327837+00 1684 盛达-米奇 \N \N \N \N 1 \N ba7bdd59-bc38-47bb-918e-7b0430e64ffe t +2025-12-17 05:20:00.32865+00 2025-12-17 05:20:00.328654+00 1685 丁伟丁总 \N \N \N \N 1 \N d424a6a3-8ed3-4449-808c-d4ab9f04e6df t +2025-12-17 05:20:00.329595+00 2025-12-17 05:20:00.3296+00 1686 歌斯拉-大唐 \N \N \N \N 1 \N 2b83acc1-168e-42fe-8b5f-57f43dd6f4a6 t +2025-12-17 05:20:00.330476+00 2025-12-17 05:20:00.330481+00 1687 A芬芳外贸 \N \N \N \N 1 \N 460a722e-b549-4641-a55c-c9f5d8a2fb6a t +2025-12-17 05:20:00.331359+00 2025-12-17 05:20:00.331363+00 1688 金总-后滘弘毅厂 \N \N \N \N 1 \N bd4300ba-093c-473a-a612-9786a50be88f t +2025-12-17 05:20:00.332155+00 2025-12-17 05:20:00.332158+00 1689 盛世 \N \N \N \N 1 \N dbebab0f-e105-4118-9c9b-26a6afdeb2e6 t +2025-12-17 05:20:00.333001+00 2025-12-17 05:20:00.333005+00 1690 QS A李小姐 \N \N \N \N 1 \N 8b6ea6a0-1990-49bd-ab84-400653fabedf t +2025-12-17 05:20:00.333826+00 2025-12-17 05:20:00.33383+00 1691 英豪 \N \N \N \N 1 \N 2dbaf084-2dc2-4f8f-add3-ef30b98f7cd1 t +2025-12-17 05:20:00.334653+00 2025-12-17 05:20:00.334659+00 1692 EP-郑敏生 \N \N \N \N 1 \N f8557584-5cb2-480f-86df-63509b951c42 t +2025-12-17 05:20:00.335547+00 2025-12-17 05:20:00.335551+00 1693 LC-顺梵* \N \N \N \N 1 \N f74e9906-6ef3-479d-9cdd-1eaf6eb5ec2c t +2025-12-17 05:20:00.336417+00 2025-12-17 05:20:00.336421+00 1694 LC-蜀锦 \N \N \N \N 1 \N 64c24a87-9b0a-4ac4-a221-1a7147fedc0e t +2025-12-17 05:20:00.337229+00 2025-12-17 05:20:00.337234+00 1695 龙馨 \N \N \N \N 1 \N 3eb5829a-1582-441d-b960-0caee2bdea57 t +2025-12-17 05:20:00.338038+00 2025-12-17 05:20:00.338042+00 1696 LC-粤德* \N \N \N \N 1 \N 53226dd5-664e-43dc-84fd-c1ac057db88d t +2025-12-17 05:20:00.338837+00 2025-12-17 05:20:00.338841+00 1697 盛达-钢哥 \N \N \N \N 1 \N fd66402f-27d6-4138-9cff-b23e4cbb8703 t +2025-12-17 05:20:00.33971+00 2025-12-17 05:20:00.339714+00 1698 王凯旋 \N \N \N \N 1 \N 5c93a0f3-c773-4ed1-97d3-f3b09c13c250 t +2025-12-17 05:20:00.34072+00 2025-12-17 05:20:00.340724+00 1699 盛达-陈奇 \N \N \N \N 1 \N c393b9e3-da36-4270-a22f-41627d2f0a24 t +2025-12-17 05:20:00.34158+00 2025-12-17 05:20:00.341584+00 1700 彭铁军-徐克胜 \N \N \N \N 1 \N c95f23a4-375a-472b-927b-f100a154248e t +2025-12-17 05:20:00.342401+00 2025-12-17 05:20:00.342405+00 1701 LC-晶鑫 \N \N \N \N 1 \N 79a74e41-0e8a-403c-8a7c-96a4d9d16e20 t +2025-12-17 05:20:00.343201+00 2025-12-17 05:20:00.343205+00 1702 LC-景铧* \N \N \N \N 1 \N 6fc26b92-ddba-4d3d-9f28-5bb9733e29ab t +2025-12-17 05:20:00.344017+00 2025-12-17 05:20:00.344021+00 1703 LC-晨阳龚生* \N \N \N \N 1 \N 0b01c08f-d90b-409d-9c92-dbeada00eee1 t +2025-12-17 05:20:00.344827+00 2025-12-17 05:20:00.34483+00 1704 LC-广州在线* \N \N \N \N 1 \N 637ea484-00f9-4434-938f-823283cb1e6b t +2025-12-17 05:20:00.345622+00 2025-12-17 05:20:00.345625+00 1705 富丽徐金 \N \N \N \N 1 \N 0b2cc8fb-e619-4e69-90cd-e332c06476e0 t +2025-12-17 05:20:00.346396+00 2025-12-17 05:20:00.3464+00 1706 LC-卡特羊* \N \N \N \N 1 \N 5aea2cb6-190e-40fb-857f-35347e9dabba t +2025-12-17 05:20:00.347198+00 2025-12-17 05:20:00.347202+00 1707 盛达-万佳里布 \N \N \N \N 1 \N daa7d861-e5e6-43b9-b3d6-62e8bdc20807 t +2025-12-17 05:20:00.348053+00 2025-12-17 05:20:00.348057+00 1708 LC-原楚玺 \N \N \N \N 1 \N 86c7a21d-27af-4d47-92ea-437276411432 t +2025-12-17 05:20:00.348847+00 2025-12-17 05:20:00.34885+00 1709 金总-天门缪老板 \N \N \N \N 1 \N 4609830d-acb4-4165-b97f-0f7a34e99041 t +2025-12-17 05:20:00.560121+00 2025-12-17 05:20:00.56013+00 1710 LC-李斯波特* \N \N \N \N 1 \N 2e7b2e34-8525-42f1-883b-7b6090d7dc78 t +2025-12-17 05:20:00.561332+00 2025-12-17 05:20:00.561336+00 1711 林振欣 \N \N \N \N 1 \N ed2caca8-c503-4f2b-8efe-a6ceb4808f6d t +2025-12-17 05:20:00.56255+00 2025-12-17 05:20:00.562556+00 1712 LC-珂怡 \N \N \N \N 1 \N 607a0bc6-0bae-48d5-b550-9eedb6ad1971 t +2025-12-17 05:20:00.563476+00 2025-12-17 05:20:00.563481+00 1713 胡匪胡总 \N \N \N \N 1 \N d9ccb37e-5a4a-4b28-8bf1-66791c91c9d2 t +2025-12-17 05:20:00.564318+00 2025-12-17 05:20:00.564322+00 1714 A吴凯和-谢小飞 \N \N \N \N 1 \N c95028ac-a68b-4701-beb9-4d2eba3dae33 t +2025-12-17 05:20:00.56513+00 2025-12-17 05:20:00.565143+00 1715 A龙韶波 \N \N \N \N 1 \N c1c3c48d-8c77-4ef8-bdde-b17546681d99 t +2025-12-17 05:20:00.565958+00 2025-12-17 05:20:00.565962+00 1716 LC-腾信* \N \N \N \N 1 \N 342a7874-85a5-4946-ada7-268ff3057506 t +2025-12-17 05:20:00.566818+00 2025-12-17 05:20:00.566822+00 1717 林小姐-林佩珠qs \N \N \N \N 1 \N abb90b96-1cc2-40a0-a9bb-e0554670b3c2 t +2025-12-17 05:20:00.567637+00 2025-12-17 05:20:00.567641+00 1718 LC-全莲厂 \N \N \N \N 1 \N b7d7ed70-b804-4707-85b4-d1f3126f0648 t +2025-12-17 05:20:00.568447+00 2025-12-17 05:20:00.568451+00 1719 陈小姐(虎子) \N \N \N \N 1 \N 5c3048c4-f16f-49b3-9006-54674cf03ab2 t +2025-12-17 05:20:00.56924+00 2025-12-17 05:20:00.569243+00 1720 杨震 \N \N \N \N 1 \N 68459c2e-7c90-447e-84df-6ea737fc31c6 t +2025-12-17 05:20:00.570037+00 2025-12-17 05:20:00.570041+00 1721 广亿隆 \N \N \N \N 1 \N 5661126e-c677-405a-9269-bb96c9f94d8a t +2025-12-17 05:20:00.570843+00 2025-12-17 05:20:00.570847+00 1722 LC-豪宇富 \N \N \N \N 1 \N 7a9aa90c-00d8-4ee7-97fe-6c189761476e t +2025-12-17 05:20:00.571646+00 2025-12-17 05:20:00.57165+00 1723 朗驰-诺兴 \N \N \N \N 1 \N 586e91a4-c526-4719-930a-42d8b4c16d77 t +2025-12-17 05:20:00.57246+00 2025-12-17 05:20:00.572463+00 1724 A王生 \N \N \N \N 1 \N 63bc522a-f107-4a3c-a46d-1ade84cc3514 t +2025-12-17 05:20:00.573314+00 2025-12-17 05:20:00.573318+00 1725 LC-煜峰 \N \N \N \N 1 \N 52346d5e-823d-4c46-9b91-eab6d26a5672 t +2025-12-17 05:20:00.574124+00 2025-12-17 05:20:00.574128+00 1726 陈练练qs \N \N \N \N 1 \N 06b1fed3-e4b3-49ba-bfa0-08ad8927d426 t +2025-12-17 05:20:00.574916+00 2025-12-17 05:20:00.57492+00 1727 金总-湖北方靖 \N \N \N \N 1 \N ea073338-8318-49b6-8789-00e68c9a5c53 t +2025-12-17 05:20:00.575743+00 2025-12-17 05:20:00.575747+00 1728 蚨昕 \N \N \N \N 1 \N 221290cd-5c10-4a72-98c4-17b02ee42275 t +2025-12-17 05:20:00.576553+00 2025-12-17 05:20:00.576556+00 1729 龙潭大伟 \N \N \N \N 1 \N 9ceeeb0e-ac60-4a41-9b01-a54294c04bd3 t +2025-12-17 05:20:00.577361+00 2025-12-17 05:20:00.577365+00 1730 林汗才 \N \N \N \N 1 \N 8a51939d-eea7-4c1f-8d85-a1dce39480dc t +2025-12-17 05:20:00.578183+00 2025-12-17 05:20:00.578187+00 1731 王诗鹤 \N \N \N \N 1 \N ef8cfc49-24d5-4df8-aac0-1979b33aa27d t +2025-12-17 05:20:00.578976+00 2025-12-17 05:20:00.57898+00 1732 红欣 \N \N \N \N 1 \N 09deb8c7-ad31-4efe-8f25-cde2b8032c51 t +2025-12-17 05:20:00.579812+00 2025-12-17 05:20:00.579815+00 1733 卢老板娘 \N \N \N \N 1 \N 50336e67-c320-4cdb-be2b-252a5cd4bfb0 t +2025-12-17 05:20:00.580653+00 2025-12-17 05:20:00.580657+00 1734 A粤焱联富昌哥 \N \N \N \N 1 \N e9c66e57-1112-46a6-ab1b-0b42326aea1e t +2025-12-17 05:20:00.581547+00 2025-12-17 05:20:00.58155+00 1735 金总-谢宇 \N \N \N \N 1 \N df8f6553-f9bc-4775-b579-7737fd6a0c9f t +2025-12-17 05:20:00.582423+00 2025-12-17 05:20:00.582427+00 1736 QS卢小姐 \N \N \N \N 1 \N 62656430-4615-415d-9629-55dc3e30fb7f t +2025-12-17 05:20:00.583546+00 2025-12-17 05:20:00.58355+00 1737 A白云曾总 \N \N \N \N 1 \N c3654e4f-f17b-4f2a-8b3a-69dec4982712 t +2025-12-17 05:20:00.584654+00 2025-12-17 05:20:00.584658+00 1738 金总-罗厂 \N \N \N \N 1 \N b29ad98c-3250-4ddf-bd26-c09dbdedf27b t +2025-12-17 05:20:00.585732+00 2025-12-17 05:20:00.585736+00 1739 金总-于都叶金来 \N \N \N \N 1 \N 1b736d7f-6a3c-4362-86e7-e957253409e0 t +2025-12-17 05:20:00.586819+00 2025-12-17 05:20:00.586823+00 1740 鑫金莱 \N \N \N \N 1 \N 2f31b312-c1b3-411a-85a1-7e0764ffa618 t +2025-12-17 05:20:00.588002+00 2025-12-17 05:20:00.588006+00 1741 金总-江西启航厂 \N \N \N \N 1 \N f4c9d305-7f8a-4dba-a03c-c3cf35bb4880 t +2025-12-17 05:20:00.589154+00 2025-12-17 05:20:00.589157+00 1742 银点 \N \N \N \N 1 \N f9d7da2a-e146-417c-9f55-82dab373f672 t +2025-12-17 05:20:00.59024+00 2025-12-17 05:20:00.590244+00 1743 金总-江西庄飞 \N \N \N \N 1 \N 95f00247-5356-4262-938a-491fa8dfbd38 t +2025-12-17 05:20:00.591319+00 2025-12-17 05:20:00.591322+00 1744 盛达-小易 \N \N \N \N 1 \N b8995998-b297-491a-a892-df5663ed2983 t +2025-12-17 05:20:00.592089+00 2025-12-17 05:20:00.592093+00 1745 歌斯拉-易达尔贸 \N \N \N \N 1 \N 89c0c3e5-5a56-4984-88bf-1794cf986b64 t +2025-12-17 05:20:00.59286+00 2025-12-17 05:20:00.592864+00 1746 A林庆洪-吴光祥 \N \N \N \N 1 \N cbceb85b-712c-4a02-aba3-252604849c46 t +2025-12-17 05:20:00.593663+00 2025-12-17 05:20:00.593666+00 1747 吴凯和-孙益明 \N \N \N \N 1 \N d16b4cba-dd0c-4a1e-a8ce-5e697c923b57 t +2025-12-17 05:20:00.594446+00 2025-12-17 05:20:00.59445+00 1748 A林庆洪-秋龙 \N \N \N \N 1 \N 2304ed46-d3a8-4428-aa11-5f72c6acfbbc t +2025-12-17 05:20:00.595244+00 2025-12-17 05:20:00.595248+00 1749 A吴凯和-邱赟 \N \N \N \N 1 \N fd5490d1-3778-4f2b-bf03-5400af9b166e t +2025-12-17 05:20:00.596033+00 2025-12-17 05:20:00.596036+00 1750 QF刘有财 \N \N \N \N 1 \N ca009ce4-eeff-40cf-b106-502088dd3f34 t +2025-12-17 05:20:00.596811+00 2025-12-17 05:20:00.596815+00 1751 吴凯和-秋云 \N \N \N \N 1 \N cf8d0cf3-81a5-452f-a3b3-ef1f041f59f3 t +2025-12-17 05:20:00.59762+00 2025-12-17 05:20:00.597623+00 1752 L-A李生 \N \N \N \N 1 \N 441437f8-5c76-4646-b044-19a936765092 t +2025-12-17 05:20:00.598466+00 2025-12-17 05:20:00.598469+00 1753 A吴凯和-邱云 \N 白云 \N \N \N 1 \N 416a7fc6-c64d-4f97-a310-ed3715c40066 t +2025-12-17 05:20:00.599272+00 2025-12-17 05:20:00.599275+00 1754 金总-丁永明(江西) \N \N \N \N 1 \N 30cb04db-70b5-4a0a-ae7a-7614b21c1326 t +2025-12-17 05:20:00.600047+00 2025-12-17 05:20:00.600051+00 1755 QF李小群 \N \N \N \N 1 \N 65b38037-a8a4-4ee8-ab7d-c303918a196a t +2025-12-17 05:20:00.601095+00 2025-12-17 05:20:00.601099+00 1756 QF华连 \N \N \N \N 1 \N 5a276d75-e506-4e61-be78-bc29f60737ff t +2025-12-17 05:20:00.602088+00 2025-12-17 05:20:00.602092+00 1757 Z张俊锋 \N \N \N \N 1 \N a5553b41-0729-41a3-8363-a53810b16d1c t +2025-12-17 05:20:00.603018+00 2025-12-17 05:20:00.603022+00 1758 Z鸿总 \N \N \N \N 1 \N 13ac2760-be9a-4143-9d53-a7315be14531 t +2025-12-17 05:20:00.603875+00 2025-12-17 05:20:00.603879+00 1759 香港馨馨草 \N \N \N \N 1 \N 98c40345-0fcf-4582-820c-b4b81a6a1336 t +2025-12-17 05:20:00.604681+00 2025-12-17 05:20:00.604684+00 1760 马锡廷 \N \N \N \N 1 \N ea503332-c34e-4e5f-a925-1a05072c9a76 t +2025-12-17 05:20:00.605493+00 2025-12-17 05:20:00.605497+00 1761 简里 \N \N \N \N 1 \N 6c810a1e-edf6-4301-89ae-ad5ac1809d75 t +2025-12-17 05:20:00.606292+00 2025-12-17 05:20:00.606296+00 1762 Z丰果 \N \N \N \N 1 \N f032c2a1-284c-4a4b-8a9d-062d16326772 t +2025-12-17 05:20:00.607067+00 2025-12-17 05:20:00.60707+00 1763 QF-罗新元 \N \N \N \N 1 \N ebbedbbf-f733-4918-9387-63555a46a350 t +2025-12-17 05:20:00.607857+00 2025-12-17 05:20:00.607861+00 1764 L龙一族 \N \N \N \N 1 \N 961f5453-ae5c-48ca-8a32-b325c6c79383 t +2025-12-17 05:20:00.608648+00 2025-12-17 05:20:00.608652+00 1765 博雅莉 \N \N \N \N 1 \N c3edc1e3-deda-44ba-817b-066884e603b7 t +2025-12-17 05:20:00.609426+00 2025-12-17 05:20:00.60943+00 1766 金总-雨春阁 \N \N \N \N 1 \N 0a19e089-58e9-4d9d-b801-74c64a497863 t +2025-12-17 05:20:00.610235+00 2025-12-17 05:20:00.610239+00 1767 金总-雨轩阁 \N \N \N \N 1 \N 75ba6388-69ec-47fc-9ba3-d5a4a93b733e t +2025-12-17 05:20:00.611008+00 2025-12-17 05:20:00.611011+00 1768 金总-瑞宝李明 \N \N \N \N 1 \N fb88152a-ecba-4fb9-902f-02d7699b143d t +2025-12-17 05:20:00.61178+00 2025-12-17 05:20:00.611783+00 1769 H衣辰服饰 \N \N \N \N 1 \N d7845f4a-45fd-4952-b0c4-8cdbb24f6b8f t +2025-12-17 05:20:00.612563+00 2025-12-17 05:20:00.612573+00 1770 Z-美乐 \N \N \N \N 1 \N 4de0bc9d-6359-4c2f-bf2e-5d3fe51cd4a9 t +2025-12-17 05:20:00.613402+00 2025-12-17 05:20:00.613406+00 1771 A沙澜 \N \N \N \N 1 \N 1d2d7b79-3a95-428a-b7fd-571321a60d7d t +2025-12-17 05:20:00.614255+00 2025-12-17 05:20:00.614265+00 1772 A吴凯和-王祥金 \N 白云 \N \N \N 1 \N dc9355ad-c41d-4912-9c37-104c3ac348a3 t +2025-12-17 05:20:00.615135+00 2025-12-17 05:20:00.615139+00 1773 王建 \N \N \N \N 1 \N c93fc764-6a7b-422f-8119-29ea59196523 t +2025-12-17 05:20:00.615957+00 2025-12-17 05:20:00.615961+00 1774 金总-石溪刘厂长 \N \N \N \N 1 \N 5df70010-f737-42b8-b2be-5ec83a058407 t +2025-12-17 05:20:00.616802+00 2025-12-17 05:20:00.616806+00 1775 金总-大海二号厂 \N \N \N \N 1 \N 1093c5d4-35d1-470f-bdae-fd30c710845d t +2025-12-17 05:20:00.617606+00 2025-12-17 05:20:00.61761+00 1776 Y姚生 \N \N \N \N 1 \N 50fd4ae0-0fa4-4a20-8830-281d96b5c5c2 t +2025-12-17 05:20:00.618402+00 2025-12-17 05:20:00.618406+00 1777 A-粤焱龙哥 \N \N \N \N 1 \N 419e8e23-c944-4f96-8d4c-932c9ace2b44 t +2025-12-17 05:20:00.619199+00 2025-12-17 05:20:00.619202+00 1778 H李想林 \N \N \N \N 1 \N 9657f71d-8f6a-4f1e-8eb8-a34188ee81be t +2025-12-17 05:20:00.619968+00 2025-12-17 05:20:00.619971+00 1779 A芳姐 \N \N \N \N 1 \N 22cf0c9e-a627-4d03-9d03-175d4a41c2be t +2025-12-17 05:20:00.620819+00 2025-12-17 05:20:00.620823+00 1780 盛达-老江 \N \N \N \N 1 \N c96ac29b-561c-443a-8959-f05608359eb8 t +2025-12-17 05:20:00.621652+00 2025-12-17 05:20:00.621656+00 1781 Z-立兴 \N \N \N \N 1 \N aa428ef2-91fb-44f6-8b61-857434730875 t +2025-12-17 05:20:00.622435+00 2025-12-17 05:20:00.622438+00 1782 彭铁军-柯总 \N \N \N \N 1 \N 058274ff-378f-4350-b812-f463314a058e t +2025-12-17 05:20:00.623245+00 2025-12-17 05:20:00.623248+00 1783 盛达-罗总 \N \N \N \N 1 \N 8606b1de-a4b0-4ae2-9813-c5af771a98a1 t +2025-12-17 05:20:00.624058+00 2025-12-17 05:20:00.624062+00 1784 盛达-程生 \N \N \N \N 1 \N 5115fb47-2e27-4f4e-9d07-30007d037da6 t +2025-12-17 05:20:00.624855+00 2025-12-17 05:20:00.624858+00 1785 金总-石溪飞龙 \N \N \N \N 1 \N 2ed289b1-b0ed-4949-a525-a4d53075b844 t +2025-12-17 05:20:00.625654+00 2025-12-17 05:20:00.625659+00 1786 盛达-朱文诚 \N \N \N \N 1 \N 840e7c33-a42d-4519-b1ca-1547b852e03c t +2025-12-17 05:20:00.626438+00 2025-12-17 05:20:00.626441+00 1787 盛达-彭总 \N \N \N \N 1 \N 391922e1-2ab8-4c15-ba89-f4883448e06a t +2025-12-17 05:20:00.627223+00 2025-12-17 05:20:00.627227+00 1788 Z程总 \N \N \N \N 1 \N d44f232e-146c-4b40-b9b7-24e3c8ba6572 t +2025-12-17 05:20:00.628026+00 2025-12-17 05:20:00.62803+00 1789 番禺李小姐 \N \N \N \N 1 \N 4396432f-f054-45b6-a73c-876eb295a14e t +2025-12-17 05:20:00.628808+00 2025-12-17 05:20:00.628811+00 1790 A富兴刘总 \N \N \N \N 1 \N eec00b33-e670-40d6-a909-0cb21cd95ca8 t +2025-12-17 05:20:00.629595+00 2025-12-17 05:20:00.629599+00 1791 金总-何厂长 \N \N \N \N 1 \N c966265e-f056-433f-bf4a-79fbbea261a0 t +2025-12-17 05:20:00.630397+00 2025-12-17 05:20:00.630401+00 1792 金总-浩厂长 \N \N \N \N 1 \N 5f8f8e26-68b2-4f1e-bf6c-51d2dcd7ce7f t +2025-12-17 05:20:00.631218+00 2025-12-17 05:20:00.631222+00 1793 彭铁军-吴总 \N \N \N \N 1 \N ae97d1e7-f546-4330-9560-bc8029f1c9e9 t +2025-12-17 05:20:00.632053+00 2025-12-17 05:20:00.632057+00 1794 金总-瑞宝闵阳厂 \N \N \N \N 1 \N 8bf76732-b75e-4a5a-8092-840c70c897d2 t +2025-12-17 05:20:00.632861+00 2025-12-17 05:20:00.632865+00 1795 永丰纺织 \N \N \N \N 1 \N 2570553a-371b-45c3-a2c6-758637c26316 t +2025-12-17 05:20:00.633641+00 2025-12-17 05:20:00.633644+00 1796 盛达-李明 \N \N \N \N 1 \N 0c7e29fa-b827-4b1b-b7a6-7936a18c4715 t +2025-12-17 05:20:00.63446+00 2025-12-17 05:20:00.634464+00 1797 1:1 \N \N \N \N 1 \N ecf45bc4-3580-4435-afb0-62584acb1378 t +2025-12-17 05:20:00.635301+00 2025-12-17 05:20:00.635305+00 1798 H丁伟 \N \N \N \N 1 \N 3ad590df-d4af-4433-a0ca-c00119c59291 t +2025-12-17 05:20:00.636358+00 2025-12-17 05:20:00.636363+00 1799 Z盛达-张元真 \N \N \N \N 1 \N 20108cb0-0a2a-4bc2-b9ee-3ea95df4b8d6 t +2025-12-17 05:20:00.637435+00 2025-12-17 05:20:00.63744+00 1800 H-杨棒 \N \N \N \N 1 \N c146ae2c-9fd4-4196-94c5-e0db5f0e99d5 t +2025-12-17 05:20:00.638297+00 2025-12-17 05:20:00.638301+00 1801 A安和盛 \N \N \N \N 1 \N 815eb35a-d291-4192-801e-cae864b872f4 t +2025-12-17 05:20:00.639101+00 2025-12-17 05:20:00.639105+00 1802 张铎 \N \N \N \N 1 \N 74b14b15-3440-4e09-9d48-e08acb41df72 t +2025-12-17 05:20:00.639887+00 2025-12-17 05:20:00.63989+00 1803 H-尚依品 \N \N \N \N 1 \N ecc6a8e7-78ec-4cc5-9311-02ff59195ec3 t +2025-12-17 05:20:00.640693+00 2025-12-17 05:20:00.640698+00 1804 Z雅泰 \N \N \N \N 1 \N 83662a24-254b-49ed-9c0f-61a17c0b2f2a t +2025-12-17 05:20:00.641489+00 2025-12-17 05:20:00.641493+00 1805 彭铁军-然茵 \N \N \N \N 1 \N bc9c918b-0790-4ff3-a398-532d92d83daf t +2025-12-17 05:20:00.642277+00 2025-12-17 05:20:00.642281+00 1806 友迪 \N \N \N \N 1 \N a138ada5-c88b-46f5-87fb-aca36778b821 t +2025-12-17 05:20:00.643069+00 2025-12-17 05:20:00.643073+00 1807 Z-CX \N \N \N \N 1 \N dad9d41f-e6a4-49d9-a7d3-c719ecad82cf t +2025-12-17 05:20:00.643842+00 2025-12-17 05:20:00.643846+00 1808 Z浩鑫 \N \N \N \N 1 \N 398f3e63-296d-4cd8-bcd9-19389f18b704 t +2025-12-17 05:20:00.644604+00 2025-12-17 05:20:00.644608+00 1809 H-李胜军 \N \N \N \N 1 \N 299488ab-b24b-4f40-9086-1fde75a6e25b t +2025-12-17 05:25:00.280875+00 2025-12-17 05:25:00.280882+00 1811 W-H王龙 \N \N \N \N 1 \N e6311785-5cc8-45c8-b5ad-f91bb5cf3885 t +2025-12-17 05:25:00.282167+00 2025-12-17 05:25:00.282173+00 1812 H-张俊华 \N \N \N \N 1 \N 6d443ed1-c8e1-407c-b83b-13df97758451 t +2025-12-17 05:25:00.283735+00 2025-12-17 05:25:00.283741+00 1813 Z小巫 \N \N \N \N 1 \N 431abcf3-bd17-4118-bbf6-11101f78a88c t +2025-12-17 05:25:00.284995+00 2025-12-17 05:25:00.285001+00 1814 H-彭荣荣 \N \N \N \N 1 \N 76e4c63d-5c58-484b-a4ed-cb4a399522cc t +2025-12-17 05:25:00.286232+00 2025-12-17 05:25:00.286238+00 1815 H-李文锦 \N \N \N \N 1 \N 80296c21-3b2e-4648-bb2f-eb663782e3c3 t +2025-12-17 05:25:00.287477+00 2025-12-17 05:25:00.287483+00 1816 A欧阳3103 \N 白云 \N \N \N 1 \N 72c8c3c8-7dfc-434c-bca6-4af67f3c9ab6 t +2025-12-17 05:25:00.288691+00 2025-12-17 05:25:00.288697+00 1817 H-王勤波 \N \N \N \N 1 \N 4e238e90-3a7f-474e-ae8a-5d5b391c242f t +2025-12-17 05:25:00.289901+00 2025-12-17 05:25:00.289907+00 1818 H-肖飞 \N \N \N \N 1 \N 42087dc7-5344-434e-8975-b105aac8ad99 t +2025-12-17 05:25:00.291103+00 2025-12-17 05:25:00.291109+00 1819 H-张文 \N \N \N \N 1 \N b9952a5a-874a-4a4b-b0b7-96864598efd7 t +2025-12-17 05:25:00.292316+00 2025-12-17 05:25:00.292322+00 1820 H-熊锐哲 \N \N \N \N 1 \N 8d3b027e-d8fc-40a0-84c9-19767e0388cb t +2025-12-17 05:25:00.293531+00 2025-12-17 05:25:00.293538+00 1821 盛达-罗小姐 \N \N \N \N 1 \N 1dfa0930-aafa-413f-98be-1cb281d80a66 t +2025-12-17 05:25:00.29474+00 2025-12-17 05:25:00.294746+00 1822 H-丁楷 \N \N \N \N 1 \N 7efd5450-a61a-46d5-baa1-20aa3aea5f5d t +2025-12-17 05:25:00.295955+00 2025-12-17 05:25:00.295961+00 1823 H-丁文娟 \N \N \N \N 1 \N 998618c1-1f73-4a52-871a-15c421e36ba9 t +2025-12-17 05:25:00.297152+00 2025-12-17 05:25:00.297157+00 1824 H-孟飞 \N \N \N \N 1 \N e750f944-dd22-4a5b-8c5c-4b677965a08f t +2025-12-17 05:25:00.298347+00 2025-12-17 05:25:00.298352+00 1825 H-辰寅圣 \N \N \N \N 1 \N a777cca1-d634-420e-9181-9e26bc6bd1d4 t +2025-12-17 05:25:00.299533+00 2025-12-17 05:25:00.299539+00 1826 彭铁军-周虎子 \N \N \N \N 1 \N 29133f6f-42b7-4def-9435-f345fc09a34b t +2025-12-17 05:25:00.300739+00 2025-12-17 05:25:00.300745+00 1827 Z展生纺织 \N \N \N \N 1 \N 30e9f843-3f0c-48d1-988f-c2b8195e3515 t +2025-12-17 05:25:00.301984+00 2025-12-17 05:25:00.30199+00 1828 汪进锋 \N \N \N \N 1 \N 39c656dc-6e40-4dd1-9756-8c9c3049bb13 t +2025-12-17 05:25:00.302943+00 2025-12-17 05:25:00.302948+00 1829 刘洋qs \N \N \N \N 1 \N 99fba4be-4edb-4b7c-a9cd-5618b90d1897 t +2025-12-17 05:25:00.303841+00 2025-12-17 05:25:00.303845+00 1830 潮人纺 \N \N \N \N 1 \N 0a21ddeb-8f4c-40ff-9733-0d74b73a324e t +2025-12-17 05:25:00.304711+00 2025-12-17 05:25:00.304715+00 1831 尹博文 \N \N \N \N 1 \N be57c002-ad79-459f-bc4c-d16fbd394d32 t +2025-12-17 05:25:00.305702+00 2025-12-17 05:25:00.305707+00 1832 彭铁军-汪总 \N \N \N \N 1 \N 7e6fe1c3-01ef-4cc9-b958-6cab59c4454c t +2025-12-17 05:25:00.306727+00 2025-12-17 05:25:00.306731+00 1833 华科盛 \N \N \N \N 1 \N 89a67a15-9531-472e-b5c0-1163bf4ff827 t +2025-12-17 05:25:00.30757+00 2025-12-17 05:25:00.307574+00 1834 叶林汉 \N \N \N \N 1 \N c57ca5b0-0e3e-42cb-9253-70b036d2428f t +2025-12-17 05:25:00.308368+00 2025-12-17 05:25:00.308372+00 1835 盛达-张恒 \N \N \N \N 1 \N 13dd4df6-fefd-4073-b168-b141dca6cd59 t +2025-12-17 05:25:00.309154+00 2025-12-17 05:25:00.309158+00 1836 彭铁军-程科 \N \N \N \N 1 \N d8819758-2787-4376-a0f8-634880aa033f t +2025-12-17 05:25:00.310022+00 2025-12-17 05:25:00.310027+00 1837 A查秋月 \N \N \N \N 1 \N 5c1274a6-9080-40cf-a97e-87be352702bc t +2025-12-17 05:25:00.310929+00 2025-12-17 05:25:00.310934+00 1838 彭铁军-张飞 \N \N \N \N 1 \N a922ce1d-38ff-4256-a73d-24f2f7885954 t +2025-12-17 05:25:00.31187+00 2025-12-17 05:25:00.311874+00 1839 杰兴时尚 \N \N \N \N 1 \N b1a441a0-5748-4213-bfad-0c18787ddda2 t +2025-12-17 05:25:00.312703+00 2025-12-17 05:25:00.312707+00 1840 A黄创俊 \N \N \N \N 1 \N e88f2e45-c990-476d-843c-e7fc2a9e7f82 t +2025-12-17 05:25:00.313497+00 2025-12-17 05:25:00.3135+00 1841 彭铁军-刘小敏 \N \N \N \N 1 \N fa4991ee-664b-4c32-952c-3754090cfc22 t +2025-12-17 05:25:00.314305+00 2025-12-17 05:25:00.314309+00 1842 A粤焱虹姐 \N \N \N \N 1 \N 38c4def0-4c4a-4035-b390-7d84a051de15 t +2025-12-17 05:25:00.315089+00 2025-12-17 05:25:00.315093+00 1843 阿吉 \N \N \N \N 1 \N cc833746-5e9c-432b-966d-fe269c64284d t +2025-12-17 05:25:00.315894+00 2025-12-17 05:25:00.315898+00 1844 11 \N \N \N \N 1 \N 76b73c4e-a06e-4670-9f00-5151f558876e t +2025-12-17 05:25:00.316753+00 2025-12-17 05:25:00.316757+00 1845 段刚 \N \N \N \N 1 \N 6acfff2f-6b46-47da-9727-83cbfe69048b t +2025-12-17 05:25:00.317618+00 2025-12-17 05:25:00.317622+00 1846 成文 \N \N \N \N 1 \N ea750b83-61fd-47da-85f9-1fcc6113892a t +2025-12-17 05:25:00.318476+00 2025-12-17 05:25:00.31848+00 1847 郑晗 \N \N \N \N 1 \N 30d4a0ef-d020-4f61-b2b9-af95fbe5d0b2 t +2025-12-17 05:25:00.319419+00 2025-12-17 05:25:00.319424+00 1848 土华聂成 \N \N \N \N 1 \N 5fefb502-89d2-465d-9646-0a8d3dca6bf1 t +2025-12-17 05:25:00.320276+00 2025-12-17 05:25:00.320281+00 1849 盛达-龚老板 \N \N \N \N 1 \N 7b4bfbfb-7ab1-4edf-9ed6-1edbd7781406 t +2025-12-17 05:25:00.321086+00 2025-12-17 05:25:00.32109+00 1850 东兴时尚 \N \N \N \N 1 \N 79dd678d-ffb6-44e2-afa3-73719347372a t +2025-12-17 05:25:00.321891+00 2025-12-17 05:25:00.321895+00 1851 LISA \N \N \N \N 1 \N fb70069a-0e2e-4ef9-ab55-2022c0fef01f t +2025-12-17 05:25:00.322695+00 2025-12-17 05:25:00.322699+00 1852 许可 \N \N \N \N 1 \N bb4d4853-d6d4-4a2e-8787-daabd5831a4a t +2025-12-17 05:25:00.323487+00 2025-12-17 05:25:00.323491+00 1853 森翔(乐艺) \N \N \N \N 1 \N a6ea9d11-9ee5-47e7-9ded-6b6891d5aa63 t +2025-12-17 05:25:00.324282+00 2025-12-17 05:25:00.324286+00 1854 土华许小姐 \N \N \N \N 1 \N e1892745-4adb-484a-ae19-fbdc82f81a65 t +2025-12-17 05:25:00.325076+00 2025-12-17 05:25:00.32508+00 1855 A粤焱联富-LISA \N 白云 \N \N \N 1 \N fc682769-9462-45c5-936b-44567bb79f63 t +2025-12-17 05:25:00.326329+00 2025-12-17 05:25:00.326334+00 1856 永琪服饰 \N \N \N \N 1 \N 49129a89-4134-4d9b-bfdf-7d1ef6cd6a94 t +2025-12-17 05:25:00.327248+00 2025-12-17 05:25:00.327252+00 1857 宝鑫纺织 \N \N \N \N 1 \N d7801e6a-1219-4ee3-aaf3-9cd756352fd9 t +2025-12-17 05:25:00.328129+00 2025-12-17 05:25:00.328133+00 1858 颜总 \N \N \N \N 1 \N c975efe6-9bcb-4a93-8313-2338e05f134e t +2025-12-17 05:25:00.328984+00 2025-12-17 05:25:00.328988+00 1859 A粤焱-颜总 \N \N \N \N 1 \N eddefa48-8c2d-4327-aac5-b82bc35e8f95 t +2025-12-17 05:25:00.329966+00 2025-12-17 05:25:00.329971+00 1860 沈总 \N \N \N \N 1 \N fb386ae3-cf63-4c29-a7a4-26099fd21e7b t +2025-12-17 05:25:00.330888+00 2025-12-17 05:25:00.330893+00 1861 珍珍压折厂 \N \N \N \N 1 \N b5503e24-5291-4f2f-8c0e-7c2daa6b08c2 t +2025-12-17 05:25:00.331757+00 2025-12-17 05:25:00.331761+00 1862 Z新起点 \N \N \N \N 1 \N ea2759d5-03d3-46c0-903b-f70bccaa3016 t +2025-12-17 05:25:00.332664+00 2025-12-17 05:25:00.332669+00 1863 燕璇 \N \N \N \N 1 \N 99854147-f88d-412d-87fa-3a6b8042e421 t +2025-12-17 05:25:00.333554+00 2025-12-17 05:25:00.333558+00 1864 妙曼姿 \N \N \N \N 1 \N ddddcdc2-1664-4885-a57d-ea2ec3b1371d t +2025-12-17 05:25:00.334385+00 2025-12-17 05:25:00.334388+00 1865 钟老板 \N \N \N \N 1 \N a189526f-8314-4c65-8f73-d5edbfcfcbe2 t +2025-12-17 05:25:00.33518+00 2025-12-17 05:25:00.335183+00 1866 A粤焱-沈总 \N 白云 \N \N \N 1 \N 2c39ed4a-3159-48c9-80d4-d992b0cbd866 t +2025-12-17 05:25:00.336025+00 2025-12-17 05:25:00.33603+00 1867 凯莱 \N \N \N \N 1 \N bfac19ba-6d47-4051-b884-293db02bc5b9 t +2025-12-17 05:25:00.336923+00 2025-12-17 05:25:00.336927+00 1868 A粤焱-钟哥 \N 白云 \N \N \N 1 \N 3dc43510-c029-4a9b-9ef8-a8b70d29d510 t +2025-12-17 05:25:00.337761+00 2025-12-17 05:25:00.337765+00 1869 2222 \N \N \N \N 1 \N 17223342-d511-475b-b478-9ac0f6c76f1c t +2025-12-17 05:25:00.338598+00 2025-12-17 05:25:00.338602+00 1870 娟姐 \N \N \N \N 1 \N fea7da8e-7a33-4757-9bf7-3b697f02699d t +2025-12-17 05:25:00.339389+00 2025-12-17 05:25:00.339392+00 1871 许社平 \N \N \N \N 1 \N 0dc01e14-d999-4d14-a153-a06846f98d0c t +2025-12-17 05:25:00.340226+00 2025-12-17 05:25:00.34023+00 1872 别传波 \N \N \N \N 1 \N 82ac5e90-0d7b-4689-95dd-a692d83ef784 t +2025-12-17 05:25:00.341064+00 2025-12-17 05:25:00.341068+00 1873 黄超 \N \N \N \N 1 \N 06ccc41e-acb0-402a-ac3f-7502830aa838 t +2025-12-17 05:25:00.341882+00 2025-12-17 05:25:00.341885+00 1874 小方 \N \N \N \N 1 \N d5672709-45bf-4cc1-82da-092d78037e2a t +2025-12-17 05:25:00.342699+00 2025-12-17 05:25:00.342703+00 1875 盛达-大方 \N \N \N \N 1 \N ff7578cd-f1b5-4c00-a92b-61d1200b22e9 t +2025-12-17 05:25:00.34351+00 2025-12-17 05:25:00.343514+00 1876 A-林子蔚 \N 白云 \N \N \N 1 \N 84253ad4-55ff-483d-8496-b35e3cccf36f t +2025-12-17 05:25:00.344301+00 2025-12-17 05:25:00.344305+00 1877 A龙天乐 \N 白云 \N \N \N 1 \N 639270fa-1809-427d-9cd5-227d1b22162c t +2025-12-17 05:25:00.345173+00 2025-12-17 05:25:00.345178+00 1878 帅勇 \N \N \N \N 1 \N b7dd82b7-d50d-4638-9912-84f58a555927 t +2025-12-17 05:25:00.346157+00 2025-12-17 05:25:00.346161+00 1879 金鼠 \N \N \N \N 1 \N 67a13d44-abd9-497b-b23a-b1f74d8e1345 t +2025-12-17 05:25:00.347108+00 2025-12-17 05:25:00.347112+00 1880 王老板 \N \N \N \N 1 \N 0be5a56b-842c-491f-98d6-164a88023154 t +2025-12-17 05:25:00.348079+00 2025-12-17 05:25:00.348083+00 1881 张创崇QS \N \N \N \N 1 \N c564fc77-3b22-42a6-9914-a71fd8f7f2a6 t +2025-12-17 05:25:00.348923+00 2025-12-17 05:25:00.348927+00 1882 盈赢 \N \N \N \N 1 \N aac929a6-42a4-4532-bc20-9a1b817f0fe3 t +2025-12-17 05:25:00.349815+00 2025-12-17 05:25:00.349819+00 1883 F陈龙 \N 佛山 \N \N \N 1 \N ea9bfe21-400d-4987-80f3-0e29d603724a t +2025-12-17 05:25:00.350731+00 2025-12-17 05:25:00.350736+00 1884 A李光辉 \N 白云 \N \N \N 1 \N 947fb989-900c-4e71-9376-bc981397bff8 t +2025-12-17 05:25:00.351582+00 2025-12-17 05:25:00.351586+00 1885 林森辉 \N \N \N \N 1 \N ddc88f1a-385b-434e-a467-5ebad031371f t +2025-12-17 05:25:00.352405+00 2025-12-17 05:25:00.352409+00 1886 A创利 \N 白云 \N \N \N 1 \N ba498cbc-6d18-4751-963a-7d7bbe9f01df t +2025-12-17 05:25:00.353237+00 2025-12-17 05:25:00.353242+00 1887 盛达-和谐里布 \N \N \N \N 1 \N 2945383b-ad65-4344-8032-a3d5039b6182 t +2025-12-17 05:25:00.354052+00 2025-12-17 05:25:00.354055+00 1888 庞小姐 \N \N \N \N 1 \N 39fbad3d-6373-4b26-be35-b446b2e2d234 t +2025-12-17 05:25:00.354924+00 2025-12-17 05:25:00.354927+00 1889 A孙老板娘 \N 白云 \N \N \N 1 \N 29a1245c-8035-451a-97fa-4093a8db3b21 t +2025-12-17 05:25:00.356023+00 2025-12-17 05:25:00.356028+00 1890 何安平 \N \N \N \N 1 \N 29be2a8d-abe3-46cf-b665-c9675dcd06bc t +2025-12-17 05:25:00.357125+00 2025-12-17 05:25:00.357129+00 1891 A梁斌 \N 白云 \N \N \N 1 \N 4fff5fd7-c306-4f6d-9859-66af8a9886ab t +2025-12-17 05:25:00.358268+00 2025-12-17 05:25:00.358272+00 1892 A丽花珠绣 \N 白云 \N \N \N 1 \N 11fdd55d-d868-4b1b-8aa7-f4f148d58910 t +2025-12-17 05:25:00.359357+00 2025-12-17 05:25:00.359361+00 1893 A刘造伟 \N 白云 \N \N \N 1 \N 64ec62d7-661b-4697-bad5-a3c7f8068fbe t +2025-12-17 05:25:00.360446+00 2025-12-17 05:25:00.36045+00 1894 A-陈林帆 \N 白云 \N \N \N 1 \N 5371bef1-0875-4e62-aad3-9054d404e3e4 t +2025-12-17 05:25:00.361654+00 2025-12-17 05:25:00.361659+00 1895 F珊羽服饰 \N 佛山 \N \N \N 1 \N 863a6a4d-c9bc-41af-996c-c6e0c0f7e711 t +2025-12-17 05:25:00.362769+00 2025-12-17 05:25:00.362773+00 1896 A宇玖尔 \N 白云 \N \N \N 1 \N 8085a053-1f32-438e-92e7-ebe72d2dbcb1 t +2025-12-17 05:25:00.363854+00 2025-12-17 05:25:00.363858+00 1897 A林伟龙 \N 白云 \N \N \N 1 \N 361fe446-1bb1-493c-99e0-bc371c053517 t +2025-12-17 05:25:00.364661+00 2025-12-17 05:25:00.364666+00 1898 A周健兵 \N 白云 \N \N \N 1 \N 74ff97d9-9a70-4728-a65b-993503daf79b t +2025-12-17 05:25:00.365522+00 2025-12-17 05:25:00.365526+00 1899 F陈小姐 \N 佛山 \N \N \N 1 \N 2c40b546-b1df-47b6-bd61-eb591326a921 t +2025-12-17 05:25:00.366314+00 2025-12-17 05:25:00.366318+00 1900 王光文 \N \N \N \N 1 \N 80001d2c-96b9-4442-9d63-5258f404234a t +2025-12-17 05:25:00.367103+00 2025-12-17 05:25:00.367107+00 1901 A-欧阳服饰 \N 白云 \N \N \N 1 \N 5ced2e76-f1e7-4635-9be2-467b6d2132dc t +2025-12-17 05:25:00.367893+00 2025-12-17 05:25:00.367897+00 1902 丰衣库 \N \N \N \N 1 \N 90930091-73e1-4432-96af-85439ce1cbca t +2025-12-17 05:25:00.368748+00 2025-12-17 05:25:00.368753+00 1903 金总-严峰 \N \N \N \N 1 \N 5ae524c9-829d-4ddd-acd8-a7df7ee5317f t +2025-12-17 05:25:00.369701+00 2025-12-17 05:25:00.369705+00 1904 A一步一步(仟色思亮) \N 白云 \N \N \N 1 \N 9df90e9c-57ac-4659-acff-ee1a8a6a6f92 t +2025-12-17 05:25:00.370536+00 2025-12-17 05:25:00.37054+00 1905 A依诺 \N 白云 \N \N \N 1 \N 0daaef36-13a6-4e57-9f85-4a237555f406 t +2025-12-17 05:25:00.371498+00 2025-12-17 05:25:00.371503+00 1906 A付小姐 \N 白云 \N \N \N 1 \N 2a579d12-640f-46b9-9567-44ee4ac5470c t +2025-12-17 05:25:00.372378+00 2025-12-17 05:25:00.372382+00 1907 玛如堡 \N \N \N \N 1 \N 8e0e3a9d-c2cc-4c61-a0e5-03e220876011 t +2025-12-17 05:25:00.373196+00 2025-12-17 05:25:00.3732+00 1908 LC-雅尚依 \N \N \N \N 1 \N d890ed42-1286-4904-87fa-61f54046ea6f t +2025-12-17 05:25:00.374095+00 2025-12-17 05:25:00.374099+00 1909 芬纳蒂 \N \N \N \N 1 \N 2b5dda1f-f165-4a23-a29b-d58b37a56857 t +2025-12-17 05:25:00.594235+00 2025-12-17 05:25:00.594247+00 1910 金潮利 \N \N \N \N 1 \N 8acffebf-d264-44d0-a618-fc38d709704e t +2025-12-17 05:25:00.595833+00 2025-12-17 05:25:00.595839+00 1911 郭小姐 \N \N \N \N 1 \N cae96e7f-8fc8-4152-9abd-418959edb6ee t +2025-12-17 05:25:00.597066+00 2025-12-17 05:25:00.597073+00 1912 张煊 \N \N \N \N 1 \N a32cae47-d5fb-42cd-aa6b-97bb825d80cb t +2025-12-17 05:25:00.59829+00 2025-12-17 05:25:00.598296+00 1913 盛达-小飞 \N \N \N \N 1 \N f61f8c7f-cdf9-4849-a47c-d46f34903eb9 t +2025-12-17 05:25:00.599617+00 2025-12-17 05:25:00.599624+00 1914 胡蓉 \N \N \N \N 1 \N 623a0c28-c6d2-4b34-8227-3fd3e55f0cf6 t +2025-12-17 05:25:00.60068+00 2025-12-17 05:25:00.600684+00 1915 盛达-柯生 \N \N \N \N 1 \N 1250d007-7337-4f9f-8f3c-6f77619e5037 t +2025-12-17 05:25:00.601506+00 2025-12-17 05:25:00.601509+00 1916 周振 \N \N \N \N 1 \N e624cd3b-e89f-410e-b419-93604c996d29 t +2025-12-17 05:25:00.602317+00 2025-12-17 05:25:00.60232+00 1917 锦发纺织 \N \N \N \N 1 \N 72859c4f-f05c-47e7-9bb7-a795779ea5d3 t +2025-12-17 05:25:00.603171+00 2025-12-17 05:25:00.603177+00 1918 盛达-应子 \N \N \N \N 1 \N 7598d1d9-ad09-4627-bb9f-477c08646147 t +2025-12-17 05:25:00.604005+00 2025-12-17 05:25:00.604009+00 1919 程远光 \N \N \N \N 1 \N 25668eb8-d41c-42a4-a68c-019eb927edf5 t +2025-12-17 05:25:00.604803+00 2025-12-17 05:25:00.604807+00 1920 诗贝茨 \N \N \N \N 1 \N 0ef01d57-ff05-4d26-8532-d290b581c1c2 t +2025-12-17 05:25:00.605622+00 2025-12-17 05:25:00.605627+00 1921 周丽儿 \N \N \N \N 1 \N df0b0e09-524d-487c-b4b9-cfc802f758fa t +2025-12-17 05:25:00.606437+00 2025-12-17 05:25:00.60644+00 1922 王朋成 \N \N \N \N 1 \N 11639805-8423-4d4e-bba9-bb551abdd534 t +2025-12-17 05:25:00.607229+00 2025-12-17 05:25:00.607233+00 1923 新国泰 \N \N \N \N 1 \N caec02dd-2d96-4657-a29e-8e4c0d398c3d t +2025-12-17 05:25:00.608077+00 2025-12-17 05:25:00.608082+00 1924 胡玉堂 \N \N \N \N 1 \N 3126b05b-42e0-44d2-bca6-7a73fe853240 t +2025-12-17 05:25:00.608978+00 2025-12-17 05:25:00.608982+00 1925 欧美妮 \N \N \N \N 1 \N 133ae184-2382-4831-ae1a-01f3a0e8c1fb t +2025-12-17 05:25:00.609828+00 2025-12-17 05:25:00.609832+00 1926 群紫针织 \N \N \N \N 1 \N 57f86a35-b6f2-4259-93b8-42b7784adb0e t +2025-12-17 05:25:00.610629+00 2025-12-17 05:25:00.610633+00 1927 兰新峰 \N \N \N \N 1 \N 2073c206-0f97-4075-92c6-8bb08ebc6995 t +2025-12-17 05:25:00.611438+00 2025-12-17 05:25:00.611442+00 1928 余萍 \N \N \N \N 1 \N 47c3ce5a-5891-45ef-a956-075f652cde42 t +2025-12-17 05:25:00.612439+00 2025-12-17 05:25:00.612443+00 1929 何廪 \N \N \N \N 1 \N 389b93df-3d1a-4862-ac58-b437726004c2 t +2025-12-17 05:25:00.613219+00 2025-12-17 05:25:00.613222+00 1930 鑫鼎服饰 \N \N \N \N 1 \N 62cccb7b-812e-43b8-aed7-1f1cf2d227f1 t +2025-12-17 05:25:00.614011+00 2025-12-17 05:25:00.614015+00 1931 悦来悦好 \N \N \N \N 1 \N d54728e6-e96d-412d-8398-204f24454e1e t +2025-12-17 05:25:00.614889+00 2025-12-17 05:25:00.614894+00 1932 刘家豪 \N \N \N \N 1 \N a805908c-e34d-4119-9f91-026ceced82e3 t +2025-12-17 05:25:00.616162+00 2025-12-17 05:25:00.61617+00 1933 林哥 \N \N \N \N 1 \N 3f1737da-bca8-4f83-b219-95f72e66396b t +2025-12-17 05:25:00.617467+00 2025-12-17 05:25:00.617473+00 1934 郭雄 \N \N \N \N 1 \N 59e2ad54-e327-4f02-9fb8-4c6fa4e0e5e8 t +2025-12-17 05:25:00.618717+00 2025-12-17 05:25:00.618723+00 1935 李生-阿凯 \N \N \N \N 1 \N 8b0a9268-9b74-43ea-81b7-dd2b6a6ace9a t +2025-12-17 05:25:00.619785+00 2025-12-17 05:25:00.61979+00 1936 陈玄 \N \N \N \N 1 \N cfed5f31-039d-4b7e-a435-3a9850bab451 t +2025-12-17 05:25:00.620616+00 2025-12-17 05:25:00.62062+00 1937 黄老板 \N \N \N \N 1 \N 9a918010-9659-46f1-9a07-8c4f9b9ac1f4 t +2025-12-17 05:25:00.621409+00 2025-12-17 05:25:00.621413+00 1938 李老板 \N \N \N \N 1 \N e4cd7439-db4e-45a9-9cbf-70f6e288a64d t +2025-12-17 05:25:00.622209+00 2025-12-17 05:25:00.622213+00 1939 文青华 \N \N \N \N 1 \N ccec2a21-2e96-4406-b741-393017a72229 t +2025-12-17 05:25:00.623002+00 2025-12-17 05:25:00.623006+00 1940 宋宋 \N \N \N \N 1 \N 54454ce4-e7d6-463b-b3ff-d741a7363cdf t +2025-12-17 05:25:00.624139+00 2025-12-17 05:25:00.624146+00 1941 刘达 \N \N \N \N 1 \N 25aa6529-c7aa-4541-bda2-0a703cb83152 t +2025-12-17 05:25:00.625409+00 2025-12-17 05:25:00.625415+00 1942 郑雨蒙 \N \N \N \N 1 \N cbb1a066-2323-4eb7-a077-5814cc046921 t +2025-12-17 05:25:00.626668+00 2025-12-17 05:25:00.626674+00 1943 戴阳 \N \N \N \N 1 \N 4da1d473-fb6e-4a31-ada0-19af8afbcad2 t +2025-12-17 05:25:00.627643+00 2025-12-17 05:25:00.627647+00 1944 盛达-杜老板 \N \N \N \N 1 \N fa58cb43-eae7-4a36-a6c7-8ae2a0f44497 t +2025-12-17 05:25:00.628476+00 2025-12-17 05:25:00.62848+00 1945 林永丰 \N \N \N \N 1 \N 21f3ef45-61aa-4959-85ef-f0df10e3eb8b t +2025-12-17 05:25:00.629306+00 2025-12-17 05:25:00.62931+00 1946 谢兵 \N \N \N \N 1 \N 5433a7a7-4775-4ad1-bba1-026e9727c40f t +2025-12-17 05:25:00.630127+00 2025-12-17 05:25:00.630131+00 1947 张军 \N \N \N \N 1 \N f002b8de-4a9e-4ad7-8017-a1a142971bae t +2025-12-17 05:25:00.630921+00 2025-12-17 05:25:00.630925+00 1948 盛达-张老板 \N \N \N \N 1 \N d05ab39c-3d4c-4335-917a-963944b86812 t +2025-12-17 05:25:00.631714+00 2025-12-17 05:25:00.631718+00 1949 许文杰 \N \N \N \N 1 \N bc9c625f-4251-48c0-98f1-68cf9a3aba3c t +2025-12-17 05:25:00.63252+00 2025-12-17 05:25:00.632524+00 1950 刘顺 \N \N \N \N 1 \N e7441f8e-4561-419b-b3fe-4c25821dfcc4 t +2025-12-17 05:25:00.633302+00 2025-12-17 05:25:00.633306+00 1951 叶胜涛 \N \N \N \N 1 \N f32bc0c9-517f-44f5-b520-6c70598459ea t +2025-12-17 05:25:00.634084+00 2025-12-17 05:25:00.634088+00 1952 郑凯 \N \N \N \N 1 \N 0ad73d7e-935d-42cb-b1c4-9ddcdbdc5adb t +2025-12-17 05:25:00.634877+00 2025-12-17 05:25:00.63488+00 1953 余首豪 \N \N \N \N 1 \N 7ded4da2-9dbd-42a2-a307-29264d4905da t +2025-12-17 05:25:00.635659+00 2025-12-17 05:25:00.635663+00 1954 林伟龙 \N \N \N \N 1 \N 43c65c67-b170-4952-aa98-90eabbaa8f80 t +2025-12-17 05:25:00.63647+00 2025-12-17 05:25:00.636473+00 1955 欧阳刚 \N \N \N \N 1 \N 47ce4227-0cdf-4bf0-ba65-b3bb63f613d1 t +2025-12-17 05:25:00.637271+00 2025-12-17 05:25:00.637275+00 1956 金涛 \N \N \N \N 1 \N aada4347-3065-43dd-aef7-69ab2c61b548 t +2025-12-17 05:25:00.638045+00 2025-12-17 05:25:00.638049+00 1957 Z-谷总 \N \N \N \N 1 \N 38df7daa-c795-4de8-8ea1-266c7e82b7e8 t +2025-12-17 05:25:00.638828+00 2025-12-17 05:25:00.638832+00 1958 方秀珠 \N \N \N \N 1 \N 1c745925-b5b7-4196-9257-7ec0fa269599 t +2025-12-17 05:25:00.6397+00 2025-12-17 05:25:00.639704+00 1959 曾远熊 \N \N \N \N 1 \N 2af9856f-1ab7-4a9f-bc4b-7be2c51a8b6e t +2025-12-17 05:25:00.640522+00 2025-12-17 05:25:00.640526+00 1960 万绣花边 \N \N \N \N 1 \N 5ed929ff-e298-49fb-8fce-dab367691258 t +2025-12-17 05:25:00.641543+00 2025-12-17 05:25:00.641548+00 1961 陈葳 \N \N \N \N 1 \N 1a146d23-a4ab-4b5c-9643-ab98a9f030f5 t +2025-12-17 05:25:00.64241+00 2025-12-17 05:25:00.642414+00 1962 曹丙月 \N \N \N \N 1 \N 36ec27ac-e51b-403f-bca8-5de74c962c25 t +2025-12-17 05:25:00.643218+00 2025-12-17 05:25:00.643221+00 1963 辉鸿 \N \N \N \N 1 \N 058af288-fd9f-4267-99e4-ec3df89e5755 t +2025-12-17 05:25:00.643999+00 2025-12-17 05:25:00.644002+00 1964 林峰 \N \N \N \N 1 \N b6823dda-35a8-4330-8cf5-23a485d5667c t +2025-12-17 05:25:00.64488+00 2025-12-17 05:25:00.644885+00 1965 龙平均 \N \N \N \N 1 \N c0506b30-afd6-4f5b-8fe1-ff596e967a2e t +2025-12-17 05:25:00.645726+00 2025-12-17 05:25:00.64573+00 1966 德瀚 \N \N \N \N 1 \N dccc6664-f0ee-4b6b-87fa-a83a5ee6abe9 t +2025-12-17 05:25:00.646523+00 2025-12-17 05:25:00.646527+00 1967 陈总 \N \N \N \N 1 \N 4b6d6188-5219-4cbb-a77f-81a2ace1ac9c t +2025-12-17 05:25:00.647325+00 2025-12-17 05:25:00.647329+00 1968 黄敏 \N \N \N \N 1 \N 6f7ffc45-9c2e-4031-95f4-2a87f774b086 t +2025-12-17 05:25:00.648113+00 2025-12-17 05:25:00.648117+00 1969 夏丰 \N \N \N \N 1 \N 5a6a9b25-d434-4e67-aa57-ae6fe118dbc6 t +2025-12-17 05:25:00.648893+00 2025-12-17 05:25:00.648897+00 1970 浩盛 \N \N \N \N 1 \N 153ef4f6-c495-4da5-b222-25e9682460c0 t +2025-12-17 05:25:00.64967+00 2025-12-17 05:25:00.649674+00 1971 番禺李总 \N \N \N \N 1 \N 727c299e-faa8-4bdb-9f9f-7f2d779e327b t +2025-12-17 05:25:00.65046+00 2025-12-17 05:25:00.650464+00 1972 吕志强 \N \N \N \N 1 \N b56af914-f216-4ed8-8369-e581df1f67ed t +2025-12-17 05:25:00.651346+00 2025-12-17 05:25:00.65135+00 1973 朱晓平 \N \N \N \N 1 \N 7d09173d-2e52-4e52-98e2-cb77101d99cf t +2025-12-17 05:25:00.652155+00 2025-12-17 05:25:00.652159+00 1974 花景 \N \N \N \N 1 \N f6c3be8c-ef09-4ccd-ad77-312ff3b1f5f1 t +2025-12-17 05:25:00.652967+00 2025-12-17 05:25:00.652971+00 1975 Z郑东 \N \N \N \N 1 \N 972061c3-837f-4dd2-8cb8-53dd0f7d351c t +2025-12-17 05:25:00.653768+00 2025-12-17 05:25:00.653772+00 1976 杜伟禄-阿凯 \N \N \N \N 1 \N aec68349-7199-4b4f-ba1a-edc08a80ad83 t +2025-12-17 05:25:00.654545+00 2025-12-17 05:25:00.654549+00 1977 振兴 \N \N \N \N 1 \N 9e8e9cf5-d2f3-438c-869d-10278083cb2b t +2025-12-17 05:25:00.655328+00 2025-12-17 05:25:00.655332+00 1978 王周涛哥 \N \N \N \N 1 \N e14404d1-aa05-4075-8c64-c31a16daacb0 t +2025-12-17 05:25:00.656125+00 2025-12-17 05:25:00.656128+00 1979 黄稳-黄敏稳 \N \N \N \N 1 \N fddc5f6d-e9f8-42ba-91bf-a98214f0ac67 t +2025-12-17 05:25:00.656913+00 2025-12-17 05:25:00.656917+00 1980 王锦添 \N \N \N \N 1 \N d1a6ed32-a6fc-4ebe-82e4-4a3861dcd0d6 t +2025-12-17 05:25:00.657735+00 2025-12-17 05:25:00.65774+00 1981 肖巍 \N \N \N \N 1 \N c2249292-e1c9-4d4c-a65d-1d7020bdcd0b t +2025-12-17 05:25:00.65865+00 2025-12-17 05:25:00.658653+00 1982 许勇 \N \N \N \N 1 \N 63c16e5c-ca09-475f-b71a-1265f8f5d4e7 t +2025-12-17 05:25:00.659485+00 2025-12-17 05:25:00.659489+00 1983 陈波 \N \N \N \N 1 \N 2be3a347-e362-406e-b14d-ed6f0d9e25ac t +2025-12-17 05:25:00.660314+00 2025-12-17 05:25:00.660318+00 1984 梁总 \N \N \N \N 1 \N 27445aa1-6b58-4a9a-a6a6-3f45931cc682 t +2025-12-17 05:25:00.661105+00 2025-12-17 05:25:00.661108+00 1985 钟杰涛哥qs \N \N \N \N 1 \N 07cfce06-11f7-4df5-a8aa-70dd0061a276 t +2025-12-17 05:25:00.661895+00 2025-12-17 05:25:00.661899+00 1986 郑占先 \N \N \N \N 1 \N b5ade38a-d537-45a5-8a17-1ed4f81da5b2 t +2025-12-17 05:25:00.662697+00 2025-12-17 05:25:00.662701+00 1987 盛达-鑫晟 \N \N \N \N 1 \N a2968de3-685f-4f61-8b60-86ee116a2315 t +2025-12-17 05:25:00.663479+00 2025-12-17 05:25:00.663483+00 1988 胡波军涛哥 \N \N \N \N 1 \N f297d7fb-108a-4220-b599-b48c09a2a41f t +2025-12-17 05:25:00.664263+00 2025-12-17 05:25:00.664267+00 1989 招财猫 \N \N \N \N 1 \N 4d194685-16ac-4ed6-9d32-9bcb937d61fa t +2025-12-17 05:25:00.665062+00 2025-12-17 05:25:00.665066+00 1990 吴毅涛哥 \N \N \N \N 1 \N 1ffb5beb-d5d0-40d1-ade2-3f8ab379c471 t +2025-12-17 05:25:00.665939+00 2025-12-17 05:25:00.665944+00 1991 马生 \N \N \N \N 1 \N 1a2cae67-9f84-4341-8f14-5fe3cf518802 t +2025-12-17 05:25:00.666867+00 2025-12-17 05:25:00.666872+00 1992 群兴 \N \N \N \N 1 \N ad7e59f6-2a58-49f5-bc17-c131e166a722 t +2025-12-17 05:25:00.667709+00 2025-12-17 05:25:00.667713+00 1993 朱建成 \N \N \N \N 1 \N 65c7b4e2-ad24-41ba-a464-f633d8b4b3df t +2025-12-17 05:25:00.668508+00 2025-12-17 05:25:00.668512+00 1994 刘念羽 \N \N \N \N 1 \N 79745b74-242b-48e2-bf76-067184459fce t +2025-12-17 05:25:00.669357+00 2025-12-17 05:25:00.669361+00 1995 卢云龙涛哥 \N \N \N \N 1 \N 3b31ea8c-241c-49c1-bb25-0611fbb225e3 t +2025-12-17 05:25:00.670206+00 2025-12-17 05:25:00.67021+00 1996 盛达-路小姐 \N \N \N \N 1 \N 99fada22-144d-4433-a443-cd3ab9cc8c9e t +2025-12-17 05:25:00.671022+00 2025-12-17 05:25:00.671026+00 1997 金桥 \N \N \N \N 1 \N e9de98e9-0d28-4198-bfb5-3b589274a56a t +2025-12-17 05:25:00.671818+00 2025-12-17 05:25:00.671821+00 1998 卢丰涛哥 \N \N \N \N 1 \N fcce8c02-4f0d-4828-83bf-6b5e2c051eab t +2025-12-17 05:25:00.672627+00 2025-12-17 05:25:00.672631+00 1999 易仲华 \N \N \N \N 1 \N 11f59b81-fa9d-4666-9c57-57e2d0776ea6 t +2025-12-17 05:25:00.67344+00 2025-12-17 05:25:00.673444+00 2000 新潮晟 \N \N \N \N 1 \N 9cacf129-0b62-4123-9bd8-16a9b77b57ff t +2025-12-17 05:25:00.674229+00 2025-12-17 05:25:00.674233+00 2001 黄克友 \N \N \N \N 1 \N 19d620f9-0dc9-4b8d-aa7c-95be3698c1dc t +2025-12-17 05:25:00.675046+00 2025-12-17 05:25:00.67505+00 2002 叶雅琴 \N \N \N \N 1 \N bf5f7386-a5b4-4c2a-bf48-5e9a01878b65 t +2025-12-17 05:25:00.675853+00 2025-12-17 05:25:00.675857+00 2003 许涛兵 \N \N \N \N 1 \N 1d96f67a-352b-48c6-a237-e4b009e8319c t +2025-12-17 05:25:00.67665+00 2025-12-17 05:25:00.676653+00 2004 大V \N \N \N \N 1 \N d706fc7b-2130-47d6-ae98-acb62ac66e0b t +2025-12-17 05:25:00.677453+00 2025-12-17 05:25:00.677456+00 2005 后窖-付小姐 \N \N \N \N 1 \N 9b5148ef-8b6f-410f-8e23-5c01e77bf9e8 t +2025-12-17 05:25:00.678237+00 2025-12-17 05:25:00.678241+00 2006 刘雄 \N \N \N \N 1 \N 3aa2b84e-d566-45e9-b7e4-f7f404b3d29e t +2025-12-17 05:25:00.67903+00 2025-12-17 05:25:00.679034+00 2007 廖纪刚 \N \N \N \N 1 \N 50623238-c2b0-4176-9348-93f4cf546a1e t +2025-12-17 05:25:00.679838+00 2025-12-17 05:25:00.679842+00 2008 艺尚纺 \N \N \N \N 1 \N b42ad69d-f884-4cb9-ab12-9de3a61a951b t +2025-12-17 05:25:00.680758+00 2025-12-17 05:25:00.680762+00 2009 盛达-邹永生 \N \N \N \N 1 \N 0a667134-8557-4e41-a26f-7834c69248dd t +2025-12-17 05:30:01.243106+00 2025-12-17 05:30:01.243115+00 2010 盛达-胡小姐 \N \N \N \N 1 \N e6b362a1-9849-4780-af49-1d0174df46ae t +2025-12-17 05:30:01.245179+00 2025-12-17 05:30:01.245185+00 2011 盛达-胡利勇 \N \N \N \N 1 \N 35c50465-e2ce-4289-ad46-1587148da7c7 t +2025-12-17 05:30:01.246156+00 2025-12-17 05:30:01.246162+00 2012 周鑫 \N \N \N \N 1 \N fa4083de-f78a-4570-9e8d-f6bbc4d9e309 t +2025-12-17 05:30:01.24721+00 2025-12-17 05:30:01.247216+00 2013 冯浩 \N \N \N \N 1 \N 49ea50f7-678a-46c5-81a3-86b2148a2188 t +2025-12-17 05:30:01.248211+00 2025-12-17 05:30:01.248216+00 2014 盛达-田宇峰 \N \N \N \N 1 \N 0617a4c9-a0cf-4b4b-baaf-68f9ea663545 t +2025-12-17 05:30:01.249246+00 2025-12-17 05:30:01.249251+00 2015 伟强 \N \N \N \N 1 \N b74fae9b-f006-4867-a70a-f528025e3353 t +2025-12-17 05:30:01.250166+00 2025-12-17 05:30:01.25017+00 2016 高超 \N \N \N \N 1 \N 98742fdd-fe3a-4ebd-948c-6a17a3bd338d t +2025-12-17 05:30:01.251019+00 2025-12-17 05:30:01.251023+00 2017 高山 \N \N \N \N 1 \N 78dfa04d-0df9-45a1-881e-fb5b722f65bc t +2025-12-17 05:30:01.25199+00 2025-12-17 05:30:01.251995+00 2018 明发 \N \N \N \N 1 \N b6a1659e-b9ec-4c08-9569-d394d45332ba t +2025-12-17 05:30:01.252934+00 2025-12-17 05:30:01.252939+00 2019 曾中坚 \N \N \N \N 1 \N 0661feb1-09d2-4fe6-8954-f1434bde6b41 t +2025-12-17 05:30:01.253778+00 2025-12-17 05:30:01.253782+00 2020 盛达-徐林敏 \N \N \N \N 1 \N 3102a2f9-7642-489b-9070-ec6ec060dbf3 t +2025-12-17 05:30:01.254612+00 2025-12-17 05:30:01.254615+00 2021 荣涵qs \N \N \N \N 1 \N be84ca16-7179-4474-a6c9-0ce3bfbd675e t +2025-12-17 05:30:01.255568+00 2025-12-17 05:30:01.255573+00 2022 千飞 \N \N \N \N 1 \N 5cc14041-b69d-4050-b03e-eb2d27ecc881 t +2025-12-17 05:30:01.25646+00 2025-12-17 05:30:01.256465+00 2023 倪嵩 \N \N \N \N 1 \N 23830b1e-76b3-43e4-94a7-9f70f8318673 t +2025-12-17 05:30:01.25733+00 2025-12-17 05:30:01.257334+00 2024 肖磊 \N \N \N \N 1 \N abfc1281-8d64-4b98-a1ed-cd3043b2a412 t +2025-12-17 05:30:01.258172+00 2025-12-17 05:30:01.258176+00 2025 盛达-吴时昌 \N \N \N \N 1 \N cb8cd4b3-6550-4860-83c1-3c3ec8d9c6e4 t +2025-12-17 05:30:01.258994+00 2025-12-17 05:30:01.258998+00 2026 宋果 \N \N \N \N 1 \N a72d8a46-0897-4e67-9f49-37e7ddf8f8be t +2025-12-17 05:30:01.25979+00 2025-12-17 05:30:01.259793+00 2027 陈芳 \N \N \N \N 1 \N 00bbe1ef-aaa3-4f07-9792-f3c8319cd1c7 t +2025-12-17 05:30:01.260615+00 2025-12-17 05:30:01.260619+00 2028 金龙 \N \N \N \N 1 \N a692058e-097b-4ed0-8cb5-8457cbcc1c4f t +2025-12-17 05:30:01.26143+00 2025-12-17 05:30:01.261434+00 2029 盛达许老板 \N \N \N \N 1 \N 50c2d518-9e76-4e63-aaca-e3aca40b339d t +2025-12-17 05:30:01.262239+00 2025-12-17 05:30:01.262243+00 2030 康柳 \N \N \N \N 1 \N c7c73d95-24b0-4d70-a233-868c6effba57 t +2025-12-17 05:30:01.263057+00 2025-12-17 05:30:01.263061+00 2031 王国柱 \N \N \N \N 1 \N dfa0aa22-ba4c-4583-a729-891414077093 t +2025-12-17 05:30:01.263875+00 2025-12-17 05:30:01.263879+00 2032 洋洋 \N \N \N \N 1 \N 319f2866-301e-461b-b508-047a31c87b5b t +2025-12-17 05:30:01.264849+00 2025-12-17 05:30:01.264854+00 2033 盛达文丰生 \N \N \N \N 1 \N 453aa74f-c3a3-4d1a-b19e-41f49c251230 t +2025-12-17 05:30:01.265718+00 2025-12-17 05:30:01.265722+00 2034 胡志刚 \N \N \N \N 1 \N a40d03b7-6939-47d1-bcbf-162d427f394c t +2025-12-17 05:30:01.267042+00 2025-12-17 05:30:01.267046+00 2035 张文祥 \N \N \N \N 1 \N 58516eb4-cb3a-437b-8312-02979a2284d7 t +2025-12-17 05:30:01.267927+00 2025-12-17 05:30:01.267931+00 2036 睡美人 \N \N \N \N 1 \N 5c507d12-57fe-4632-bf9e-12fc823a9a3d t +2025-12-17 05:30:01.268824+00 2025-12-17 05:30:01.268829+00 2037 小希 \N \N \N \N 1 \N 288f80eb-a429-4432-865a-6534aaeca005 t +2025-12-17 05:30:01.269654+00 2025-12-17 05:30:01.269658+00 2038 盛达-别老板 \N \N \N \N 1 \N a78c2e6a-da12-4bd4-8374-04ded203e885 t +2025-12-17 05:30:01.270451+00 2025-12-17 05:30:01.270455+00 2039 黄琪伟 \N \N \N \N 1 \N d236ed77-ca44-4d2e-b5de-bba168964776 t +2025-12-17 05:30:01.271261+00 2025-12-17 05:30:01.271265+00 2040 严小姐 \N \N \N \N 1 \N d035c59b-f10c-4613-a4da-4998b6e331f8 t +2025-12-17 05:30:01.272114+00 2025-12-17 05:30:01.272119+00 2041 黄月明 \N \N \N \N 1 \N 8b424fad-174b-4783-85ac-f875a03df78d t +2025-12-17 05:30:01.273042+00 2025-12-17 05:30:01.273047+00 2042 张勇 \N \N \N \N 1 \N 4c621c62-6c21-4b0f-97ac-13578184d97a t +2025-12-17 05:30:01.273971+00 2025-12-17 05:30:01.273975+00 2043 王丽铃 \N \N \N \N 1 \N f34bebf5-5f83-4438-98de-f31ff2700f11 t +2025-12-17 05:30:01.274838+00 2025-12-17 05:30:01.274842+00 2044 盛达-陈小姐 \N \N \N \N 1 \N 2f596bb9-0d75-4024-bf7f-f93e00d786fb t +2025-12-17 05:30:01.275703+00 2025-12-17 05:30:01.275707+00 2045 鄢明高 \N \N \N \N 1 \N 6e1ca3df-5a86-4b5b-89b2-6927b9dd6735 t +2025-12-17 05:30:01.27658+00 2025-12-17 05:30:01.276584+00 2046 邵继彬 \N \N \N \N 1 \N cbc7807a-4869-4ab0-a90f-c1a1b66994d9 t +2025-12-17 05:30:01.277412+00 2025-12-17 05:30:01.277416+00 2047 粤发 \N \N \N \N 1 \N 2498ab5a-cc2c-4b13-8d0b-2b41d51f05c2 t +2025-12-17 05:30:01.278218+00 2025-12-17 05:30:01.278222+00 2048 盛达-文小姐 \N \N \N \N 1 \N fb47b0e2-e657-41e5-9845-5d4d7226bd79 t +2025-12-17 05:30:01.279009+00 2025-12-17 05:30:01.279013+00 2049 陈辉 \N \N \N \N 1 \N 2e48fbf0-6565-4af6-929f-6832c7b76bb8 t +2025-12-17 05:30:01.279834+00 2025-12-17 05:30:01.279838+00 2050 别雪飞 \N \N \N \N 1 \N f6599aac-7766-486a-9079-9feafd8b977b t +2025-12-17 05:30:01.280671+00 2025-12-17 05:30:01.280675+00 2051 余少伟 \N \N \N \N 1 \N 7a7f8195-af61-4206-b89a-818aab05be8f t +2025-12-17 05:30:01.281528+00 2025-12-17 05:30:01.281532+00 2052 周兵 \N \N \N \N 1 \N 4ab5ae46-6c33-4a20-99bf-d84cf1d49d39 t +2025-12-17 05:30:01.282366+00 2025-12-17 05:30:01.282371+00 2053 罗军 \N \N \N \N 1 \N 629e52a5-08ec-4a4b-bfb3-6299730ada74 t +2025-12-17 05:30:01.283169+00 2025-12-17 05:30:01.283173+00 2054 张子昌 \N \N \N \N 1 \N 1c2be489-4ad5-45d9-b12e-cc6ca578e65d t +2025-12-17 05:30:01.283967+00 2025-12-17 05:30:01.283971+00 2055 卢林峰 \N \N \N \N 1 \N 23ac2ff4-fc15-4c4a-ae26-07d0ea01cfd5 t +2025-12-17 05:30:01.284786+00 2025-12-17 05:30:01.28479+00 2056 詹小姐 \N \N \N \N 1 \N 26fa7c77-1fc5-43a1-9163-8a20c8462f73 t +2025-12-17 05:30:01.285588+00 2025-12-17 05:30:01.285592+00 2057 胡红 \N \N \N \N 1 \N 1f8de97f-31bd-42dd-8363-c392c57f2d10 t +2025-12-17 05:30:01.286429+00 2025-12-17 05:30:01.286433+00 2058 张鹏 \N \N \N \N 1 \N 66f88374-0689-48f9-b11f-a2c38db6d32e t +2025-12-17 05:30:01.287898+00 2025-12-17 05:30:01.287902+00 2059 田田 \N \N \N \N 1 \N c76b6d67-baa4-41e6-98e3-95267d3093b7 t +2025-12-17 05:30:01.288946+00 2025-12-17 05:30:01.288951+00 2060 祝建元 \N \N \N \N 1 \N d0e00107-54ea-438f-bad8-5581861fcd44 t +2025-12-17 05:30:01.289824+00 2025-12-17 05:30:01.289828+00 2061 张凯旋 \N \N \N \N 1 \N 407b3481-2df1-4b9c-8375-896bbbb48fa1 t +2025-12-17 05:30:01.290658+00 2025-12-17 05:30:01.290662+00 2062 虎子 \N \N \N \N 1 \N 4d3e383b-6c01-4e4a-829b-2fad16e527ce t +2025-12-17 05:30:01.291489+00 2025-12-17 05:30:01.291493+00 2063 璟晨 \N \N \N \N 1 \N 31188848-fc29-41bf-8935-38832028fe12 t +2025-12-17 05:30:01.2924+00 2025-12-17 05:30:01.292404+00 2064 王恒 \N \N \N \N 1 \N 93997625-872f-4630-aa55-98f727350abf t +2025-12-17 05:30:01.293292+00 2025-12-17 05:30:01.293297+00 2065 邵小姐 \N \N \N \N 1 \N 899fa8b3-15d5-42f8-9f53-bc0b9bf2aacd t +2025-12-17 05:30:01.294125+00 2025-12-17 05:30:01.294129+00 2066 火星 \N \N \N \N 1 \N 146f3097-f638-46b9-851e-d934c395602e t +2025-12-17 05:30:01.294971+00 2025-12-17 05:30:01.294975+00 2067 渝豪 \N \N \N \N 1 \N 58be758a-6318-4967-b8e0-4f759fda91af t +2025-12-17 05:30:01.295789+00 2025-12-17 05:30:01.295793+00 2068 佐伊尔 \N \N \N \N 1 \N fa9139b8-92ae-4dc2-aed9-b21cb82b7580 t +2025-12-17 05:30:01.296604+00 2025-12-17 05:30:01.296608+00 2069 庆华 \N \N \N \N 1 \N 8b27f9dc-394f-4122-a07b-2f99a6d21d08 t +2025-12-17 05:30:01.297438+00 2025-12-17 05:30:01.297442+00 2070 蔡朝 \N \N \N \N 1 \N 95f07fd1-3146-4337-9a79-e958faa319bf t +2025-12-17 05:30:01.298232+00 2025-12-17 05:30:01.298236+00 2071 常老板 \N \N \N \N 1 \N 30a35e35-ef90-4319-8250-128d318b9e02 t +2025-12-17 05:30:01.299035+00 2025-12-17 05:30:01.299039+00 2072 欧老板 \N \N \N \N 1 \N 761229fb-abff-4951-bca7-5d4af7b05820 t +2025-12-17 05:30:01.299863+00 2025-12-17 05:30:01.299867+00 2073 盛达-彭老板 \N \N \N \N 1 \N 83bfd6ce-dc12-480b-a40e-f2bec35494ae t +2025-12-17 05:30:01.300829+00 2025-12-17 05:30:01.300833+00 2074 朱亮 \N \N \N \N 1 \N a89af1b6-ce5f-47db-9e82-9830b886b2d9 t +2025-12-17 05:30:01.301674+00 2025-12-17 05:30:01.301678+00 2075 馨悦张小姐 \N \N \N \N 1 \N 82eeb361-e287-4f50-9aca-a36ad2accb58 t +2025-12-17 05:30:01.302573+00 2025-12-17 05:30:01.302577+00 2076 盛达-刘老板 \N \N \N \N 1 \N b8aaecd7-22c9-4555-ab57-3a29a741cea8 t +2025-12-17 05:30:01.303405+00 2025-12-17 05:30:01.303409+00 2077 刘二姐 \N \N \N \N 1 \N 6042f7ca-abb2-4972-8b75-9567e93fca9d t +2025-12-17 05:30:01.304399+00 2025-12-17 05:30:01.304403+00 2078 盛达-唐华 \N \N \N \N 1 \N 2f2ec19e-7f14-4746-a95f-f95300563b82 t +2025-12-17 05:30:01.30528+00 2025-12-17 05:30:01.305284+00 2079 盘万云 \N \N \N \N 1 \N 5e3304e1-ca83-4c2c-b7ad-e4c703c8e13f t +2025-12-17 05:30:01.306135+00 2025-12-17 05:30:01.306139+00 2080 张帆 \N \N \N \N 1 \N ece53783-ddef-4197-b664-55a4ed663abf t +2025-12-17 05:30:01.306957+00 2025-12-17 05:30:01.306961+00 2081 梅彩燕 \N \N \N \N 1 \N d91ee679-6ea5-4b20-9a43-eac460aaac3c t +2025-12-17 05:30:01.307793+00 2025-12-17 05:30:01.307798+00 2082 李鑫 \N \N \N \N 1 \N 58610b1b-0245-4e03-951b-f53dbcd4403f t +2025-12-17 05:30:01.308861+00 2025-12-17 05:30:01.308865+00 2083 黄总-黄长兵qs \N \N \N \N 1 \N 9fde68b6-2071-4a6e-a1dd-72bf84bc0a76 t +2025-12-17 05:30:01.309664+00 2025-12-17 05:30:01.309668+00 2084 朱静辉 \N \N \N \N 1 \N df80bab8-721d-4ca8-a73b-1b974babfcc6 t +2025-12-17 05:30:01.31045+00 2025-12-17 05:30:01.310454+00 2085 谢炎翔 \N \N \N \N 1 \N cfac3b94-6716-4ccd-970b-b098fd1eee18 t +2025-12-17 05:30:01.311278+00 2025-12-17 05:30:01.311282+00 2086 张利华 \N \N \N \N 1 \N 1c3eb64e-7d32-4162-961b-f9d850b89685 t +2025-12-17 05:30:01.312078+00 2025-12-17 05:30:01.312081+00 2087 虎门展盛纺织 \N \N \N \N 1 \N 2c205662-d607-49e0-9dd6-1e604459b67b t +2025-12-17 05:30:01.312945+00 2025-12-17 05:30:01.31295+00 2088 饶格 \N \N \N \N 1 \N 4252f264-c31b-4ca2-9d4b-1f2819a14452 t +2025-12-17 05:30:01.313839+00 2025-12-17 05:30:01.313843+00 2089 盛达-恒升 \N \N \N \N 1 \N ac75424d-62e9-4a68-80f5-bca0d21254d7 t +2025-12-17 05:30:01.314701+00 2025-12-17 05:30:01.314706+00 2090 许芳 \N \N \N \N 1 \N 25973024-f9ee-4ecd-a05b-2cfa8e156697 t +2025-12-17 05:30:01.315707+00 2025-12-17 05:30:01.315712+00 2091 谢耿 \N \N \N \N 1 \N e6314b0f-b423-4620-b6b3-c6c357710edd t +2025-12-17 05:30:01.31689+00 2025-12-17 05:30:01.316894+00 2092 朱爱敏 \N \N \N \N 1 \N f8d7dfc5-ef9f-42c6-8a0e-4b1a9fb6fe57 t +2025-12-17 05:30:01.318003+00 2025-12-17 05:30:01.318006+00 2093 恒翔 \N \N \N \N 1 \N a4394053-706a-4eec-9a08-e0d4a1b7efcc t +2025-12-17 05:30:01.319111+00 2025-12-17 05:30:01.319115+00 2094 老陈 \N \N \N \N 1 \N b144f43c-b496-40ef-a1ad-55df52e9d4f3 t +2025-12-17 05:30:01.320203+00 2025-12-17 05:30:01.320206+00 2095 袁梅 \N \N \N \N 1 \N 5bfbf956-2ce9-41ec-8912-35647a2e9e59 t +2025-12-17 05:30:01.321295+00 2025-12-17 05:30:01.321298+00 2096 达盛 \N \N \N \N 1 \N 825508d9-e6b5-4eba-9b09-a498ce5dd170 t +2025-12-17 05:30:01.322396+00 2025-12-17 05:30:01.3224+00 2097 杨正刚 \N \N \N \N 1 \N 0a478d7b-f26f-4db6-b3bf-d5ed1ffb3aef t +2025-12-17 05:30:01.323498+00 2025-12-17 05:30:01.323502+00 2098 依哚 \N \N \N \N 1 \N 6c24b8fe-1d71-4250-888b-6705384d137d t +2025-12-17 05:30:01.324677+00 2025-12-17 05:30:01.324681+00 2099 后窖-李总 \N \N \N \N 1 \N 4d1ef81f-46d6-48d9-947d-86460fc778ee t +2025-12-17 05:30:01.32553+00 2025-12-17 05:30:01.325534+00 2100 汇雅纺织 \N \N \N \N 1 \N d80e417f-adee-46b7-bad5-285d52e22e38 t +2025-12-17 05:30:01.326418+00 2025-12-17 05:30:01.326423+00 2101 中大酒神 \N \N \N \N 1 \N 914122ac-80e8-4190-a4b0-3232c7fcd414 t +2025-12-17 05:30:01.327277+00 2025-12-17 05:30:01.327282+00 2102 盛达-宋老板 \N \N \N \N 1 \N 3c95c761-8995-41f3-b0fc-4d4992347ebc t +2025-12-17 05:30:01.328093+00 2025-12-17 05:30:01.328097+00 2103 杨浩宇 \N \N \N \N 1 \N 40bf97c3-3b66-4f06-8ef3-2e61e8b580ac t +2025-12-17 05:30:01.328905+00 2025-12-17 05:30:01.32891+00 2104 鸿新 \N \N \N \N 1 \N f4082776-418a-495d-bf22-1151934e4544 t +2025-12-17 05:30:01.329694+00 2025-12-17 05:30:01.329698+00 2105 郭超 \N \N \N \N 1 \N 24f5535e-b6fc-47a7-a219-805df3460621 t +2025-12-17 05:30:01.330478+00 2025-12-17 05:30:01.330482+00 2106 盛达-老郑 \N \N \N \N 1 \N 4193e943-3859-4f29-88f9-f9b0af3a23a4 t +2025-12-17 05:30:01.331439+00 2025-12-17 05:30:01.331444+00 2107 罗贤章 \N \N \N \N 1 \N 64688c84-9b5e-4023-a123-838768d2b757 t +2025-12-17 05:30:01.332321+00 2025-12-17 05:30:01.332325+00 2108 田野 \N \N \N \N 1 \N 3ddcdaf1-2bb6-4db7-bd9a-ffa5e2b8c9d1 t +2025-12-17 05:30:01.333147+00 2025-12-17 05:30:01.333151+00 2109 永泰 \N \N \N \N 1 \N acf66a78-4132-4061-a2e5-225fbfa08331 t +2025-12-17 05:30:01.557384+00 2025-12-17 05:30:01.557391+00 2110 红兰肥 \N \N \N \N 1 \N a3b73344-3381-49ad-bf61-9ff6134d5d7b t +2025-12-17 05:30:01.558658+00 2025-12-17 05:30:01.558662+00 2111 盛达-啊文 \N \N \N \N 1 \N c977a608-cd1a-428b-be8f-bb464afee4b1 t +2025-12-17 05:30:01.559529+00 2025-12-17 05:30:01.559533+00 2112 盛达-磊哥 \N \N \N \N 1 \N 8f46d7d9-d406-4066-a101-fd31ef81f1ce t +2025-12-17 05:30:01.560421+00 2025-12-17 05:30:01.560425+00 2113 昌荣 \N \N \N \N 1 \N 3071146a-8156-4e04-8ca6-5883814c51c5 t +2025-12-17 05:30:01.561288+00 2025-12-17 05:30:01.561295+00 2114 陈西发 \N \N \N \N 1 \N 94f8d005-141b-4f73-a56b-8500fd9cbe41 t +2025-12-17 05:30:01.562189+00 2025-12-17 05:30:01.562194+00 2115 萧生 \N \N \N \N 1 \N 28a53b6e-8c57-48af-ae1b-3b8ac6780d26 t +2025-12-17 05:30:01.563092+00 2025-12-17 05:30:01.563097+00 2116 陈建明 \N \N \N \N 1 \N 76bf35b5-69e4-4384-9714-c5229cc5add7 t +2025-12-17 05:30:01.563904+00 2025-12-17 05:30:01.563908+00 2117 盛达阿冬 \N \N \N \N 1 \N adbd4783-eb61-4eb9-9c9c-93360dc74279 t +2025-12-17 05:30:01.564734+00 2025-12-17 05:30:01.564738+00 2118 毛毛 \N \N \N \N 1 \N 93e89854-9610-4b42-be3c-e76af93e1639 t +2025-12-17 05:30:01.56554+00 2025-12-17 05:30:01.565544+00 2119 张云 \N \N \N \N 1 \N 08ab0ae2-fe81-42b7-b47a-84720ef087d3 t +2025-12-17 05:30:01.566354+00 2025-12-17 05:30:01.566359+00 2120 黄勤山 \N \N \N \N 1 \N c450aa9d-dc09-4b72-a32e-8e26d24cca10 t +2025-12-17 05:30:01.56718+00 2025-12-17 05:30:01.567184+00 2121 刘总 \N \N \N \N 1 \N 01959b6e-01e5-4396-99c5-b388491dba40 t +2025-12-17 05:30:01.56801+00 2025-12-17 05:30:01.568014+00 2122 志延服饰 \N \N \N \N 1 \N 75bb03f5-80ff-4e31-aaa2-edf0fbb7a691 t +2025-12-17 05:30:01.568885+00 2025-12-17 05:30:01.56889+00 2123 盛达-熊辉 \N \N \N \N 1 \N 9029193a-2242-4992-8ebf-83677ae5e52b t +2025-12-17 05:30:01.56976+00 2025-12-17 05:30:01.569765+00 2124 盛达-陈晓明 \N \N \N \N 1 \N 371f3ce1-7843-4e72-9037-241fdfcd5a18 t +2025-12-17 05:30:01.570612+00 2025-12-17 05:30:01.570616+00 2125 程少祥 \N \N \N \N 1 \N 99972dd7-0cf2-4e9a-a0f1-9e5d42095e24 t +2025-12-17 05:30:01.571589+00 2025-12-17 05:30:01.571593+00 2126 王文 \N \N \N \N 1 \N 741b8a76-3478-4b92-8b75-86739bc37621 t +2025-12-17 05:30:01.572442+00 2025-12-17 05:30:01.572446+00 2127 衣梦服饰 \N \N \N \N 1 \N 5bcd7062-c1c5-4b79-94fb-da779da26b0d t +2025-12-17 05:30:01.573334+00 2025-12-17 05:30:01.573338+00 2128 新隆 \N \N \N \N 1 \N bc1c1328-82f2-42c9-8cd1-1aec93aeeae8 t +2025-12-17 05:30:01.574131+00 2025-12-17 05:30:01.574135+00 2129 盛达-游小姐 \N \N \N \N 1 \N e8119175-1875-45d6-9142-7d8fe7e72061 t +2025-12-17 05:30:01.574941+00 2025-12-17 05:30:01.574945+00 2130 腾飞纺织 \N \N \N \N 1 \N 3ec6cd37-f7ba-4864-9c74-b73f9545633e t +2025-12-17 05:30:01.575738+00 2025-12-17 05:30:01.575742+00 2131 别子尧 \N \N \N \N 1 \N 6f1dc603-a0fb-4d14-bb90-a62bac16e657 t +2025-12-17 05:30:01.576529+00 2025-12-17 05:30:01.576533+00 2132 优棉丰 \N \N \N \N 1 \N 55f0f2fc-04ff-453d-b81a-4279d9fa35b1 t +2025-12-17 05:30:01.577371+00 2025-12-17 05:30:01.577374+00 2133 毛文鹏 \N \N \N \N 1 \N 3d4ff02c-9ea8-4885-ac77-7ca68b2827ad t +2025-12-17 05:30:01.578254+00 2025-12-17 05:30:01.578258+00 2134 鹏兴 \N \N \N \N 1 \N ca275f04-caaf-46c5-945b-36ed21f605a0 t +2025-12-17 05:30:01.579069+00 2025-12-17 05:30:01.579073+00 2135 和兴 \N \N \N \N 1 \N de3f0756-3b3f-4b04-aeda-1a0eb0a1f8d4 t +2025-12-17 05:30:01.579891+00 2025-12-17 05:30:01.579896+00 2136 向正 \N \N \N \N 1 \N f830154a-eea4-4d07-ac0b-c2128397f32f t +2025-12-17 05:30:01.580898+00 2025-12-17 05:30:01.580904+00 2137 王举 \N \N \N \N 1 \N da493539-649f-46b3-b5a2-728d54a13b77 t +2025-12-17 05:30:01.581993+00 2025-12-17 05:30:01.581998+00 2138 张果老 \N \N \N \N 1 \N 7a0a3bac-b548-43b5-a8f7-bb0af8d702fe t +2025-12-17 05:30:01.582883+00 2025-12-17 05:30:01.582887+00 2139 夏锋 \N \N \N \N 1 \N b4922aff-e130-45a0-8e50-86891745a42f t +2025-12-17 05:30:01.583733+00 2025-12-17 05:30:01.583738+00 2140 林壮峰 \N \N \N \N 1 \N 8732403c-1c32-4a14-aa94-d98f23b16fae t +2025-12-17 05:30:01.584547+00 2025-12-17 05:30:01.58455+00 2141 科胜 \N \N \N \N 1 \N deaaedba-ebe8-4ca3-ae1a-cec4aa733a3a t +2025-12-17 05:30:01.585348+00 2025-12-17 05:30:01.585351+00 2142 馨悦 \N \N \N \N 1 \N f8841b6e-79d3-4791-8c00-06794269328e t +2025-12-17 05:30:01.586148+00 2025-12-17 05:30:01.586152+00 2143 东莞杜总 \N \N \N \N 1 \N b1247000-faa0-431e-b28c-e3d42125c488 t +2025-12-17 05:30:01.58696+00 2025-12-17 05:30:01.586964+00 2144 盛达-阿鸿 \N \N \N \N 1 \N 5cf64854-4230-4389-b615-3fbfd9fe5a06 t +2025-12-17 05:30:01.587772+00 2025-12-17 05:30:01.587776+00 2145 关严文 \N \N \N \N 1 \N 5eff4e78-85e2-41b1-88b3-336f25b546ff t +2025-12-17 05:30:01.588568+00 2025-12-17 05:30:01.588572+00 2146 曾总 \N \N \N \N 1 \N 6fe0323d-8ec3-46dc-a3f2-b106772ac1f2 t +2025-12-17 05:30:01.589403+00 2025-12-17 05:30:01.589407+00 2147 西米服饰 \N \N \N \N 1 \N 42e9aab4-0fb0-4c4a-931e-f7f5e9c8d0db t +2025-12-17 05:30:01.590193+00 2025-12-17 05:30:01.590197+00 2148 盛达-王俊 \N \N \N \N 1 \N d67fe43a-64a6-4554-846e-bc8d229b0cdb t +2025-12-17 05:30:01.590975+00 2025-12-17 05:30:01.590979+00 2149 祺顺 \N \N \N \N 1 \N 1dfbe4c5-3b40-40c8-b0f1-d837fbb5713c t +2025-12-17 05:30:01.591784+00 2025-12-17 05:30:01.591788+00 2150 黄长庚 \N \N \N \N 1 \N 1833badc-f0de-4302-99c6-da413419faac t +2025-12-17 05:30:01.592571+00 2025-12-17 05:30:01.592574+00 2151 盛达-俊丰 \N \N \N \N 1 \N e68a6e2f-6885-4df3-9d3c-ed05579db259 t +2025-12-17 05:30:01.593452+00 2025-12-17 05:30:01.593456+00 2152 培岳 \N \N \N \N 1 \N 7e8712ca-b3bd-4aaf-b80b-32e95aaf785d t +2025-12-17 05:30:01.594298+00 2025-12-17 05:30:01.594302+00 2153 刘奇 \N \N \N \N 1 \N aefdeb41-5718-43fa-bcd3-da299baf1b41 t +2025-12-17 05:30:01.595097+00 2025-12-17 05:30:01.595101+00 2154 盛达-林凯 \N \N \N \N 1 \N 79f0e088-c1ef-4c3b-955c-940c849ebeb2 t +2025-12-17 05:30:01.59594+00 2025-12-17 05:30:01.595945+00 2155 谢炎嘉 \N \N \N \N 1 \N 1c87cc70-68ba-426a-9aa3-5302f73617c8 t +2025-12-17 05:30:01.59677+00 2025-12-17 05:30:01.596774+00 2156 杰盛 \N \N \N \N 1 \N 821c0efd-31c9-4da0-8f24-88cc78ede53f t +2025-12-17 05:30:01.597624+00 2025-12-17 05:30:01.597628+00 2157 财昇111 \N \N \N \N 1 \N d66266cd-7c97-407c-9488-7056a6fdd17d t +2025-12-17 05:30:01.598616+00 2025-12-17 05:30:01.59862+00 2158 曼妮 \N \N \N \N 1 \N 4c49af95-d8a6-439f-8ade-78d12e4aa7b3 t +2025-12-17 05:30:01.599501+00 2025-12-17 05:30:01.599506+00 2159 杨志勇 \N \N \N \N 1 \N 2c378b8a-3bd5-4625-af55-1d9e7df556c4 t +2025-12-17 05:30:01.600382+00 2025-12-17 05:30:01.600386+00 2160 王魁 \N \N \N \N 1 \N 3cf5a58c-4881-48e6-98d7-191c260bf29b t +2025-12-17 05:30:01.601205+00 2025-12-17 05:30:01.601208+00 2161 吉米服饰 \N \N \N \N 1 \N 31e3b30c-c1e8-4f41-9cd6-8310523e0f09 t +2025-12-17 05:30:01.602022+00 2025-12-17 05:30:01.602026+00 2162 达达-金腾达qs \N \N \N \N 1 \N 7eb112da-2267-488c-b17a-783aff6874ef t +2025-12-17 05:30:01.603303+00 2025-12-17 05:30:01.60331+00 2163 启蓝服饰 \N \N \N \N 1 \N 17d83437-a933-42be-b7d7-508fdb1e337e t +2025-12-17 05:30:01.604792+00 2025-12-17 05:30:01.604797+00 2164 金涛-阿杰 \N \N \N \N 1 \N b677be79-4fac-405c-885e-6fd64f27a8d0 t +2025-12-17 05:30:01.605736+00 2025-12-17 05:30:01.60574+00 2165 阿杰 \N \N \N \N 1 \N 018b3bfe-b636-4afb-a0c0-a453ab404e4b t +2025-12-17 05:30:01.6066+00 2025-12-17 05:30:01.606604+00 2166 米斯特 \N \N \N \N 1 \N 7c39b3be-8e67-4bc3-8768-c5011727b252 t +2025-12-17 05:30:01.607413+00 2025-12-17 05:30:01.607417+00 2167 彭波 \N \N \N \N 1 \N 68a75cbc-89dc-422c-aecf-9f5c58850f10 t +2025-12-17 05:30:01.608262+00 2025-12-17 05:30:01.608266+00 2168 胡亮胡总 \N \N \N \N 1 \N 8e6c3abf-bcde-41b6-9240-cb2cfea0478e t +2025-12-17 05:30:01.609094+00 2025-12-17 05:30:01.609098+00 2169 依帆 \N \N \N \N 1 \N 2c938d72-0722-4767-abbd-45ee8661ff6b t +2025-12-17 05:30:01.609893+00 2025-12-17 05:30:01.609897+00 2170 金腾达 \N \N \N \N 1 \N 258018d8-428f-4302-927e-2e5f7518b85c t +2025-12-17 05:30:01.610677+00 2025-12-17 05:30:01.61068+00 2171 关俊锋 \N \N \N \N 1 \N a4e0e6b5-ada2-4ae6-9bf2-db0af9c25e5f t +2025-12-17 05:30:01.611475+00 2025-12-17 05:30:01.611479+00 2172 三川 \N \N \N \N 1 \N 6a78d431-76e9-4a2f-bfaf-cc6c21f2d243 t +2025-12-17 05:30:01.612292+00 2025-12-17 05:30:01.612296+00 2173 盛达-刘生 \N \N \N \N 1 \N fa1972d2-9e74-460a-9a36-99d269ea9695 t +2025-12-17 05:30:01.613321+00 2025-12-17 05:30:01.613324+00 2174 盛达-曹勇 \N \N \N \N 1 \N 9d574226-d1d6-4f27-a7cc-c10db3fa5276 t +2025-12-17 05:30:01.614146+00 2025-12-17 05:30:01.61415+00 2175 李培生 \N \N \N \N 1 \N 717e2b1c-279f-4243-9d9b-0c611c34087b t +2025-12-17 05:30:01.614986+00 2025-12-17 05:30:01.61499+00 2176 王建伟 \N \N \N \N 1 \N 09bce09b-3f51-4151-83bb-0be318ceb62a t +2025-12-17 05:30:01.615786+00 2025-12-17 05:30:01.61579+00 2177 双羽 \N \N \N \N 1 \N 8bcab0a2-3baf-4d2a-a6dd-b096e37e2ccc t +2025-12-17 05:30:01.616596+00 2025-12-17 05:30:01.6166+00 2178 平姐 \N \N \N \N 1 \N 6d53a495-63c6-4cb4-a92b-2412a624d15d t +2025-12-17 05:30:01.617407+00 2025-12-17 05:30:01.617411+00 2179 王文吉 \N \N \N \N 1 \N cf930b7e-e36f-4924-9d9b-31b24d1179c4 t +2025-12-17 05:30:01.618223+00 2025-12-17 05:30:01.618227+00 2180 林凯 \N \N \N \N 1 \N 6dc2378b-d824-4869-afd1-4fde2b95eefd t +2025-12-17 05:30:01.619024+00 2025-12-17 05:30:01.619029+00 2181 田总 \N \N \N \N 1 \N ebee48c6-e59d-4ba5-b087-d19b2bc96f70 t +2025-12-17 05:30:01.619806+00 2025-12-17 05:30:01.61981+00 2182 恒兴 \N \N \N \N 1 \N 407e6741-e1b4-4d32-b3fc-1aef08ea5de5 t +2025-12-17 05:30:01.620573+00 2025-12-17 05:30:01.620577+00 2183 田文 \N \N \N \N 1 \N c8158dc3-51db-49c8-808f-60a89d6a5773 t +2025-12-17 05:30:01.621372+00 2025-12-17 05:30:01.621376+00 2184 宝总 \N \N \N \N 1 \N 20874bf0-e8c9-4604-aa65-487c09eb9abe t +2025-12-17 05:30:01.622145+00 2025-12-17 05:30:01.622149+00 2185 合兴 \N \N \N \N 1 \N 1c6394b7-784d-4c6e-bc9c-0fc1d8ddf08e t +2025-12-17 05:30:01.622956+00 2025-12-17 05:30:01.62296+00 2186 盛达-肖先平 \N \N \N \N 1 \N a08c61b5-3437-49e4-8bf7-1bfda9768607 t +2025-12-17 05:30:01.623754+00 2025-12-17 05:30:01.623758+00 2187 绸缘纺织 \N \N \N \N 1 \N 064c474f-a4be-4b91-a546-91729b642063 t +2025-12-17 05:30:01.624536+00 2025-12-17 05:30:01.62454+00 2188 盛达-王亚 \N \N \N \N 1 \N 80c83317-7ce2-4778-9bce-8b86aca7ecaa t +2025-12-17 05:30:01.625338+00 2025-12-17 05:30:01.625342+00 2189 何德志 \N \N \N \N 1 \N 84080c6c-788a-4919-be75-722900216282 t +2025-12-17 05:30:01.626115+00 2025-12-17 05:30:01.626118+00 2190 周刚(周总) \N \N \N \N 1 \N 648091ed-026b-4ed9-a0bd-3301bb98eae3 t +2025-12-17 05:30:01.626898+00 2025-12-17 05:30:01.626902+00 2191 刘臻 \N \N \N \N 1 \N c5cfca96-dc2c-4aea-bdb2-dca17493cf7a t +2025-12-17 05:30:01.62774+00 2025-12-17 05:30:01.627743+00 2192 盛达-熊虎 \N \N \N \N 1 \N e76d7c4d-2455-4579-9d28-3a782163896a t +2025-12-17 05:30:01.628592+00 2025-12-17 05:30:01.628596+00 2193 林创伟 \N \N \N \N 1 \N deefcffa-adfa-4503-a44a-a16c633af314 t +2025-12-17 05:30:01.62942+00 2025-12-17 05:30:01.629424+00 2194 陈伟嘉 \N \N \N \N 1 \N d7792728-8dc6-4fbf-a512-e52ded392106 t +2025-12-17 05:30:01.630231+00 2025-12-17 05:30:01.630235+00 2195 浩达 \N \N \N \N 1 \N c2509c85-0109-4181-b2e0-c2d884f293f0 t +2025-12-17 05:30:01.631046+00 2025-12-17 05:30:01.63105+00 2196 盛达-张栋 \N \N \N \N 1 \N e750df66-7d5b-4aa5-bea1-3ecbdc61eba4 t +2025-12-17 05:30:01.631845+00 2025-12-17 05:30:01.631849+00 2197 锦泰 \N \N \N \N 1 \N a3aab210-b5b6-4a76-82e4-e12ab3a01b33 t +2025-12-17 05:30:01.63302+00 2025-12-17 05:30:01.633023+00 2198 丰华 \N \N \N \N 1 \N 494e265b-c057-481a-a526-04cd0fa97a7a t +2025-12-17 05:30:01.633817+00 2025-12-17 05:30:01.633821+00 2199 何飞 \N \N \N \N 1 \N b059ebbe-5b2b-44a2-a45f-74efd42c8ed0 t +2025-12-17 05:30:01.634597+00 2025-12-17 05:30:01.6346+00 2200 盛丰行 \N \N \N \N 1 \N ad0d5392-cbe2-4db3-aa1c-4397e189f1c6 t +2025-12-17 05:30:01.635388+00 2025-12-17 05:30:01.635392+00 2201 欧总 \N \N \N \N 1 \N 290cdd1d-784e-4c1d-887c-e7e1bd0e7676 t +2025-12-17 05:30:01.636271+00 2025-12-17 05:30:01.636275+00 2202 陈刊(陈畅) \N \N \N \N 1 \N a7852066-7efa-4dee-b0ec-b16ac118df83 t +2025-12-17 05:30:01.637148+00 2025-12-17 05:30:01.637153+00 2203 创时尚 \N \N \N \N 1 \N 818a4cc9-19a0-4126-a12d-a7dc02b76097 t +2025-12-17 05:30:01.637971+00 2025-12-17 05:30:01.637975+00 2204 肖辉 \N \N \N \N 1 \N 7e2863ce-abaa-4f6d-a022-92b38294365e t +2025-12-17 05:30:01.638784+00 2025-12-17 05:30:01.638788+00 2205 杨思 \N \N \N \N 1 \N a644011a-8be1-47dc-8695-f8286801a65b t +2025-12-17 05:30:01.639609+00 2025-12-17 05:30:01.639613+00 2206 DH纺织 \N \N \N \N 1 \N 3f97854d-e81e-4bff-873e-781f82f7ca5d t +2025-12-17 05:30:01.640426+00 2025-12-17 05:30:01.64043+00 2207 张小伟 \N \N \N \N 1 \N 23d2a72b-8909-44fa-b472-aca2b4dd34b7 t +2025-12-17 05:30:01.641231+00 2025-12-17 05:30:01.641234+00 2208 冯总 \N \N \N \N 1 \N f1512ffa-e36e-4de6-ba00-3b28ba11d5f4 t +2025-12-17 05:30:01.642019+00 2025-12-17 05:30:01.642024+00 2209 佐助 \N \N \N \N 1 \N cc8097b9-9e08-4579-99da-0e4f865ed885 t +2025-12-17 05:35:00.226413+00 2025-12-17 05:35:00.226423+00 2210 极润 \N \N \N \N 1 \N 1bba473e-6f5d-4b20-8a12-fec7dd9f2800 t +2025-12-17 05:35:00.228641+00 2025-12-17 05:35:00.228647+00 2211 肖彦桥 \N \N \N \N 1 \N 4da0929b-367a-478a-a5a0-8dfb0879ced6 t +2025-12-17 05:35:00.229714+00 2025-12-17 05:35:00.229719+00 2212 苏大强 \N \N \N \N 1 \N 65c3420b-4538-4f7e-8199-368a1d0c452b t +2025-12-17 05:35:00.230592+00 2025-12-17 05:35:00.230596+00 2213 徐侃 \N \N \N \N 1 \N b30e512a-5af2-4840-bb71-6873f0dd6c72 t +2025-12-17 05:35:00.231429+00 2025-12-17 05:35:00.231433+00 2214 盛达-唐军安 \N \N \N \N 1 \N 00783220-197f-4a56-9b32-a06e201b460c t +2025-12-17 05:35:00.232252+00 2025-12-17 05:35:00.232256+00 2215 文少 \N \N \N \N 1 \N 9bfb5d37-a99c-4ed3-af9d-404d78d6eb87 t +2025-12-17 05:35:00.23309+00 2025-12-17 05:35:00.233093+00 2216 向咏 \N \N \N \N 1 \N cb976279-5404-4a68-b007-da3f00ea63d1 t +2025-12-17 05:35:00.233899+00 2025-12-17 05:35:00.233903+00 2217 盛达-王老板 \N \N \N \N 1 \N fff7480b-b629-42ba-84c1-bf276195abb6 t +2025-12-17 05:35:00.234701+00 2025-12-17 05:35:00.234705+00 2218 嘉兴 \N \N \N \N 1 \N 9febcf01-c67d-47a5-83b6-e79a3ad2de13 t +2025-12-17 05:35:00.2355+00 2025-12-17 05:35:00.235504+00 2219 庄建池 \N \N \N \N 1 \N bcaf7f7a-8417-46af-997c-8e5a341ef142 t +2025-12-17 05:35:00.2363+00 2025-12-17 05:35:00.236304+00 2220 庄氏 \N \N \N \N 1 \N e62e6adb-28f7-4546-a6f2-0769872d10ca t +2025-12-17 05:35:00.237131+00 2025-12-17 05:35:00.237135+00 2221 盛达-何博 \N \N \N \N 1 \N 19ffa93a-8728-481c-8d91-df3732fabdee t +2025-12-17 05:35:00.238097+00 2025-12-17 05:35:00.238101+00 2222 长兴发 \N \N \N \N 1 \N a493eaf0-bcbe-48e1-9529-ebe0f7332d6d t +2025-12-17 05:35:00.239264+00 2025-12-17 05:35:00.239268+00 2223 中臣 \N \N \N \N 1 \N 9c3718cd-c35f-4798-a4b0-d0f0b43cfb58 t +2025-12-17 05:35:00.24014+00 2025-12-17 05:35:00.240144+00 2224 张文超 \N \N \N \N 1 \N 73d26c5d-7e2e-469c-b03d-35d82bbd8391 t +2025-12-17 05:35:00.240972+00 2025-12-17 05:35:00.240976+00 2225 张政 \N \N \N \N 1 \N b96f6e1a-885b-488f-8cf0-19deae870cac t +2025-12-17 05:35:00.241803+00 2025-12-17 05:35:00.241807+00 2226 张俊 \N \N \N \N 1 \N 79d5ba84-8059-40ae-98bd-90e6a05d127e t +2025-12-17 05:35:00.242636+00 2025-12-17 05:35:00.24264+00 2227 张剑 \N \N \N \N 1 \N f5344e00-ae41-4db1-b0d5-6b4667d4b220 t +2025-12-17 05:35:00.243448+00 2025-12-17 05:35:00.243453+00 2228 展旺 \N \N \N \N 1 \N 74839f78-30a7-4654-ab71-008b456c292b t +2025-12-17 05:35:00.244295+00 2025-12-17 05:35:00.244299+00 2229 增兴 \N \N \N \N 1 \N 658979e1-766a-43ca-841f-5216cb461282 t +2025-12-17 05:35:00.245093+00 2025-12-17 05:35:00.245097+00 2230 粤旺-老刘 \N \N \N \N 1 \N 3c28feb3-640b-4588-9fc5-33f089743a37 t +2025-12-17 05:35:00.245917+00 2025-12-17 05:35:00.245921+00 2231 元发 \N \N \N \N 1 \N 580c6b2b-a0d3-42d5-85d9-73494f8037d9 t +2025-12-17 05:35:00.247007+00 2025-12-17 05:35:00.24701+00 2232 永盛 \N \N \N \N 1 \N 193a4c80-b503-4709-83e7-fd619654ca9c t +2025-12-17 05:35:00.248104+00 2025-12-17 05:35:00.248108+00 2233 源泰 \N \N \N \N 1 \N a0cd727b-8569-4462-b18c-2ca8ceb36fd5 t +2025-12-17 05:35:00.249191+00 2025-12-17 05:35:00.249195+00 2234 永达 \N \N \N \N 1 \N d0939f29-e16d-4b63-b8e5-796e0cf870d7 t +2025-12-17 05:35:00.250271+00 2025-12-17 05:35:00.250275+00 2235 别少军 \N \N \N \N 1 \N b8220b96-c46c-4175-8330-4dc90e031ab6 t +2025-12-17 05:35:00.25135+00 2025-12-17 05:35:00.251354+00 2236 伊尚 \N \N \N \N 1 \N 88585a9b-1cdd-4008-81de-c79a86626a7d t +2025-12-17 05:35:00.252423+00 2025-12-17 05:35:00.252426+00 2237 许泽龙 \N \N \N \N 1 \N 38638d04-f7dc-45ad-ab52-79e573fb723e t +2025-12-17 05:35:00.253654+00 2025-12-17 05:35:00.253658+00 2238 杨剑 \N \N \N \N 1 \N 247838db-3940-4646-9854-845326512e05 t +2025-12-17 05:35:00.254821+00 2025-12-17 05:35:00.254825+00 2239 叶玉娣 \N \N \N \N 1 \N b6403d09-02ef-4d7a-baa9-8c4b0dae7f92 t +2025-12-17 05:35:00.255641+00 2025-12-17 05:35:00.255645+00 2240 雄兴 \N \N \N \N 1 \N 226199ff-9f76-43f7-8647-e2452e4cb3f2 t +2025-12-17 05:35:00.256456+00 2025-12-17 05:35:00.25646+00 2241 雄盛 \N \N \N \N 1 \N bb02f3ff-e676-448c-898c-8cde48df35c8 t +2025-12-17 05:35:00.257249+00 2025-12-17 05:35:00.257253+00 2242 兴盛 \N \N \N \N 1 \N 63bfcb02-caa0-4ca9-b2a0-78591dbc2426 t +2025-12-17 05:35:00.258026+00 2025-12-17 05:35:00.25803+00 2243 新狮力 \N \N \N \N 1 \N d66eb498-4efd-496b-9a04-37f46608f417 t +2025-12-17 05:35:00.25883+00 2025-12-17 05:35:00.258834+00 2244 肖文 \N \N \N \N 1 \N c34a8774-9941-4d6b-acc0-91ac34c83d6a t +2025-12-17 05:35:00.25963+00 2025-12-17 05:35:00.259634+00 2245 文阳 \N \N \N \N 1 \N d96f7725-50a8-4452-95da-429aa0373c25 t +2025-12-17 05:35:00.260436+00 2025-12-17 05:35:00.26044+00 2246 文业 \N \N \N \N 1 \N 2f687608-bb82-4afb-bcbe-d6ea23192cfe t +2025-12-17 05:35:00.261489+00 2025-12-17 05:35:00.261493+00 2247 翔发 \N \N \N \N 1 \N 8e3bfe2e-2efb-48d4-99c7-7a03e1ffe2d8 t +2025-12-17 05:35:00.262284+00 2025-12-17 05:35:00.262288+00 2248 伟达 \N \N \N \N 1 \N 079959b3-8930-4b2e-81ee-769c11fe6e92 t +2025-12-17 05:35:00.263185+00 2025-12-17 05:35:00.263189+00 2249 汪老板 \N \N \N \N 1 \N 88d4661e-de87-4040-870b-6152096efd1f t +2025-12-17 05:35:00.263997+00 2025-12-17 05:35:00.264001+00 2250 天泓 \N \N \N \N 1 \N 65832090-03cc-44de-9805-2e6b6be123ad t +2025-12-17 05:35:00.264805+00 2025-12-17 05:35:00.264809+00 2251 糖果 \N \N \N \N 1 \N fb16f0d9-e609-405e-af1c-0f22ca2fa599 t +2025-12-08 15:00:00.721998+00 2025-12-08 15:00:00.722002+00 472 F尹志勇 \N 佛山 \N \N \N 1 \N 07dc7546-47bb-4aab-aa63-b0f98e292f30 t +2025-12-17 05:40:01.20257+00 2025-12-17 05:40:01.202577+00 2252 文虎勇 \N \N \N \N 1 \N e6e0f02b-b4a8-4f49-8ded-32bfd7289333 t +2025-12-17 05:40:01.203979+00 2025-12-17 05:40:01.203983+00 2253 A尹总 \N 白云 \N \N \N 1 \N 1f85fd0a-9d5f-4e99-9fe9-a0e174a1bb33 t +2025-12-17 05:40:01.204852+00 2025-12-17 05:40:01.204856+00 2254 澳雅服饰 \N \N \N \N 1 \N e0642250-b897-4851-b419-fe91d46b4320 t +2025-12-17 05:40:01.205673+00 2025-12-17 05:40:01.205677+00 2255 东润(九洲) \N \N \N \N 1 \N ed8e188b-846d-4d11-9372-c599d63beb3f t +2025-12-17 05:40:01.206481+00 2025-12-17 05:40:01.206484+00 2256 爱菲妮服饰 \N \N \N \N 1 \N 06fe25e1-baf6-4854-ba12-27b489f27a69 t +2025-12-17 05:40:01.207312+00 2025-12-17 05:40:01.207316+00 2257 A多乐 \N 白云 \N \N \N 1 \N ffe17e6e-1b54-46fe-a5fa-303b27ee610e t +2025-12-17 05:40:01.208129+00 2025-12-17 05:40:01.208133+00 2258 泰祥 \N 中大 \N \N \N 1 \N d01b17e5-d0d7-43fc-bea9-33d739745aa1 t +2025-12-17 05:40:01.20896+00 2025-12-17 05:40:01.208964+00 2259 数据迁移测试 别动 \N \N \N \N 1 \N 229a8a71-7fae-45f2-b021-9dbc035f1fc4 t +2025-12-17 05:40:01.209758+00 2025-12-17 05:40:01.209762+00 2260 宏林服饰 \N \N \N \N 1 \N 5cbbd366-029f-4c9f-9ff0-57c8e44cb848 t +2025-12-17 08:26:19.377599+00 2025-12-17 08:26:19.377607+00 2261 鲁小超 周边 1 28 \N f +\. + + +-- +-- 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-15 04:52:15.926668+00 2025-12-15 04:52:15.926674+00 27 王中文 在职 28 1 \N +2025-12-15 04:52:35.006155+00 2025-12-15 04:52:35.006163+00 28 戴佳冕 在职 29 1 \N +2025-12-15 04:52:55.131032+00 2025-12-15 04:52:55.131038+00 29 沈翰宏 在职 30 1 \N +2025-12-15 04:53:25.503624+00 2025-12-15 04:53:25.503629+00 30 谢菁钰 在职 31 1 \N +2025-12-15 04:53:53.985781+00 2025-12-15 04:53:53.985788+00 31 明参 在职 32 1 \N +2025-12-15 04:54:39.392952+00 2025-12-15 04:54:39.392957+00 32 徐煜耀 在职 33 1 \N +2025-12-15 04:55:00.143078+00 2025-12-15 04:55:00.143085+00 33 柯尚雄 在职 34 1 \N +2025-12-15 04:55:13.264594+00 2025-12-15 04:55:13.264603+00 34 赵保棠 在职 35 1 \N +2025-12-15 04:55:28.959097+00 2025-12-15 04:55:28.959104+00 35 任啟洋 在职 36 1 \N +2025-12-15 04:55:42.446167+00 2025-12-15 04:55:42.446174+00 36 周丁国 在职 37 1 \N +2025-12-15 04:56:04.307039+00 2025-12-15 04:56:04.307045+00 37 马锦文 在职 38 1 \N +2025-12-15 04:56:18.900335+00 2025-12-15 04:56:18.90034+00 38 范明星 在职 39 1 \N +2025-12-15 04:56:40.260973+00 2025-12-15 04:56:40.260984+00 39 陈进 在职 40 1 \N +2025-12-15 05:01:14.532407+00 2025-12-15 05:01:14.532415+00 41 杨乐 在职 42 1 \N +2025-12-15 05:05:05.348917+00 2025-12-15 05:05:05.348924+00 42 陈桂花 在职 43 1 \N +2025-12-15 05:05:30.6971+00 2025-12-15 05:05:30.697106+00 43 徐秋云 在职 44 1 \N +2025-12-15 05:05:50.102964+00 2025-12-15 05:05:50.102971+00 44 秦焌 在职 45 1 \N +2025-12-15 05:06:03.815777+00 2025-12-15 05:06:03.815782+00 45 林静 在职 46 1 \N +2025-12-15 05:06:41.005447+00 2025-12-15 05:06:41.005453+00 46 李兴 在职 47 1 \N +2025-12-15 05:06:54.865307+00 2025-12-15 05:06:54.865313+00 47 谢芳盛 在职 48 1 \N +2025-12-15 05:07:10.634945+00 2025-12-15 05:07:10.634952+00 48 夏志明 在职 49 1 \N +2025-12-15 05:07:31.016098+00 2025-12-15 05:07:31.016104+00 49 李名彬 在职 50 1 \N +2025-12-15 05:07:43.578529+00 2025-12-15 05:07:43.578535+00 50 钟永盛 在职 51 1 \N +2025-12-15 05:07:56.772746+00 2025-12-15 05:07:56.772752+00 51 廖智仁 在职 52 1 \N +2025-12-15 05:08:18.746785+00 2025-12-15 05:08:18.74679+00 52 高万林 在职 53 1 \N +2025-12-15 05:09:02.264819+00 2025-12-15 05:09:02.264826+00 54 邓盛峰 在职 55 1 \N +2025-12-15 05:09:26.157933+00 2025-12-15 05:09:26.157938+00 55 熊思晴 在职 56 1 \N +2025-12-15 05:09:36.604131+00 2025-12-15 05:09:36.604141+00 56 夏佳佑 在职 57 1 \N +2025-12-15 05:10:02.710017+00 2025-12-15 05:10:02.710022+00 57 陈达城 在职 58 1 \N +2025-12-15 05:10:43.675554+00 2025-12-15 05:10:43.67556+00 58 雷婷 在职 59 1 \N +2025-12-15 05:10:55.864039+00 2025-12-15 05:10:55.864044+00 59 陈晓惠 在职 60 1 \N +2025-12-15 05:11:06.306236+00 2025-12-15 05:11:06.306243+00 60 徐佩文 在职 61 1 \N +2025-12-15 05:11:22.067004+00 2025-12-15 05:11:22.067008+00 61 吴杰 在职 62 1 \N +2025-12-15 05:11:36.927296+00 2025-12-15 05:11:36.927302+00 62 覃结珍 在职 63 1 \N +2025-12-15 05:53:28.431909+00 2025-12-15 05:53:42.129139+00 64 夏帅 在职 65 1 9 +2025-12-15 05:54:10.709155+00 2025-12-15 05:54:10.70916+00 65 陈海 在职 66 1 \N +2025-12-17 03:03:49.075482+00 2025-12-17 03:03:49.075489+00 66 李露 在职 67 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 +2025-12-15 05:52:50.404432+00 2025-12-15 05:52:50.404441+00 9 设计主管 \N \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-17 06:20:00.358061+00 2025-12-17 06:20:00.358068+00 24193 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0VFwz4AmrBf6euoaGoYk4sjKAbE=", "createTime": "2024-08-15 14:40:25"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NEmLwErFgdzCe7O7U6QzY0vVj5Q=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hKEqWtbqUEu9b4Cj8yqEQPX1chQ=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hDh6cMSM4ctT-y1uuiLWoeNTWWo=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S6osAli5ucjMcRZ3Z-qoE4oWJRk=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yuFXKgXZYqrgwD3rjJtgXf6-zuI=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.410648+00 2025-12-17 05:10:00.410652+00 22826 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B1h8hk9xJeKN30HKoqrwQ_PUzNE=", "createTime": "2024-08-15 14:37:50"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.411685+00 2025-12-17 05:10:00.41169+00 22827 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lvFNFwOLcRfmwGz06W9oPWJEkUE=", "createTime": "2024-08-15 14:37:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.360129+00 2025-12-17 06:20:00.360134+00 24194 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qRhgDZ0rrtgG7evYMSPNP8Dr0dM=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.361433+00 2025-12-17 06:20:00.361438+00 24195 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oy2MjPC63O4WJTq9XExytFOq3zk=", "createTime": "2024-08-15 14:40:25"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ppajlDKiNrUiXtOmmfwYAJoXAA=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gNchMy2pgDSUZawXWZVseh3FOHQ=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.39622+00 2025-12-17 06:20:00.396225+00 24221 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lVKo7ieB7npXIV1_XwaAC5_TvhY=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.363892+00 2025-12-17 06:20:00.363901+00 24196 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9duqjEfQF4137iaqf8GcDLsPe3Y=", "createTime": "2024-08-15 14:40:25"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m8kF_rjRFXN-J3UaxgZWM-pJpw0=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zbsJBOmkgmmUkgBM_w8qSt2BO88=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DekX_wjE0vJC9CXMZP-QXt7LEGE=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.36621+00 2025-12-17 06:20:00.366217+00 24197 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N-wP1O6K4MR2AiNw_W9c0cG0xYc=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.36791+00 2025-12-17 06:20:00.367914+00 24198 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BXa0mrrc46ubNjhKqdl4FqV25fc=", "createTime": "2024-08-15 14:40:25"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dEy9p61H_az97szmZfyuQz4bPaI=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bu1mkttTRA-286UByJVz1o0ZXF8=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.3692+00 2025-12-17 06:20:00.369204+00 24199 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sFcVv1-yRgcN10MZnwQVrSuZgcI=", "createTime": "2024-08-15 14:40:24"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g649E5le1qWzXbpGk8PEA0_UhuY=", "createTime": "2024-08-15 14:37:31"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O8n76gRjdDu1C-lekMuly8UYXXU=", "createTime": "2024-08-15 14:37:32"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.269095+00 2025-12-15 05:00:17.2691+00 22800 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=1766034000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iZW7811pLZmkDdzkQi-HB_fWjDQ=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.370393+00 2025-12-17 06:20:00.370398+00 24200 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Pq1MuooGhnAbhro1TRRmnXCaZc=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.371572+00 2025-12-17 06:20:00.371577+00 24201 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EA5QHspi_g1FFiX4pCtVsyS0GKU=", "createTime": "2024-08-15 14:40:26"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:suGoQgI5SRQBO8o0kBFE1ln2gMw=", "createTime": "2024-08-15 14:37:32"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:negjXL8tisZLD2CitFoVLRHa1wI=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.372744+00 2025-12-17 06:20:00.372748+00 24202 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VXXZ0O01NW4hgCyk99nxOQPvJ8A=", "createTime": "2024-08-15 14:40:26"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qVMs7zahnBlbSxOheWJGaMo9fmc=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ML3qrZk9ykuejzjhuYYovLWdDew=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-pshZNZqoDdFwy_CJgrqOhfD1oQ=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.373993+00 2025-12-17 06:20:00.373998+00 24203 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:78JU6z7VFsyHVwMWZIiqHgzGeRQ=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.375301+00 2025-12-17 06:20:00.375306+00 24204 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dO6lKzxgxojZfI7qsmld87zBFP4=", "createTime": "2024-08-15 14:40:26"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hwojY9YSdh15r5i2H1iTaTpsvT8=", "createTime": "2024-08-15 14:37:33"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xoewnyz1bDxFre9SZC4jwW5lqCM=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ebyxnMI2u6EGpgnK0EnALlCenDA=", "createTime": "2024-08-15 14:37:33"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FVsbpdN6VPcQtmTW4L2nogur3iM=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.263905+00 2025-12-15 05:00:17.26391+00 22796 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=1766034000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YZD60Q2kXSSBDJXjjSHeivW4Vjo=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.266373+00 2025-12-15 05:00:17.266385+00 22798 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=1766034000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Xi9FpxnBbTNotgEXPfg60zYxMk=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.376528+00 2025-12-17 06:20:00.376532+00 24205 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CjH5SrTR3eTz1XwRgETYP3BLx38=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.377869+00 2025-12-17 06:20:00.377874+00 24206 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ilFkJH3bqgNNWiCPuSDsQEIFnHo=", "createTime": "2024-08-15 14:40:26"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qazCOqh2s987hYWH9XD9IG34VBo=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TiK9AOttTngStYIOiw-Q4RlFy_k=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.379235+00 2025-12-17 06:20:00.37924+00 24207 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WzZ3Ext527hnu8STgs5En6XnZFg=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.380517+00 2025-12-17 06:20:00.380521+00 24208 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aC02uhgeCQxAKWH8MH2moglWr0g=", "createTime": "2024-08-15 14:40:26"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6toq4jFFLNgkmStIMUJjkHglKOs=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ezgFfEufY_5AmNRE_XRzrmuSc34=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t4LGbFa6AnkgzEGpZ5ufj8qVavk=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zP4XlVnrmUhDcOita87Up2JMIZM=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TBKGki8T0eV2CwWzl_MeIeZKPpY=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.262763+00 2025-12-15 05:00:17.262769+00 22795 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=1766034000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R5ILV2wUnvuaNnlUTVY2WMna2rA=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.381722+00 2025-12-17 06:20:00.381727+00 24209 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:taAJ1QK5JfISRNeCpNtj0m7VJow=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.382897+00 2025-12-17 06:20:00.382901+00 24210 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B91zsUSS3asJ8vmyeSiJWrgGcM8=", "createTime": "2024-08-15 14:40:26"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BNItLeT3apPs1mTFJOaeZ05bOxc=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pTZA7U4jFA0bluDT4KRY1Xx4VRw=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_oKoxzXpETOTJ_S7WiGgbGjiZVo=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oH0fLnOYo1WfPD8nJzEKFwOAeo8=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.267858+00 2025-12-15 05:00:17.267864+00 22799 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=1766034000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xm1BBDictPRVOeVURqevMr30rm8=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.412813+00 2025-12-17 05:10:00.412818+00 22828 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V36omEgz3r4S4hWAbmHSntSlCVA=", "createTime": "2024-08-15 14:37:51"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iLdVpJ9Y5JR1mbiZ9xnC6Du59Zg=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i94dI3Utcgk54BOnCSV3a2_YAfA=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zezRqw6dBM5uIdB8AeP211SLOMw=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DEMm1zea0BJId8jEQ7jgYgtYPCM=", "createTime": "2024-08-15 14:37:35"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4RydQg5MWxGdvfladPGSz-3gMUk=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-mSZth7KAOfLcYK0yickNnkRbbM=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AGFjmHjq5Hz2ZhaMK5-Pd_hFYmE=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QnMzOO6tQwkw9ZFaSAMW_6vu5uo=", "createTime": "2024-08-15 14:37:36"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_nzv0BsGanUJ4LnYnsAMNwzh7W4=", "createTime": "2024-08-15 14:37:29"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:36w3nAhe2oH_clT45ltg8IK_m5Q=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EjB907ssD5_U2nSVig5IyGn70lo=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gi0JRUCIBwrHlFMOVSY_USaLUGM=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.384073+00 2025-12-17 06:20:00.384077+00 24211 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3N2WM1te4sQveObtjnKfaY0NMN0=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.385256+00 2025-12-17 06:20:00.38526+00 24212 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iZU68QJb9wJNzg5DruttsFzbUcU=", "createTime": "2024-08-15 14:40:27"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gBjhkeIN5bpPuH4ZvUqR73-TLOY=", "createTime": "2024-08-15 14:37:29"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U3wHtnk7swr3Q6-UF7NO6alakK0=", "createTime": "2024-08-15 14:37:37"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GkLRuejt3LGr3ZpsmmUFUAPY5iQ=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_azLAJJPMlwlo6It9Fr5RgsgzM0=", "createTime": "2024-08-15 14:37:29"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S8IDHSYsF6uUe2u062TTt_NdU8A=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VhLt9m2EvsQGXBPmSBEX9fRHkl0=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aH2WLoJreRBagivHLfkT-dUGasU=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ANvRCiuLNBwNQcJk0RIqv5niOh0=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LbKbhJRTliwlAYT3M_lAzWumBEM=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VDCtYjhnUUiZUJ0wydzPYHurTd8=", "createTime": "2024-08-15 14:37:30"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XDf1hePazM-EfFYuzMSDhSuKMow=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bAuf-ZOUFQEOBU-u_XTR_mNr9r4=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y99sU_akIUl_0C74yvKUMNCt-7g=", "createTime": "2024-08-15 14:37:31"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6x7AqXuiLXlyNU7-blcX9fY0y4k=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PwxiWJgXiXgjfhim53JdZ9PpcSU=", "createTime": "2024-08-15 14:37:32"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jG_s15YRy0QBUzvCdPUAFbZjvLk=", "createTime": "2024-08-15 14:37:32"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P3JT5CdwBmiV-NQtyhVMUGzCUMM=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tYSIHA-qrVVFioPjR9dNSvETIfQ=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jgsVbqeW9Nm2iAiCCCiHyS25kjM=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kJyrpsYXECSYmR9g0QMmgcOChPM=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VB6C6vTwg0SxZpc4OjK-Y7VwSh0=", "createTime": "2024-11-21 13:37:04"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OdqcUvFhi8K64o2XDwbSC5IYoC4=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7tf0AHnlime9mr-M1OgkTIResU4=", "createTime": "2024-08-15 14:37:34"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_MO7wKUnKC7_1xa2uzXa6u9wC_s=", "createTime": "2024-11-21 13:37:04"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SfQsyXqDC188xeSfCE7tKcWMITA=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P1X9VE5EZjE1wFr4-vkj1SPGBoI=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n0ZxBOCfAmm0UXtSoyhhizadefI=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SNwyNB9D6oZlQvGkPMQRZk0nMJA=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MDm4vaO8KeM7GQpMEe4nmDIcr2w=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yd_mRL41Rr0_lr1ZLhgUOTaJOxM=", "createTime": "2024-08-15 14:37:36"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.66662+00 2025-12-15 05:00:16.666626+00 22683 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lwkj5NsOW2DxeXCMTtVanpQAFeA=", "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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:arwBF6wIdLgf3-ulxQWqj-Kp47U=", "createTime": "2024-11-21 13:37:06"}] \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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6fR8zCM2JmQuNEoNF7EXyNZZNos=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.659875+00 2025-12-15 05:00:16.659902+00 22681 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0RE2J1NiEZR9M3DNREyxqZYWNds=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.665326+00 2025-12-15 05:00:16.665334+00 22682 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5qRenbJnwOyETPTDlNlqUCbMJBY=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.667909+00 2025-12-15 05:00:16.667914+00 22684 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JUS9oLc6-aHjBD5WNjUhLm8eJbg=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.669655+00 2025-12-15 05:00:16.669665+00 22685 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rf62jkoe-xNRYzSA2vcH21401Ps=", "createTime": "2024-08-15 14:37:38"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.671562+00 2025-12-15 05:00:16.671571+00 22686 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-rGPJqcpGhZwLyDn9CCRrbh4n7g=", "createTime": "2024-08-15 14:37:38"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.673433+00 2025-12-15 05:00:16.673442+00 22687 -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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQiNZZo1TLIEFZX03sDx9N2NQgw=", "createTime": "2024-11-21 13:37:06"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.675613+00 2025-12-15 05:00:16.675626+00 22688 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CKXRuexesyqw_cTThHljz7vSJyw=", "createTime": "2024-08-15 14:37:38"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.677577+00 2025-12-15 05:00:16.677586+00 22689 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4TcEKivGVtwPoEHa3zhDc5AgU54=", "createTime": "2024-08-15 14:37:38"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.679091+00 2025-12-15 05:00:16.6791+00 22690 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m5rMnfhPeE0kzDMpP9Tl8vR3KCg=", "createTime": "2024-08-15 14:37:38"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.680943+00 2025-12-15 05:00:16.680952+00 22691 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:40MMhGPo1si1i9Uj6PWP1iXk9JQ=", "createTime": "2024-08-15 14:37:38"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.682699+00 2025-12-15 05:00:16.682707+00 22692 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B-a4EgR7BARECS1gntP5iXC8zyI=", "createTime": "2024-08-15 14:37:38"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.68451+00 2025-12-15 05:00:16.684518+00 22693 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9UQVJ2fw3bc7R9GMOE4veYCqbMA=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.685961+00 2025-12-15 05:00:16.685967+00 22694 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DlmpUNO2QTvqhEfo3uLYL_bPflc=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.687188+00 2025-12-15 05:00:16.687193+00 22695 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JxOboNxmG0vVaHPtudB5kaCsU68=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.688358+00 2025-12-15 05:00:16.688364+00 22696 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pL0kZgbPvXVlaLQR-nxoNDj9wMQ=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.68952+00 2025-12-15 05:00:16.689525+00 22697 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7_882G_qX_7K-We2qW5PDcnyhRc=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.690663+00 2025-12-15 05:00:16.690668+00 22698 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TUKI6ihaekcWuOdpGGlzWhZHyhU=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.692008+00 2025-12-15 05:00:16.692013+00 22699 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8VzM7a4ch9pxxrCxEgTPdk24AJU=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:16.693372+00 2025-12-15 05:00:16.693379+00 22700 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=1765861207&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YoHotLOtnF2f8l4hU8vCfZhplG8=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.116833+00 2025-12-15 05:00:17.116845+00 22701 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qNDjwDVG7Ko9BTId98E-7excD04=", "createTime": "2024-08-15 14:37:41"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.119142+00 2025-12-15 05:00:17.11915+00 22702 -一段两件-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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gax9cY9OgzwMRV_EwtYooGaD4G8=", "createTime": "2024-11-21 13:37:06"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.121148+00 2025-12-15 05:00:17.121155+00 22703 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:49a0pW90YBiYkacQkbzf7a_7E2U=", "createTime": "2024-08-15 14:37:41"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.123125+00 2025-12-15 05:00:17.123132+00 22704 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:POWfvRKxnQchNdruPcmxNCUuq4A=", "createTime": "2024-08-15 14:37:41"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.125008+00 2025-12-15 05:00:17.125015+00 22705 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xT6nCnFj4NRQ_JWww3FfMq1F64M=", "createTime": "2024-08-15 14:37:41"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.126901+00 2025-12-15 05:00:17.126908+00 22706 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R7p3DCHtFxcSVw5knIuOKxt6bJI=", "createTime": "2024-08-15 14:37:41"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.129076+00 2025-12-15 05:00:17.129083+00 22707 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9DluEP_cKo7xFf57pB0cGta_lbI=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.131016+00 2025-12-15 05:00:17.131024+00 22708 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SpO_cd3js7XUQKk4S9XoWrPxYvc=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.13289+00 2025-12-15 05:00:17.132897+00 22709 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MgREb5-PDXfx3TpoSuJlXLua-h0=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.134453+00 2025-12-15 05:00:17.134459+00 22710 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ID3VkaCFMScUS720ro6zbey4cMg=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.135578+00 2025-12-15 05:00:17.135582+00 22711 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7wQonz1wcqXWurtczOB3gUfk23Q=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.136696+00 2025-12-15 05:00:17.1367+00 22712 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yata-JeqFq9ZHw7f7bSeCDCGKEk=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.138239+00 2025-12-15 05:00:17.138248+00 22713 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AHY3-mwUnX6iq-CRI0l8HuE_aYI=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.139886+00 2025-12-15 05:00:17.139894+00 22714 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eaRsex7RBl-Yk_IYLfTCej6_FaA=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.141389+00 2025-12-15 05:00:17.141396+00 22715 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I1cWgZkMCpOkifNzqhv6lKl7Vcg=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.143142+00 2025-12-15 05:00:17.143151+00 22716 -菱形麻-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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F2Ivn9yt6qzUSlDk75Oib_dzNX4=", "createTime": "2024-11-21 13:37:07"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.144812+00 2025-12-15 05:00:17.144819+00 22717 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gmrZ99GyWm-XIuuoQC-wPVVievk=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.146099+00 2025-12-15 05:00:17.146104+00 22718 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ej42dJce0LObQwCLbzDRXeDAISU=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.147304+00 2025-12-15 05:00:17.147309+00 22719 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I3D7g8QNDtMbcez67LDxe0bfDOY=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.148768+00 2025-12-15 05:00:17.148776+00 22720 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xePBDWix2e3bJ75EJgUqQgdET7A=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.150462+00 2025-12-15 05:00:17.15047+00 22721 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5FVU8qalWxATkgPTITvli37tPJo=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.152157+00 2025-12-15 05:00:17.152164+00 22722 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GwDakQHpPMYkrKdRABPXMAdEJa8=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.153899+00 2025-12-15 05:00:17.153908+00 22723 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8rPMNtQ1ZEyioRbw8bAeqnbno5o=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.155818+00 2025-12-15 05:00:17.155828+00 22724 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zL9UeBZgPntwxtoXLQ6EJWM5Y9o=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.15754+00 2025-12-15 05:00:17.157546+00 22725 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bY7jC50w5IqffCFl3ESIaNeUekc=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.158665+00 2025-12-15 05:00:17.158669+00 22726 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-YjgwvnMUlUANtiregPOQih7F60=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.159997+00 2025-12-15 05:00:17.160005+00 22727 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TqQxirblM1niv7gy8tREN206omc=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.161794+00 2025-12-15 05:00:17.161804+00 22728 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c9ybNnzjnJLTKoc82LRXl-ANsyM=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.163789+00 2025-12-15 05:00:17.163798+00 22729 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YUsmy32ncoONxLwKX-VG4_wDQew=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.165925+00 2025-12-15 05:00:17.165934+00 22730 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nWhfOn4U3EFNPo98wzwI2n-nfRM=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.167876+00 2025-12-15 05:00:17.167883+00 22731 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VVfl97b8D36kPxtdYTMMVUSURBs=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.183967+00 2025-12-15 05:00:17.183974+00 22740 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MTcoQdxIuUfYPLlyxoew35fmJco=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.169895+00 2025-12-15 05:00:17.169904+00 22732 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TXwtKPpQD4KH923T7qEsjqLIi6E=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.171575+00 2025-12-15 05:00:17.171583+00 22733 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mWiJ6dCDVeGu8k0KZoykiP1v8Io=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.173284+00 2025-12-15 05:00:17.173292+00 22734 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yd0j0kutbRH-LY6kex5-HTmohk4=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.174895+00 2025-12-15 05:00:17.174902+00 22735 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bbGJ4xUAS7LlXuQl3Xq3iSk-eic=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.176578+00 2025-12-15 05:00:17.176585+00 22736 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qxtNm4aBVg57BdqQAifvHFHr_Wc=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.178196+00 2025-12-15 05:00:17.178203+00 22737 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QFaIvKw4YuRl4Q_7KeapITSz2As=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.179908+00 2025-12-15 05:00:17.179917+00 22738 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lcub7fR_qyIv_izuh6IuNbVSWyE=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.181923+00 2025-12-15 05:00:17.181933+00 22739 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:knSeUf5ysJYYP_bc63ToNWRB83A=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.185985+00 2025-12-15 05:00:17.185994+00 22741 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CH9sTMSBOMzHaCOgZl1pZi5kA0k=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.187908+00 2025-12-15 05:00:17.187916+00 22742 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6A7b1WjswUh9-z8JMMUOe770RPI=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.189496+00 2025-12-15 05:00:17.189501+00 22743 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uS3B_dwiv-geF7E02Y69VtAj-h8=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.19069+00 2025-12-15 05:00:17.190694+00 22744 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m_gM1yYjeX4QIsu3RZgsfeqKlco=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.191871+00 2025-12-15 05:00:17.191875+00 22745 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C9_Fmx8qJN3AqbDgBIlamHUJPXE=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.193021+00 2025-12-15 05:00:17.193025+00 22746 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d2XUu3fOZO5wN5X3pKbuHvHis1g=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.194107+00 2025-12-15 05:00:17.194112+00 22747 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4YH-E5jveumgVM_hRDUvGuK3fGw=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.19516+00 2025-12-15 05:00:17.195164+00 22748 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Uf3NtRz2yxYcYlzD94aHWKCZdY=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.196632+00 2025-12-15 05:00:17.196637+00 22749 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U3pEex5mlCj0yf1NVY1-zjWqTBM=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.197807+00 2025-12-15 05:00:17.197812+00 22750 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_oVpaG81rtYpqz-7mFa3Rf_U_NA=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.198963+00 2025-12-15 05:00:17.198967+00 22751 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rK54QqS28fzzWjidFVtK3riN5I4=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.200609+00 2025-12-15 05:00:17.200618+00 22752 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yr3LZQZNJHKcdJe939fEA7IcffI=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.209842+00 2025-12-15 05:00:17.20985+00 22757 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YZc81Vo9eJoTjiQ4sNKz3mBcDos=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.202482+00 2025-12-15 05:00:17.202491+00 22753 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G2Ei2Tw7yg3emxVBhCzhAOljZBA=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.204289+00 2025-12-15 05:00:17.204298+00 22754 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oVNoW9sr389TAnyV0XzxPcIQa2U=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.206004+00 2025-12-15 05:00:17.206012+00 22755 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zW4wQkBI00taq90JN4ZVU90e8Ug=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.208214+00 2025-12-15 05:00:17.208222+00 22756 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Qo9L3gSETrgUSxoCgXefU47k-8=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.211443+00 2025-12-15 05:00:17.21145+00 22758 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kfkMT8Oq777ec6GQFvja6fOCQNo=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.21321+00 2025-12-15 05:00:17.213219+00 22759 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q9NRQjLH2D6RBgu9zIS1Oeiol70=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.214997+00 2025-12-15 05:00:17.215005+00 22760 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lO0XI-lgYxSXilci6QQjnM0hJxw=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.216616+00 2025-12-15 05:00:17.216623+00 22761 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zRBf4MUIR6QLxf8vgsM_rmvxpUQ=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.218299+00 2025-12-15 05:00:17.218307+00 22762 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1xZ1E5jK8P6hYqJK7jYaYQbhzrQ=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.220159+00 2025-12-15 05:00:17.220169+00 22763 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:59zjJl57xz46JhGFEaKxP0h7fSw=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.222403+00 2025-12-15 05:00:17.222411+00 22764 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7VaB3j78cLw7QoD2vnopG-Vkeyo=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.224161+00 2025-12-15 05:00:17.224168+00 22765 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UcN6v4i9PbNe90-6nftjVBeK7mE=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.225747+00 2025-12-15 05:00:17.225754+00 22766 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zmr28wQI0Me4tFETa6a5dIrX-4M=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.227779+00 2025-12-15 05:00:17.227787+00 22767 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LqG2luWrt6SsClwSfUG1Ri07PLk=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.229374+00 2025-12-15 05:00:17.22938+00 22768 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JfXEA6XpxEvRkZOExpjCz1PruPY=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.230599+00 2025-12-15 05:00:17.230603+00 22769 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AiYOynfPq5hNQEXmH1Xtm1lXz0g=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.231866+00 2025-12-15 05:00:17.231871+00 22770 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R68Cd80k8-NQCMEZ5783sX4NDos=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.232977+00 2025-12-15 05:00:17.232981+00 22771 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P2yXPwy3NgTqs3mb6sy3Y9OZkdk=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.234067+00 2025-12-15 05:00:17.234071+00 22772 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:niP79d_xy5PzrYgb8PJE7A8nYfA=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.235739+00 2025-12-15 05:00:17.235744+00 22773 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g2TR5EJfG1nMypWYEnnSwJmbKCI=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.237164+00 2025-12-15 05:00:17.237168+00 22774 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ejuZZSA37ENiwTkrQA4wUN9NpoE=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.238461+00 2025-12-15 05:00:17.238465+00 22775 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Lf5pASKyI3pPx8GyCRsDLowGE0=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.239551+00 2025-12-15 05:00:17.239555+00 22776 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5n1VpFDNwG01PNmTc4xCOf3wkVo=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.240654+00 2025-12-15 05:00:17.240659+00 22777 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yum3KEt4QEoay4pHSqUqrtBcHV8=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.241701+00 2025-12-15 05:00:17.241706+00 22778 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sTPVdJU7G22gAEkCsI80ubqnK28=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.24278+00 2025-12-15 05:00:17.242784+00 22779 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3zU68NJZYRMlRg21LIsy4piLA8A=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.255086+00 2025-12-15 05:00:17.255091+00 22789 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vw4CFL9eiZEDWJPSDRLos3JDo-k=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.243914+00 2025-12-15 05:00:17.243919+00 22780 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:20zr4pjyzCFQXziqGzpZZ23Z9r8=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.24537+00 2025-12-15 05:00:17.245375+00 22781 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nV4_8gVG86rR61hj8XjoyFT9hzE=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.246589+00 2025-12-15 05:00:17.246594+00 22782 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WMQ_nGFnJNN65Yjit9qDd6NFW8Q=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.247791+00 2025-12-15 05:00:17.247796+00 22783 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eDhGSzulx5EF5uqtf5dL1ro0RQ0=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.24914+00 2025-12-15 05:00:17.249144+00 22784 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NibwJApx84F-uKEAaXp_gQ6UtAI=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.250247+00 2025-12-15 05:00:17.250252+00 22785 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u4p_BjhNGELtmakFJI46VYBlPew=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.251349+00 2025-12-15 05:00:17.251354+00 22786 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oPDWw-FsSEv3x8SRe9h9RNb8fV8=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.252624+00 2025-12-15 05:00:17.252629+00 22787 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cp7Y_j-LIDPlduQZcTjl-_Emq0g=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.253753+00 2025-12-15 05:00:17.253758+00 22788 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_hxevSJ4bhv06E5y3fI8NUxilgY=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.256169+00 2025-12-15 05:00:17.256173+00 22790 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Am0sLhm33jxD_NxWlqgKcl87Zsg=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.25738+00 2025-12-15 05:00:17.257386+00 22791 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Is6gprprJHoMOXegApviFcFMHMM=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.258719+00 2025-12-15 05:00:17.258726+00 22792 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ytN6URKH79XHqMVn34xSmaSs4ow=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.260077+00 2025-12-15 05:00:17.260082+00 22793 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yDJmBnjDHhrdA3qU8tyH48XWukA=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.261473+00 2025-12-15 05:00:17.261479+00 22794 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=1765861208&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Nre2yEMFyRbJaC516OZlVbq2Mc=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.375026+00 2025-12-17 05:10:00.375037+00 22801 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wTgvYaYsfJ8NZ-8CwcSnTuSHn3Q=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.3776+00 2025-12-17 05:10:00.377608+00 22802 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B-NhInhXTc6bb0XBQFJrOaE2AQ4=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.379514+00 2025-12-17 05:10:00.379521+00 22803 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jcG2Jf2PWHAiYHnfmV3_7eKcd9M=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.381376+00 2025-12-17 05:10:00.381382+00 22804 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RuECSELYo9Twdj9_PM_CSNYEYyE=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.383024+00 2025-12-17 05:10:00.383031+00 22805 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gIsfVTznEY5g2S-7coWkk0K4edE=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.384635+00 2025-12-17 05:10:00.384641+00 22806 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TJq-_zbFM-rNsNcc0kohKPk43Rk=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.38651+00 2025-12-17 05:10:00.386516+00 22807 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nOjYBb425qB7cn3X6MLiO11DUF8=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.388097+00 2025-12-17 05:10:00.388103+00 22808 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AMLClhUVHafOs2cdtTAPgCm2IR0=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.39012+00 2025-12-17 05:10:00.390126+00 22809 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d11P6s3hdwZnjQm6R1wRVM1QuEs=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.391701+00 2025-12-17 05:10:00.391707+00 22810 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1lSl13BvvQzMsnMP7dZe-sM4Jmk=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.393459+00 2025-12-17 05:10:00.393466+00 22811 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DKJRWyKnogzB-H9WTzey6CQ7QwI=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.395029+00 2025-12-17 05:10:00.395035+00 22812 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CaQ8zr8Os81ZKDGM_CW1zgTUraE=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.396538+00 2025-12-17 05:10:00.396544+00 22813 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qVPsIcaMkMZLBSERQpJDMxebAK8=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.39806+00 2025-12-17 05:10:00.398066+00 22814 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x3wOilXJ8qshYhMvX5x3g8m1h8Q=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.39921+00 2025-12-17 05:10:00.399214+00 22815 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1BZ0H1fAJF5LVv3dtEckCrl2ACQ=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.400244+00 2025-12-17 05:10:00.400249+00 22816 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jvglBPR6I4FCAs5ZoTdzTEl7aas=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.401278+00 2025-12-17 05:10:00.401283+00 22817 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MDRdorgEAV6PkEikRXX9OwFywAw=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.402405+00 2025-12-17 05:10:00.402409+00 22818 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BglSO4yqPO7C_3NHt5A5VLJf26g=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.40345+00 2025-12-17 05:10:00.403455+00 22819 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AXHtL3dQvYewgWC7LhzfYF-Ceng=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.40447+00 2025-12-17 05:10:00.404474+00 22820 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sRSy1XCBPYW2aIS-31svWD7ybHU=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.40549+00 2025-12-17 05:10:00.405494+00 22821 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VnHjHcpTyCX_VwaAgx7yFDwGV0k=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.406497+00 2025-12-17 05:10:00.406501+00 22822 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NplhO1I-hHC8G0csNYelN1C0sgo=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.407527+00 2025-12-17 05:10:00.407532+00 22823 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EYoYXFKciv5c8r-ESlsY-bJVYhU=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.38661+00 2025-12-17 06:20:00.386614+00 24213 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MTBDEE1PLBpjOrSOgR9wKyn5ip4=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N +2025-12-15 05:00:17.265037+00 2025-12-15 05:00:17.265042+00 22797 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=1766034000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DKX6Hmonbjhtws8OtARKjP60LDE=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.40855+00 2025-12-17 05:10:00.408554+00 22824 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iCPdJpGGi5HLJ5QYY6EycqxQurk=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.409624+00 2025-12-17 05:10:00.409628+00 22825 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3jkydYMBRe9SfGH5ENjCSzS5O3I=", "createTime": "2024-08-15 14:37:50"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.413869+00 2025-12-17 05:10:00.413874+00 22829 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iA5yETa7y6KUWURCy8bImwokJg8=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.414913+00 2025-12-17 05:10:00.414918+00 22830 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6rSM12XINLqIWcIpdIMDmPemxBM=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.415974+00 2025-12-17 05:10:00.415979+00 22831 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J3GsX9U7fQg5c77C1ZT0IXEHK4c=", "createTime": "2024-08-15 14:37:50"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.417065+00 2025-12-17 05:10:00.41707+00 22832 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DL0PPbtZHFsfF-4x_oIDV09cnaQ=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.418455+00 2025-12-17 05:10:00.41846+00 22833 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_7udxTbswFixEVKB4T_MmNt02Ak=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.41948+00 2025-12-17 05:10:00.419485+00 22834 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SOTQVaknNfRxOUsnJZg6zZeZWtU=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.420541+00 2025-12-17 05:10:00.420545+00 22835 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d2c226xuZweVxgkXi0nTMbYgOtU=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.421542+00 2025-12-17 05:10:00.421546+00 22836 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zz8pNYYFxqqG3UXBGbJY6wK33Pw=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.422558+00 2025-12-17 05:10:00.422562+00 22837 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BFxYPLZkocesSOWvxtR98fa6Ivo=", "createTime": "2024-08-15 14:37:50"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.423604+00 2025-12-17 05:10:00.423608+00 22838 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E7Zf66sEcjxO3xP8JAhiVP9U2OU=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.424643+00 2025-12-17 05:10:00.424647+00 22839 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tCICp-RzK1UrKzxMwJ4DD5dy3pc=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.42566+00 2025-12-17 05:10:00.425664+00 22840 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e0u9m8GKdUk-H3mLG5O03-zGzB0=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.426657+00 2025-12-17 05:10:00.426661+00 22841 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:70sSaRen_xYdiVSRp9ly4yC2vAA=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.432163+00 2025-12-17 05:10:00.432167+00 22846 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xLtRgoK_rXosQ7ZcG1Z6geOuKr0=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.427684+00 2025-12-17 05:10:00.427688+00 22842 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pfb5iWZoIAg4fsWfgw1EtiMfOnw=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.428804+00 2025-12-17 05:10:00.42881+00 22843 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:phKoaCrm3RBD69_8e-MVYEYp04Q=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.429966+00 2025-12-17 05:10:00.429971+00 22844 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6D71fblzrpUexyJ8kpSb6ts5pws=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.431034+00 2025-12-17 05:10:00.431038+00 22845 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lNKTYMG92zOrrm0PkOJC-JNOJOM=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.433194+00 2025-12-17 05:10:00.433198+00 22847 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KDLKYGx-6Y1a45SNLFHr8FS_JbQ=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.434229+00 2025-12-17 05:10:00.434234+00 22848 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mdQNicKHKcF5kZ7VEaqZqm__fK0=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.435246+00 2025-12-17 05:10:00.43525+00 22849 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7g__dmoIk-imwbwgdJ_LG1Ae7nY=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.436254+00 2025-12-17 05:10:00.436259+00 22850 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JtZTvHDAI7S0BMm6i0RKegHFB7k=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.437277+00 2025-12-17 05:10:00.437281+00 22851 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k52hg-piqCB0qLMSO-d5FgOTvdw=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.438279+00 2025-12-17 05:10:00.438283+00 22852 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Iej52npgGwgX3sWeK21vOt3hVU=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.439308+00 2025-12-17 05:10:00.439312+00 22853 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iXP_TJBOPA6-JZGvlsGp0bRgym8=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.440321+00 2025-12-17 05:10:00.440325+00 22854 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1YfF5_F4dI79BVMY6nvO6Rfi-ts=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.441343+00 2025-12-17 05:10:00.441347+00 22855 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3nCIDyukVCGiR7sMFuRxGlOGBKI=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.442355+00 2025-12-17 05:10:00.442359+00 22856 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4WZnlkp4oHaVV4jy_ZIGXB9wU2s=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.443378+00 2025-12-17 05:10:00.443382+00 22857 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vEY6fichGPl0lIx3N_Inj0myuL8=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.444384+00 2025-12-17 05:10:00.444388+00 22858 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:577NZ1nN9bwMBi4nDAFXd5MLUc0=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.445405+00 2025-12-17 05:10:00.445409+00 22859 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i-3grgDGiemS-ErCmUL-n8spbDA=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.446423+00 2025-12-17 05:10:00.446428+00 22860 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lhd-YIbzLVnbbvbUp6soEUnFWQM=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.447503+00 2025-12-17 05:10:00.447507+00 22861 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zphm-ZUhzsjT_-df8pWzVs5EsCI=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.448627+00 2025-12-17 05:10:00.448631+00 22862 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g6Mr3EYQqw7yYfIhMzTiJAsXZus=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.449659+00 2025-12-17 05:10:00.449663+00 22863 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b5MHxOJps9WxfZyNuhzAFhNmewk=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.454891+00 2025-12-17 05:10:00.454896+00 22868 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1eBDGikzQKICkQ0b2wlputk99ns=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.4507+00 2025-12-17 05:10:00.450704+00 22864 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gJprMk9dkQi3-YS9zCOxGldwjME=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.451741+00 2025-12-17 05:10:00.451745+00 22865 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Csi16soAK0O251LQeuTktFNCp8o=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.452791+00 2025-12-17 05:10:00.452795+00 22866 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jthwk8JlexdHPtXhUeliO_6I0Xc=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.453843+00 2025-12-17 05:10:00.453847+00 22867 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QvJsyK1vz9gdz37Xbq3QiiqKF_0=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.455916+00 2025-12-17 05:10:00.45592+00 22869 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oRl-xOuL0fld3MDT3E5UOdni2-w=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.456937+00 2025-12-17 05:10:00.456941+00 22870 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cV72YZqtyQ2iUIkShYpbB3KYqvU=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.457945+00 2025-12-17 05:10:00.457949+00 22871 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T-Gqk1aw8a6vv82UOWEUEPGYEmE=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.458959+00 2025-12-17 05:10:00.458963+00 22872 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xTRcA15yHNpkiIvLE1Zj6xp1HSo=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.459979+00 2025-12-17 05:10:00.459983+00 22873 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VVCYlT12y7vBfW5upazuxSgis8Y=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.460972+00 2025-12-17 05:10:00.460976+00 22874 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BY54NCsaxWOVlFrypz3-g-uXuxE=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.461995+00 2025-12-17 05:10:00.462+00 22875 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hCNWh978R78ALwBo-xZra_mB8J0=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.463008+00 2025-12-17 05:10:00.463013+00 22876 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T7O4k1tO61V6YMMvfc51Npw4D_E=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.464033+00 2025-12-17 05:10:00.464038+00 22877 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OkSKQTW-aovvuP2HtWud5a3u4O0=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.46505+00 2025-12-17 05:10:00.465054+00 22878 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iDqrY-iuWlYFDrz3EeotCVB225k=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.466058+00 2025-12-17 05:10:00.466062+00 22879 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vzXceanwgYnyyoIe_ca6vz5wh9g=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.467102+00 2025-12-17 05:10:00.467106+00 22880 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YizE4cCnzpAW9SLpAsFqDhySHO8=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.468106+00 2025-12-17 05:10:00.46811+00 22881 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4OnpQwBprlzxF4e4MP0e_Hk_mvY=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.469414+00 2025-12-17 05:10:00.469418+00 22882 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nAJy6aMxJsniqhjhaMZhR9cc1MA=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.470761+00 2025-12-17 05:10:00.470766+00 22883 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xL58QcC1WM4-w3-TVng55nDotbA=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.472058+00 2025-12-17 05:10:00.472062+00 22884 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ZtUkbNMwgOw9Nq9bDXLcu3BpWg=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.473357+00 2025-12-17 05:10:00.473361+00 22885 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cYeEHJiyB5pGyZmGhe_x39ncAas=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.474641+00 2025-12-17 05:10:00.474646+00 22886 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uSHZVtWrZKhIkX3yfujy-TaEX4o=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.475945+00 2025-12-17 05:10:00.475949+00 22887 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yScMkYM4Y4uy-GVHCWVJiBP0yCg=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.477249+00 2025-12-17 05:10:00.477253+00 22888 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xco_ehEn9rUF4vfeNGsrTKyrjLs=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.478529+00 2025-12-17 05:10:00.478533+00 22889 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5W74AB3Cvoi4BpqCfGxoS1NfKoM=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.479534+00 2025-12-17 05:10:00.479538+00 22890 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hmkiUs8bceXpXHjihw5uqlRMajo=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.480547+00 2025-12-17 05:10:00.48055+00 22891 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48rRV3L5DjEgP3VhYYDnFEKU4as=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.481598+00 2025-12-17 05:10:00.481602+00 22892 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nb31K7-3P0oBedYKRTLdAzEA1_Y=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.482613+00 2025-12-17 05:10:00.482618+00 22893 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FgFg0OvrMsgC1F1KfZdTM-eMigI=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.483614+00 2025-12-17 05:10:00.483618+00 22894 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qjklsvxcGsj9OzyFYsGOE21NOfk=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.484632+00 2025-12-17 05:10:00.484636+00 22895 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mqvQ4HQn-7pv9Er-qT8xql_rdhY=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.485643+00 2025-12-17 05:10:00.485647+00 22896 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VMxmH_KVU51w2NVA_huid0yoGOE=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.486676+00 2025-12-17 05:10:00.48668+00 22897 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QpuSVGmOopptVORQy_6Jlg1PW08=", "createTime": "2024-08-15 14:37:56"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.487713+00 2025-12-17 05:10:00.487717+00 22898 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hvx12Zi_bgQmWeQcRgpZobcJSRE=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.488835+00 2025-12-17 05:10:00.48884+00 22899 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=1766034599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vMMDG_j62ssDzHMmJ25XyGskBng=", "createTime": "2024-08-15 14:37:56"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.847414+00 2025-12-17 05:10:00.847426+00 22900 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gLOhe2PDLqVvpaBsf25zoPCLapw=", "createTime": "2024-08-15 14:37:56"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.849208+00 2025-12-17 05:10:00.849215+00 22901 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jy40rtp4dUOVJD6UN18f45AMAR8=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.850399+00 2025-12-17 05:10:00.850404+00 22902 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:irV9K9GPELh676IIDMOYYzatilU=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.851538+00 2025-12-17 05:10:00.851543+00 22903 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wMeylVmg8xSJAnZBTdkjwecxoHM=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.852638+00 2025-12-17 05:10:00.852642+00 22904 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3VyRz6DiclV0ElmdhbbWHu_3A1o=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.854105+00 2025-12-17 05:10:00.854109+00 22905 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ko73vRqRc2gE4vBASKRgG7x1TwE=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.855183+00 2025-12-17 05:10:00.855187+00 22906 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EyG-t-dn4IgsVtURPwRf8z9Qlr4=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.856223+00 2025-12-17 05:10:00.856228+00 22907 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eg4crPuLoPbGTIj6hcu122ucUYE=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.857248+00 2025-12-17 05:10:00.857253+00 22908 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JZOF9PXS5LqOXPru1pBtUVfvCmg=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.858286+00 2025-12-17 05:10:00.858291+00 22909 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:43DgHGOWpwEbGeVST2baPMV8Pu0=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.859436+00 2025-12-17 05:10:00.859441+00 22910 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HVfhM0LBLMv0m6uC4KTXa6Yzd0g=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.860612+00 2025-12-17 05:10:00.860617+00 22911 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u3i80ekAcqnwrk5p2QYKhisGRrw=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.861696+00 2025-12-17 05:10:00.861701+00 22912 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tI9HXANFoyCeyWoFCV7xNPzMa2k=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.862783+00 2025-12-17 05:10:00.862787+00 22913 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rn-Fo_kuZeUQdhYMAUk-k2uTf6g=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.86384+00 2025-12-17 05:10:00.863844+00 22914 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yu60N4ntAA6epFfwGZSB0DL_ZTM=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.86493+00 2025-12-17 05:10:00.864935+00 22915 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8VJ0VsSvwak3qxARZ20P9n-GTIk=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.876154+00 2025-12-17 05:10:00.876159+00 22924 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HLPKB7w8sqQfSKvOqJzcYhgSFtE=", "createTime": "2024-08-15 14:37:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.866226+00 2025-12-17 05:10:00.866232+00 22916 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xZnHo456WU6cmmZwyYx__YOJ8Tc=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.8675+00 2025-12-17 05:10:00.867505+00 22917 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wYNH9iKjaCDx07zZaGFs3IpO8to=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.868722+00 2025-12-17 05:10:00.868727+00 22918 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fpAztn_znOOcHGJy385HrmDPWvU=", "createTime": "2024-08-15 14:37:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.869996+00 2025-12-17 05:10:00.870001+00 22919 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kRAXrh3wft7exRr3rQmSIQ3pwUk=", "createTime": "2024-08-15 14:37:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.871234+00 2025-12-17 05:10:00.871238+00 22920 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L4LSK7ctIMxjEDQjnTY2lwcTZE4=", "createTime": "2024-08-15 14:37:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.872468+00 2025-12-17 05:10:00.872472+00 22921 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WhymLo22FzGKUaNGsqr8tllU4R8=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.873704+00 2025-12-17 05:10:00.873709+00 22922 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vIECLpRhprUVknj4JQOofsm6FVY=", "createTime": "2024-08-15 14:37:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.874925+00 2025-12-17 05:10:00.87493+00 22923 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NnEhWyxvuXZt86HxdX_7Eyz51uM=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.877371+00 2025-12-17 05:10:00.877375+00 22925 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Vczakb6BBqA7afDZUIUh933HPc=", "createTime": "2024-08-15 14:37:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.878618+00 2025-12-17 05:10:00.878623+00 22926 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w7WImPDriIPzmnMdKjqwjjOzJh0=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.879845+00 2025-12-17 05:10:00.87985+00 22927 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wHacAhT58nHcA7-CwL8hTp3P1rE=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.880906+00 2025-12-17 05:10:00.88091+00 22928 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GY2RfU0v7gf1U0Rjyzrfppvz_B8=", "createTime": "2024-08-15 14:37:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.882275+00 2025-12-17 05:10:00.882282+00 22929 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0dHyxyOeZxlYi0s3F1rDWp4Qhv0=", "createTime": "2024-08-15 14:38:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.883692+00 2025-12-17 05:10:00.883698+00 22930 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vjCEAvBbDp8RjaImaXdfos0D4Yo=", "createTime": "2024-08-15 14:38:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.88499+00 2025-12-17 05:10:00.884996+00 22931 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HaT8l1rL4NCWupsC8s6Ai_s5nUY=", "createTime": "2024-08-15 14:38:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.886265+00 2025-12-17 05:10:00.886271+00 22932 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yWxSqviMQfWJgCZIS0Z0D5koyoM=", "createTime": "2024-08-15 14:38:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.887666+00 2025-12-17 05:10:00.887671+00 22933 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mNlhnY-mbFd9YNB_zG3Z9y2tnOk=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.888819+00 2025-12-17 05:10:00.888823+00 22934 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AjHcsv9OcBTSx3bOWN8dnrwX7RE=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.889885+00 2025-12-17 05:10:00.889889+00 22935 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dWQsR24qrFkOqFeJV8U4U_sXXic=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.890933+00 2025-12-17 05:10:00.890937+00 22936 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dje67UCCJka43Tfh03cneJrLw1Y=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.891995+00 2025-12-17 05:10:00.891999+00 22937 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZM4AFKj7Sg8aRXBixsKS36bqT2Q=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.893058+00 2025-12-17 05:10:00.893062+00 22938 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LPRCBzqVehzlPupyxtYoGtjdd24=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.894148+00 2025-12-17 05:10:00.894153+00 22939 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dbk7EKJYhVviTIe2BlOkGsjfQlA=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.895159+00 2025-12-17 05:10:00.895163+00 22940 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oW8ERuLn4kHImfQpnLj-71CNgwU=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.89641+00 2025-12-17 05:10:00.896414+00 22941 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z0bVwyCxeIjHuJeMcwsoDUkhdnI=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.897653+00 2025-12-17 05:10:00.897657+00 22942 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2i6YuLNZeYn0oovBdOAZL_FGIFA=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.898864+00 2025-12-17 05:10:00.898869+00 22943 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O_je8fidpN7Pq9RI8NHHtzuQwQs=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.90008+00 2025-12-17 05:10:00.900085+00 22944 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NHc_0aSS8nUEOWTaygnOpKB7IJA=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.901305+00 2025-12-17 05:10:00.90131+00 22945 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UyaRMxDKCNwLsC0xHWJxN3ymQCc=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.902525+00 2025-12-17 05:10:00.90253+00 22946 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QzEQ_xqXpVV29PhdO5txgu_pmlY=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.903761+00 2025-12-17 05:10:00.903765+00 22947 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:29ISUJn28w4aOcnjzKapHvt86aA=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.904981+00 2025-12-17 05:10:00.904985+00 22948 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LFGl3h9mD_pM3Qf7VeyOQJEAJsA=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.906198+00 2025-12-17 05:10:00.906203+00 22949 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ks64rHPAqTaoLEFt1elbAxoN504=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.907418+00 2025-12-17 05:10:00.907423+00 22950 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pxTqKPzWEvt_PTc6ukzx3v0iqd0=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.909003+00 2025-12-17 05:10:00.909008+00 22951 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1EsZ4zknqjfcz_1kLkAU3mM6iH4=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.910106+00 2025-12-17 05:10:00.91011+00 22952 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:to0y3mkVFJQY1wTYw0VHxisHTG8=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.911152+00 2025-12-17 05:10:00.911156+00 22953 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0qSAcGi8AbBKaydGnfczm7-LgKU=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.912191+00 2025-12-17 05:10:00.912195+00 22954 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zGUqv7T-yH5HbKIOcYh8nwgtT6E=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.913224+00 2025-12-17 05:10:00.913229+00 22955 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NqJxtS1Lw8WHdA1tCu0aL-89j1o=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.914264+00 2025-12-17 05:10:00.914268+00 22956 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:roC1o8hAT676w0xBk3rIANLsATk=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.915314+00 2025-12-17 05:10:00.915319+00 22957 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PyeNQx9XdG6spDt7urAT_4NEKcQ=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.916469+00 2025-12-17 05:10:00.916474+00 22958 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2zd_CBqU6SQIiXl-Kac9CdByPI8=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.917569+00 2025-12-17 05:10:00.917574+00 22959 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mKJXat6_qwApXGJGLvWsRD0EIcI=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.932973+00 2025-12-17 05:10:00.932977+00 22972 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2cH6ZARuErFzICga9ogp9eJ2Hy0=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.918613+00 2025-12-17 05:10:00.918617+00 22960 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tp7Ig1oH8qnJ0mvabkjPljJbQ9c=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.919684+00 2025-12-17 05:10:00.919689+00 22961 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fFkk-L6vrlmINDwyT4fpS_fDg9o=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.920799+00 2025-12-17 05:10:00.920804+00 22962 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:59riBP5RRABAiyn_KdmeNV94VH4=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.387789+00 2025-12-17 06:20:00.387793+00 24214 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:malfe2-Fd7qjV6GmrKwcb0D1g3k=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.921935+00 2025-12-17 05:10:00.921939+00 22963 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xAUWWwTc7s_DYsqHluRy-FYWfQc=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.9245+00 2025-12-17 05:10:00.924505+00 22964 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:meqgauJakWsRha2Ogjpk8T2flck=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.925571+00 2025-12-17 05:10:00.925576+00 22965 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-MWyN-1k3P-pLV6Yc7nKjZnfYBc=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.926597+00 2025-12-17 05:10:00.926602+00 22966 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xa7q5lgL1F07wlFd8Aof3D4w4uw=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.927644+00 2025-12-17 05:10:00.927648+00 22967 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A9C9LdYdCJIrK8u6AiVZYeHxW7k=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.928734+00 2025-12-17 05:10:00.92874+00 22968 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k8DaosLqyagQYjqGab2BNyM7_Pc=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.929841+00 2025-12-17 05:10:00.929845+00 22969 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vKGbv7td106fgJ8MNzGcn17Ul1Q=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.930883+00 2025-12-17 05:10:00.930887+00 22970 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZApUNj6G0XD3c30vA4qDQZIo63E=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.931932+00 2025-12-17 05:10:00.931936+00 22971 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q382vZ-qhqJVrKhiGkE_p_qT8Bw=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.934006+00 2025-12-17 05:10:00.93401+00 22973 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jQfuKf2ht-0e2AqK-AlnlQRofi0=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.935062+00 2025-12-17 05:10:00.935067+00 22974 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OeeQleWf1a5i5lY8Si1lSNjMxkg=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.936112+00 2025-12-17 05:10:00.936116+00 22975 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:owloCJOAjTS-x-X4MdvMnqUBxaM=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.937155+00 2025-12-17 05:10:00.937159+00 22976 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UeL_Nln29g-fRS7-SpSyiuFE2FY=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.938181+00 2025-12-17 05:10:00.938186+00 22977 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1E0R7KmycY3l9AjJb4aRq37J-O4=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.939206+00 2025-12-17 05:10:00.93921+00 22978 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Adeyp4lDSAl-3lickfL20eqrcKs=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.940245+00 2025-12-17 05:10:00.940249+00 22979 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MDz3Jvj_y8_6yNHN5wHqN-LjMDE=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.941281+00 2025-12-17 05:10:00.941285+00 22980 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vzpxL_Cq0Ru3-pf_q_KLeDX62YY=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.942302+00 2025-12-17 05:10:00.942306+00 22981 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_cHEqTKKiBcvVN6EO2cwtFdxQVM=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.943336+00 2025-12-17 05:10:00.943341+00 22982 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9C1MgBOGjI3Aq5t3ITzT9oBtkfw=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.944372+00 2025-12-17 05:10:00.944377+00 22983 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1kt2x3YRox_ztnQVNZvr9SvRL2w=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.945411+00 2025-12-17 05:10:00.945416+00 22984 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c7vKlljN29UCdB5boe0tWiyxnL4=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.946487+00 2025-12-17 05:10:00.946491+00 22985 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iZRCMinvQznTFpZPhVmtQrr2lAY=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.947536+00 2025-12-17 05:10:00.94754+00 22986 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eG2hVR4dVf4p4-DyeNSfmUVhRV8=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.948604+00 2025-12-17 05:10:00.948608+00 22987 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z4b7o52Te5f117Dra9PZZgYDzIM=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.949638+00 2025-12-17 05:10:00.949643+00 22988 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O8gKwKSHWhNDa-BfOT7EoF84uvI=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.950674+00 2025-12-17 05:10:00.950678+00 22989 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2lDewTw__bKzFudwF9W1IdiA2G0=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.960074+00 2025-12-17 05:10:00.960078+00 22998 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XTDwBFTggQF-X8x-F2S0nlZY7VU=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.951707+00 2025-12-17 05:10:00.951712+00 22990 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b9n0ZFZGPysbRgjtUcqHxfZa8IA=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.952743+00 2025-12-17 05:10:00.952748+00 22991 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yhV2otpnAu8WixItwAb_q1xO-yE=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.953771+00 2025-12-17 05:10:00.953775+00 22992 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a7rfvfGLqJ5v0sw7JxgZQxKlJcs=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.954812+00 2025-12-17 05:10:00.954817+00 22993 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W2FNAaUd8UiAHcK96gnaxFhZy8M=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.179748+00 2025-12-17 05:20:01.179759+00 22999 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:25P-pvfBBBlR0SYNjoa45h1wBVI=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.95584+00 2025-12-17 05:10:00.955843+00 22994 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L9CWHEyNP0QmfRBtoJFBcaoh__s=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.956881+00 2025-12-17 05:10:00.956886+00 22995 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5bms7HvfdJHzxnf6TVmuCKRrORo=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.957914+00 2025-12-17 05:10:00.957919+00 22996 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G_xBaB03sB3aFgiugZwFKYpDZq8=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:10:00.959021+00 2025-12-17 05:10:00.959026+00 22997 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=1766034600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DJ9UAobT0OzS9Z5Hgus70qaxYIM=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.182491+00 2025-12-17 05:20:01.182499+00 23000 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yPZkbQzRLsfHJHxsEKcb7JrwPUU=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.18433+00 2025-12-17 05:20:01.184338+00 23001 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y-hyvPrwQOj1DwmQQptegDru9U0=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.185971+00 2025-12-17 05:20:01.185978+00 23002 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vs60NMhw3SkJg8-16TgIAgWlfrY=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.388954+00 2025-12-17 06:20:00.388958+00 24215 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k21BKpt38VkF39MON0RwBPefkeE=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.189152+00 2025-12-17 05:20:01.189159+00 23004 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SbY7bauy9i45thOGeD6dheJ3plo=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.190979+00 2025-12-17 05:20:01.190986+00 23005 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E-_bOc_U2GwFKQKYfnwHAk8BK8k=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.192596+00 2025-12-17 05:20:01.192604+00 23006 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6OOVkQVmB1r98RXgbNQfwkE2Ddc=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.18756+00 2025-12-17 05:20:01.187573+00 23003 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ecn7x5VNid51stLxBVXQL22TTPg=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.19535+00 2025-12-17 05:20:01.195354+00 23007 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8bKVybGT7OUFoK_IYtC3_Qre2Vg=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.196439+00 2025-12-17 05:20:01.196443+00 23008 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SR1JqqLVZk6CAzoffQSvDLA2xvc=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.197525+00 2025-12-17 05:20:01.197529+00 23009 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lz5LcqygpeJ-qNWiG2YpNx9wPcU=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.198569+00 2025-12-17 05:20:01.198588+00 23010 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fnyGCPKlDDD7Qcfq5NAk3qgIKaA=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.199713+00 2025-12-17 05:20:01.199718+00 23011 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7QUTuM-WxMB72oEwQ4BTOQLoQfo=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.200747+00 2025-12-17 05:20:01.200751+00 23012 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F59CW56ZYFiAzyPV0xmr-00DZL4=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.201786+00 2025-12-17 05:20:01.20179+00 23013 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F3kvE9mGlonAm0VZRZOIgsYvMXY=", "createTime": "2024-08-15 14:38:07"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.202834+00 2025-12-17 05:20:01.202838+00 23014 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zUPSnVFqFcSISmh7DybPTH44C0A=", "createTime": "2024-08-15 14:38:07"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.20387+00 2025-12-17 05:20:01.203874+00 23015 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vcRCZ-M25B5OyOg3T-4t0h_9L9o=", "createTime": "2024-08-15 14:38:07"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.204916+00 2025-12-17 05:20:01.20492+00 23016 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lz2jhYj1LyqsqWt69XS2er0-HHw=", "createTime": "2024-08-15 14:38:07"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.205965+00 2025-12-17 05:20:01.205969+00 23017 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LqeYYH4T9R_woK18GqG_A6XYaIE=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.20705+00 2025-12-17 05:20:01.207054+00 23018 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7kV0x6g4cSftGl4NWK5liYd8f0E=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.208072+00 2025-12-17 05:20:01.208076+00 23019 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cX5UCL1VHeR34bxwji5OzPFkTWM=", "createTime": "2024-08-15 14:38:07"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.209106+00 2025-12-17 05:20:01.20911+00 23020 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tx5EKAe-KV5KsQANPy2Qj4OSJrM=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.210123+00 2025-12-17 05:20:01.210126+00 23021 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e49FtSmW-p4F4M2AuPh7fGHNJ7A=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.211148+00 2025-12-17 05:20:01.211152+00 23022 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nrj6t2OpswhsO4gmML20jG24saE=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.212185+00 2025-12-17 05:20:01.212189+00 23023 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WwVhXBGQJjpCOr8CahzxDJ48pjs=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.213234+00 2025-12-17 05:20:01.213238+00 23024 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O0UZjNtZsfj0XNu35c7cF_xY5F0=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.21427+00 2025-12-17 05:20:01.214274+00 23025 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jn5R0-LEjHgyjz3IuhlPjWjq_68=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.215668+00 2025-12-17 05:20:01.215676+00 23026 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:idcWzVfJAE-Wg_puZrYVTTrjnz8=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.217601+00 2025-12-17 05:20:01.217608+00 23027 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xOKX7oDPbsU43-vQ6nEqcoeuU-0=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.21943+00 2025-12-17 05:20:01.219436+00 23028 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wjqXxRlPkrmtnu6enfJ2IOhOttc=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.221247+00 2025-12-17 05:20:01.221253+00 23029 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kAnjR9NBC2Lg8a2_2ghv0iUEJIc=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.222795+00 2025-12-17 05:20:01.2228+00 23030 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q7t7-BrRyMZuXRovZoU_Mok_w_0=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.22394+00 2025-12-17 05:20:01.223944+00 23031 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BMBvSXTUFuCkgAHt91gUwfhoJeo=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.225023+00 2025-12-17 05:20:01.225027+00 23032 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sJDH97oHxNg3vK0jQboNgOSiuIQ=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.226086+00 2025-12-17 05:20:01.22609+00 23033 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IzuARzcRemDEz_LwmhTBz6xFBdo=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.227233+00 2025-12-17 05:20:01.227237+00 23034 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GHpuPhRe6hnxH6dYYQyegV-y21Q=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.228482+00 2025-12-17 05:20:01.228487+00 23035 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ySBMF4Vbw8BaEsbO5k4_Ijd4VM=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.229689+00 2025-12-17 05:20:01.229693+00 23036 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F5vU2_E3wMJ23Ix_3g731nvyrf0=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.230864+00 2025-12-17 05:20:01.230869+00 23037 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vx9cuj04x-QYLgmWyQpdwbvdEKQ=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.232354+00 2025-12-17 05:20:01.232358+00 23038 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ikdfbiE3ZahlFIcYDtpB7iyQpzk=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.233425+00 2025-12-17 05:20:01.233429+00 23039 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DwRj9AsgIyTeUSp-lU2y11cv8X8=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.23448+00 2025-12-17 05:20:01.234485+00 23040 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mv8tbxB8K89cY9hdZ-wNJ6NRdLU=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.235525+00 2025-12-17 05:20:01.235529+00 23041 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hTGRcl_k6kA1nAs5gqUzocVHD1A=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.236549+00 2025-12-17 05:20:01.236554+00 23042 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XnUxx9-bYqYcZm2Vws7GuxoucJo=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.237613+00 2025-12-17 05:20:01.237617+00 23043 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KgZnEy87IfRY4xRwx1MuXImQlkg=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.238667+00 2025-12-17 05:20:01.238671+00 23044 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xt5Ot_47FO6x5eezZnRbwdsHEIU=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.239721+00 2025-12-17 05:20:01.239725+00 23045 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gua9GM41jNUHgz2MqYRvCTnEyrg=", "createTime": "2024-08-15 14:38:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.240798+00 2025-12-17 05:20:01.240803+00 23046 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bulFTG0kwNSZrp1ESdDJqT_PmxY=", "createTime": "2024-08-15 14:38:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.242658+00 2025-12-17 05:20:01.242666+00 23047 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T_HGlKpdKyZZ7irlRkckuIa2qVY=", "createTime": "2024-08-15 14:38:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.244827+00 2025-12-17 05:20:01.244832+00 23048 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4EUEIErMl53dSfUexg29xM9ob9c=", "createTime": "2024-08-15 14:38:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.246244+00 2025-12-17 05:20:01.246248+00 23049 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z5dBCoVEoEb8ElHwpsgLawe3bkI=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.247583+00 2025-12-17 05:20:01.247587+00 23050 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4WzyRLEHrWNhWh7AH9laF3OFxsg=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.249631+00 2025-12-17 05:20:01.249639+00 23051 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yZReg3NJj7ofSVFQxfBABUEAnlQ=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.251769+00 2025-12-17 05:20:01.251776+00 23052 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I2dtLK1YDK7xAY48Tb0gin2xQ8Q=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.253776+00 2025-12-17 05:20:01.253783+00 23053 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ja9UNEYM9oIN0BKdkjUEOCqaMdk=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.255658+00 2025-12-17 05:20:01.255663+00 23054 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lBO2nTOHj5ovVolpeLuz_mSkj-M=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.256813+00 2025-12-17 05:20:01.256818+00 23055 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kEKcRzHlQwiDoJdxkOXpc3SARIc=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.257873+00 2025-12-17 05:20:01.257877+00 23056 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CK1Js5_94gbgvVfSQ0e-DbWpU7s=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.258974+00 2025-12-17 05:20:01.258978+00 23057 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i-WoL-Yid2xumttQZ4bK6Gqs0jw=", "createTime": "2024-08-15 14:38:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.273143+00 2025-12-17 05:20:01.273147+00 23070 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ejsxB1iHRb13MsOMUaOLGFxc5ZM=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.260049+00 2025-12-17 05:20:01.260053+00 23058 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vVRhSItx_8dHH6wpzj3TAbwbRqQ=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.26123+00 2025-12-17 05:20:01.261234+00 23059 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ClAgJ_CMgLwwGPoV_Nd3mq1JkRA=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.262276+00 2025-12-17 05:20:01.262281+00 23060 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8fRuOOnE2KNtKjNDDFmnyrbaKXI=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.263359+00 2025-12-17 05:20:01.263364+00 23061 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z7YqQhKqVRQpWrr_mIznUbCf38c=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.264825+00 2025-12-17 05:20:01.264829+00 23062 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tvqALVOiW8mrmAVD8PxbtvDjUVk=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.265906+00 2025-12-17 05:20:01.26591+00 23063 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:erEXR9-XBDKRMilMA162qXtu3CU=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.266938+00 2025-12-17 05:20:01.266942+00 23064 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y6Ij4Mk5YjfLsHqhjkFeCS782h0=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.26797+00 2025-12-17 05:20:01.267974+00 23065 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qoj45WcWI-QrT0VZclxIXa1DmUY=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.269005+00 2025-12-17 05:20:01.26901+00 23066 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dCUcGbgi9_0hyJ9ZMGz1y1i86-8=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.270039+00 2025-12-17 05:20:01.270043+00 23067 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VRJdQCOCYnmvMQLA0sltLOnGr0M=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.27107+00 2025-12-17 05:20:01.271074+00 23068 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GvT03pv7ZUVWXu50nILWh_UWyqU=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.272116+00 2025-12-17 05:20:01.27212+00 23069 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KIdViIVuDKv4fY1rMZOAcftMzfw=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.274168+00 2025-12-17 05:20:01.274172+00 23071 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jIQe4UKC89G4PNFCgZ5i82YTzug=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.275205+00 2025-12-17 05:20:01.27521+00 23072 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OoHo4qx38TfqiYWIfK7YoSSV1TU=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.276224+00 2025-12-17 05:20:01.276228+00 23073 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mhJtPdCpqGsT3MEncFMgoR6Ps8U=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.277297+00 2025-12-17 05:20:01.277302+00 23074 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q8IPN-EEWwSgIC4BgIMUWVz8MDw=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.278475+00 2025-12-17 05:20:01.278479+00 23075 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zmatvQQPfU7GOCP7Ijep0zmmgbU=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.279598+00 2025-12-17 05:20:01.279602+00 23076 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TpihUaIjOw_CD79oIVaXbn69lGw=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.280666+00 2025-12-17 05:20:01.280671+00 23077 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qr9CfcT033BUkkqj8icFAUpGjec=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.281784+00 2025-12-17 05:20:01.281788+00 23078 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w67qcO9q9khgX_VWfIUlMp7uM2E=", "createTime": "2024-08-15 14:38:15"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.282895+00 2025-12-17 05:20:01.2829+00 23079 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qk92sWLTj6-607m5vwmD6VgtPEY=", "createTime": "2024-08-15 14:38:15"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.283999+00 2025-12-17 05:20:01.284003+00 23080 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vVuImT8nkJJgLsmIWOBV-m7orSc=", "createTime": "2024-08-15 14:38:15"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.285104+00 2025-12-17 05:20:01.285108+00 23081 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RTdmjysxtIG0x8eXwz2UGKks3mM=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.28617+00 2025-12-17 05:20:01.286174+00 23082 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r9fQK_n_syQeIDv9pQquOJYsPBg=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.287232+00 2025-12-17 05:20:01.287236+00 23083 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oKxI3eBobJaeMq0faMeylrIYRMc=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.288274+00 2025-12-17 05:20:01.288278+00 23084 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:11Jwr56bAYC5Qyo0hXPKOqIYmgg=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.289336+00 2025-12-17 05:20:01.28934+00 23085 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B4H_tCC2H7Er9EuZi_YziTMw9L4=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.290767+00 2025-12-17 05:20:01.290772+00 23086 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y1jAqbK22ANpFuydpZDniEKU0qc=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.291871+00 2025-12-17 05:20:01.291876+00 23087 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Om42B85iK39pUDHLUyJMbCSEbxs=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.292913+00 2025-12-17 05:20:01.292917+00 23088 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PC_mVVrCduzLDDnZt4zR1RhY860=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.293995+00 2025-12-17 05:20:01.293999+00 23089 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sGXuS4KV-HlzU75Qq1DBqsI7QHE=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.295036+00 2025-12-17 05:20:01.29504+00 23090 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EAhOquMo6VLeG48qdpFHCzf408E=", "createTime": "2024-08-15 14:38:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.296082+00 2025-12-17 05:20:01.296086+00 23091 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S-gAN3V6_UwM_BSGWxRs_9YPaNc=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.297119+00 2025-12-17 05:20:01.297124+00 23092 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sz8XZhOkJTlR3wiIu3TOdgLv-1Y=", "createTime": "2024-08-15 14:38:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.298178+00 2025-12-17 05:20:01.298183+00 23093 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qr3AfpfANm2mNsjHv2-4sEWkEVE=", "createTime": "2024-08-15 14:38:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.299225+00 2025-12-17 05:20:01.299229+00 23094 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VJ_5LmZvAu8bm28hT_ceFILAmmA=", "createTime": "2024-08-15 14:38:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.300256+00 2025-12-17 05:20:01.30026+00 23095 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O2ewzpCjXK4RJkbxvnIOBtw6ijw=", "createTime": "2024-08-15 14:38:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.301311+00 2025-12-17 05:20:01.301315+00 23096 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3pn4PZJlgkQw1GevN9Ba22VMVLw=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.30235+00 2025-12-17 05:20:01.302355+00 23097 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=1766035200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RNPy_RuLU5iVc-rLG0bF0LsUpPI=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.652727+00 2025-12-17 05:20:01.652738+00 23098 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fp4T2JynmUC4UmoA9yLAVYHCzZA=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.654842+00 2025-12-17 05:20:01.65485+00 23099 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LrixK3cQ7g8LB0NJjiLmqMySQZM=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.656442+00 2025-12-17 05:20:01.656448+00 23100 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-wA7BFLwwICY6WaWv_IrYXoe7j0=", "createTime": "2024-08-15 14:38:18"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.658086+00 2025-12-17 05:20:01.658093+00 23101 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MbPVwCBB1x8tMh8y6qF4YzmVb88=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.659653+00 2025-12-17 05:20:01.659659+00 23102 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qNRmvt4Kxj2c0DugYqtv09htGVo=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.661437+00 2025-12-17 05:20:01.661444+00 23103 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5rmG4cgEXi8KHrudfUpJxTqfpc=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.662988+00 2025-12-17 05:20:01.662995+00 23104 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hdi5DYjP3EsVDqByb-rN_DHWJao=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.664545+00 2025-12-17 05:20:01.664552+00 23105 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J-Vt6vtRnfTTcvZpmH_7wMCCnmI=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.666099+00 2025-12-17 05:20:01.666106+00 23106 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sE2AAdxI4XH1A0TMTSwLiSAV1hk=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.667637+00 2025-12-17 05:20:01.667643+00 23107 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zQzY3YG5iNe-uV74zg4cEBasFHo=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.669177+00 2025-12-17 05:20:01.669183+00 23108 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RXJnn2kVSPvuvBo3Rj1eCaUPQFE=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.670752+00 2025-12-17 05:20:01.670758+00 23109 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rtmZuNWBx4LI7MpA0CenMUf3iu0=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.672475+00 2025-12-17 05:20:01.672481+00 23110 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Lws3UbvjmgSVZMkYXB1XM8VuVs=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.674027+00 2025-12-17 05:20:01.674033+00 23111 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HlLRyy7F743Ud8k2-yp5wlplAPI=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.675569+00 2025-12-17 05:20:01.675576+00 23112 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8yU10x_Hm553ndwPj7J1S0ClceM=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.677135+00 2025-12-17 05:20:01.677141+00 23113 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_h7ga--yOdif15Blv2qO6X5oXGg=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.678692+00 2025-12-17 05:20:01.678698+00 23114 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iPwyA0P24ibc7fm4Fn8Q_aQBoAI=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.68067+00 2025-12-17 05:20:01.680676+00 23115 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vhI8Id6EX4JoFUXDrfDeziWZjfw=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.682259+00 2025-12-17 05:20:01.682266+00 23116 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W0PI44AfBzdxGt1oIr_23DMxA8Q=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.683711+00 2025-12-17 05:20:01.683717+00 23117 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xqJeZ_eulzSP0g6YZBsgJih2hYE=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.684841+00 2025-12-17 05:20:01.684845+00 23118 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1uw0_NZyUnQceiB_cDE5SM9PPog=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.685907+00 2025-12-17 05:20:01.685911+00 23119 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6F4wuE9EWMc3wNoFElCO0bsaPzA=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.687044+00 2025-12-17 05:20:01.687048+00 23120 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vOrr8A2qw1jP3pL05So0m4m75K4=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.688172+00 2025-12-17 05:20:01.688177+00 23121 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lDO-_uBcqtkbeKyP94QQqFnsTQo=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.689272+00 2025-12-17 05:20:01.689277+00 23122 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oNvLTcXSePngusRP4CoedcgkEHc=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.690355+00 2025-12-17 05:20:01.690359+00 23123 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ca7bV5o8GXeqojQG6dj1J6-7V80=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.691487+00 2025-12-17 05:20:01.691492+00 23124 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JLIfGipeZrwlH3yEppaajOMYV4k=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.69262+00 2025-12-17 05:20:01.692626+00 23125 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pL0tbS8sFqOQMBhi0nUA1VF7uwc=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.694295+00 2025-12-17 05:20:01.6943+00 23126 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YcEMtsmpMS1zG04GXimGxt599RQ=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.695588+00 2025-12-17 05:20:01.695592+00 23127 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5VvPqJFIy82HAbTMtmGQdyd6gI4=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.696829+00 2025-12-17 05:20:01.696833+00 23128 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:18wZnvhR5XjWg2-_xgFQvFF4HF8=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.697979+00 2025-12-17 05:20:01.697984+00 23129 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Z7mswhehGtp1a4wiU-bA2-g-E4=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.699069+00 2025-12-17 05:20:01.699073+00 23130 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2uWbgungH1eDS5HYOS8cE0rmbzI=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.700206+00 2025-12-17 05:20:01.700215+00 23131 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QCMCPxN9r2Z1mVvJndnvzKkU_8A=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.701293+00 2025-12-17 05:20:01.701297+00 23132 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VaBX9vbHR3cH306pjerfdFHDqpM=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.702345+00 2025-12-17 05:20:01.702349+00 23133 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AraBIzxG4vH3stIcfYbuv894frs=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.703423+00 2025-12-17 05:20:01.703427+00 23134 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GPCgBDZy6dgn_XR0d2cK8diMFlE=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.704471+00 2025-12-17 05:20:01.704476+00 23135 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G3MJ_3vOy8MKIilooKA5lP7wfhM=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.705503+00 2025-12-17 05:20:01.705507+00 23136 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M7fGs8FiqGqYcUDuH6DbfXw0H7A=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.706602+00 2025-12-17 05:20:01.706607+00 23137 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fCyA5lG84RZUEkSlWyFvonczHyY=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.707656+00 2025-12-17 05:20:01.70766+00 23138 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YtkB0JBLOQNpZH_I7ZJCy8lYihw=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.708691+00 2025-12-17 05:20:01.708696+00 23139 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ju4u3L9ns-qTkJd1CMUpXvXCDaw=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.709732+00 2025-12-17 05:20:01.709736+00 23140 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BYWMGltoN_ZoVsjBjXg-NBCGf0s=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.710778+00 2025-12-17 05:20:01.710782+00 23141 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aBPkSRltByCHvnkRZDn5iHKWhog=", "createTime": "2024-08-15 14:38:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.711811+00 2025-12-17 05:20:01.711815+00 23142 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PR20_7A_j09CyeUmhxZTlhAyNCg=", "createTime": "2024-08-15 14:38:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.712858+00 2025-12-17 05:20:01.712862+00 23143 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4U6uXNwPijl43GxONkZaftBH7PI=", "createTime": "2024-08-15 14:38:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.713928+00 2025-12-17 05:20:01.713932+00 23144 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GCtClGFsweiWnFMexChHBfYLXfw=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.714965+00 2025-12-17 05:20:01.714969+00 23145 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xK0pQtTkhWfTH4H0XMyeHYWU-dw=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.716002+00 2025-12-17 05:20:01.716006+00 23146 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mN40FrqVsLbKgqjRCctrBci2T7I=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.717114+00 2025-12-17 05:20:01.717119+00 23147 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zc3tO6s5B-U4rPr11mcYFSk3YoM=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.718237+00 2025-12-17 05:20:01.718241+00 23148 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5MX9LtlyBIX_sVG-WXRZhLp-MAI=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.719392+00 2025-12-17 05:20:01.719396+00 23149 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pPNfFG_nrF2eBGYPVJ_lP_FaD-4=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.720471+00 2025-12-17 05:20:01.720475+00 23150 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VNP5ERC9lp-cQXz8mFPiSv0XFG8=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.721531+00 2025-12-17 05:20:01.721535+00 23151 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f4pk3XFFT1P9NZ3f0lSLXKU-Rv4=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.722587+00 2025-12-17 05:20:01.722592+00 23152 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ddeoo83O2hpFBy-xZLdug4qjnjE=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.723675+00 2025-12-17 05:20:01.72368+00 23153 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XYLcXXBHH0-DEzNxPDcS40i4k24=", "createTime": "2024-08-15 14:38:26"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.724732+00 2025-12-17 05:20:01.724737+00 23154 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jSFLfDVOtMHwj642fg6sWu4lQYg=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.725782+00 2025-12-17 05:20:01.725786+00 23155 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KvZw7HLEYDC0z6tuMMnrBCc8dJQ=", "createTime": "2024-08-15 14:38:26"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.726823+00 2025-12-17 05:20:01.726828+00 23156 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xrC8IV6vXOG-rRCIWUmiL3d7PLg=", "createTime": "2024-08-15 14:38:26"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.727873+00 2025-12-17 05:20:01.727878+00 23157 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NB3HPkHze-eCT73hBER1PRQTVUQ=", "createTime": "2024-08-15 14:38:26"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.728923+00 2025-12-17 05:20:01.728927+00 23158 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BYSrEEsgEpxpBC1lfFDHQWhtV7Q=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.730037+00 2025-12-17 05:20:01.730041+00 23159 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ysV5Vh8mYw_nR19Lk8yQj09DTOI=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.731128+00 2025-12-17 05:20:01.731133+00 23160 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xrnsz_UN4IvCWxsLCaJy299nY_A=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.73217+00 2025-12-17 05:20:01.732174+00 23161 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cVCi54kEGChrAcMZN7l5byiiQ28=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.733231+00 2025-12-17 05:20:01.733235+00 23162 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iFpZ2daJSEMC8RDW3DbmrNY-c_A=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.734274+00 2025-12-17 05:20:01.734279+00 23163 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kay6s_v3UmzanyPioO4vu8y7sUc=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.735318+00 2025-12-17 05:20:01.735322+00 23164 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wVyV51_-137Pc7MMnHIkYKrXdSc=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.736394+00 2025-12-17 05:20:01.736399+00 23165 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Abx_4zrbx1t_Qcf91sIUpITsB0=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.737442+00 2025-12-17 05:20:01.737446+00 23166 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o6-aDOY58G4xzRH5MiX6peRQOrA=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.73879+00 2025-12-17 05:20:01.738794+00 23167 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RYQYiDor8IoSHHMkl1x8RSme_ws=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.740125+00 2025-12-17 05:20:01.74013+00 23168 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A-wDne-d2tWTO_uIzzXGLHNNgP0=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.741558+00 2025-12-17 05:20:01.741563+00 23169 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ythemherj0JRbY8hNwqaA02AXSU=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.742934+00 2025-12-17 05:20:01.742938+00 23170 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Kj-avJ7JIZ5snf_fUd2ElvHauk=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.744287+00 2025-12-17 05:20:01.744291+00 23171 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_V-tbITHfZoz1_ayl3XEvQhrjh8=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.745673+00 2025-12-17 05:20:01.745678+00 23172 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48oleoQd6H4ERKWbQ9SNbuaoGS0=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.747059+00 2025-12-17 05:20:01.747064+00 23173 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mh6Ny4JPfFvQv2F7CguYgUPQQ9U=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.748521+00 2025-12-17 05:20:01.748525+00 23174 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qBvfIlrYlC74zTZhDVsXHDtK0iI=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.749756+00 2025-12-17 05:20:01.749762+00 23175 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tnlz6BRlzRLVqtJgqP-QIM1ax-c=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.750927+00 2025-12-17 05:20:01.750932+00 23176 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JJEUsl5-EBpvNEeyHzcC4qvL0RU=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.752009+00 2025-12-17 05:20:01.752013+00 23177 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0fIM3g3BfBFOYM0CkJT9pr89TZU=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.753135+00 2025-12-17 05:20:01.753139+00 23178 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lhioDgvL_2bFFI_OMB8FShGaY-8=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.754276+00 2025-12-17 05:20:01.754281+00 23179 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bV3t4940c6WSw-DVAEx4t1LoHDY=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.755386+00 2025-12-17 05:20:01.755391+00 23180 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z2_p2VbnJC1QaUG3DAP3AZx3vuc=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.756488+00 2025-12-17 05:20:01.756491+00 23181 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SboZ6v2FKdldtADcEloSJS7V6Zk=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.757573+00 2025-12-17 05:20:01.757578+00 23182 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WDOrcs24E9VEwc25FwuatavT0TQ=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.758652+00 2025-12-17 05:20:01.758656+00 23183 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uNC9_dVREj8rAs8ueABvtfEU7-Y=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.759797+00 2025-12-17 05:20:01.759801+00 23184 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:beodMMlFcgmHd_ett8rWE87iwfM=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.760906+00 2025-12-17 05:20:01.760911+00 23185 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OKCB7US2rqKPXXRpPpvAoOIEFoE=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.761994+00 2025-12-17 05:20:01.761998+00 23186 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:76AQNGU4CUUaEzUm9AYBIN0JfA8=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.763074+00 2025-12-17 05:20:01.763078+00 23187 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HsO6XVw_WPc6zPjIAE7Ve1f5dK8=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.764136+00 2025-12-17 05:20:01.76414+00 23188 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lWAq_nOEIQ7qCp82AHii3MXvUiE=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.765261+00 2025-12-17 05:20:01.765265+00 23189 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QPoZCGAC7nLk7Vw-ojGLyvvJk0I=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.76634+00 2025-12-17 05:20:01.766345+00 23190 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f_n8vT5s1aqWz0jXVss6msDA9Ek=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.767471+00 2025-12-17 05:20:01.767475+00 23191 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tJTN9sEOKEMMN2mdcH7j5VST5Qc=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.768581+00 2025-12-17 05:20:01.768586+00 23192 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ScY5YJpq--hIIeyo9Y1YntqMRJc=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.769632+00 2025-12-17 05:20:01.769636+00 23193 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g3mbbRIuRsVs4Lvii_ZubFNCyfI=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.770691+00 2025-12-17 05:20:01.770695+00 23194 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vOgqXfFTqZgG79TrKiuOkuabCwg=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.771771+00 2025-12-17 05:20:01.771776+00 23195 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QyKeMqnAPDFj89043SvXJurUCEk=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.772909+00 2025-12-17 05:20:01.772912+00 23196 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QfupIPDuI9zq1u_WGL_cLcmiiVg=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:20:01.77399+00 2025-12-17 05:20:01.773994+00 23197 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=1766035201&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xF1s6VK-mwIJw3PX54p0dY8wt0c=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.366072+00 2025-12-17 05:30:00.366084+00 23198 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AhBbBMTZgZ-QTM6PU2RG2UzAODk=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.368758+00 2025-12-17 05:30:00.368763+00 23199 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ihxcsZc1Zxw5Owkzzj3OrgmO6Ag=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.370517+00 2025-12-17 05:30:00.370522+00 23200 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z47lYwsERCOMOQiXBXX2FBA3YwI=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.371692+00 2025-12-17 05:30:00.371697+00 23201 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:REt_ivl4qL7WFLFkfJFIofg-FSQ=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.372877+00 2025-12-17 05:30:00.372881+00 23202 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5o-rmI3FjYTXvlNLUIyOretyUJU=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.374099+00 2025-12-17 05:30:00.374105+00 23203 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3cfUN2V0g_vCTXliDA7nI_kbH48=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.375281+00 2025-12-17 05:30:00.375285+00 23204 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CriTkTobcY_FCacxE2pnoqmT0tc=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.376536+00 2025-12-17 05:30:00.376541+00 23205 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OBHPMRkJmy-UxmXqYuSOKcP55Ks=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.377686+00 2025-12-17 05:30:00.37769+00 23206 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TtzCBNoiYG4gR8NAJvASi5wVz_I=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.378898+00 2025-12-17 05:30:00.378903+00 23207 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bgsHdHkugCg8R26eBQUcN3UCyKY=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.380047+00 2025-12-17 05:30:00.380052+00 23208 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kFF_kZUQjsw6Ayj9cCE1hfirUuE=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.381391+00 2025-12-17 05:30:00.381396+00 23209 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:STeAeirwBY4TJyZ8D3cqwM5gTsI=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.382497+00 2025-12-17 05:30:00.382501+00 23210 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QVpcToQAQRFsn8DbIu7TBItIbso=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.38364+00 2025-12-17 05:30:00.383645+00 23211 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:opeOytkTGUOJ2hXOWgF0pibAWPI=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.384775+00 2025-12-17 05:30:00.384779+00 23212 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iBjQJRxU_43S8HdTaNvkFjJs4So=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.385879+00 2025-12-17 05:30:00.385883+00 23213 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eUkuIWYy-GdRLTWCUwTIiXWquVI=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.386965+00 2025-12-17 05:30:00.38697+00 23214 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-0g0eA9N3ukzPTld34LkEQdV_xY=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.388049+00 2025-12-17 05:30:00.388053+00 23215 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TAJnEWY7Caw5aEgzggDSlwBi0lE=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.389112+00 2025-12-17 05:30:00.389117+00 23216 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uOHn6R5zILXMoevVowLtVeWtAGk=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.390265+00 2025-12-17 05:30:00.390269+00 23217 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f3WSlj0_X_lqpGudg85p3cX5dnk=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.391476+00 2025-12-17 05:30:00.391481+00 23218 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6ShYMEWRhkvaWWXZBuXKOLiiLU4=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.392714+00 2025-12-17 05:30:00.392718+00 23219 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uuw2wJjzj13eeaCZlNbzspevyyA=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.394265+00 2025-12-17 05:30:00.394273+00 23220 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:opLpOLmOy-o2uynPw-8zxdkQjtw=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.39572+00 2025-12-17 05:30:00.395726+00 23221 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vzfw0KuDaWM4-UyEN5zMeG7NudQ=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.397045+00 2025-12-17 05:30:00.39705+00 23222 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zwuxMGrAjZ_decO-NaWdFVSz5eE=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.398356+00 2025-12-17 05:30:00.398361+00 23223 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SiOLePgCpDhUBByhRgsiWQVvIrw=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.399636+00 2025-12-17 05:30:00.399641+00 23224 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DmvtWKMn3i5daPsi_aHzlEG5IU8=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.400902+00 2025-12-17 05:30:00.400907+00 23225 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L91DgwAsOhG7iLnqAJj8oVkxSac=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.40224+00 2025-12-17 05:30:00.402245+00 23226 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A9L_bg9FPLY2WR-Jjhf5dzb1xjQ=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.403547+00 2025-12-17 05:30:00.403552+00 23227 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:moD-EpId6J-9I6X01Fc_sDfWbbc=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.405479+00 2025-12-17 05:30:00.405484+00 23228 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_PetZT8w9PEqdk7-qgQEAClINC8=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.406757+00 2025-12-17 05:30:00.406761+00 23229 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YqbWccX_6kSA4caFGzHOTv5Fmnk=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.408034+00 2025-12-17 05:30:00.408038+00 23230 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-uRldFFjH4nD3CVCNNoi0sflO0Y=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.409317+00 2025-12-17 05:30:00.409322+00 23231 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_M4HEopYQpejzdWMB7eS30S6ZDs=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.410583+00 2025-12-17 05:30:00.410588+00 23232 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nYoUI3vF1tuDZbjvIp2XClU6INk=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.411942+00 2025-12-17 05:30:00.411947+00 23233 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JjnjCNoXG74l0Z8Gy26PnvvaWQM=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.413134+00 2025-12-17 05:30:00.413139+00 23234 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g0RVaT51gTrsSzOAIvpcr3QBAqY=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.414246+00 2025-12-17 05:30:00.414251+00 23235 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qlzTce7I0kz7l7yWunrdt_zm2cw=", "createTime": "2024-08-15 14:38:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.41535+00 2025-12-17 05:30:00.415354+00 23236 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gRh_fxtnMEKjrx9SOJTseFF3eIg=", "createTime": "2024-08-15 14:38:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.416474+00 2025-12-17 05:30:00.416478+00 23237 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q3a6olD3IVeyE9i4X5i1_HB5MZs=", "createTime": "2024-08-15 14:38:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.417573+00 2025-12-17 05:30:00.417577+00 23238 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:thsGfik8gISJNNGp_Z4psKiUC0o=", "createTime": "2024-08-15 14:38:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.418649+00 2025-12-17 05:30:00.418653+00 23239 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X2l3ZWO4W6n_vUgfotfZS5AnX_Y=", "createTime": "2024-08-15 14:38:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.419778+00 2025-12-17 05:30:00.419782+00 23240 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ltgUMh13xnqNFpr_yCoA7olEsfc=", "createTime": "2024-08-15 14:38:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.420874+00 2025-12-17 05:30:00.420878+00 23241 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0UunSSpQDeRLyKxomLdkqeqThtU=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.42194+00 2025-12-17 05:30:00.421944+00 23242 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6KjHEBqe96fTotlAzB_KiNFaiLs=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.423023+00 2025-12-17 05:30:00.423027+00 23243 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vv10fxqW5IFECwshsYSBS6Kx21U=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.424099+00 2025-12-17 05:30:00.424103+00 23244 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XY-K0oAvJ3raHcG1EeVnaul3wV8=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.425468+00 2025-12-17 05:30:00.425472+00 23245 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B1GSP8puz8Yh25I7SeNzuf4WNcw=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.426834+00 2025-12-17 05:30:00.426839+00 23246 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:frE_RtXM2kuRhDNhEWJ53pbYSKQ=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.428197+00 2025-12-17 05:30:00.428201+00 23247 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3hA127ONy5EnwSuMMIiZV6Bk1kQ=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.42955+00 2025-12-17 05:30:00.429554+00 23248 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aX355LvJZQyzzATA1scJq3uhOq0=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.430986+00 2025-12-17 05:30:00.43099+00 23249 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zmhwXdSS0rXwyBFcIdtR6FKFwYk=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.432403+00 2025-12-17 05:30:00.432408+00 23250 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cgmih7shikeWJmSL2CGqI3aMbQk=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.433804+00 2025-12-17 05:30:00.433809+00 23251 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DG2AWwMZim5B_j_qDOd-NzaYhMo=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.435155+00 2025-12-17 05:30:00.435159+00 23252 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VI1AUiLci3KZr9HGaV4J8aDxaIs=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.436281+00 2025-12-17 05:30:00.436286+00 23253 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B_GMJdcQ1hKOMRcLB-k_VzgD4Zw=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.43745+00 2025-12-17 05:30:00.437454+00 23254 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H7CyZJkk3yzvxJjOY_i142V_-Os=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.43856+00 2025-12-17 05:30:00.438567+00 23255 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C3TFi6GoCtfE4IkDK0CWSWnrrPg=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.439631+00 2025-12-17 05:30:00.439636+00 23256 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E6eR5aaXxAdwdYE-rMG7vQdwHN4=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.440717+00 2025-12-17 05:30:00.440722+00 23257 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mYaOyaukG0Co-JfXnPoSU55R54A=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.441829+00 2025-12-17 05:30:00.441834+00 23258 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MkbaNbDstbB3oGVg7teJdLT0lUM=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.442913+00 2025-12-17 05:30:00.442918+00 23259 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CcTScrUWjQQerZqN1ddKeP-DKgo=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.444085+00 2025-12-17 05:30:00.44409+00 23260 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AaRvXa7c1xVq-W17XCsrqMiLpMY=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.445187+00 2025-12-17 05:30:00.445192+00 23261 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DRzfqn0IMGTzbIpVtu-ZBX4q8F8=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.446299+00 2025-12-17 05:30:00.446304+00 23262 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZqymUY11Lk9QpOjXk9Xyf6G1NGA=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.447617+00 2025-12-17 05:30:00.447622+00 23263 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3EVdCRW71HFK9dLryRxY-p62qy0=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.448846+00 2025-12-17 05:30:00.44885+00 23264 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yDlDuBrAt3lcRFrpLTKMTntdDeM=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.449942+00 2025-12-17 05:30:00.449947+00 23265 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7WPRJuwQstutQ6wxJ8C67cYxKeo=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.451027+00 2025-12-17 05:30:00.451031+00 23266 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tGNpAOVVRHkiV5qe2oMmSA4lZmg=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.452142+00 2025-12-17 05:30:00.452147+00 23267 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bz25s6GhFoeJ6lTDX-8NQFFH-zc=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.45326+00 2025-12-17 05:30:00.453264+00 23268 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jnf4PEMI01FodCK83pJkNUP4POw=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.454331+00 2025-12-17 05:30:00.454334+00 23269 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yskRKy32S99Irf7qmGbsXh-h3pw=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.455404+00 2025-12-17 05:30:00.455409+00 23270 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KswsFzGbKFg4VC11hcbVhL3pnWw=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.456486+00 2025-12-17 05:30:00.45649+00 23271 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dJcSmh8UNd6DlCusom4a7PKyy2I=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.457745+00 2025-12-17 05:30:00.457753+00 23272 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BmrkyjBQcRNsFw4-yX8LliuFtXI=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.459085+00 2025-12-17 05:30:00.45909+00 23273 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c0AE7uZambhB7lMC_dUlbJvPcd4=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.460345+00 2025-12-17 05:30:00.46035+00 23274 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WVhHY2xYTGyIRGFdM4B0aEhVDOI=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.461619+00 2025-12-17 05:30:00.461624+00 23275 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uPmg4Et6mtYNp4VBMkFcFLQy6QA=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.462929+00 2025-12-17 05:30:00.462934+00 23276 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hJ-qMouYGrmhxaM_bjCGzfH3YQI=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.464301+00 2025-12-17 05:30:00.464306+00 23277 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8kYRb9H05LTte7-qqlePxGD7Jjw=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.465451+00 2025-12-17 05:30:00.465455+00 23278 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ExNjzf42nNzW9YNuvVosfKCPLI=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.466554+00 2025-12-17 05:30:00.466559+00 23279 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OLXKMcCs6c71xSzDy_myHLjnezY=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.467659+00 2025-12-17 05:30:00.467663+00 23280 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L8bjIboqLRO8gQ8hnyGbXCRrI14=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.468753+00 2025-12-17 05:30:00.468757+00 23281 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A4bo8fDtvCMMnPHdnGN383zlVWg=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.469831+00 2025-12-17 05:30:00.469836+00 23282 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bJFrZaHi9EHKhzFJJRVRrT0pC-k=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.470892+00 2025-12-17 05:30:00.470896+00 23283 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vGHMyI6GGF_sutLazNmLlRUK0pY=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.471988+00 2025-12-17 05:30:00.471992+00 23284 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9bMpFu5ohM1HRSMXHbJ2EifJ_Dk=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.473053+00 2025-12-17 05:30:00.473057+00 23285 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eHZhKlocKXh5C9gm11y1FMmTDFk=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.474119+00 2025-12-17 05:30:00.474123+00 23286 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oWZFM2Ct9mSpZPe6h_7PwMZ02jE=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.475189+00 2025-12-17 05:30:00.475194+00 23287 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ak9rYMcUawXlOP1lgY1LAj7vh6s=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.47627+00 2025-12-17 05:30:00.476274+00 23288 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QT-M16uQPq7v3257v52o53b8YL0=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.477338+00 2025-12-17 05:30:00.477342+00 23289 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FFEVLTRySxw_uLZSjidayJgl8zc=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.478411+00 2025-12-17 05:30:00.478416+00 23290 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7HRL463UZnAYk00Qfc0MA1eGI3A=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.479471+00 2025-12-17 05:30:00.479476+00 23291 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1bR7cP8HvL7zHszQZWtLmKc7phU=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.480586+00 2025-12-17 05:30:00.48059+00 23292 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VIn3vP5DcIH6dDjyHzZ0rgSzqZA=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.481681+00 2025-12-17 05:30:00.481685+00 23293 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sfp384Jp4Z-yZmp-3OHwF2ARDo8=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.482767+00 2025-12-17 05:30:00.482771+00 23294 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jKKZogZpZ6I-lh0q2zJRQfDajvM=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.483863+00 2025-12-17 05:30:00.483867+00 23295 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ovq4gI5xl7QoUyuWwEjmDx17FeQ=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.485045+00 2025-12-17 05:30:00.485049+00 23296 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ey9iMJRRbBVnyO5nbjORPVitXJY=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.486163+00 2025-12-17 05:30:00.486167+00 23297 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=1766035799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d_weRO8TyAke_TsRgH5y7VvXwrw=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.874336+00 2025-12-17 05:30:00.874343+00 23298 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NKrE_nVk_STY21XZ2Cfmd-35WJw=", "createTime": "2024-08-15 14:38:56"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.875908+00 2025-12-17 05:30:00.875913+00 23299 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2PfR_51hgoL94aOMAAXNj6BbFzE=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.877104+00 2025-12-17 05:30:00.877108+00 23300 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rMEIaYhNzAt9mDQh7tjeGlY4Ps4=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.878295+00 2025-12-17 05:30:00.8783+00 23301 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s_pxy9Q9nbqmYQ2MIz_sluIXh44=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.879631+00 2025-12-17 05:30:00.879636+00 23302 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZUPzqMmTMwOg_slOgnCBjy_T21A=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.880979+00 2025-12-17 05:30:00.880984+00 23303 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YzeO7Vs4UAYjR7SWzwfDz918rm4=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.882194+00 2025-12-17 05:30:00.882199+00 23304 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tqZjgvc2T4S0lpYqMIcEl-XvZV0=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.883478+00 2025-12-17 05:30:00.883483+00 23305 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SykGSmF_iJ_DObsv340Qygxrze4=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.88478+00 2025-12-17 05:30:00.884785+00 23306 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cxKvdGjeidDeYgTQZSGaGUaVc3w=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.886539+00 2025-12-17 05:30:00.886544+00 23307 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cetLea874-x2CKZyBdkJ45zD-J4=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.887819+00 2025-12-17 05:30:00.887824+00 23308 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mKzFTdGnGaQXHiy8FnwW_PTJj60=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.88909+00 2025-12-17 05:30:00.889095+00 23309 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D65XKaC9jVrnGQsarxedTN6QJ7M=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.890375+00 2025-12-17 05:30:00.89038+00 23310 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hYevPnTR8K5jpzAcchmJp7P_d0Q=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.891647+00 2025-12-17 05:30:00.891652+00 23311 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m1oGGCE967ItDZhTob4AELnhBSU=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.892916+00 2025-12-17 05:30:00.892921+00 23312 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ntf9pdEI2GDerMOdzrzg96eOIBU=", "createTime": "2024-08-15 14:38:56"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.89418+00 2025-12-17 05:30:00.894185+00 23313 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KvzQWXVObzd0cFUarwrUAFWcQsA=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.895462+00 2025-12-17 05:30:00.895467+00 23314 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yj6AImvW2BcPSAXM2YxPzorOuJA=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.896725+00 2025-12-17 05:30:00.89673+00 23315 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gaD9FYBkwsEMwBPHHszCd94cWP8=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.897999+00 2025-12-17 05:30:00.898003+00 23316 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fu4BUrkpUZq0lMQnXVNxRBSeeM8=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.899274+00 2025-12-17 05:30:00.899279+00 23317 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6UzgseZ48ySbeXJYnMHNz5E3-Sc=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.900547+00 2025-12-17 05:30:00.900552+00 23318 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:erPCwNI8IAwRBlDoOqFJ92iyLuw=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.901821+00 2025-12-17 05:30:00.901826+00 23319 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8OWb0EDdUWv1aFq4WU3GmVzEZm4=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.903094+00 2025-12-17 05:30:00.903099+00 23320 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UZvCACSW9ojXq6vuYoGLe8Ih4Ks=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.904361+00 2025-12-17 05:30:00.904366+00 23321 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yxmTFoDEf01KTggAOXayqdlCGL0=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.905635+00 2025-12-17 05:30:00.90564+00 23322 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Y8cv8q2qCts3EDwpQOpxrEf_aw=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.906918+00 2025-12-17 05:30:00.906923+00 23323 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lmrp7MQioy5AIeZnM9acns5M24E=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.908183+00 2025-12-17 05:30:00.908188+00 23324 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vc1PFjSGoTdQvvFLkG8D7NfA9Cs=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.909479+00 2025-12-17 05:30:00.909485+00 23325 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:faypvS4PqmI7ABhIA_OwTTvJ1t8=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.910757+00 2025-12-17 05:30:00.910762+00 23326 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ne6_ubPYcjuiME7H224yZexdeQ=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.912039+00 2025-12-17 05:30:00.912044+00 23327 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jxWSQ6GWyF2lZUcp5u578ED0E5c=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.913297+00 2025-12-17 05:30:00.913302+00 23328 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q8yj3Vi9OdLvpqc_pxJpYpYhg6k=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.914671+00 2025-12-17 05:30:00.914676+00 23329 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tx2SCPJidCiOveX84RnuEHJYXtM=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.915861+00 2025-12-17 05:30:00.915865+00 23330 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QF_lOX3ic6lZy7sg5yWmhWK2JFA=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.916974+00 2025-12-17 05:30:00.916979+00 23331 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ppgYcUWVmoHDOOHrYgRsKbxPGc4=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.91806+00 2025-12-17 05:30:00.918065+00 23332 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z1MyUmJxXJHIUbQ8ZNpFF2zysPs=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.919156+00 2025-12-17 05:30:00.91916+00 23333 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vLsB9aaqvF5KWOif_PEzLOMeJEM=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.920233+00 2025-12-17 05:30:00.920237+00 23334 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0hie2XYZ1RLMz2RWCAjdAo_SgZI=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.921325+00 2025-12-17 05:30:00.921329+00 23335 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eXBvrSkS7uHIcV0ot_c4lxL7zY8=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.922408+00 2025-12-17 05:30:00.922412+00 23336 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cnpnrAVvEpMUcPdV1lDgK5L73Is=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.923481+00 2025-12-17 05:30:00.923485+00 23337 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0hsdmCWWENLGJkx5bIgjVIM4OpU=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.924757+00 2025-12-17 05:30:00.924762+00 23338 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:34otj3f9JTZGZqwqSPIVgbSPuF0=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.925874+00 2025-12-17 05:30:00.925878+00 23339 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uDFam9VnGTOoNqu4rtYPohu1Gk8=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.927016+00 2025-12-17 05:30:00.927021+00 23340 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N1pCKE8eBurrqAiYch5ERN20l3g=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.928192+00 2025-12-17 05:30:00.928197+00 23341 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pFdwZEt1y144cixyd4A3InwhqRQ=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.92928+00 2025-12-17 05:30:00.929285+00 23342 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BvFRjxxRX5LMuf1qA0G2qLxPXwQ=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.930375+00 2025-12-17 05:30:00.930379+00 23343 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pRyqVUAC_18Yl_FoorsJGdCRf5o=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.931817+00 2025-12-17 05:30:00.931822+00 23344 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q5dcP5pdC1gMR8U0NaWruL4qWWY=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.932951+00 2025-12-17 05:30:00.932955+00 23345 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PD8wH4tfcpJOz52BgJgnQPOQn9Y=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.934032+00 2025-12-17 05:30:00.934036+00 23346 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Xf9MH4AD7VeCxye_GB1nL5u8nw=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.935096+00 2025-12-17 05:30:00.935101+00 23347 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yB122N7a1bfiuvMLlcd0Sj9O4iM=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.936149+00 2025-12-17 05:30:00.936154+00 23348 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rFA07Kr70at-5D_2p2HqZ09Zr10=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.937217+00 2025-12-17 05:30:00.937221+00 23349 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PcWdWbrlUoGU2GHJxoa20cBFexQ=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.938281+00 2025-12-17 05:30:00.938285+00 23350 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f4_N4rMeswo_FB5D_oMcfcb_UDc=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.939439+00 2025-12-17 05:30:00.939444+00 23351 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vg4NQEfR7-0CWBRTgHaLvMIRWSU=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.940548+00 2025-12-17 05:30:00.940553+00 23352 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8cQz2U0SAA9VrI9cam3PCLt7q70=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.941628+00 2025-12-17 05:30:00.941632+00 23353 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XdLt6oOBet3z70WdPuOwG6GbcEU=", "createTime": "2024-08-15 14:39:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.942717+00 2025-12-17 05:30:00.942721+00 23354 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m4mPgR_vRjCQfjtpBgoGOYP9hrU=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.943799+00 2025-12-17 05:30:00.943804+00 23355 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tv0oVIp8Zi9yGSKLPxHIIj5GssU=", "createTime": "2024-08-15 14:39:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.945172+00 2025-12-17 05:30:00.945176+00 23356 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2_pZ_qamszC6xGcGAt_2_i_RiOQ=", "createTime": "2024-08-15 14:39:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.946556+00 2025-12-17 05:30:00.94656+00 23357 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o-Cx8ckFqm9SgxbWVUrj0honQtg=", "createTime": "2024-08-15 14:39:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.947962+00 2025-12-17 05:30:00.947966+00 23358 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UMb2K0njKF52L0sZtSpijDr_Mgc=", "createTime": "2024-08-15 14:39:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.949358+00 2025-12-17 05:30:00.949362+00 23359 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q08yR1eCcZYMW5gD484J-zGVYTk=", "createTime": "2024-08-15 14:39:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.950764+00 2025-12-17 05:30:00.950769+00 23360 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rPFEpiMkk5oPEX-nCLV0q8Byw78=", "createTime": "2024-08-15 14:39:01"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.95216+00 2025-12-17 05:30:00.952165+00 23361 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zT5OMQogj15rN8U5jRCqjtFEuiw=", "createTime": "2024-08-15 14:39:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.953555+00 2025-12-17 05:30:00.953559+00 23362 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QXnzRVa7jRovpH6exmPu0xnDapw=", "createTime": "2024-08-15 14:39:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.954918+00 2025-12-17 05:30:00.954922+00 23363 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-_msfToAAv17kaELStFHqXbu9x0=", "createTime": "2024-08-15 14:39:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.955968+00 2025-12-17 05:30:00.955973+00 23364 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KKdPTrM_WUwjlPx_KGF0heuJFP4=", "createTime": "2024-08-15 14:39:02"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.95705+00 2025-12-17 05:30:00.957054+00 23365 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fJpsqGzp1-KdbBetNh1JPAD7HjY=", "createTime": "2024-08-15 14:39:03"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.958197+00 2025-12-17 05:30:00.958202+00 23366 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tVRM2S-OR-rSOGTIOd26uvPHnmc=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.959307+00 2025-12-17 05:30:00.959311+00 23367 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eGRYP_g63v6LeDenExPiwEA8sys=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.960395+00 2025-12-17 05:30:00.9604+00 23368 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SeQOQPCxi9qfmajOKHhuP8IzoIo=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.961463+00 2025-12-17 05:30:00.961467+00 23369 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YJXMHCV30Ki-s_ddSDN9lTvLdM0=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.962585+00 2025-12-17 05:30:00.96259+00 23370 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OQ40j-EbR683q3hktfNmNhlshhY=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.963672+00 2025-12-17 05:30:00.963677+00 23371 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oKPoBBBKKZzzAUQzRUoRBrDG_JE=", "createTime": "2024-08-15 14:39:03"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.964741+00 2025-12-17 05:30:00.964745+00 23372 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UbIOZPRs42IGn68kE7GybalL118=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.965837+00 2025-12-17 05:30:00.965842+00 23373 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lzK3NPe9AqkQcPne0NgiLV9Z9yM=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.966947+00 2025-12-17 05:30:00.966951+00 23374 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ik9ef1l6ai6ovJkRCnDmF8t6SeI=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.96802+00 2025-12-17 05:30:00.968024+00 23375 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0_OCl6NlVXw9nEg13KzbztI7IpI=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.969073+00 2025-12-17 05:30:00.969077+00 23376 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N9UB1U6nZGvo_aBQfiQVdGvKTRQ=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.9753+00 2025-12-17 05:30:00.975304+00 23381 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SrLYwFRvs32pToByUxtEz4ex0Ck=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.970144+00 2025-12-17 05:30:00.970149+00 23377 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iIWa74TmN9ho8T44ZfJC8XLCfUw=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.971268+00 2025-12-17 05:30:00.971273+00 23378 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OayMYvoP3BavTR0P4RRlT1gJSNs=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.972976+00 2025-12-17 05:30:00.972982+00 23379 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IjwD67TJ-P6eb2UNo_M3XUlaPoI=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.974154+00 2025-12-17 05:30:00.974158+00 23380 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T16GnxReS1yDRyBRjVmQEzNBeJs=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.976426+00 2025-12-17 05:30:00.97643+00 23382 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6YNQI1g4ZZ7hD9G5Wr4k70Kf84Q=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.97755+00 2025-12-17 05:30:00.977555+00 23383 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e5uUQTQb8Qo6iAV7AeQ4xntmNzY=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.978642+00 2025-12-17 05:30:00.978646+00 23384 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JqdxAOF9R1hg1E4x2sY9hhFL2BQ=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.979733+00 2025-12-17 05:30:00.979737+00 23385 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nTZ2msAbjyzyDynNiLhHg9zy0xw=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.980861+00 2025-12-17 05:30:00.980866+00 23386 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1IGuBX0xWrqrqZty-O5ueM6pP2Y=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.982162+00 2025-12-17 05:30:00.982167+00 23387 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YPdU8Pi8jb1SvHUvNm1aUTUosaY=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.983272+00 2025-12-17 05:30:00.983277+00 23388 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:me30hKNX18CtPHX-g70MzseZ0uw=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.984358+00 2025-12-17 05:30:00.984362+00 23389 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JgmThEIwXi3NgXjSALogqtFWA0c=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.985447+00 2025-12-17 05:30:00.985451+00 23390 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TvQPIJ1xKLmk2xcKTpfokRkQIKE=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.986816+00 2025-12-17 05:30:00.986824+00 23391 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uY7wilwHu55KyRKLt963ONcq7bA=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.988574+00 2025-12-17 05:30:00.988581+00 23392 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dC9-KuckmnkrLhH5AA5rsOvFV10=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.990239+00 2025-12-17 05:30:00.990246+00 23393 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-bz_zCzy7BeNBgt8hKqJpXdRbdQ=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.992108+00 2025-12-17 05:30:00.992115+00 23394 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1IJCPNIkIpVYiWvl6wpz8T08jYo=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.99418+00 2025-12-17 05:30:00.994186+00 23395 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IdUfL9-NNWONz2OqV7dKqFf5Vrs=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.996109+00 2025-12-17 05:30:00.996114+00 23396 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mFxGo_sRCqaJPnZCKWM2j-n6WC8=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:30:00.99728+00 2025-12-17 05:30:00.997285+00 23397 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=1766035800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wrJ1dyKmR6jiPE-q7wOUMjoPATI=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.349317+00 2025-12-17 05:40:00.349325+00 23398 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VNWpOxRMTlwEiG4EfauEOH6dLw8=", "createTime": "2024-08-15 14:39:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.351372+00 2025-12-17 05:40:00.351379+00 23399 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nHIZtKNeiDiZwk5DI9rQmt7CKQo=", "createTime": "2024-08-15 14:39:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.352692+00 2025-12-17 05:40:00.352697+00 23400 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yqE1EsyF1InlffKjZ1xkvTxAf24=", "createTime": "2024-08-15 14:39:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.353935+00 2025-12-17 05:40:00.35394+00 23401 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AxepAPyA3ROu4kjqTZ8xW-eHdH0=", "createTime": "2024-08-15 14:39:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.355093+00 2025-12-17 05:40:00.355097+00 23402 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c_4ayEzBgNgKy9E0EbxwIX7AS_w=", "createTime": "2024-08-15 14:39:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.356218+00 2025-12-17 05:40:00.356222+00 23403 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PIp_wcuTmKUa4buaV1ifAs0oUUE=", "createTime": "2024-08-15 14:39:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.357636+00 2025-12-17 05:40:00.357641+00 23404 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:77bBPZmxgiBvnYBDTB84a4kWg60=", "createTime": "2024-08-15 14:39:06"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.358793+00 2025-12-17 05:40:00.358797+00 23405 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:swsukCjgnIlNNvkUE55wmhHs3zc=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.359894+00 2025-12-17 05:40:00.359899+00 23406 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r3c2i64wKhxmfzo6cEgHjEs8n0A=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.360977+00 2025-12-17 05:40:00.360982+00 23407 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bqIUF-PtpImFcew-QE78p0ulzGE=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.362074+00 2025-12-17 05:40:00.362078+00 23408 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UOFJgrmOacas_RD_JaYcVlAgkrc=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.363172+00 2025-12-17 05:40:00.363176+00 23409 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PQbRt36C_Zkc5Kn1mg4JtG3a5so=", "createTime": "2024-08-15 14:39:07"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.364237+00 2025-12-17 05:40:00.364241+00 23410 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zKUwa1tKah3e53LBPNVk9Djn9UE=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.365309+00 2025-12-17 05:40:00.365314+00 23411 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Ir_SZRG70pO7Ec_cEFXe9tm2SU=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.36637+00 2025-12-17 05:40:00.366374+00 23412 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cMbllnDTKI4nbK1B_0k_vijRT3g=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.367468+00 2025-12-17 05:40:00.367472+00 23413 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:74xkiJXL0J7LCVNyEQDi8wfbRM8=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.36855+00 2025-12-17 05:40:00.368555+00 23414 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:66a3TRNrn3JsDLffCpfplv5lFD0=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.369659+00 2025-12-17 05:40:00.369663+00 23415 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uf8PUVtpbWGvK-7XbZzL2QuOgbM=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.370885+00 2025-12-17 05:40:00.370889+00 23416 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8xvDBRWE58gXIyTX4F8QBvNUILI=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.371995+00 2025-12-17 05:40:00.371999+00 23417 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MjeyPPXQaJ28PgvuztUaUSheJ-4=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.373098+00 2025-12-17 05:40:00.373102+00 23418 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9OG_CQKWhqPA5dXPoXDJuXIQSTY=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.374177+00 2025-12-17 05:40:00.374181+00 23419 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qTqu8VTgNxhAFRgpOLYTBr5AXM4=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.375277+00 2025-12-17 05:40:00.375281+00 23420 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rsojjzlhlfVlFrGZTevrKd4nW1c=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.376637+00 2025-12-17 05:40:00.376642+00 23421 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vPwDCQORq5VAnlOZ5iYt6HPNbZU=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.378017+00 2025-12-17 05:40:00.378021+00 23422 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dOVt_shdVAFOxbfoNFueB6hjjO8=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.379429+00 2025-12-17 05:40:00.379434+00 23423 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dzdiHWjTpaadO3vIk2p1hbEt5bg=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.380999+00 2025-12-17 05:40:00.381004+00 23424 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v0-YwYYb64pW_ohNX-UeySj4ToI=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.382471+00 2025-12-17 05:40:00.382476+00 23425 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x9wtv9GrBhYvOqLb662_wF5PDgg=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.383857+00 2025-12-17 05:40:00.383862+00 23426 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8oRRjTWyJx5Gm5s2706OS8qTaus=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.385282+00 2025-12-17 05:40:00.385286+00 23427 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tKjHZUS2t6uF6H2sWIEd-T0X3z8=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.386914+00 2025-12-17 05:40:00.386919+00 23428 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FcLQYCe4jEUqFLyaOrTQ81H5Qpg=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.388072+00 2025-12-17 05:40:00.388077+00 23429 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gx92pPia86hTkC4t50VNB7F1I2Y=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.389168+00 2025-12-17 05:40:00.389173+00 23430 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ci1ArBIhZmcuOfDeOcEUtxjtmAE=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.390263+00 2025-12-17 05:40:00.390267+00 23431 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lij_mKuztcHeN0aDQe3KQdQT0s4=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.391372+00 2025-12-17 05:40:00.391376+00 23432 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DKjN3VV7Y8U4nrlKPmvCVtzdHsM=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.392482+00 2025-12-17 05:40:00.392486+00 23433 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z7jo9qEwEfgaHoXwn_TtPigWhd4=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.393557+00 2025-12-17 05:40:00.393562+00 23434 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BoXItjnW36Ku3fjo5nzZXeKWZi4=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.394645+00 2025-12-17 05:40:00.394649+00 23435 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4SeqaF5W5r32_ey76jc1EmUWm_A=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.39577+00 2025-12-17 05:40:00.395774+00 23436 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zAuM8CR66tZeV1xS27I3LTdCKPE=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.396985+00 2025-12-17 05:40:00.39699+00 23437 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vCoAOGlNG0da5U0nk2n6jveIzHw=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.398096+00 2025-12-17 05:40:00.3981+00 23438 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YejgYm8gKF2z6I7ikch8sy2pX2E=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.399232+00 2025-12-17 05:40:00.399236+00 23439 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:elrQxA1vZ0yQYQhmk5CHfQk8KxU=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.400338+00 2025-12-17 05:40:00.400342+00 23440 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XZWLqdAXcyeOC0gp_elHgf-O35Y=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.401451+00 2025-12-17 05:40:00.401456+00 23441 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0yEUvf47gFPpLMX7-XtHCeO4W6s=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.402546+00 2025-12-17 05:40:00.402551+00 23442 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rdE4J5m0S3exPqWuFgVb8DhYSbM=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.403637+00 2025-12-17 05:40:00.403641+00 23443 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qsgOEMXfm2Be2nVXoHp6x1tmRNU=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.40474+00 2025-12-17 05:40:00.404745+00 23444 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ObdX_kHg2bteA485VNRm0VqBED4=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.40583+00 2025-12-17 05:40:00.405835+00 23445 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lP34OZdBTt_TvU-muPDyqFdh3rc=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.406925+00 2025-12-17 05:40:00.406929+00 23446 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s7MrxqffjcJXoW2IRBp3bhRABpY=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.408054+00 2025-12-17 05:40:00.408058+00 23447 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RfEoXa2vbiVhGyEOKCFCip-T7k8=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.409185+00 2025-12-17 05:40:00.409189+00 23448 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q1voiyy239xEN9cPdbGa1-Qn5rc=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.410303+00 2025-12-17 05:40:00.410308+00 23449 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bC3rhDqlJguzfIxW4ceSR6oLOBo=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.4114+00 2025-12-17 05:40:00.411404+00 23450 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vSRLSGZdixdQy6mjulTe_pJsVyQ=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.412498+00 2025-12-17 05:40:00.412502+00 23451 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EsGfRP3HCpUhI_AdkwFN5YOU_e4=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.413687+00 2025-12-17 05:40:00.413692+00 23452 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gwYc__0HHAMntT7jEKVNzMNbUWo=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.414829+00 2025-12-17 05:40:00.414833+00 23453 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VEJ26rD59KUxhGBV01ZRg399Hdg=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.415917+00 2025-12-17 05:40:00.415922+00 23454 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jIXZhoeLjbwjnHfpMxp_zaKU9l8=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.41701+00 2025-12-17 05:40:00.417014+00 23455 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CAjLz6SzHPeuzPB3FheBEiNCpRc=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.418085+00 2025-12-17 05:40:00.418089+00 23456 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qc3ocfMA8uu8grpufs1rjoMZs8Q=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.419155+00 2025-12-17 05:40:00.419159+00 23457 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SndApLB-n8KYoDbo4QNPwMkPnTg=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.420243+00 2025-12-17 05:40:00.420248+00 23458 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:67zcOd6pNgEBq9N2IJG7HoieWcU=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.421332+00 2025-12-17 05:40:00.421336+00 23459 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5k3kZx7kI7ehGGKWebHS1PxQ5Qo=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.422412+00 2025-12-17 05:40:00.422416+00 23460 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k7Els31h9YTIk0AIi7z269i0O9A=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.423466+00 2025-12-17 05:40:00.42347+00 23461 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nn2ieRzT7P_dRkMcFrF1GtqnENE=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.424558+00 2025-12-17 05:40:00.424562+00 23462 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tMGPynE8AroN9Cmpihht9E-Fzpc=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.425644+00 2025-12-17 05:40:00.425649+00 23463 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kltbXmIE2kr9c3XTFqATPz6Wp5k=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.426729+00 2025-12-17 05:40:00.426733+00 23464 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYRWOcv0Ez1-lwvG-DTz1_ootI0=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.427835+00 2025-12-17 05:40:00.427839+00 23465 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_EdNt_tm9RdznVR36PVCQ3yDqpg=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.428921+00 2025-12-17 05:40:00.428925+00 23466 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4DWlEDGQkanE-FmutKuyz0LZZ00=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.430032+00 2025-12-17 05:40:00.430036+00 23467 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nr_ZgB2anRAm7P3yYtiQU6OduqM=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.431149+00 2025-12-17 05:40:00.431153+00 23468 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RuPJXBfNzrtYvDYV5xmqlrpoDJs=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.432233+00 2025-12-17 05:40:00.432237+00 23469 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7lwG9RtlaTcGhYNmY7Aq92q6Rsw=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.433334+00 2025-12-17 05:40:00.433338+00 23470 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m1_BFBaaubvOg5Eq1zW7dmjmc4I=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.434412+00 2025-12-17 05:40:00.434416+00 23471 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:szdHMee6mUKXzvju7gV1nOFBWxs=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.435494+00 2025-12-17 05:40:00.435498+00 23472 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1W1clDM1-lljyfZ-RF8UYOzCF_0=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.436582+00 2025-12-17 05:40:00.436586+00 23473 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i6uBaw95N34NMirehV_RPZqVNDk=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.437673+00 2025-12-17 05:40:00.437678+00 23474 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K1ntGYyeVO82woOVSaa7OHHxSCg=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.438751+00 2025-12-17 05:40:00.438755+00 23475 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9pH4AzSRrKUtkWNu40QFbA31Jig=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.440109+00 2025-12-17 05:40:00.440113+00 23476 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8w2YDhCLexnZzRhSDSpshRGaSgU=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.441197+00 2025-12-17 05:40:00.441202+00 23477 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZcLYdLIZWLBHBHUbFARjqJzWA3M=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.442287+00 2025-12-17 05:40:00.442291+00 23478 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EEFky8P5F-kmixww2jO5LsdKnQ0=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.443367+00 2025-12-17 05:40:00.443372+00 23479 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oL10A8GnFoz-bkGpfcUZhQJhi9k=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.44445+00 2025-12-17 05:40:00.444454+00 23480 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Aw3bJJ9PGdk1PcfJYDW9wQdBEeU=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.445538+00 2025-12-17 05:40:00.445542+00 23481 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:67ljTMG2FdRsWoIkiwccLDosL9c=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.446647+00 2025-12-17 05:40:00.446651+00 23482 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ahmMglQhNPYicRPqAg8HYyC01BA=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.447729+00 2025-12-17 05:40:00.447733+00 23483 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z2yehLRb7TOvPHFYhqXwTfW1ZX4=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.448815+00 2025-12-17 05:40:00.448819+00 23484 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HuNO1G-1N5h7WUvwpYWr0OcSPZU=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.449888+00 2025-12-17 05:40:00.449892+00 23485 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o8dJeW8Wo87wfyAylkMdmXTcJkM=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.450977+00 2025-12-17 05:40:00.450981+00 23486 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jl5fTgCnLk_4_TrAlMy-mpkOA7c=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.452068+00 2025-12-17 05:40:00.452072+00 23487 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48ZYUpsfybWlDsyYcK4YZdIiqCg=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.453146+00 2025-12-17 05:40:00.45315+00 23488 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QKmf4gu00Pe1XwW1QlOzQPiZLac=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.454234+00 2025-12-17 05:40:00.454239+00 23489 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KLhxMgJoH8sKQofCBW_38k0kPAY=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.45532+00 2025-12-17 05:40:00.455325+00 23490 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KxzYUUwckduMeUNjjhXd8pP-HTQ=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.456399+00 2025-12-17 05:40:00.456403+00 23491 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vP9IQ3HOWPnBM9r3zNzY8Ae7hOk=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.457488+00 2025-12-17 05:40:00.457493+00 23492 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:okHETnXzMfsiGMFcrWTFKP-oABM=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.458569+00 2025-12-17 05:40:00.458573+00 23493 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T7_2uNixBDTVKZPaD2rjw8adraY=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.459661+00 2025-12-17 05:40:00.459666+00 23494 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KZmoR_Z6zsITgwr7xv0we4SNsNs=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.460735+00 2025-12-17 05:40:00.460739+00 23495 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AhZVb9yvfyJaWW7WEQfNi1JwxiM=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.461846+00 2025-12-17 05:40:00.461851+00 23496 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OrSxnDsT_7pUEYGBXrhtypeP_mA=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.462923+00 2025-12-17 05:40:00.462927+00 23497 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=1766036399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q9lZmRRNgpuyiOXhvL8Th7zBqbY=", "createTime": "2024-08-15 14:39:15"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.817944+00 2025-12-17 05:40:00.817952+00 23498 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wd0xEWa_FygwiYOMj7ddhn1BNYk=", "createTime": "2024-08-15 14:39:15"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.819507+00 2025-12-17 05:40:00.819513+00 23499 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vmZV8cJlp-gHqBcHZCz-iI19mEI=", "createTime": "2024-08-15 14:39:15"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.821254+00 2025-12-17 05:40:00.821259+00 23500 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bVF5oPZIRaEr6ynw4M-SJ36xTAk=", "createTime": "2024-08-15 14:39:15"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.82241+00 2025-12-17 05:40:00.822414+00 23501 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LPWwJ2WBzm9BRG0pao8DzvbMGPc=", "createTime": "2024-08-15 14:39:15"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.82353+00 2025-12-17 05:40:00.823535+00 23502 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1wJMm1rTN2Rk5DYWHsJVoXVKjUs=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.824687+00 2025-12-17 05:40:00.824692+00 23503 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f9wbbGIO3Kv8QVl5g8Z32gP21MA=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.825869+00 2025-12-17 05:40:00.825874+00 23504 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zEmYe8SA7ypwmjx3mvA-q_T-ZgU=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.827109+00 2025-12-17 05:40:00.827114+00 23505 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LyDVURVrbHT2zolMtfDOz0kV5tE=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.828235+00 2025-12-17 05:40:00.82824+00 23506 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NjA81ARfR9KfVljponMSig8JIJ8=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.829347+00 2025-12-17 05:40:00.829351+00 23507 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-EZ-HatCDQFNVFaQa__3_BMWV78=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.830482+00 2025-12-17 05:40:00.830487+00 23508 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u7G1svDIHj6lpq-My7rvksFEJh0=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.831596+00 2025-12-17 05:40:00.8316+00 23509 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ty3VmvISdsUZQcCkWnpfDVCWmtM=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.832712+00 2025-12-17 05:40:00.832717+00 23510 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ki7YkS8E7hHMt6hfclpxHjXxPOI=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.833822+00 2025-12-17 05:40:00.833826+00 23511 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ccyyXiXPl-f-peOaikZzaf0SOKs=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.834912+00 2025-12-17 05:40:00.834916+00 23512 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aMOxc9m8AQepeCbRKZF6RNzuAVY=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.835984+00 2025-12-17 05:40:00.835988+00 23513 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CkSpCA-IXej5Rj9H_ui3dfk_2_M=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.837084+00 2025-12-17 05:40:00.837088+00 23514 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XEeCIxolAtVWGm3c3mI4oST1lcA=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.838171+00 2025-12-17 05:40:00.838176+00 23515 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zGzZyYeiFC8dRCS2mlnkfraBqY8=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.839251+00 2025-12-17 05:40:00.839255+00 23516 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l9PhmtKettIYG2-COIXmMK7DhCE=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.840324+00 2025-12-17 05:40:00.840328+00 23517 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nr7VnFb0br-cW6WA7wy9gfcKjXg=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.841405+00 2025-12-17 05:40:00.84141+00 23518 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:voR1kBojkb67qry8mesJPn5fPYw=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.842595+00 2025-12-17 05:40:00.842599+00 23519 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QOvP4h3ioS1ss_rBh2IPfCy1xp4=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.843734+00 2025-12-17 05:40:00.843738+00 23520 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TtUw-FRxxO0U2LHYLAzzKWkDYoY=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.844876+00 2025-12-17 05:40:00.84488+00 23521 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SO5CJ7E8V55mF2_-i8V0MBNzGBo=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.845961+00 2025-12-17 05:40:00.845966+00 23522 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rnbTvxjWMEsE7hWmfCWLHtT6do4=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.847055+00 2025-12-17 05:40:00.847059+00 23523 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hvuxMDzm08n3AXOgFMpwmh-VoBU=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.848271+00 2025-12-17 05:40:00.848276+00 23524 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q9e4-3f6KzpD4mpfXQXsoNYvY9M=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.849411+00 2025-12-17 05:40:00.849416+00 23525 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wrrGzmyfLrsHFIS2w5sH-jfXp9k=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.850702+00 2025-12-17 05:40:00.850708+00 23526 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vn6N4MUeoYE-xaLwv4rJfCVSqrA=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.852081+00 2025-12-17 05:40:00.852086+00 23527 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r9FNsMTuKRKUsh6_dKJxH4w_mgE=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.853384+00 2025-12-17 05:40:00.853389+00 23528 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5xrY_DtXcrI_4baXU-CTV9zElf8=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.854701+00 2025-12-17 05:40:00.854706+00 23529 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K8BB2FfMYoG2N_UIXA9vr7HZ7uI=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.856004+00 2025-12-17 05:40:00.856008+00 23530 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7XB7Wr_eiRXNVD6n7V84lKuPs3A=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.857173+00 2025-12-17 05:40:00.857178+00 23531 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0TWHNRJ4eVxWfqntKFB0v2LVFek=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.858278+00 2025-12-17 05:40:00.858282+00 23532 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OjBOwaGJcI-kU-cwidXdN-PKq_c=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.859369+00 2025-12-17 05:40:00.859373+00 23533 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0YgcHqusVedTjjyVAOiDd7kw1yg=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.860455+00 2025-12-17 05:40:00.860459+00 23534 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZUgOgzlumkulwCPb48fTyXFxRyM=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.861573+00 2025-12-17 05:40:00.861578+00 23535 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gmcRileaof0fANU2iBfHyRqJ_lg=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.862652+00 2025-12-17 05:40:00.862656+00 23536 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-qeav5a8oAUR9UfJ15KSbXgIDYk=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.863741+00 2025-12-17 05:40:00.863746+00 23537 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tRMggyFNRgMCXvmXY9U4MVjUl44=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.864815+00 2025-12-17 05:40:00.86482+00 23538 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RcgiCxLecG5eyUHcsT4lT0gpk9M=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.866005+00 2025-12-17 05:40:00.86601+00 23539 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N9VEjfGcWDwsePpywK0Zo_wle5Y=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.86714+00 2025-12-17 05:40:00.867144+00 23540 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nPe-NHr_Mu3EbgD21euPxtgjmQ8=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.868228+00 2025-12-17 05:40:00.868232+00 23541 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tdoiugbu7ow-7tiGFuTumpCIwD4=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.869318+00 2025-12-17 05:40:00.869322+00 23542 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G79-8QyVrrvBuLj2YUHkO_q8Rqc=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.87042+00 2025-12-17 05:40:00.870424+00 23543 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZYE86vzj-_ysBS1dE99s9X-SUV0=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.871514+00 2025-12-17 05:40:00.871519+00 23544 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uk98CGns---YPjQ3kfwOmGICqzE=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.872664+00 2025-12-17 05:40:00.872668+00 23545 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9yJ6f7Eg6SEK0ZKP0gqMMuhhs6g=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.87396+00 2025-12-17 05:40:00.873965+00 23546 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xZi0vKPlXxAJGdnncZW9V9gWDYQ=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.875144+00 2025-12-17 05:40:00.875149+00 23547 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZLVqQIsRIT6e9dy05y99SQWv2jg=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.876525+00 2025-12-17 05:40:00.876529+00 23548 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J1w_IAM1ze85Bv5C6kyuPTExSPw=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.877937+00 2025-12-17 05:40:00.877942+00 23549 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i_MGeN864XmF8Etv4LCu-EKspyM=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.879332+00 2025-12-17 05:40:00.879337+00 23550 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ys8Q52whGmnN9nURr_UqnPaaBAI=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.880731+00 2025-12-17 05:40:00.880736+00 23551 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4LMI1yz7OanqQlRsoS21oRSvdFU=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.882118+00 2025-12-17 05:40:00.882122+00 23552 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BFp8jKh3XxdbI-YYtBud5tnvccw=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.883517+00 2025-12-17 05:40:00.883522+00 23553 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PSdJ7cRDk34cTykar13jIVRzyAI=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.884907+00 2025-12-17 05:40:00.884912+00 23554 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UBhI46sKu4TJlayhcR5E9260PfE=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.886363+00 2025-12-17 05:40:00.886367+00 23555 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8gNy6METKojh64hzs-zWLCUtdBk=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.887775+00 2025-12-17 05:40:00.88778+00 23556 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QgJIokQlz4az_nJxfLlU6E6m2ro=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.888878+00 2025-12-17 05:40:00.888883+00 23557 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gHxwcZvJdeOpvVoBqL135vzj9TY=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.889972+00 2025-12-17 05:40:00.889976+00 23558 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SunTJX8qoAANpRxA5GwRYRthbhw=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.89107+00 2025-12-17 05:40:00.891074+00 23559 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MFEERIOAADTCMaltL8ZO2Jmb-jM=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.892167+00 2025-12-17 05:40:00.892171+00 23560 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uh1BOTLZAO8gFn50mqfiMQMnG8w=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.89328+00 2025-12-17 05:40:00.893284+00 23561 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f4gB5q59SvpxJrQoRDHGpBth0SU=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.898738+00 2025-12-17 05:40:00.898742+00 23566 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DP9T5SIZZNhczgQPHluRPPAxZLs=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.894348+00 2025-12-17 05:40:00.894352+00 23562 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1xkZBImxX46i9Wjtm4wSqXMc5Xs=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.895466+00 2025-12-17 05:40:00.89547+00 23563 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NB-dWLYQSjDkOdZCYCn-JDviSms=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.896552+00 2025-12-17 05:40:00.896557+00 23564 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5wkFJ9-monYx4aAx7qfuXm7XoFc=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.89764+00 2025-12-17 05:40:00.897644+00 23565 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SXo3NXNJMNxmYMZupADAs5aSihY=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.899835+00 2025-12-17 05:40:00.899839+00 23567 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FLyYSfACLm7NWS911tvC2m_NRrI=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.900929+00 2025-12-17 05:40:00.900933+00 23568 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:efVOmoIddM6JPSu926KbqpJRuBY=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.90203+00 2025-12-17 05:40:00.902034+00 23569 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d2GJUuvxJa8QECg3Y1yV284YQ2c=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.903296+00 2025-12-17 05:40:00.9033+00 23570 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YD0EAgJ737y6JcV6HN6Sq_9aVno=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.904598+00 2025-12-17 05:40:00.904603+00 23571 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V5JoazDhX8G_p7bFKSw11xI2glU=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.906322+00 2025-12-17 05:40:00.906327+00 23572 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ExuKxW-qTZLYtmmgkSOc8q3kzJ0=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.907624+00 2025-12-17 05:40:00.907629+00 23573 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:71I_Myog-HSH-JAkn6t_vM9JkFU=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.908932+00 2025-12-17 05:40:00.908937+00 23574 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5kkbO0z0tgeUW-KWbese8Vh9O2o=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.910125+00 2025-12-17 05:40:00.91013+00 23575 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hHgVPnTFWhSH03gUeKiUdB8OGHw=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.911265+00 2025-12-17 05:40:00.91127+00 23576 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5JD5zrHC_Dq0APfRQtAr07YoXVg=", "createTime": "2024-08-15 14:39:22"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.912382+00 2025-12-17 05:40:00.912386+00 23577 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:agboVU99huTZGdy9J0ymj7XHLBg=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.91351+00 2025-12-17 05:40:00.913514+00 23578 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:awH3NmYBS_C8I0El2YfBLq3SOLw=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.914708+00 2025-12-17 05:40:00.914713+00 23579 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jWoliDZXW3D1KpSzfSEoNpRMgb4=", "createTime": "2024-08-15 14:39:22"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.915838+00 2025-12-17 05:40:00.915843+00 23580 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R7H0nD892f0T__oFf-KDvIDJ7co=", "createTime": "2024-08-15 14:39:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.918191+00 2025-12-17 05:40:00.918196+00 23582 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:900B8UTpXWRPGULQARLU6wOK5ls=", "createTime": "2024-08-15 14:39:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.917049+00 2025-12-17 05:40:00.917054+00 23581 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OjdVhBPusdh6HxYvOeOQzm2vIaM=", "createTime": "2024-08-15 14:39:23"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.920832+00 2025-12-17 05:40:00.920837+00 23583 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AlviElDavXjFpLlvssE-GkbQDio=", "createTime": "2024-08-15 14:39:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.390116+00 2025-12-17 06:20:00.39012+00 24216 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FkgJMwK59STxGLeEx1-LMuZdVRI=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.921969+00 2025-12-17 05:40:00.921973+00 23584 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GFAJm6fxSY6gYu1ReP-BklSA88g=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.923129+00 2025-12-17 05:40:00.923133+00 23585 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a1JgvO-5ZYsizh7m6VbDMTbvhag=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.924248+00 2025-12-17 05:40:00.924252+00 23586 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zkcAgH4fFzRgPLSKxgHQ71uoHhE=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.925355+00 2025-12-17 05:40:00.92536+00 23587 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T27fqUOl4U45hSJB8dxUpt6Ky3I=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.926443+00 2025-12-17 05:40:00.926447+00 23588 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vb8yy1dkdqcIH4OP90L4GZvAMIA=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.927568+00 2025-12-17 05:40:00.927572+00 23589 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ksIelQ58T4kEaWPW51gy_LSylhM=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.928684+00 2025-12-17 05:40:00.928688+00 23590 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xDT3zWe-Wxl4_SyvCuPx435bDzQ=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.929766+00 2025-12-17 05:40:00.929771+00 23591 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0wz9mEPpGlO5LKH68mu8E4Hdwho=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.930848+00 2025-12-17 05:40:00.930852+00 23592 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i0TocKaTX0s7h1cilQOv211yloU=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.931946+00 2025-12-17 05:40:00.931951+00 23593 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FG57yEvbCPiAKjmhgHD8801OIKw=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.933047+00 2025-12-17 05:40:00.933051+00 23594 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ilg3jJlIlDHNHJvTVNFgb1Ycduo=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.934138+00 2025-12-17 05:40:00.934142+00 23595 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jjZrhgTZVYgHCeRJze1ZJMVtHFo=", "createTime": "2024-08-15 14:39:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:40:00.935217+00 2025-12-17 05:40:00.935222+00 23596 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=1766036400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bG9zPWrbnm9HWeSIm6HJg65Z62U=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.594823+00 2025-12-17 05:50:00.594831+00 23597 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wn__ezSX2weDnq7lvB4tcjIN5TM=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.596597+00 2025-12-17 05:50:00.596602+00 23598 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fFW_ZhXEc6AVNKhInJ_4BQhTgKo=", "createTime": "2024-08-15 14:39:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.59783+00 2025-12-17 05:50:00.597835+00 23599 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZgflURy4XLrM62IO2Qw94vDhjWw=", "createTime": "2024-08-15 14:39:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.598981+00 2025-12-17 05:50:00.598985+00 23600 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KqSBugOlKnL4QjvuQCHRs3tev9o=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.600172+00 2025-12-17 05:50:00.600177+00 23601 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TIQh513j4qTZ0kJcmO9GAYgQnRo=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.601306+00 2025-12-17 05:50:00.601311+00 23602 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pxqEW9VcqCSvQWM3xkrorKYYfLA=", "createTime": "2024-08-15 14:39:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.602425+00 2025-12-17 05:50:00.60243+00 23603 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5AlCliPA2OE_uE7EriimOG-lDus=", "createTime": "2024-08-15 14:39:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.603565+00 2025-12-17 05:50:00.603571+00 23604 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ADrifZmVhXbYlyTdDHwGAYPqcaU=", "createTime": "2024-08-15 14:39:26"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.604726+00 2025-12-17 05:50:00.60473+00 23605 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OfjiNodChtzAZV-LbH6hJTrdQto=", "createTime": "2024-08-15 14:39:26"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.605836+00 2025-12-17 05:50:00.60584+00 23606 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VDGGWwyu-RLAji2987G2ZKaPpHU=", "createTime": "2024-08-15 14:39:25"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.606935+00 2025-12-17 05:50:00.606939+00 23607 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2By2xxbHMawapf-NQTEvDPLDdQY=", "createTime": "2024-08-15 14:39:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.608045+00 2025-12-17 05:50:00.608049+00 23608 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ht40ZNoR5viD97D2uD1dTI8fLaY=", "createTime": "2024-08-15 14:39:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.609151+00 2025-12-17 05:50:00.609155+00 23609 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B3EXB-qn-tui01tmOVMatUgC-CM=", "createTime": "2024-08-15 14:39:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.610524+00 2025-12-17 05:50:00.610528+00 23610 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wyApkusqlECkM47ZDb85iqpuGtE=", "createTime": "2024-08-15 14:39:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.611931+00 2025-12-17 05:50:00.611935+00 23611 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TU6Dy4onHaN-Fv-AKLT42_BxULk=", "createTime": "2024-08-15 14:39:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.61331+00 2025-12-17 05:50:00.613314+00 23612 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bI4jPwz9Fo2o-asdRQBlYj2rbHM=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.61478+00 2025-12-17 05:50:00.614784+00 23613 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iyhAzUJEyuZi_9a7sD53CkXh1AQ=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.616211+00 2025-12-17 05:50:00.616215+00 23614 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sFkFL3XRr_oHNRHGVdQU34VZtqY=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.61762+00 2025-12-17 05:50:00.617624+00 23615 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vFGsOv8Y8ZBeaxjWBzgOl5Hqw9I=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.619021+00 2025-12-17 05:50:00.619025+00 23616 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVHjty94xGu0r9oKWvgyS0vgPJs=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.620514+00 2025-12-17 05:50:00.620518+00 23617 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pjicmJe65gY0h-aVpfKbiaDkQd4=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.621632+00 2025-12-17 05:50:00.621636+00 23618 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UoBxcwjr0Ub0g_KPby6x27b6OrY=", "createTime": "2024-08-15 14:39:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.622719+00 2025-12-17 05:50:00.622723+00 23619 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3su9DIDL2e04rtwesXBVvesr02Q=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.623838+00 2025-12-17 05:50:00.623842+00 23620 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SlTknQfh2fTmQLxT2Y6aUMKBTic=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.624938+00 2025-12-17 05:50:00.624942+00 23621 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0g7j_Mw52CYSQaCZ6aFjcXKjstA=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.6263+00 2025-12-17 05:50:00.626304+00 23622 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8s4mrYzkXOUSvYmoHtgIUpYcV_4=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.627467+00 2025-12-17 05:50:00.627472+00 23623 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RyJwFXktYjfjppAcSLB2D9ZRIPA=", "createTime": "2024-08-15 14:39:27"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.628572+00 2025-12-17 05:50:00.628576+00 23624 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J9HzxjV4xk7_TyOxq1Cv6K6Pm2E=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.629717+00 2025-12-17 05:50:00.629721+00 23625 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qrsI3tUM0GSPmYHNiBNe6tZXSC4=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.630847+00 2025-12-17 05:50:00.630852+00 23626 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JUE5orJVMkmF0lIbWQLEYTIyvuo=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.631965+00 2025-12-17 05:50:00.631969+00 23627 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wLyJhQByj2jXYNfcIDugFPM-5zU=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.633083+00 2025-12-17 05:50:00.633088+00 23628 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vsGF525tHiPKsk1Bxu6kB5lW8rU=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.634173+00 2025-12-17 05:50:00.634177+00 23629 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jEpo29Ff2rOsffvdHilhPG-iH34=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.635286+00 2025-12-17 05:50:00.635291+00 23630 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KVaNpKoH1d0m0E_S15QXLd0dCR4=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.636395+00 2025-12-17 05:50:00.636399+00 23631 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:93a1SJPl2kI9PHqClcpd3ibDLrY=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.637588+00 2025-12-17 05:50:00.637593+00 23632 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RDau8a6UnFcD4Ng9MX1YoI3yW9o=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.638728+00 2025-12-17 05:50:00.638732+00 23633 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1mygX8UnU_mdDoQCJwf7KvB99NM=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.639845+00 2025-12-17 05:50:00.639849+00 23634 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iGudbLl1a5HNjukD9n4HGmNni0g=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.640976+00 2025-12-17 05:50:00.64098+00 23635 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C_RrHfyrLwV0lG80f_c4bBYlMRU=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.642074+00 2025-12-17 05:50:00.642078+00 23636 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6gqc5yetrLtZB-JClCGAFQ3vLUg=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.643173+00 2025-12-17 05:50:00.643177+00 23637 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5CLw9XmjsTFvVDcPWuulJ4VoUvQ=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.644317+00 2025-12-17 05:50:00.644321+00 23638 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jx872dtuB0l6_Cx68PqoCKaq3_I=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.645461+00 2025-12-17 05:50:00.645466+00 23639 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jonMvyLQ9kGt8XdGOh35GPhBX1g=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.646583+00 2025-12-17 05:50:00.646587+00 23640 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q8_1wojqLPekX3VJsQcCMkKSt1s=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.647691+00 2025-12-17 05:50:00.647696+00 23641 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xTROd1IL-bnsITGBAr8WrkZW4MM=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.648782+00 2025-12-17 05:50:00.648786+00 23642 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wcl1COT-VVXRoL2ATDrZMY7mAh0=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.649912+00 2025-12-17 05:50:00.649916+00 23643 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Al8AdPOswxv5PSx4nrp0V_7rgw=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.651015+00 2025-12-17 05:50:00.65102+00 23644 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pzs-Y7RTgUmkkbNDLP4RSX8mKss=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.65212+00 2025-12-17 05:50:00.652125+00 23645 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:khNC20LBitYmTuRbhxVwdvPAldY=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.653229+00 2025-12-17 05:50:00.653233+00 23646 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5mr1ec6MxGKoq_1JsmFYtrRQoy0=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.654369+00 2025-12-17 05:50:00.654373+00 23647 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sP3KAAJ3ffTTQTDphtv6mi6dt-E=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.655473+00 2025-12-17 05:50:00.655477+00 23648 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4XPDbTSL-d3qbOYfcxilfFtVu3g=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.65658+00 2025-12-17 05:50:00.656585+00 23649 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Biop4xBEvbIcHdA39VPg_kPkiuc=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.657683+00 2025-12-17 05:50:00.657688+00 23650 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kZV2BCViCvoO6ECkXuaEf7gSCjc=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.658825+00 2025-12-17 05:50:00.658829+00 23651 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ckGjFSybG700pMqgEkGkhLUaw-I=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.659933+00 2025-12-17 05:50:00.659937+00 23652 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qGysu2uvagYHCWzNNhF7MI9vXOk=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.661167+00 2025-12-17 05:50:00.661173+00 23653 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:arrxWkMDsG2jx5p5pxyHrs5u6Ec=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.662467+00 2025-12-17 05:50:00.662472+00 23654 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SaD_t_JUAh3pXyIXjofDrc1fNFU=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.663801+00 2025-12-17 05:50:00.663805+00 23655 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MnmZDA01AmUJBjie5qCyYbogZWQ=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.665098+00 2025-12-17 05:50:00.665103+00 23656 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FnpsB3gxKgEcpHJuyBGSfs0DFm0=", "createTime": "2024-08-15 14:39:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.66638+00 2025-12-17 05:50:00.666385+00 23657 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b-450vtgcpL0GW5guAMSn40hQMw=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.667683+00 2025-12-17 05:50:00.667688+00 23658 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Rt4Q8OEvmc57LBkO6njZ31UAWg=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.668999+00 2025-12-17 05:50:00.669004+00 23659 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X-YhzgbtmM5d6waE181oMGCRpgs=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.670285+00 2025-12-17 05:50:00.67029+00 23660 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mof37yIU8fsLw1WrI8IztvdiUu8=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.671579+00 2025-12-17 05:50:00.671584+00 23661 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x6eM2M02ERkmF9rilAwGoPhTgks=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.672887+00 2025-12-17 05:50:00.672891+00 23662 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:avdQIgZF8s73_babWtEHHNR3c8c=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.674207+00 2025-12-17 05:50:00.674212+00 23663 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oju0JuIZc3r9pUEMD0RtKOVPDdw=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.675513+00 2025-12-17 05:50:00.675518+00 23664 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:79mdxGhwxLEXvATa_Tu5ziKR0E4=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.676853+00 2025-12-17 05:50:00.676858+00 23665 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O09Jh4zhcCyE1Vpd9VzA6IxxFuA=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.678162+00 2025-12-17 05:50:00.678167+00 23666 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jp3sxO1WDNWNgRXx9eyf79VFMog=", "createTime": "2024-08-15 14:39:31"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.679477+00 2025-12-17 05:50:00.679482+00 23667 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SYy4NF63L8wgN-_LlNHeTUnfd3E=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.680804+00 2025-12-17 05:50:00.680809+00 23668 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7abORVMVmEb2Q7I19gCofdV8S2A=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.68211+00 2025-12-17 05:50:00.682115+00 23669 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nvyh2CM0Qo0QEN_NPZ5l8LJOF4E=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.683409+00 2025-12-17 05:50:00.683414+00 23670 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fz8WZfKRLE2PKOYGq_yTY-vLsUg=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.684751+00 2025-12-17 05:50:00.684756+00 23671 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O2bXALUywW7164VxXPgVqk9PL0w=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.686052+00 2025-12-17 05:50:00.686057+00 23672 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LSrB0k65RviJJsyRh_G9-XM3J-s=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.687343+00 2025-12-17 05:50:00.687348+00 23673 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nVdLNaMwZ8bsJUEYwndabghwr00=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.688653+00 2025-12-17 05:50:00.688658+00 23674 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:--5y0kYe9S6ny2695U_F2G2IcVU=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.689969+00 2025-12-17 05:50:00.689974+00 23675 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:80ZDSsMksl5FQqPbO986fgmpiCY=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.691405+00 2025-12-17 05:50:00.69141+00 23676 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rj37gVIPSSN2Rv9aom6OVtZ0jCM=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.692855+00 2025-12-17 05:50:00.69286+00 23677 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mNkyp33akhWMrkhPGtGoV7mHcz0=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.694018+00 2025-12-17 05:50:00.694022+00 23678 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j0j1dabkh--pnc8k0-eqfiTzs2M=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.69515+00 2025-12-17 05:50:00.695155+00 23679 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aOwE3oa7H3PKeCNHIXl6f2rOlPA=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.696254+00 2025-12-17 05:50:00.696259+00 23680 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZjtAwhegobLhoAJHb3DAYjt5y1g=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.69736+00 2025-12-17 05:50:00.697364+00 23681 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1JsPS6QQ6C27x-YUpvIbTCMcSMY=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.698479+00 2025-12-17 05:50:00.698483+00 23682 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dvTGQBU8n-w0jgE1xZvYdfGEfDU=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.69959+00 2025-12-17 05:50:00.699594+00 23683 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:66Qk1C-yrT1B3G02t4zRhllE9sY=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.700694+00 2025-12-17 05:50:00.700699+00 23684 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3wXsA7zLzSG5Yub5c6fAFxL19TE=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.701791+00 2025-12-17 05:50:00.701795+00 23685 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r67Tdvy0OkqXCEhTjAAqBtkootk=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.702911+00 2025-12-17 05:50:00.702915+00 23686 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-6baNv4Xn9szD-VxZQzjQ65oyjk=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.704021+00 2025-12-17 05:50:00.704026+00 23687 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V67sobX0vmsmtecMClXmEIyEEnk=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.705137+00 2025-12-17 05:50:00.705141+00 23688 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6XxCC0Y13gb6x-K8h2f1DcCEmco=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.70671+00 2025-12-17 05:50:00.706715+00 23689 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cxuWaJDz2kPBRjP7qSYzrCUkwms=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.708002+00 2025-12-17 05:50:00.708007+00 23690 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kxgzp2Gj_uXnL3CTN4G0Je-DY2w=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.709332+00 2025-12-17 05:50:00.709337+00 23691 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Svr1lQ8ZhBVQ7WD3J0zarz89v5k=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.710647+00 2025-12-17 05:50:00.710652+00 23692 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TBf7Zc2Hlk1Gz324ZCRNXizdxmo=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.711946+00 2025-12-17 05:50:00.711951+00 23693 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YKB2ZaK2oHrGGYStMhn0r4AxIPE=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.713271+00 2025-12-17 05:50:00.713276+00 23694 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u7gZLsLURnz9Sqw3vSVRg6TTnGk=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.714604+00 2025-12-17 05:50:00.714609+00 23695 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CE5TJDhJ7YJwDHBC5_K8wWBLIfg=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:00.715905+00 2025-12-17 05:50:00.71591+00 23696 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7wPPeNPkf7ogWEyr03wSZ35bfJc=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.073001+00 2025-12-17 05:50:01.073013+00 23697 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2lycqw8_DA7cVOL5hFnzS5oagA8=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.074985+00 2025-12-17 05:50:01.074991+00 23698 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cmj54ben8FVFYEVkY9yeNombsG0=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.076335+00 2025-12-17 05:50:01.07634+00 23699 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fNvttAMYsGTdqPt_-erDoxQ3Woc=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.077509+00 2025-12-17 05:50:01.077513+00 23700 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B1zx5x6GRXQdrROZqux3P9uCYVs=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.078663+00 2025-12-17 05:50:01.078668+00 23701 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PPegqtyYGukHSaEHargTBa7ObVE=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.07979+00 2025-12-17 05:50:01.079794+00 23702 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mi1pdEUVRnuTVrNsQQdjd1x6h5U=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.080976+00 2025-12-17 05:50:01.08098+00 23703 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qO-dbR4msjQluhp8IFUle64c1z8=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.082176+00 2025-12-17 05:50:01.08218+00 23704 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HqKTCfHRc7fQX_08cXm4wJUxJ3o=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.083374+00 2025-12-17 05:50:01.083379+00 23705 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6xb7pmDjyzcLne8knfhGcWuRJb0=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.084587+00 2025-12-17 05:50:01.084591+00 23706 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4mFs2yijEvYatCsPd3JVvEszaXE=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.085785+00 2025-12-17 05:50:01.085789+00 23707 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:USocaKOaIHBnLpkp7lKX46LFaSM=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.086958+00 2025-12-17 05:50:01.086963+00 23708 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EIFdXG3x3ofEFX1tVGY-qJioHqw=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.088078+00 2025-12-17 05:50:01.088082+00 23709 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:39wumZh28Jy5NRu16K5agyLh2LI=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.089187+00 2025-12-17 05:50:01.089191+00 23710 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wK54ETjolD8SlrBxhSj_eg1uGk8=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.090365+00 2025-12-17 05:50:01.09037+00 23711 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uDclwchfW8tQlPFHhtV1psLD32o=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.091521+00 2025-12-17 05:50:01.091526+00 23712 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u35nVu_kptpe28KC-d2jBcDeyMk=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.092646+00 2025-12-17 05:50:01.092651+00 23713 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8QCBgJDGx66_gS_XEXKYXiN8p3Q=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.093759+00 2025-12-17 05:50:01.093764+00 23714 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8bfCvEKsLdfuHALXGCp49rP7S2s=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.094906+00 2025-12-17 05:50:01.09491+00 23715 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fvZqkNQKATLDhYO9qWqTy3vRe2o=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.096005+00 2025-12-17 05:50:01.09601+00 23716 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:udjvJ3V-pnqqesKJV-SwvBH0SS0=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.09709+00 2025-12-17 05:50:01.097094+00 23717 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9PYWdfFa_37jBNHeopAo5-R_IZM=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.098246+00 2025-12-17 05:50:01.09825+00 23718 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g32mEkTc2f0l_5MTiHzgbiczqG8=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.099364+00 2025-12-17 05:50:01.099368+00 23719 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UMR-O78drrWUlVOCL9yQoHLqoGU=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.100712+00 2025-12-17 05:50:01.100717+00 23720 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HwMRPBAE4N4wrWP_X8kOcYyO7gQ=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.101948+00 2025-12-17 05:50:01.101953+00 23721 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BSW2xuL584eAwd2I_mvDcRHJbr4=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.103042+00 2025-12-17 05:50:01.103046+00 23722 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9GUh01dXaXRmJM9QwJQs2RLoKyc=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.104444+00 2025-12-17 05:50:01.104448+00 23723 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-1Q54QyNUyV27Fefp9Iw23nJHCY=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.105824+00 2025-12-17 05:50:01.105828+00 23724 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xkT3BMwGnZe60SuARxTdl9HxkvM=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.107204+00 2025-12-17 05:50:01.107208+00 23725 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KY_UMawmMq-SBNd_ZZwIC9o0HqY=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.108608+00 2025-12-17 05:50:01.108612+00 23726 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dhodfAGoOxr5tMHyvyfpfyIwNak=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.110024+00 2025-12-17 05:50:01.110029+00 23727 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:abGC3gHtotMD3DgLmFe_lpxPb4k=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.111392+00 2025-12-17 05:50:01.111396+00 23728 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P5C71uzzTZWXzWuMggm9_GyNjgY=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.112805+00 2025-12-17 05:50:01.112809+00 23729 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ji1lHxw445GWcqfnGsvfpJX8wdA=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.114189+00 2025-12-17 05:50:01.114194+00 23730 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aJ_9dMXVCW1cD_9gLrNECQMu-Fk=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.115295+00 2025-12-17 05:50:01.1153+00 23731 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fODzc_a1FQ5BLr35sssAEZcAFpU=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.116394+00 2025-12-17 05:50:01.116398+00 23732 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:klzyu4UIFab5eg4bMIj-Tx2yHAo=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.117477+00 2025-12-17 05:50:01.117482+00 23733 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BqPK0YKY2A1sCKBcDZ2T2viO_oU=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.11858+00 2025-12-17 05:50:01.118584+00 23734 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nF9XrihaWpeoA4dKtgM0pLPpXa0=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.11969+00 2025-12-17 05:50:01.119695+00 23735 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1o_SPRm2OBq9Vi6Jegb3KvrnBec=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.120785+00 2025-12-17 05:50:01.120789+00 23736 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WW5X-89UHNBMXaMnRfKM5Q4QdvU=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.121871+00 2025-12-17 05:50:01.121875+00 23737 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EvgxtVZZcIwDvO4XAj11tit_ed8=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.122949+00 2025-12-17 05:50:01.122953+00 23738 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fNNu-zKkqQMqtY8RjRrwaZfJHPM=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.124062+00 2025-12-17 05:50:01.124066+00 23739 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YZvKntWymQRUVfSoCQjIzre9p1w=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.125675+00 2025-12-17 05:50:01.125684+00 23740 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mHCUSJ2ytvTzX-wJpcOArjU1N38=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.127516+00 2025-12-17 05:50:01.127523+00 23741 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MR51tDlDn8HIlmGmqtp49VPLt38=", "createTime": "2024-08-15 14:39:38"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.129221+00 2025-12-17 05:50:01.129227+00 23742 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ph-5kOu8wHYLE880aiXcw_OxvmQ=", "createTime": "2024-08-15 14:39:38"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.130929+00 2025-12-17 05:50:01.130936+00 23743 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S-GxufTNT5WjvepYii1_2IAPJjo=", "createTime": "2024-08-15 14:39:38"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.132842+00 2025-12-17 05:50:01.132849+00 23744 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hFOeZa5cfVqv6eE057RQHcDH5iU=", "createTime": "2024-08-15 14:39:38"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.134708+00 2025-12-17 05:50:01.134715+00 23745 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2MvKjQDtwOILR__MUHwN3VKoHUM=", "createTime": "2024-08-15 14:39:39"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.136529+00 2025-12-17 05:50:01.136535+00 23746 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yJuSEAXJ4klZ6ijQLHIm1UwlYRo=", "createTime": "2024-08-15 14:39:39"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.138239+00 2025-12-17 05:50:01.138246+00 23747 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O9iOoaeQWCb_pHvQmrA8YNrfpsk=", "createTime": "2024-08-15 14:39:39"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.139647+00 2025-12-17 05:50:01.139652+00 23748 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:56ddC9AHYrOlPR7-p75SayCBfDw=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.140785+00 2025-12-17 05:50:01.140789+00 23749 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1TeNt2LQRTovSp693SXQ6wWDD-o=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.141917+00 2025-12-17 05:50:01.141921+00 23750 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i1UKOMxvWV9PMmYWcMFWyesMp1Q=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.143048+00 2025-12-17 05:50:01.143053+00 23751 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yvaxaoiLHXg1niZqGn6dyzC4Y5g=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.144263+00 2025-12-17 05:50:01.144267+00 23752 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pbT3wDiPFyakXSBbgg1O0UFVUs4=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.145395+00 2025-12-17 05:50:01.145399+00 23753 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Szz8tp9OkwPBLv6u2Ojd1LLglcM=", "createTime": "2024-11-21 13:37:07"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.146514+00 2025-12-17 05:50:01.146519+00 23754 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yx1evOh2xjATkKRM7FE7Iev7-iA=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.147663+00 2025-12-17 05:50:01.147668+00 23755 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_C1Zxche4AF6rIsF9awUDAXbJSY=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.148822+00 2025-12-17 05:50:01.148827+00 23756 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1QkADGWSfh1z03aGPN-OIHGsAII=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.150035+00 2025-12-17 05:50:01.15004+00 23757 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XNCWeLt404iDIGBDTqbGcwUdEVo=", "createTime": "2024-08-15 14:39:41"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.151191+00 2025-12-17 05:50:01.151195+00 23758 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m-6ec-MJyMRva7wMkn0Tui36Sy0=", "createTime": "2024-08-15 14:39:41"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.152333+00 2025-12-17 05:50:01.152337+00 23759 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J4177FzjnCHG0WRtroaKWjljjxQ=", "createTime": "2024-08-15 14:39:41"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.153483+00 2025-12-17 05:50:01.153487+00 23760 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bbtRJfkXvfaA7qrpwr3C_cEiaQA=", "createTime": "2024-08-15 14:39:41"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.154646+00 2025-12-17 05:50:01.154651+00 23761 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BN305ygxkB89mNJGhjzSCssHWwA=", "createTime": "2024-08-15 14:39:41"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.155937+00 2025-12-17 05:50:01.155942+00 23762 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xPrQkT-_H_-4GPTRQZWMw8eSTnY=", "createTime": "2024-08-15 14:39:41"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.157181+00 2025-12-17 05:50:01.157185+00 23763 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o8KyZDUffI02ddq4RA8BLlDSW8I=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.158337+00 2025-12-17 05:50:01.158341+00 23764 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gobihs_SEo3L4sYpYCJk-Yyymi8=", "createTime": "2024-08-15 14:39:42"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.159482+00 2025-12-17 05:50:01.159486+00 23765 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KwChZlRhhQiB5VNTzjY1-PC5Yuc=", "createTime": "2024-08-15 14:39:43"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.16061+00 2025-12-17 05:50:01.160615+00 23766 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Z5E5kR7ut-6pULir1SpRd9bOx0=", "createTime": "2024-08-15 14:39:43"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.161757+00 2025-12-17 05:50:01.161761+00 23767 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W-WzSX89mbhsbXC1KQ5Ze5Ry45o=", "createTime": "2024-08-15 14:39:43"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.162894+00 2025-12-17 05:50:01.162898+00 23768 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8feVaEkEcmmG6hKJT6fIBM_79N0=", "createTime": "2024-08-15 14:39:43"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.164002+00 2025-12-17 05:50:01.164006+00 23769 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lyfwhUvUBWlUaZsNFhW8Sncyr1w=", "createTime": "2024-08-15 14:39:43"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.165299+00 2025-12-17 05:50:01.165303+00 23770 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:406yhvLZSr7WlzTWtwrWdPQAslc=", "createTime": "2024-08-15 14:39:42"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.166422+00 2025-12-17 05:50:01.166427+00 23771 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:96g4NluXFqkQ5vGCHCj7v5q2ths=", "createTime": "2024-08-15 14:39:43"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.167539+00 2025-12-17 05:50:01.167543+00 23772 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aDAn_o7dki56GKpITfhRgNoJMqw=", "createTime": "2024-08-15 14:39:44"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.168684+00 2025-12-17 05:50:01.168689+00 23773 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T-78pVrwj1tyFyxJOEXYgpVh1Mo=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.169799+00 2025-12-17 05:50:01.169803+00 23774 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q5x4XUVxdoCJLoCy-8QIuLrvNPc=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.170946+00 2025-12-17 05:50:01.17095+00 23775 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1dqNcPbORfuMWCsvoEex3Art2YE=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.172083+00 2025-12-17 05:50:01.172087+00 23776 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_qIdybZBzCQdkVt4bFeC7Wg82OE=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.173191+00 2025-12-17 05:50:01.173195+00 23777 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qrKuvYRQADkEgTTvSD3G8nKPw4g=", "createTime": "2024-08-15 14:39:44"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.174303+00 2025-12-17 05:50:01.174307+00 23778 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rkc9_bZSSL0fEKOdNd3MSBC3h8c=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.175428+00 2025-12-17 05:50:01.175433+00 23779 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6dV33o5WHXL0TY8RlUOyVdprlck=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.176555+00 2025-12-17 05:50:01.176559+00 23780 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bOoN-oxQ_84951ZsLsqOXlHQpB4=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.17769+00 2025-12-17 05:50:01.177694+00 23781 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p7TvauY31wiaxD-EwVgCjDvYTlE=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.178813+00 2025-12-17 05:50:01.178818+00 23782 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TRapveHEKjm6OrWVpK-wcORCnhY=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.179926+00 2025-12-17 05:50:01.17993+00 23783 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SL34mSlqFsBoge1pGrLhREEMYmY=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.181052+00 2025-12-17 05:50:01.181056+00 23784 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZET7Oisgy3msAHZcNoMFRk3KxpQ=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.182147+00 2025-12-17 05:50:01.182151+00 23785 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n_yq_Nh07Po7U4QJ7jbVPtD8qGc=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.183239+00 2025-12-17 05:50:01.183243+00 23786 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tvNYdFP_lry6s_KPimMUw2yTROQ=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.18436+00 2025-12-17 05:50:01.184364+00 23787 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kghih5uVcBJAaDGcoeE_0jXfGcM=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.185491+00 2025-12-17 05:50:01.185495+00 23788 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SSDhyrDI-aMPOh4MlCODMq6Du_0=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.186638+00 2025-12-17 05:50:01.186642+00 23789 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qXjdvMB41QfZxBGWiRmSaP-49_c=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.187946+00 2025-12-17 05:50:01.187951+00 23790 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZuK5khQB-3_4SHV6Leob-7PKkpg=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.189202+00 2025-12-17 05:50:01.189206+00 23791 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kQ3bp4QoktxeZhbnRoziU38p9wY=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.190892+00 2025-12-17 05:50:01.190902+00 23792 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0xugpmZndxs7QFo1CWwM9BkBjhw=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.194807+00 2025-12-17 05:50:01.194829+00 23793 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bCI03yUg49-QSkL2O93GVigAcME=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.198561+00 2025-12-17 05:50:01.19858+00 23794 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cZJtoMcN22nkZ8TZYNFNyY1EH4E=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.2014+00 2025-12-17 05:50:01.201412+00 23795 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qa2cpp6gNTABT1MBcVtoDBZc1uU=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N +2025-12-17 05:50:01.203993+00 2025-12-17 05:50:01.204003+00 23796 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=1766037000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C76O5utC0T30BuhVhq1rvDUg8As=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.335607+00 2025-12-17 06:00:00.335615+00 23797 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U3_Uz0DZUYKivzjy0G_RdFVpa88=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.337474+00 2025-12-17 06:00:00.33748+00 23798 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zdKNKVeLBYJy71wQWXbFaLnTmmQ=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.338922+00 2025-12-17 06:00:00.338931+00 23799 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DMJrsZLoiv6EgCx-l7uRIz5MfcM=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.34093+00 2025-12-17 06:00:00.340938+00 23800 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FzLXVo9RsKDnVDfxiqO4xpGkHt8=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.342953+00 2025-12-17 06:00:00.34296+00 23801 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KHeJy5asHoY2nDgdHnHWZ1zBS2I=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.344955+00 2025-12-17 06:00:00.344962+00 23802 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wREO2myPXGjCtSyyv9HHzFihAa8=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.346947+00 2025-12-17 06:00:00.346954+00 23803 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mo8lR2hDr-1CofbCgZB3nIWK4qY=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.34892+00 2025-12-17 06:00:00.348927+00 23804 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g5tXSeq4zqMopRYQCvt3ACDx0ME=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.350788+00 2025-12-17 06:00:00.350795+00 23805 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Bi8sVweY_zfSlitqgbo-0o7OJw=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.352724+00 2025-12-17 06:00:00.352729+00 23806 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cwq08_iVI9o8ACgV7mGivp3gt3A=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.353981+00 2025-12-17 06:00:00.353986+00 23807 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pm7MEUD9Him1tKl9Uj4rwky9hUk=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.355179+00 2025-12-17 06:00:00.355185+00 23808 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9uY1OC3oOREUY9RFVgKZ6A5uXHg=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.356334+00 2025-12-17 06:00:00.356339+00 23809 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vp4eaoSHZ_Da_edypB8UuYNA0hI=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.357471+00 2025-12-17 06:00:00.357475+00 23810 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N9sPPy7t-Zn_1XjLuD0z4u6S6qs=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.358752+00 2025-12-17 06:00:00.358756+00 23811 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SF0ZoKfq6aoBHVYOsYHLNwKqYas=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.359977+00 2025-12-17 06:00:00.359982+00 23812 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5TisVGVbFBEL-GrxZVWYJ3MAlUI=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.361549+00 2025-12-17 06:00:00.361554+00 23813 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y5NtWe328-NXB5nhsV09MbTAtbs=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.362708+00 2025-12-17 06:00:00.362712+00 23814 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GUAXinkIWGPtZiNzjFu15brpXHQ=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.363851+00 2025-12-17 06:00:00.363856+00 23815 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N3xlcH1eFUbIPvZU7gAkVZVjZzU=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.364998+00 2025-12-17 06:00:00.365003+00 23816 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5gh1UTGvJ39uLAwO6XULelneG_U=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.366145+00 2025-12-17 06:00:00.366149+00 23817 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:se1b3OTDCfyYjBVfziVYJDWSmX0=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.367306+00 2025-12-17 06:00:00.36731+00 23818 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PsP5z5KHKC-c3Ec8OBbbVkSaqLE=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.368557+00 2025-12-17 06:00:00.368562+00 23819 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C7hd0s8QHMAtVQ283OU1APfoyR8=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.369698+00 2025-12-17 06:00:00.369702+00 23820 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qdsmwr7N8s9zBH-H3-i9IV-BB0Q=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.370879+00 2025-12-17 06:00:00.370883+00 23821 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lq6u7Q2X35BK_-8ny1cTGQocdLg=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.372033+00 2025-12-17 06:00:00.372038+00 23822 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NFqffP6ZKiKJ9MmUElZlRRLISzo=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.373172+00 2025-12-17 06:00:00.373176+00 23823 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L8d9ydVRD1S8QXmrViJ-WdpPBNQ=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.374305+00 2025-12-17 06:00:00.374309+00 23824 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YsIuYmml5IFoXxC77QSqrUaqEEo=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.375428+00 2025-12-17 06:00:00.375432+00 23825 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:avxOvwxtPQ5PFNwsiBudPSTzkdg=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.376554+00 2025-12-17 06:00:00.376558+00 23826 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HCQX6gTljWib1hfXfQAhRnpDWNc=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.377699+00 2025-12-17 06:00:00.377704+00 23827 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tpFC-gF6pN_zeqZRKFIC92KQAPA=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.378821+00 2025-12-17 06:00:00.378826+00 23828 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LSe9NLW7mEv5tv4JqtX2Asau8mU=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.379943+00 2025-12-17 06:00:00.379948+00 23829 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_qiiwChvVw2pZiiW4-vXEr_obNc=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.3811+00 2025-12-17 06:00:00.381104+00 23830 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uYNBj6MZtNB0Urcnv-u9ZqTO1aY=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.382259+00 2025-12-17 06:00:00.382263+00 23831 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N6WvKPpGBKykdIqcRLfJypfe7Ps=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.383414+00 2025-12-17 06:00:00.383418+00 23832 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:INH3j-BaT1MaRuwaITIi4W0SisU=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.384667+00 2025-12-17 06:00:00.384671+00 23833 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W3BKMvCWsovMm6p2evtdZpxF0ZQ=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.385846+00 2025-12-17 06:00:00.38585+00 23834 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J_0AhkplOWrkcseO8ze3gZQJt6M=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.386998+00 2025-12-17 06:00:00.387002+00 23835 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2yJ8QGfYrsGchfFyb-mLMeG4QmU=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.388175+00 2025-12-17 06:00:00.388179+00 23836 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2FvwkdbgKoMzvPWNJfXQaVHWroo=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.390401+00 2025-12-17 06:00:00.390405+00 23837 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f1rfEc66t_fKY2uzY3IKiFBaAc4=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.391958+00 2025-12-17 06:00:00.391963+00 23838 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vnluxgMeZb4igD3Qsfjgh6iuxKE=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.393374+00 2025-12-17 06:00:00.393379+00 23839 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cKnB3Rauhvci-DgEftXnM1CpCTg=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.394835+00 2025-12-17 06:00:00.394839+00 23840 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZGL-qfMrT-kbEEhWnkGyCZadW0Y=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.396823+00 2025-12-17 06:00:00.396831+00 23841 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TKjz2hLET2RqEDmtpzVuNABD9tk=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.398947+00 2025-12-17 06:00:00.398954+00 23842 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XmWQXnid5_3Q4IzKpo4RIHAvpis=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.400928+00 2025-12-17 06:00:00.400935+00 23843 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ebqbs54VwcdgbDWhmp6HhKW5PWs=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.402889+00 2025-12-17 06:00:00.402896+00 23844 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UzX_vEYCwcOhFBS09sMSU_B02AE=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.40461+00 2025-12-17 06:00:00.404617+00 23845 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T19CoUM40N4DKKbmJc0JD7JHpLc=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.40586+00 2025-12-17 06:00:00.405865+00 23846 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nTupkJFs5A4vqxGAd15ZgkWIzyo=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.407269+00 2025-12-17 06:00:00.407274+00 23847 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:93Fk7OVHWsGSOjSnCQfhDXbSjXU=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.408673+00 2025-12-17 06:00:00.408677+00 23848 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bzJzueEJ99o7mNhtdFXUwjCCm3M=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.409805+00 2025-12-17 06:00:00.409809+00 23849 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eO5AIF7IySdW1KsAjfVsi3FcO6U=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.410944+00 2025-12-17 06:00:00.410948+00 23850 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:teBlzDzghTJ20wVLEwMcXKjd7ks=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.412067+00 2025-12-17 06:00:00.412071+00 23851 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9uSF6S32AMK1luD8v2nLIAWqBko=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.413347+00 2025-12-17 06:00:00.413355+00 23852 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RKYJ1_TkuiEeujrfZ7B9X8wfG0k=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.414733+00 2025-12-17 06:00:00.414738+00 23853 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ziLTp_uwzofx2D1Xxzh3RPSyvZ4=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.415876+00 2025-12-17 06:00:00.415881+00 23854 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bhPlMFP1Ec5rlknjtLNMLtpER9M=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.417293+00 2025-12-17 06:00:00.417297+00 23855 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9_Iv8e3OGolQMLa25IN11H3GRhc=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.418805+00 2025-12-17 06:00:00.41881+00 23856 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UvCi0g41S2XmxHTtNLVCGthVS1s=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.41996+00 2025-12-17 06:00:00.419965+00 23857 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J1qYe_rQldd4Zac26ECt1DGYLFk=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.421108+00 2025-12-17 06:00:00.421112+00 23858 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wpCSz9kzad_HpQOb_vU4lDN7naQ=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.422235+00 2025-12-17 06:00:00.422239+00 23859 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iw-ldKZASsckv20EJP88W1ihjWg=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.423386+00 2025-12-17 06:00:00.42339+00 23860 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Bsf2YZ-A1xErIPZrYM03E7fCdc=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.424525+00 2025-12-17 06:00:00.424529+00 23861 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:huMTozP0AcMs_CaVzhhqclpqTwg=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.425664+00 2025-12-17 06:00:00.425669+00 23862 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RJKfdfgMom7bC1kXcyWa8bfZa0k=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.42705+00 2025-12-17 06:00:00.427054+00 23863 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L_x0W_pyO4MHaF3SI5i-aq4H_o0=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.428447+00 2025-12-17 06:00:00.428452+00 23864 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3wivg93djhR69KgEX1RJd0hOTlc=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.429588+00 2025-12-17 06:00:00.429592+00 23865 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DIw-MludVerDB4teLasCVNKisNk=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.43073+00 2025-12-17 06:00:00.430734+00 23866 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UERysw8eEkN6ANvUzjS_fG26fGs=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.431869+00 2025-12-17 06:00:00.431874+00 23867 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9J5bgL-IXuQzI2S6vByoaEC-Adw=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.432984+00 2025-12-17 06:00:00.432989+00 23868 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QCMwiYM4mBkDJpLq83cxFjze4f8=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.434153+00 2025-12-17 06:00:00.434159+00 23869 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qXKH3rvizJ9SC3DBmkEkZpxFdME=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.435384+00 2025-12-17 06:00:00.435389+00 23870 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5_E4PvrT5v2zP7NfHDJXq1305Yk=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.436786+00 2025-12-17 06:00:00.43679+00 23871 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gxEPYVzN3N80plLMrAPSQ2VHw9A=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.438166+00 2025-12-17 06:00:00.43817+00 23872 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QUa43HIbiv54YYUVm48kU3NZN8A=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.439294+00 2025-12-17 06:00:00.439299+00 23873 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dMpXKgVuOGjFe9GwSaRj1F2XUmA=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.440413+00 2025-12-17 06:00:00.440417+00 23874 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r28r6mh7ajUZ0pl2vDO3q4N7qCQ=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.441548+00 2025-12-17 06:00:00.441552+00 23875 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:leoAcdpo_KJd0RkuGjisNNv4ezc=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.44267+00 2025-12-17 06:00:00.442674+00 23876 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z58bctYosg_B1tsegLScfEEIQOE=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.443828+00 2025-12-17 06:00:00.443832+00 23877 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PGykWilgVwQCjQjl5hIMXZTx3Yc=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.444953+00 2025-12-17 06:00:00.444957+00 23878 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K1bvi620GO5JDo8xRpf4eT1n7PQ=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.446324+00 2025-12-17 06:00:00.446328+00 23879 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nwpM4ZKIo0S4glOla0YtKkp-r20=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.447723+00 2025-12-17 06:00:00.447727+00 23880 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H4oaxKv8kPzbTW_5luaXvFlyzh0=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.449091+00 2025-12-17 06:00:00.449096+00 23881 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zX2gT92oANT4fhOPyvBlMPKJgzU=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.450537+00 2025-12-17 06:00:00.450542+00 23882 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VqlUdAEQDRGEpQYUIBIY9CWzs5Y=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.452057+00 2025-12-17 06:00:00.452061+00 23883 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eNbwVLDWiBqXRhDiW7Or7aDAWxw=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.453177+00 2025-12-17 06:00:00.453181+00 23884 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WXI1oEBlFiCvJ5tzgdFJTpAZiw4=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.454363+00 2025-12-17 06:00:00.454369+00 23885 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-DcBikS_JQzi2suPERlTgRTZD4k=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.455566+00 2025-12-17 06:00:00.455571+00 23886 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-BEi8pWAsNIRMfLuV5mopglkyYA=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.456995+00 2025-12-17 06:00:00.457+00 23887 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:95TTeMhtXGpk1DyNSf_p7RUIMjg=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.458379+00 2025-12-17 06:00:00.458383+00 23888 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A8LFgMeyzIwajLnFBy_Bh5vIScI=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.459515+00 2025-12-17 06:00:00.459519+00 23889 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SK-WP0lxeFqloWPKLgUqTGhoL5o=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.460654+00 2025-12-17 06:00:00.460659+00 23890 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kkc3vpqqsQuWZO3J9zbnfSIXQSs=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.461783+00 2025-12-17 06:00:00.461787+00 23891 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H_vSnRVz4IStMljHOp6bU8OpQvc=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.462921+00 2025-12-17 06:00:00.462925+00 23892 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B7ZlKKtFfRFiiRW9pfhhvGP3tBw=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.464063+00 2025-12-17 06:00:00.464067+00 23893 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7qcPEMqN6_Q_4fQ2e20olVjo-jQ=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.465177+00 2025-12-17 06:00:00.465181+00 23894 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nai1K-ZCbWOMsbuwAuDYrBiGvlM=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.46658+00 2025-12-17 06:00:00.466584+00 23895 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lQFbyWcG9SxpoGXGoka_kffX3_M=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.467977+00 2025-12-17 06:00:00.467982+00 23896 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=1766037599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EWdKXCTNk9CDb7SoYubX0fhZhu0=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.84844+00 2025-12-17 06:00:00.848448+00 23897 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YKABUz1Mq_rxepaCNE-1hz_j0PI=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.85003+00 2025-12-17 06:00:00.850037+00 23898 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tItSfTXNL73nS8-mpiqD7h_v1ww=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.851234+00 2025-12-17 06:00:00.851238+00 23899 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a6PVgtLkCVu9Znqjdge3BZvPId8=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.852474+00 2025-12-17 06:00:00.85248+00 23900 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:naeHZ1jlWzHQxhJCLztHK0_Sk8U=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.853744+00 2025-12-17 06:00:00.853749+00 23901 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z82mh4mMDmIJQ0dKCW2Yx1rSzNg=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.854919+00 2025-12-17 06:00:00.854923+00 23902 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hyi9WXFe6l89cWwOigni3_PzAoo=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.856345+00 2025-12-17 06:00:00.85635+00 23903 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UFU_xCfWu3zjSKekTRbr1H5Q1lw=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.857794+00 2025-12-17 06:00:00.857798+00 23904 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6ro9goIU3Y4qx6WL-RxyHfGIrhc=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.859015+00 2025-12-17 06:00:00.859019+00 23905 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u3cSj_9KKFg5WwdyUPS1T8BuKsk=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.860153+00 2025-12-17 06:00:00.860157+00 23906 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Coeac5SvwO0aCJ7oq7WHIm54CvM=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.861289+00 2025-12-17 06:00:00.861294+00 23907 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l1d4EmvzYEg7AJTCLxGEEZ0Q9ho=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.86247+00 2025-12-17 06:00:00.862475+00 23908 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQaVU5Kfn9kMt7oB2aCFJwnyico=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.863611+00 2025-12-17 06:00:00.863615+00 23909 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZXPIggqjm4edS9fuT2sMRPwmBTo=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.864751+00 2025-12-17 06:00:00.864755+00 23910 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MxN0CxWTsQv5XO5YdBcNTi2WMso=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.866139+00 2025-12-17 06:00:00.866143+00 23911 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S12oWJF9TwUljFj6Ode7MxR0eXE=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.867523+00 2025-12-17 06:00:00.867527+00 23912 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LXsa8SSSEHdqY5krivXRc0J0hYc=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.868649+00 2025-12-17 06:00:00.868654+00 23913 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dCNTlGEog4uJMhP-BwcjYP-YjHw=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.869782+00 2025-12-17 06:00:00.869786+00 23914 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zizBWRhfPdzJG9V0EzSGeQj6R1c=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.870917+00 2025-12-17 06:00:00.870922+00 23915 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N0pjV02qGPAFLE1vbyi-0UNCRBc=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.872046+00 2025-12-17 06:00:00.872051+00 23916 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EwYUJc0qhnkveK1KMNAw46UQ298=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.873382+00 2025-12-17 06:00:00.873387+00 23917 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bcS_vAWu8Olz3kgpqw_CNfhZtJE=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.874589+00 2025-12-17 06:00:00.874593+00 23918 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yU09OTXyVPlOw3Jy8V-06JVCCAo=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.876114+00 2025-12-17 06:00:00.876119+00 23919 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ksZjK-BxqYwAbeP633pYNkeUvDI=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.877555+00 2025-12-17 06:00:00.877559+00 23920 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8xcZr-bRs0U4IWkyFCjkCfYxoaw=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.878714+00 2025-12-17 06:00:00.878719+00 23921 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DAEibZ_ac4HzbO4k2a8gK4umj5o=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.879872+00 2025-12-17 06:00:00.879876+00 23922 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HscedrhL81bW2vI6tRZZq2OpQSo=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.881068+00 2025-12-17 06:00:00.881073+00 23923 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oe5OdhJ7eV6KGxWGmPxFyRui74c=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.882302+00 2025-12-17 06:00:00.882307+00 23924 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DpycXBMiIhOP7aidGoE5OlTlH9Q=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.88345+00 2025-12-17 06:00:00.883455+00 23925 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tuVp7e_WIcfReQZk_WsU-hcLCyA=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.884612+00 2025-12-17 06:00:00.884617+00 23926 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I2EE-iQ9rGlC2Eg2EfYmFcgJ5DY=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.886069+00 2025-12-17 06:00:00.886074+00 23927 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8TUyIu_oplZVGE_uSQ7Ip_hMUYY=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.887636+00 2025-12-17 06:00:00.887641+00 23928 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tWtXL0Ot7qHmE-vNnV_EUJtbvy4=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.888898+00 2025-12-17 06:00:00.888903+00 23929 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ItQt11G7QZqiKVZlym71irIrGZo=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.890575+00 2025-12-17 06:00:00.89058+00 23930 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aklGdNGDVaG-9k67mXlH196Klpw=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.891723+00 2025-12-17 06:00:00.891727+00 23931 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-qNQB9CEhOQ_wc4FbcygSIiGL7s=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.391298+00 2025-12-17 06:20:00.391303+00 24217 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aBx9vqqVmr-B1QWnKeGvHFPKt9Q=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.894308+00 2025-12-17 06:00:00.894313+00 23933 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kl8Zyd6xn9ApQLouWdU8-IABkrI=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.892851+00 2025-12-17 06:00:00.892855+00 23932 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZiXZZyf5Ek4tqafYqcd5HgMY6Vc=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.897216+00 2025-12-17 06:00:00.89722+00 23934 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y39ZncUMoahBuLaE5iQczXmt2L4=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.898348+00 2025-12-17 06:00:00.898352+00 23935 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OoHqo6mOZkKMhpEyykp99qibUQM=", "createTime": "2024-08-15 14:39:58"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.899489+00 2025-12-17 06:00:00.899493+00 23936 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AZYOmWblLY0VAWz-yX60a-28Jfg=", "createTime": "2024-08-15 14:39:58"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.900621+00 2025-12-17 06:00:00.900625+00 23937 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9QmbG-h1eg_-MX6CUDmxgxuI76k=", "createTime": "2024-08-15 14:39:58"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.901746+00 2025-12-17 06:00:00.90175+00 23938 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:neukso5igCQ87iyCw92WsZqfv60=", "createTime": "2024-08-15 14:39:58"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.902872+00 2025-12-17 06:00:00.902876+00 23939 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dUtLzU1JxE7nObwmXytEBXYj7KA=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.904241+00 2025-12-17 06:00:00.904245+00 23940 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S4g6ITU39OD2yrGQoCEGykSik0Q=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.905775+00 2025-12-17 06:00:00.905779+00 23941 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HayNT2uarJ650bcSl0OejQhUscc=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.906976+00 2025-12-17 06:00:00.906981+00 23942 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:APEbdkBQ-ZTO9iTrFLihwREVJd8=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.908142+00 2025-12-17 06:00:00.908146+00 23943 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kYLVTBrI30aHSyD_Mewx1O3ItsY=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.909395+00 2025-12-17 06:00:00.909399+00 23944 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KA5_tyxLairkJubq6zmu06JG3wg=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.910592+00 2025-12-17 06:00:00.910596+00 23945 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EpTiW9XAQJGV_CzR49qtABQw59s=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.911738+00 2025-12-17 06:00:00.911742+00 23946 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eZq4uoK668sqQQFqaoL0SzDBFew=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.912892+00 2025-12-17 06:00:00.912896+00 23947 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QyPgkJHh7gH13lrltIIwLC3JbTY=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.914298+00 2025-12-17 06:00:00.914303+00 23948 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VdiQ9s_QVA9VYprq5WkYyqH1aTQ=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.915694+00 2025-12-17 06:00:00.915698+00 23949 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v2TZXOU5HwMQq8XgwvBtpiiIPys=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.916824+00 2025-12-17 06:00:00.916828+00 23950 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0mn7iwC4TbeB14_SBZkfT2U0Pzg=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.917934+00 2025-12-17 06:00:00.917939+00 23951 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4KL9rOpuBx_1qFOEPRfVu2kTMhg=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.919053+00 2025-12-17 06:00:00.919057+00 23952 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1-58JO5736ADXsv5ozaedqGgYnU=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.920372+00 2025-12-17 06:00:00.920376+00 23953 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xQFOw-3AXrPeyj_Mv5pJx7Hr3TA=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.921622+00 2025-12-17 06:00:00.921627+00 23954 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OVzvUvnvY5tnHMJi5fDj7ANisd4=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.392453+00 2025-12-17 06:20:00.392458+00 24218 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2D293MpyzscE7CR_Qg9US1PFXbU=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.922779+00 2025-12-17 06:00:00.922783+00 23955 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c_36fpLUjw49AG8dVzpRv7LFKws=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.925886+00 2025-12-17 06:00:00.925891+00 23956 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7oElF4B8_XY0cYsEIVxXa6RCKq4=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.927044+00 2025-12-17 06:00:00.927049+00 23957 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QjnGz6ZTdCFTNmU9ebtetgU4zAU=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.928173+00 2025-12-17 06:00:00.928177+00 23958 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oF3o2oQ98-G4Fd_D7qIwAZnoer8=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.929296+00 2025-12-17 06:00:00.9293+00 23959 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M06W8CyI2SGSuZbt_Z5O4jYzwXU=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.930425+00 2025-12-17 06:00:00.930429+00 23960 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ce7IbSc2BreOYNJHP26lU8HHp0U=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.931771+00 2025-12-17 06:00:00.931776+00 23961 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dK8GZcTx_5rd88qsB-G1Xp9BKwY=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.933106+00 2025-12-17 06:00:00.93311+00 23962 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ZeMpS-v2-OAPWBjyjUwgaldkis=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.945056+00 2025-12-17 06:00:00.94506+00 23971 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k5cvgbPzzrHHQp8mpDHHztQIt3c=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.934432+00 2025-12-17 06:00:00.934437+00 23963 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6sOOGD85lL-7CcO5iHySincRekw=", "createTime": "2024-08-15 14:40:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.935836+00 2025-12-17 06:00:00.935841+00 23964 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2tUtGO2voRZc_jX3EqmplhSivas=", "createTime": "2024-08-15 14:40:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.937269+00 2025-12-17 06:00:00.937274+00 23965 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JBNBKv1p9gaD_7m_sTnQnlneMX0=", "createTime": "2024-08-15 14:40:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.93862+00 2025-12-17 06:00:00.938625+00 23966 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Af9ImXk_k3gF4S2bmu01MkX46uo=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.940012+00 2025-12-17 06:00:00.940017+00 23967 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZiElYxAaGmSCl_ukls029drIZno=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.941401+00 2025-12-17 06:00:00.941405+00 23968 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:957WsWQs0Ah978SgnAO95WmzPHg=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.942556+00 2025-12-17 06:00:00.942561+00 23969 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XGvf6ffzZB5rT791H3egS5fXiSU=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.943705+00 2025-12-17 06:00:00.94371+00 23970 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2JrtXq6Z3K1cuV5oAJa6rQvwguI=", "createTime": "2024-08-15 14:40:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.946384+00 2025-12-17 06:00:00.946389+00 23972 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G2KUej8yNjgTvagtw7CXVF5QtBM=", "createTime": "2024-08-15 14:40:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.947509+00 2025-12-17 06:00:00.947513+00 23973 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GLDSSY8T4VcVUcUsIPB8esPuFpI=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.948639+00 2025-12-17 06:00:00.948643+00 23974 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Oec117Ba4FgQjdjaBGqikmIVtM=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.949764+00 2025-12-17 06:00:00.949769+00 23975 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mmvTdeiiUdFV1eGxcaHwUUQDBKg=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.951686+00 2025-12-17 06:00:00.951696+00 23976 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dyRJUylllm854OhywKS4rLluWyg=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.954124+00 2025-12-17 06:00:00.954131+00 23977 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tebJU07yGgTYRMua-UUVYto-qks=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.956191+00 2025-12-17 06:00:00.956198+00 23978 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cqeg0RGInJEJHBrsPwBu32N9xpk=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.95819+00 2025-12-17 06:00:00.958198+00 23979 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ehYJEnSLYWYCLHAj6WllWULJ4Y=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.960443+00 2025-12-17 06:00:00.96045+00 23980 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oTL3qOfsMTJmpzJujF7mfvOc2-E=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.962291+00 2025-12-17 06:00:00.962298+00 23981 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J0HiALq32EArFjmJqXoIAYHPbkg=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.964087+00 2025-12-17 06:00:00.964094+00 23982 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oUwQN8gNpnNsD9yW_jf2JVV9laE=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.965864+00 2025-12-17 06:00:00.965871+00 23983 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eoyb5rlZutxQIPeE7mgRS_ssVII=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.967849+00 2025-12-17 06:00:00.967856+00 23984 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NqxBG19RIyGMVlkfePnKWzZc8ys=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.969817+00 2025-12-17 06:00:00.969822+00 23985 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7A9KzbYOQJwehpuG4pgcwNhPGzI=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.97108+00 2025-12-17 06:00:00.971084+00 23986 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wN1LHX1IymuO0UAqcgrllcN7mgU=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.972481+00 2025-12-17 06:00:00.972485+00 23987 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PsaiaC6YbFwu8oN7kiwiWxYnyVI=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.973838+00 2025-12-17 06:00:00.973842+00 23988 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-r5JnRRruSiDw7IANBY22X-tk3w=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.975063+00 2025-12-17 06:00:00.975068+00 23989 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LSFYZW0pQzaQXbIrihC-_8N6lR0=", "createTime": "2024-08-15 14:40:06"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.976273+00 2025-12-17 06:00:00.976278+00 23990 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BmADh0YbCGIxd9ngiRh-v_47j8U=", "createTime": "2024-08-15 14:40:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.977426+00 2025-12-17 06:00:00.977431+00 23991 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:61ZBcTcTTX8OPmFc0YUG7Rm5N28=", "createTime": "2024-08-15 14:40:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.978591+00 2025-12-17 06:00:00.978595+00 23992 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VQCrgxDe95315o5eSjHg-sr4nrY=", "createTime": "2024-08-15 14:40:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.979747+00 2025-12-17 06:00:00.979752+00 23993 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ddldbcuoiIpMTtKzLbfPa4zIK0=", "createTime": "2024-08-15 14:40:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:00:00.980888+00 2025-12-17 06:00:00.980892+00 23994 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=1766037600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bGCJ-CfDtbbKIw2lr7wVuSubI-0=", "createTime": "2024-08-15 14:40:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.632287+00 2025-12-17 06:10:00.632296+00 23995 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lJsBNB1ZZKRicldldy4EgvsEQW4=", "createTime": "2024-08-15 14:40:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.634197+00 2025-12-17 06:10:00.634202+00 23996 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3rbFolPRY_QByBhnVbo6Jsk2IL0=", "createTime": "2024-08-15 14:40:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.63558+00 2025-12-17 06:10:00.635586+00 23997 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eRkh8je_GEEzsbJ9Qb6mYT9zsN0=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.636797+00 2025-12-17 06:10:00.636801+00 23998 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fyHlq55ZBgPMng2Czl8s3p6CnrQ=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.63799+00 2025-12-17 06:10:00.637994+00 23999 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dcmNUeiyPJ8Tgk2noEXmibwuyTw=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.639276+00 2025-12-17 06:10:00.63928+00 24000 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZCR3ryVn79tdqxhTJikkjDconOM=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.640498+00 2025-12-17 06:10:00.640502+00 24001 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lUGIGRJn_OsW13IpdJAX7mfPcak=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.641652+00 2025-12-17 06:10:00.641656+00 24002 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rfnw7289GR1E2sVD064_QjBIHH0=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.642804+00 2025-12-17 06:10:00.642808+00 24003 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bXbbgywkDaZYaEqfmyN6Y93b72c=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.665159+00 2025-12-17 06:10:00.665163+00 24020 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:00bkRxDwHaUvGaMRvyricQH-AFY=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.644218+00 2025-12-17 06:10:00.644223+00 24004 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gb1uHw8P-ulSTTwcMzQSZ8Og6WQ=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.645651+00 2025-12-17 06:10:00.645655+00 24005 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ik_j1yLh_u4087eA98wrwAUOt-Q=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.647085+00 2025-12-17 06:10:00.647089+00 24006 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tS8vOwZzuyoNpKf5zc4zYgEZ1Eg=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.64849+00 2025-12-17 06:10:00.648494+00 24007 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yUdHZ3ISlaqYFMrvxKadhMg0dUU=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.649903+00 2025-12-17 06:10:00.649907+00 24008 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-9JBltIGbYNQKRRV6O2jGqOURRE=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.651323+00 2025-12-17 06:10:00.651328+00 24009 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zlSM-IsoRYGbpM5_LYeav5HaU1k=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.65283+00 2025-12-17 06:10:00.652836+00 24010 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9g0uOb3GqDArfWFZRlpq7Jv8_Ro=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.654428+00 2025-12-17 06:10:00.654433+00 24011 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rwS9O1skhjDayGZqXU_TOnwvEec=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.655608+00 2025-12-17 06:10:00.655613+00 24012 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_oJYuimSIUAaBWvRfpc0J-Z77sw=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.656778+00 2025-12-17 06:10:00.656782+00 24013 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dJBaqg3uXLkypWFsfgGSSTmRgLU=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.657932+00 2025-12-17 06:10:00.657937+00 24014 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MbA5ARHoeO7FoydJFpMHwFutQhQ=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.659228+00 2025-12-17 06:10:00.659233+00 24015 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vSs7EEPLNha2yL02DYNb27eu1GM=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.660471+00 2025-12-17 06:10:00.660476+00 24016 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vbMkSVX0kG1sETX-bMIF_GuEfZU=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.661671+00 2025-12-17 06:10:00.661675+00 24017 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wVT-j2rqdZv6IVzUxazMQ6wGOpU=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.662833+00 2025-12-17 06:10:00.662837+00 24018 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Y2cPY30PKbMy4ZySwohu_jl-rY=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.663998+00 2025-12-17 06:10:00.664003+00 24019 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vciqfgASdrKzBpeT_u_yp7hR7bw=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.666334+00 2025-12-17 06:10:00.666339+00 24021 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xZPeTQcT_EYuPxQLcLteIVHzuhc=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.667491+00 2025-12-17 06:10:00.667495+00 24022 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:94K7-JgnR0b4qnNuzqKOgIBRJAc=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.668676+00 2025-12-17 06:10:00.66868+00 24023 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZECy1QXTSxr0KcsypPh-8-xQ6ns=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.669876+00 2025-12-17 06:10:00.66988+00 24024 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BOp71wzq_vc1QHpcUIckGJGTBqY=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.67105+00 2025-12-17 06:10:00.671056+00 24025 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-j-3NHHjw0WjT6yCB_Tkg__yd6s=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.672224+00 2025-12-17 06:10:00.672228+00 24026 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mg7JA7PfDaT8x8oGkYxgapjXFvQ=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.673367+00 2025-12-17 06:10:00.673371+00 24027 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gwb6o99kgU1ptpbD9QQsLkUKPJY=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.674613+00 2025-12-17 06:10:00.674618+00 24028 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_gmNhBe6Za7GHt_R_7XsM-Ij9d0=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.675847+00 2025-12-17 06:10:00.675852+00 24029 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ynm1nI-9KmSwCCytsV7s4r-iT0M=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.677116+00 2025-12-17 06:10:00.67712+00 24030 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Te930W2oYpf97VleUCRIjjJdySk=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.67829+00 2025-12-17 06:10:00.678294+00 24031 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9kiaf6UjNr7d6z8Y7C7KUM36zGs=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.67949+00 2025-12-17 06:10:00.679494+00 24032 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SIK1LcrWGKesYYYWhhNlcp22pGY=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.680846+00 2025-12-17 06:10:00.680851+00 24033 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2P0qaaiSmgkpEAd8yUGs-PaGuc0=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.682655+00 2025-12-17 06:10:00.682663+00 24034 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bliBpBLz1ERsPbQTDm4xH1rxzTk=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.684988+00 2025-12-17 06:10:00.684996+00 24035 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u7dM9IOLQaULyLwT_9M3xdqqk6w=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.686807+00 2025-12-17 06:10:00.686815+00 24036 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LwZoTtolBAr69XJztGNIye-08ms=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.688794+00 2025-12-17 06:10:00.688802+00 24037 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KdkRdoTP_2suDo2dpAP6Ie77dHU=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.690673+00 2025-12-17 06:10:00.69068+00 24038 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bv8WprVpf8h98mclWQNJ-VJnKhI=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.692474+00 2025-12-17 06:10:00.692481+00 24039 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nuKMEResN6XarV00MuJfnw_0nOE=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.694207+00 2025-12-17 06:10:00.694213+00 24040 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jGQ1CygIFj-DTEe0b7gK497QhX4=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.695958+00 2025-12-17 06:10:00.695963+00 24041 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9kq-krwsWrGe4eAF8YRlhT0VMDg=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.697344+00 2025-12-17 06:10:00.697349+00 24042 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TwewBuMcgIgsb5M4Uk4P-xPWM4M=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.698713+00 2025-12-17 06:10:00.698718+00 24043 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z1m-98qK1MSwZvUX4E1xjEUAw6w=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.699954+00 2025-12-17 06:10:00.699959+00 24044 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e5I8LGaE5wrfrpsoWdWAJ4_duaI=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.701133+00 2025-12-17 06:10:00.701137+00 24045 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6EJEIkNxYnGJC4_FQ3r5u8kAkjA=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.7023+00 2025-12-17 06:10:00.702304+00 24046 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:URq75uwE5ACZPa-T-0o4MpNPl4c=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.703445+00 2025-12-17 06:10:00.703449+00 24047 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:86oP3Q9mC_ynnmJJqkbvwsYNoHA=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.704578+00 2025-12-17 06:10:00.704582+00 24048 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pY5scjExc1Stu8HFvkL5s_W5PCk=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.706496+00 2025-12-17 06:10:00.706504+00 24049 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n7aCmTMwEBMSxE-Pl2ghFkpM0qk=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.708554+00 2025-12-17 06:10:00.708561+00 24050 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:loFazn-0DCrKO0iKxrKTuBchSBc=", "createTime": "2024-08-15 14:40:15"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.710331+00 2025-12-17 06:10:00.710338+00 24051 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0rLW1MCy7sP9wjbgSVCW-AaXlqo=", "createTime": "2024-08-15 14:40:15"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.712306+00 2025-12-17 06:10:00.712313+00 24052 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wpQUrE1RCYCgpyfybadgzYkEWTA=", "createTime": "2024-08-15 14:40:14"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.71413+00 2025-12-17 06:10:00.714136+00 24053 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-bnMwvi06wifkyXfstsIHlSb-D8=", "createTime": "2024-08-15 14:40:15"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.716701+00 2025-12-17 06:10:00.716706+00 24055 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZYw__FEG5y6dzLAjvvUiACXeoiI=", "createTime": "2024-08-15 14:40:15"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.717898+00 2025-12-17 06:10:00.717903+00 24056 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z_hhzfVXoo8IkCp9nVKkUmw2_zo=", "createTime": "2024-08-15 14:40:14"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.715384+00 2025-12-17 06:10:00.715389+00 24054 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NskgYnG8rPogn50rQaDDIB8Gj2o=", "createTime": "2024-08-15 14:40:14"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.729972+00 2025-12-17 06:10:00.729977+00 24065 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qp28kZ-IR4Pb1s8xCC0i67jz2Gc=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.719051+00 2025-12-17 06:10:00.719055+00 24057 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vaM0cTEP3iPaDAtmBdRqVBK0XuM=", "createTime": "2024-08-15 14:40:14"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.721675+00 2025-12-17 06:10:00.72168+00 24058 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ds4h9dpv_BY5N52esbF8n7e8J1E=", "createTime": "2024-08-15 14:40:14"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.722887+00 2025-12-17 06:10:00.722891+00 24059 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j9u3s6pr8rL08Rt8gdvzOB-nKc8=", "createTime": "2024-08-15 14:40:14"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.724135+00 2025-12-17 06:10:00.724139+00 24060 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AsIxLpeU92UdMNC7m6uA6N5YzOs=", "createTime": "2024-08-15 14:40:14"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.725312+00 2025-12-17 06:10:00.725316+00 24061 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gw_v6I_pvu4gnG2_Ot8Hivv5LpI=", "createTime": "2024-08-15 14:40:15"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.726505+00 2025-12-17 06:10:00.72651+00 24062 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZAJihzSGq8HaiDzhfvR9Yw-l9SM=", "createTime": "2024-08-15 14:40:15"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.727658+00 2025-12-17 06:10:00.727662+00 24063 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xX0Aa8eaV91IE-UCv1mk8wlGBzU=", "createTime": "2024-08-15 14:40:15"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.728815+00 2025-12-17 06:10:00.728819+00 24064 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d7RjnRVUuZvKtFMYVUca_7la6Ig=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.731112+00 2025-12-17 06:10:00.731116+00 24066 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C7vsVKbYW3KL3GOIRbIAxwO6jFQ=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.732254+00 2025-12-17 06:10:00.732258+00 24067 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJTqvo1EYiO9m8NLY1wbve6Ip2M=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.73337+00 2025-12-17 06:10:00.733374+00 24068 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M5hZciFw0xGzMBqyzmhTurYYMjc=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.73452+00 2025-12-17 06:10:00.734524+00 24069 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s4U91VjNL7UfZSXv3HHJJ6gjEGM=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.73682+00 2025-12-17 06:10:00.736824+00 24071 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8rBG0ZJ6qadhn2Rj0eb7ue0Wf3o=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.73797+00 2025-12-17 06:10:00.737974+00 24072 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qkm8kEcwC_ttgO3GynbzJn_2xBg=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.735663+00 2025-12-17 06:10:00.735668+00 24070 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nsth4ZYPgi2aPe0n0mhRxlY9Gm8=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.740443+00 2025-12-17 06:10:00.740447+00 24073 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9_z5gL1-B8gSmScDNd9xzGL-5dA=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.741631+00 2025-12-17 06:10:00.741635+00 24074 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qPDZOI2kcFBB4JWvNwi0QOFyUG4=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.742808+00 2025-12-17 06:10:00.742813+00 24075 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A12snSAD9FkCYpsp0ZMCyEvWJhI=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.743957+00 2025-12-17 06:10:00.743961+00 24076 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y1ySDEQI37wY7IG00sp-mqYPq0o=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.745111+00 2025-12-17 06:10:00.745116+00 24077 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXNENLrP8QLhDB3Lyw7ocX0xAcE=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.746266+00 2025-12-17 06:10:00.746271+00 24078 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-LUXt_T9CpB3sUEuzhWvJUTMgQ=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.747418+00 2025-12-17 06:10:00.747423+00 24079 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LKMIPC9y3pciHCU3Ri2I3I7eLDo=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.748575+00 2025-12-17 06:10:00.74858+00 24080 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_bIzJENGp97LUveuuMvHjqBhZm4=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.750321+00 2025-12-17 06:10:00.750325+00 24081 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X2jYV6G1Tpo96YhX3jYSIJ7waeI=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.751527+00 2025-12-17 06:10:00.751532+00 24082 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:32DKl5jq8pR7bGE2bEzpBzK19MY=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.7527+00 2025-12-17 06:10:00.752704+00 24083 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sMd8G3yVSPFAeV-1juQrQZ5lZ8g=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.753851+00 2025-12-17 06:10:00.753856+00 24084 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ePL1fdjcFRc3hTjUYBeicRdcoa0=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.755003+00 2025-12-17 06:10:00.755008+00 24085 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yT0zJqVYyOsOaLiol40G28mC4go=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.756175+00 2025-12-17 06:10:00.756179+00 24086 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LJz9jHpL66Hmxe4gk7MhKLsL-Eo=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.757298+00 2025-12-17 06:10:00.757302+00 24087 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GSa_lvtXGfgzfGiII-_0sqvSdCU=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.75845+00 2025-12-17 06:10:00.758454+00 24088 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pmY94SrE62-Rr4j6INTF6UFTH7s=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.759655+00 2025-12-17 06:10:00.75966+00 24089 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3k7Ch32ty_Rhdzh34bj52e_RRFk=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.760836+00 2025-12-17 06:10:00.76084+00 24090 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bmf4qpnowhz1HyUbqBq3-C6OPb4=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.76199+00 2025-12-17 06:10:00.761994+00 24091 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rLt8sOAaSKvsOpwuQnvI9tWet5c=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:00.763156+00 2025-12-17 06:10:00.76316+00 24092 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jIK0iIh4ttTxtn3agdOFQt__9oI=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.14623+00 2025-12-17 06:10:01.146234+00 24097 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3f63UniUp4TpSodUEs702XnIpVI=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.140802+00 2025-12-17 06:10:01.140812+00 24093 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zBgqAxdA9CndtaAzFPA13xUZzfg=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.142412+00 2025-12-17 06:10:01.142417+00 24094 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XqcppTAkIo-4IH5Ezn85wcQfsz4=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.143724+00 2025-12-17 06:10:01.14373+00 24095 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uYpFzILDzb7Xx18Y8IgsKUhPwm4=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.145036+00 2025-12-17 06:10:01.145041+00 24096 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gweYlJUZRQAEtLWoZI2zI4GQ7NI=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.14738+00 2025-12-17 06:10:01.147385+00 24098 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cK33d_I4E6DnvCPsmXVzdbP5aH0=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.148539+00 2025-12-17 06:10:01.148543+00 24099 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Yy3lS7VXjYduEqkGJFcoVHT5fw=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.149698+00 2025-12-17 06:10:01.149702+00 24100 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mTTx--yOoGOv01oSFNz0W32UivQ=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.1509+00 2025-12-17 06:10:01.150905+00 24101 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mXILgNXd5SefPjQXXGUCnSDDcFc=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.152048+00 2025-12-17 06:10:01.152052+00 24102 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w2E_t6vOcmDTu5xROHKjQ85i0KA=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.153193+00 2025-12-17 06:10:01.153198+00 24103 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XckKC-cHvys4Dfkc24yosLMR6Co=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.154319+00 2025-12-17 06:10:01.154323+00 24104 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qY5seWlywGkJgqjRoAzJs90XsC4=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.155463+00 2025-12-17 06:10:01.155467+00 24105 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XvHIIVNFmrF7Xp5R6P0ZF7Yw2xA=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.156588+00 2025-12-17 06:10:01.156592+00 24106 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xC7h465V6oyV9HBnzogRzO0nfnc=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.157739+00 2025-12-17 06:10:01.157743+00 24107 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EEHVdxwIFLv_V_nElsZAY19J_xY=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.158898+00 2025-12-17 06:10:01.158903+00 24108 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ar1SksKAG6rGXSN9YWXz328rEWw=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.161061+00 2025-12-17 06:10:01.16107+00 24109 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:78GNIBO5UF1DZr37Cfu2XTzglXM=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.163295+00 2025-12-17 06:10:01.163302+00 24110 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zgFNchzKbNYHTEBINGJWQu4mZ_E=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.165091+00 2025-12-17 06:10:01.165096+00 24111 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Slj45sMTr4tVzfxDg8uaK4ZZBQ=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.166284+00 2025-12-17 06:10:01.166289+00 24112 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wik9cMZ3e-4uszmq2S99CBRWsCQ=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.167462+00 2025-12-17 06:10:01.167466+00 24113 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hrfjh1_COo7jPOT6kx9PB-8DjmY=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.168659+00 2025-12-17 06:10:01.168663+00 24114 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G5sMFnF2TZn7kgQOoIvJCEuNiyQ=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.169839+00 2025-12-17 06:10:01.169844+00 24115 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7R6-IidBpXiTyXsGc-mvlrlEwQY=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.170995+00 2025-12-17 06:10:01.170999+00 24116 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4zGPa4f9kfG0qWur0xerm6N5r0g=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.172164+00 2025-12-17 06:10:01.172169+00 24117 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xfNeUeD4zAaHxc1y2cwobPq7rVc=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.173317+00 2025-12-17 06:10:01.173322+00 24118 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZO07cA-d5TQS5ttQ-otXviPJ1Mw=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.174461+00 2025-12-17 06:10:01.174465+00 24119 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JNjw-nWEalqlDD0U5DBVtvCeFa0=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.175612+00 2025-12-17 06:10:01.175616+00 24120 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V4C1Zb70mxBx_pCqJq8uOlJ0p1o=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.176768+00 2025-12-17 06:10:01.176773+00 24121 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e_xQvTwmB6ZJySv2AeUdmlm6_W4=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.178883+00 2025-12-17 06:10:01.178891+00 24122 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2GD-2CeiSfzh2lxk14WwrQ7IPmc=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.180931+00 2025-12-17 06:10:01.180938+00 24123 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ATjhl93oYMvokzihOsrlMfZ9GzU=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.182773+00 2025-12-17 06:10:01.18278+00 24124 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r-sCmYNbwBDON8OxUkOcNWDodsw=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.185+00 2025-12-17 06:10:01.185006+00 24125 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IZlwmuI3THBWPDEJ0LEyvLzF2CY=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.186955+00 2025-12-17 06:10:01.18696+00 24126 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UT04KXjxqHX-f_A-6cb6yIVPjNM=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.188542+00 2025-12-17 06:10:01.188546+00 24127 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-1dPEVgaEI64ORzKAR1-wgOz43E=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.190158+00 2025-12-17 06:10:01.190163+00 24128 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:apI2-EzO0p2Dea9IDEEwQzOtTHE=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.192012+00 2025-12-17 06:10:01.192019+00 24129 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ZKWvh5kGddCJPIB3JtYawgZ-Ao=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.194011+00 2025-12-17 06:10:01.194017+00 24130 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vsxOqL0UC4kBIuDlXyx2CG4Qo0I=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.195568+00 2025-12-17 06:10:01.195573+00 24131 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uX72n-lPSHjJFdA5A3f7cpAhwAU=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.197042+00 2025-12-17 06:10:01.197046+00 24132 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YbLaElnqlEllXvfID2T8ZpA4Rrw=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.198477+00 2025-12-17 06:10:01.198482+00 24133 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kImu3Jg_LkgwPfi7funpgbh-QXo=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.199638+00 2025-12-17 06:10:01.199643+00 24134 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OF7NpC7VyHe_jkDDQvSIb7Si0BI=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.20079+00 2025-12-17 06:10:01.200795+00 24135 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j42dRpGwUZMpaWuvZmCsvEBYRs4=", "createTime": "2024-08-15 14:40:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.201931+00 2025-12-17 06:10:01.201935+00 24136 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wyCN3atpoEGUapO1kmWF6R4c_9Q=", "createTime": "2024-08-15 14:40:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.203081+00 2025-12-17 06:10:01.203085+00 24137 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1URi8nwEcRl_xSpoCM9_oyU1zDo=", "createTime": "2024-08-15 14:40:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.204197+00 2025-12-17 06:10:01.204201+00 24138 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WEoK1Gdx-xjgj5NzUNIwTuFhdtc=", "createTime": "2024-08-15 14:40:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.205311+00 2025-12-17 06:10:01.205315+00 24139 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QUjW7UOcNTb1U1yg-5B_cdKX3hE=", "createTime": "2024-08-15 14:40:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.20645+00 2025-12-17 06:10:01.206455+00 24140 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UTFZF-4bDSidlp_nSH8LBzM_gwU=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.207585+00 2025-12-17 06:10:01.207589+00 24141 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-VmGn7KW3muah1kRhHguOF15mOc=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.208737+00 2025-12-17 06:10:01.208741+00 24142 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EBK1vu4nSQIY7N2eR84FUbMATU0=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.209886+00 2025-12-17 06:10:01.209891+00 24143 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-HKWq5WFwovMqh25W-qWYYFiQQA=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.211029+00 2025-12-17 06:10:01.211033+00 24144 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SHp_Tg4knBIAPychyE0wCTmzuJ0=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.212175+00 2025-12-17 06:10:01.212179+00 24145 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EWjstdlxysAPVCS_KFXVN72ZxIo=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.213318+00 2025-12-17 06:10:01.213322+00 24146 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9D4qYMfKxlQciL2U1__dBs9Tqkk=", "createTime": "2024-08-15 14:40:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.21446+00 2025-12-17 06:10:01.214464+00 24147 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CYS4g-MgO_SyvieVUWSUPjpn2Xo=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.215589+00 2025-12-17 06:10:01.215593+00 24148 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XHmGX2Bc7_vziuPBpMHiMNTzfoU=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.216722+00 2025-12-17 06:10:01.216726+00 24149 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vCzBXjitbc-5ZEOjffPw01CPIvU=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.217884+00 2025-12-17 06:10:01.217888+00 24150 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NcVN8KY2uzMuXZ9KS7dE0evGyzs=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.219014+00 2025-12-17 06:10:01.219019+00 24151 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xxUcPjrTV-XklUJSGWVWm6Ix36A=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.220148+00 2025-12-17 06:10:01.220152+00 24152 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m8kMUINdOspdu8KthRjEp6imRmM=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.221294+00 2025-12-17 06:10:01.221299+00 24153 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hiCA2AXajjJLtnDIwfi46uX4jtg=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.22241+00 2025-12-17 06:10:01.222414+00 24154 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sl0QsLRK1_rtmakKVjAIZsWo2Wk=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.223539+00 2025-12-17 06:10:01.223543+00 24155 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nl4hKCOBxJgs2WfX6GLyQgt-pAc=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.224679+00 2025-12-17 06:10:01.224684+00 24156 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R2x1r2SpZkIHuLo3U7A5bVu3QgQ=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.225831+00 2025-12-17 06:10:01.225836+00 24157 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XOL6KJUb4lbl_m-XHCHB_KOe6Js=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.226989+00 2025-12-17 06:10:01.226993+00 24158 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:74nPYBQEv34k66JUIcNcpS7Mnh4=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.228118+00 2025-12-17 06:10:01.228122+00 24159 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Twg5eBy2UkVUXr8uvuzn4td9bu4=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.229228+00 2025-12-17 06:10:01.229233+00 24160 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cvK1EhUzOC9k9tdTpTmySvPOAIc=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.230355+00 2025-12-17 06:10:01.23036+00 24161 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pcO08Utig_BGQnL3hLyvDTCIBVI=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.231487+00 2025-12-17 06:10:01.231492+00 24162 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ymxS1XRurJoASN_xP9UBB7EKkzg=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.232609+00 2025-12-17 06:10:01.232613+00 24163 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BH9lzMajh2_zJu6S7XWobtSj2cE=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.233726+00 2025-12-17 06:10:01.23373+00 24164 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hJ4JbBlC-e3maoeZTrA0tOOUMMY=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.234887+00 2025-12-17 06:10:01.234891+00 24165 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uCQBCfF1simJB-z7gJ-kzE8-180=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.236394+00 2025-12-17 06:10:01.236398+00 24166 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Avz5eJn_ZwMTNfa6b6x4vO8GnQk=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.237648+00 2025-12-17 06:10:01.237652+00 24167 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jKJ4nbgLZmInBMr5j3pw6Cl645o=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.238817+00 2025-12-17 06:10:01.238821+00 24168 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yxgrF0N7ufPUCtx3dDFfYOylTdQ=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.239986+00 2025-12-17 06:10:01.23999+00 24169 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tj0crrvIwpNl2K3G3mejRjeVUXU=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.241188+00 2025-12-17 06:10:01.241193+00 24170 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OrGxF5tBB2jCKWThLQxpK_7GGjo=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.242341+00 2025-12-17 06:10:01.242345+00 24171 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kTRZ2msAD9YJ2btBsORAZp8nQyE=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.244288+00 2025-12-17 06:10:01.244292+00 24172 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qf-xr9H4X3b_fWFAALWbFdEF5gU=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.245472+00 2025-12-17 06:10:01.245476+00 24173 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cqaNIzz7MNyJHxMWHV1wX7DZ2-M=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.246656+00 2025-12-17 06:10:01.24666+00 24174 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oHzZ4lpK6YiryUXYMmnStufFgAA=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.247827+00 2025-12-17 06:10:01.247831+00 24175 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Za2bM5MzjP-FhaDFHNruMui2Vc8=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.248987+00 2025-12-17 06:10:01.248992+00 24176 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rx_ryOEqGDPU52chjBo-tP2z_qE=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.250154+00 2025-12-17 06:10:01.250158+00 24177 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5qM95B2x2A79Rm4vZI_qIFZ18Wk=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.251326+00 2025-12-17 06:10:01.25133+00 24178 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JW33UDMMKhHH-HHOjjP_acrmIdA=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.252481+00 2025-12-17 06:10:01.252486+00 24179 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sZD_LGn3ziv0OFORjPXbiQpu6OM=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.253651+00 2025-12-17 06:10:01.253656+00 24180 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_4fDW_eMF6VK-tzQOwPGpLNtuHY=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.254825+00 2025-12-17 06:10:01.25483+00 24181 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MEkRIO227shwqWW3HR42YF_sh7Q=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.256007+00 2025-12-17 06:10:01.256011+00 24182 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vJewcqyy8l3em0YDJgxYEh9UkaI=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.257214+00 2025-12-17 06:10:01.257219+00 24183 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iff-oiZqJ6kqkm0-ZGCBThQpm7s=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.258372+00 2025-12-17 06:10:01.258377+00 24184 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9-I7D5FaMMcqvcsbpYvgia0SB7c=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.259531+00 2025-12-17 06:10:01.259536+00 24185 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cpckKftba3M2NtGfW4yaahsFzcQ=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.26083+00 2025-12-17 06:10:01.260836+00 24186 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KKZTkg-aKc9_9VmgJwhiwqxe0HM=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.262124+00 2025-12-17 06:10:01.262129+00 24187 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6fgGeBmeJNNTn-R2UTpSkFLKfxg=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.263307+00 2025-12-17 06:10:01.263311+00 24188 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_VmPAriYJkxXb_vK4LXKJpAaXsk=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.264483+00 2025-12-17 06:10:01.264487+00 24189 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UY1B_6Np3levSs-xFu-xOiL16nY=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.265661+00 2025-12-17 06:10:01.265665+00 24190 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hHJNB6XoCd7hSHjS-OTxGMWl-no=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.266839+00 2025-12-17 06:10:01.266843+00 24191 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X7jcjoMkjQRh57HYYnvPxjnEAM0=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:10:01.268013+00 2025-12-17 06:10:01.268018+00 24192 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=1766038200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FUXIoxYpcxlhkhCcfLGaZAyolEk=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.394888+00 2025-12-17 06:20:00.394893+00 24220 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dkJ87B1khqZ1K0WYyO5Ui7qtzuc=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.393643+00 2025-12-17 06:20:00.393647+00 24219 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CDagCcNaS3SA1S3X93W6MAhNLl8=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.399192+00 2025-12-17 06:20:00.399197+00 24222 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dlOug-1D7cxqIGmSDYyNN5gAiO0=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.400371+00 2025-12-17 06:20:00.400375+00 24223 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IYBa9up2yC2CNppz0ERzhWNGUwo=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.401532+00 2025-12-17 06:20:00.401536+00 24224 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bxAsAd8gwPFLFtCzqNZ2JiaE1G8=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.402725+00 2025-12-17 06:20:00.40273+00 24225 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:593m3ZVOidz0gYidd6da3PCxa1s=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.40508+00 2025-12-17 06:20:00.405084+00 24227 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cwg3HRfrWEEGC9w9bXME0SmYVwE=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.406488+00 2025-12-17 06:20:00.406492+00 24228 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:31meoYmZtcZvoearI30kusIQg0s=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.407789+00 2025-12-17 06:20:00.407793+00 24229 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FUVLn7OdXgZ0m3Sk9nqmZZE714A=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.409693+00 2025-12-17 06:20:00.409701+00 24230 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g6yJqhbB5zFA0dR8g9pZn7Ytb14=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.411497+00 2025-12-17 06:20:00.411504+00 24231 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T1fYoAybKeFptvOzlovMSiygwfo=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.413349+00 2025-12-17 06:20:00.413356+00 24232 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WOr9Fl_28W2o3rCm_CRazguNHSU=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.415133+00 2025-12-17 06:20:00.41514+00 24233 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KwLqDmo8HmWLyoFMSFBjZTrJTuQ=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.416934+00 2025-12-17 06:20:00.416939+00 24234 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8cMLNZbMeKppLkoxafk_bACJJyU=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.403912+00 2025-12-17 06:20:00.403917+00 24226 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pydCkG_e8MZ0aYab19GX_UMBvbU=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.420206+00 2025-12-17 06:20:00.420211+00 24235 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:es1VdfH2aT70K9ZNxJUqe3pfegk=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.421677+00 2025-12-17 06:20:00.421681+00 24236 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5vlj0xe2NmyokuU2Ypel70U0XCg=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.423278+00 2025-12-17 06:20:00.423283+00 24237 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ccliAxZTupj9QHgFc01tv8uYm_8=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.424791+00 2025-12-17 06:20:00.424795+00 24238 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6vJrv_Sdw0yeu0kGY2vJkVsi_Vs=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.42633+00 2025-12-17 06:20:00.426335+00 24239 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wAbkOYaMDdU-DrpWfSGF7k7Gh5E=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.427818+00 2025-12-17 06:20:00.427823+00 24240 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J9wIanSJSJVBDusr3OtsA0TkQMY=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.429884+00 2025-12-17 06:20:00.429889+00 24241 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AnHp6ocobyGEv1p85ggAed2-fsc=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.431426+00 2025-12-17 06:20:00.43143+00 24242 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S6G7Yn4fCt_MQPGjZlAkZ5pUgv0=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.432609+00 2025-12-17 06:20:00.432613+00 24243 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vDLhBSAY6lrKkefWmbQD1ONTCQQ=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.433789+00 2025-12-17 06:20:00.433793+00 24244 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HAdOhj083Nj0G1wejenKafTt2kw=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.434959+00 2025-12-17 06:20:00.434963+00 24245 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OtPY1cTb_LHN1nk8NKdg7XXt1BU=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.436116+00 2025-12-17 06:20:00.43612+00 24246 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nvKcSVJieIrpZTTxFIZEbc3rBNA=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.437265+00 2025-12-17 06:20:00.437269+00 24247 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TrrDqas8uS6yDMUTLJYCTAM0GQA=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.4384+00 2025-12-17 06:20:00.438404+00 24248 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BxDiXClkjO33anLzuxcS_8extjk=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.439562+00 2025-12-17 06:20:00.439584+00 24249 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jp_urld_FduZMfvYDNFp7iMh6lY=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.440746+00 2025-12-17 06:20:00.44075+00 24250 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5xG0B3fJyUS-vkv038RPPlzisr0=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.441927+00 2025-12-17 06:20:00.441932+00 24251 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F1QvdKI6FCRngdlQcUqJaFDT5A0=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.443089+00 2025-12-17 06:20:00.443093+00 24252 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jI_l5j5gzNkoNttXlqW_TiSeMZY=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.444278+00 2025-12-17 06:20:00.444283+00 24253 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FAHGp78gjJqpyWQkEv-Q_I9R_eE=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.44561+00 2025-12-17 06:20:00.445615+00 24254 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HjAGQp60GoR4wtfeKMpdIyWWr_8=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.44695+00 2025-12-17 06:20:00.446954+00 24255 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zwhY2dJGXIXMyvqSACnzfj2xal8=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.448132+00 2025-12-17 06:20:00.448136+00 24256 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c03F_Wj_jVgUDadRht13LYjHriE=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.449308+00 2025-12-17 06:20:00.449312+00 24257 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p9BMOIMxETaERpn8h5gmoWGN9mE=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.450933+00 2025-12-17 06:20:00.450937+00 24258 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXKXRfLUJHyjEM9ZjCyWD6hp8A4=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.452087+00 2025-12-17 06:20:00.452092+00 24259 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MzKQ9JR6RArxCcNLoRha_AID4_c=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.453263+00 2025-12-17 06:20:00.453267+00 24260 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QlXKJrBnJMBlQeY8B6w2pGpcYQY=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.454398+00 2025-12-17 06:20:00.454402+00 24261 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jf0XUdTwh3qnoFPCHw_Ns5XThxY=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.455554+00 2025-12-17 06:20:00.455559+00 24262 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TWe7eHB2a8rc0O7NwcVaNTlprIo=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.456695+00 2025-12-17 06:20:00.456699+00 24263 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pG9GX4VzBiI4SFogDNWm8aT5Xlc=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.457978+00 2025-12-17 06:20:00.457983+00 24264 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D7KhFNcS56sGzeZXiHmONXEA3DU=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.459189+00 2025-12-17 06:20:00.459194+00 24265 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HS1d9dlEo9raenQtt2ZB-qZ8Y6M=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.460369+00 2025-12-17 06:20:00.460373+00 24266 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V3fAibZ_eU15qLWPCTFOqPsfKAE=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.461691+00 2025-12-17 06:20:00.4617+00 24267 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sKsLMX-JU-uP_hZnGP5nt0_9YHc=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.463852+00 2025-12-17 06:20:00.46386+00 24268 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8IqCx_hUR0mb10Np3U6fXw4jfew=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.465721+00 2025-12-17 06:20:00.465726+00 24269 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Si4XepTs46BvGtaq_4pTpF0FSAI=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.467019+00 2025-12-17 06:20:00.467023+00 24270 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0p9hW4sBwiJp9u4G2Wd5q1iovVI=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.468202+00 2025-12-17 06:20:00.468207+00 24271 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nw6OMRgYADMDtsIczZyasgiBvAg=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.469351+00 2025-12-17 06:20:00.469356+00 24272 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q9mrWV8yLkupez-HAvqruyLcM3E=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.470506+00 2025-12-17 06:20:00.47051+00 24273 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MHqf5B7YG9XF6NM9RJRn9CDCul8=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.471653+00 2025-12-17 06:20:00.471657+00 24274 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T_PHK0clWllLvadsPKU3b2_D9xQ=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.472811+00 2025-12-17 06:20:00.472816+00 24275 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sgDcayEtxeCjGU46vXEQayYehaA=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.473972+00 2025-12-17 06:20:00.473977+00 24276 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kdbedEwPLg9IcGRkeNN36VlqYZU=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.475124+00 2025-12-17 06:20:00.475128+00 24277 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:udPH8VYA5oF9QlYXMJfMiChvEIo=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.476257+00 2025-12-17 06:20:00.476262+00 24278 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y4iQ2MsyUuaiDQgfZOn6nMlO44g=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.477401+00 2025-12-17 06:20:00.477405+00 24279 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iLf8lvdV26vAjqo9asfRt6MsPiQ=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.478639+00 2025-12-17 06:20:00.478643+00 24280 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IaoN0pEpJslGt8CsfFK6Ix3Ukrc=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.479834+00 2025-12-17 06:20:00.479839+00 24281 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ePMsQv2b35gSz3XjWCQD48DKNds=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.481088+00 2025-12-17 06:20:00.481092+00 24282 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0c0aIQZsVzwB7z9ZG1-7h9R9hrs=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.482273+00 2025-12-17 06:20:00.482278+00 24283 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IZT33fZWx-MwN3vO2yPIvhQScsM=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.483451+00 2025-12-17 06:20:00.483455+00 24284 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GR8_3ino9jnzSqw9r27DJV9Ofyg=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.484623+00 2025-12-17 06:20:00.484627+00 24285 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1gz4NlZ3ztKYI0VXDeunJrY30jU=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.485774+00 2025-12-17 06:20:00.485778+00 24286 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yH8Hx-aKdIY3WZ3hT437wgyscyg=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.48694+00 2025-12-17 06:20:00.486944+00 24287 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PvkOWu3hpDnYEBjtIBuE79vRoEU=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.488087+00 2025-12-17 06:20:00.488091+00 24288 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zvcGwHWu3KOcQmyywitXlkWEd6Y=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.489261+00 2025-12-17 06:20:00.489266+00 24289 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FibTu2C6zty_p17C7zKRVf1I_As=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.490397+00 2025-12-17 06:20:00.490401+00 24290 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=1766038799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W3SL9bblXFkdSA9Noe2PrhSU9y8=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.830601+00 2025-12-17 06:20:00.830613+00 24291 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C8zpdO7nwOK9QScYfwyWoRVwwF0=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.832818+00 2025-12-17 06:20:00.832825+00 24292 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3UPLao10hbKIEwlMZGKT7JOZYLc=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.834708+00 2025-12-17 06:20:00.834715+00 24293 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZUYerN6upWHGc4-EvzHiRyKOb_s=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.836502+00 2025-12-17 06:20:00.836508+00 24294 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hJqwmfS5XbxzUEEGf4CRDa-VVcA=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.838219+00 2025-12-17 06:20:00.838224+00 24295 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ReNgln-_L9fO9FA2b3UAky0aK1k=", "createTime": "2024-08-15 14:40:34"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.849555+00 2025-12-17 06:20:00.849559+00 24304 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5v6iDp_IHEsRTdYLXvtICz1T8oo=", "createTime": "2024-08-15 14:40:34"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.839726+00 2025-12-17 06:20:00.83973+00 24296 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QarwpLdxgEkXG_ykw0XYEaXg1KE=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.840959+00 2025-12-17 06:20:00.840963+00 24297 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n19MpNgmSv01aXz2nbyMDrLY380=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.842114+00 2025-12-17 06:20:00.842118+00 24298 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kt2G2gwR8OO1Gcl0dZWzDNMkJSU=", "createTime": "2024-08-15 14:40:34"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.84327+00 2025-12-17 06:20:00.843274+00 24299 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NAtT6Sv2Fzra0WWaz_EI0VKyE9g=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.844438+00 2025-12-17 06:20:00.844442+00 24300 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KTDjulpAqokM7b8yDa2dr5rb-Ow=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.845754+00 2025-12-17 06:20:00.84576+00 24301 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:stLuQFv7jScOmkXHKx_wyhNFelY=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.847175+00 2025-12-17 06:20:00.847179+00 24302 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WIIoCVe30ro6JdnBbZlasplfT_Q=", "createTime": "2024-08-15 14:40:34"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.848382+00 2025-12-17 06:20:00.848387+00 24303 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NpVFr8t7rEU0qgWUtW3RKbinNBg=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.850746+00 2025-12-17 06:20:00.850751+00 24305 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UDc8cF-objwARM2jWrRlmdH1Kl8=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.852366+00 2025-12-17 06:20:00.85237+00 24306 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ll9nsEdAajeIAgdIHZ506fiLmbY=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.853522+00 2025-12-17 06:20:00.853526+00 24307 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sw0VGPK7I6m-9d71ivrxP4I9wsY=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.854806+00 2025-12-17 06:20:00.854811+00 24308 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bsPUzE93H3C_ED6n3oaqrrBtDn8=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.855977+00 2025-12-17 06:20:00.855981+00 24309 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6jCZFQhSLCtf3dibnwmtlJY_dWM=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.857154+00 2025-12-17 06:20:00.857158+00 24310 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0zY06nUQxqHtt2_ItI31QJmgL6c=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.858295+00 2025-12-17 06:20:00.858299+00 24311 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cIoylN6b4ubmN8Kpm1w177QbvPQ=", "createTime": "2024-08-15 14:40:34"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.859448+00 2025-12-17 06:20:00.859452+00 24312 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UZOlieLrWLlA300T8FgIkA7erBg=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.860592+00 2025-12-17 06:20:00.860597+00 24313 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MiMo20WNeFJZiuhzfHCV-WCi3y0=", "createTime": "2024-08-15 14:40:34"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.861889+00 2025-12-17 06:20:00.861894+00 24314 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_LCuO4F_o81LSnbXuk5fP-xoEr8=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.863272+00 2025-12-17 06:20:00.863277+00 24315 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WlH9u4GAZjSrDFAN2zJCCQaf-sM=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.864492+00 2025-12-17 06:20:00.864497+00 24316 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8vQMieF9I-E1K4XTBTCSLI_CIU0=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.86567+00 2025-12-17 06:20:00.865674+00 24317 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IXeejcqN7xyEwrtvqj7LFVhQXNU=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.866825+00 2025-12-17 06:20:00.866829+00 24318 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZujqK5E1hLCZBnltkQxwjul5dg4=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.867999+00 2025-12-17 06:20:00.868004+00 24319 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sg_BtA9UEKOL5wKb-mDMHh8a2F0=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.869144+00 2025-12-17 06:20:00.869149+00 24320 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tD2TyoMcI2oOkvry_F3FhCUKHjs=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.87034+00 2025-12-17 06:20:00.870344+00 24321 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VtB9pCU-1Pk2Sn34jeP_WON3fF0=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.871499+00 2025-12-17 06:20:00.871504+00 24322 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zdLwNTiR0mxE6ugMzRwTABqfOM0=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.872639+00 2025-12-17 06:20:00.872643+00 24323 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KqYQrDKzSGNoA-p3GloOKIS1UNs=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.87382+00 2025-12-17 06:20:00.873824+00 24324 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jn11qb9m102z3Th5u1o18Wa3KO4=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.875081+00 2025-12-17 06:20:00.875086+00 24325 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vjxmr49NuNOH9Vtelwo1besgTJ0=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.876535+00 2025-12-17 06:20:00.87654+00 24326 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m2RbSmXcxlRm3bZL94yY5opbCpM=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.877902+00 2025-12-17 06:20:00.877907+00 24327 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tzot806mf-GGeRvqFbdwgd1xfgY=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.879251+00 2025-12-17 06:20:00.879256+00 24328 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i1NdgAFM3jVlO2eKyE5ay_4AZtM=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.880606+00 2025-12-17 06:20:00.880611+00 24329 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2mhHUOJkMw6lkYsXrdbJ-ZK_Flk=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.882261+00 2025-12-17 06:20:00.882266+00 24330 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RSjwYZGZx1noSKfNtzNZvLNIuJY=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.883695+00 2025-12-17 06:20:00.883699+00 24331 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NVdbxUxBFcUDfKnCMhc9wd4tmfI=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.885052+00 2025-12-17 06:20:00.885056+00 24332 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xYfcAmkYIntHWLcldZa0upYAsdw=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.886406+00 2025-12-17 06:20:00.886411+00 24333 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:avKqIo6R19xJw5i9bi1smJR8sSA=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.887978+00 2025-12-17 06:20:00.887983+00 24334 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yJmmR2x_TXKss_hMrLCYdp5t5uc=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.889226+00 2025-12-17 06:20:00.88923+00 24335 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6r6N1HCgIzJR2k7wrl1DJJDeSQ4=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.890417+00 2025-12-17 06:20:00.890421+00 24336 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ESW6XEc-Z-mXaL7PTJy0GdjZ_I=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.891658+00 2025-12-17 06:20:00.891663+00 24337 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tDrDjqjwLz6dszzbkNUhPh3IT_k=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.892837+00 2025-12-17 06:20:00.892842+00 24338 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZM0p2trH93fhEkeiyZP4iT4LhUo=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.894023+00 2025-12-17 06:20:00.894027+00 24339 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iVhSmArBTn7uTcwbXgkYCx-GWvk=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.895324+00 2025-12-17 06:20:00.89533+00 24340 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h4OE0t8krzJ_iiuFU0PXN7PyPh8=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.896597+00 2025-12-17 06:20:00.896601+00 24341 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z6VIw-uxkDVa0BW5OTmLSbQPWM0=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.897811+00 2025-12-17 06:20:00.897815+00 24342 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IeQsJYcHq_WS2uGX5baz05rMpaU=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.899041+00 2025-12-17 06:20:00.899045+00 24343 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CLzPp84fn3W0JHeaf4VG2XS6A6o=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.900236+00 2025-12-17 06:20:00.90024+00 24344 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IHPRMBb73kQETQWPN8C3kttXAqA=", "createTime": "2024-11-21 13:37:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.901401+00 2025-12-17 06:20:00.901406+00 24345 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ZKbDck1oeoqVgwVpz5pGId41yE=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.902576+00 2025-12-17 06:20:00.90258+00 24346 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JSEPNNsG7repR1MOm-QPtksIyMc=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.903753+00 2025-12-17 06:20:00.903758+00 24347 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s4nc45Z3IBlK-CElZxDFqB_6358=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.904946+00 2025-12-17 06:20:00.90495+00 24348 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7imKYRnqZxSdNS7srg14t5q-h1k=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.906146+00 2025-12-17 06:20:00.90615+00 24349 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b8NsvSa9engI4qd1B21lq-Ygipo=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.90744+00 2025-12-17 06:20:00.907445+00 24350 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MN7wIMJ8nR9I9lYDS_3xQJNG_iI=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.909028+00 2025-12-17 06:20:00.909033+00 24351 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Kx-4ei3TXDPjxTRVhkgZ-S8QGQ=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.910374+00 2025-12-17 06:20:00.910379+00 24352 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uTz5_5HBCNEpyY_hEasoyQNxRi4=", "createTime": "2024-08-15 14:40:38"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.911728+00 2025-12-17 06:20:00.911733+00 24353 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EQznPn_Jn9s7RA-RHPR-6U0Hdew=", "createTime": "2024-08-15 14:40:39"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.913423+00 2025-12-17 06:20:00.913435+00 24354 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GuuC0O2h7DovvIgZzfQSYyFEdps=", "createTime": "2024-08-15 14:40:39"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.91486+00 2025-12-17 06:20:00.914864+00 24355 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xcMOGh5nKvkpRhaMqFIGGzUvgDE=", "createTime": "2024-08-15 14:40:39"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.91609+00 2025-12-17 06:20:00.916095+00 24356 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVlnkHI_443CUWq4ifsgKZVcC6Q=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.917275+00 2025-12-17 06:20:00.917279+00 24357 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z0rYuXWDG7W7vfM1A9GcwY1Ub6g=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.918426+00 2025-12-17 06:20:00.918431+00 24358 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yA9kzhedtVFVePx5YRquTnMqLu4=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.919611+00 2025-12-17 06:20:00.919616+00 24359 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fAZjrByWIl3rqDkURzzhIZLEJc8=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.921056+00 2025-12-17 06:20:00.921061+00 24360 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eIkI_lKgohXuJdlTU3D1GXIzG8w=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.922503+00 2025-12-17 06:20:00.922507+00 24361 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rwtUNt_U2TGStdi6Pa59ktq5txw=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.923972+00 2025-12-17 06:20:00.923977+00 24362 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sOi0kBMP1ppnkM2TXdEMikCWw-Y=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.9254+00 2025-12-17 06:20:00.925404+00 24363 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LpX8-QGKdtmDmZuYt5dorxLeWu4=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.926878+00 2025-12-17 06:20:00.926882+00 24364 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ES2SE5gVMa2VXIh1HoUSlZKKIuo=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.928363+00 2025-12-17 06:20:00.928368+00 24365 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_td9LAVZmYDWpxuDpgOuWa7OiD8=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.929998+00 2025-12-17 06:20:00.930003+00 24366 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2M8dkj48RMt1Po6sDUMPqo9d7f8=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.931508+00 2025-12-17 06:20:00.931513+00 24367 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UqcFuvcKOSWLfOIrQNQwTioBsOc=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.932704+00 2025-12-17 06:20:00.932708+00 24368 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:99ExSjd-69jCWnurUKlau7tp50c=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.933888+00 2025-12-17 06:20:00.933892+00 24369 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l0g0WUpd1VIdpcg63R-0TS8EOys=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.935069+00 2025-12-17 06:20:00.935074+00 24370 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7NpEcILrYU6wxNF6oBa0ZMMO4ys=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.936218+00 2025-12-17 06:20:00.936222+00 24371 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4kiT1hjtHXuY6gy_fhFIGgtGieo=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.937395+00 2025-12-17 06:20:00.9374+00 24372 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BKbZuVjEd-pU9ISCoMRz7-NgVyE=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.938576+00 2025-12-17 06:20:00.93858+00 24373 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VBNsjDRSPZEFS45Et_-x9TE-9A4=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.939733+00 2025-12-17 06:20:00.939737+00 24374 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ontsRMmXumpsahmI1g_u8IkIIbI=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.941011+00 2025-12-17 06:20:00.941015+00 24375 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m9Lkh5ofSgFiSMIWL731jqwjq0A=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.942247+00 2025-12-17 06:20:00.942252+00 24376 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ZZI7qnLtwKBCgcJOVFSAok93hs=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.943458+00 2025-12-17 06:20:00.943462+00 24377 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BrYqrkCv_vx-9n48nUx91f-4tWA=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.944797+00 2025-12-17 06:20:00.944802+00 24378 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1VlUZtOCgfpV2w6pTZRVpzNw0pk=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.946157+00 2025-12-17 06:20:00.946162+00 24379 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nFDo94VbrRf_uZJrGsUAkhriTSk=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.947526+00 2025-12-17 06:20:00.947531+00 24380 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:980FJTAdpgJbGEaRZWDImyKaCyA=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.948907+00 2025-12-17 06:20:00.948912+00 24381 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7HIqHiyV-kAbex5de2iYHtgkQro=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.950269+00 2025-12-17 06:20:00.950274+00 24382 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7VJgtPJTzsYPNn1nwGPyJRVwJJM=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.951696+00 2025-12-17 06:20:00.951701+00 24383 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:niJ7yCzqWHC_DpSV_hbeknThmxg=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.953067+00 2025-12-17 06:20:00.953072+00 24384 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sB6GkfBjmu0d92IEPBcpl_1gHSA=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.954423+00 2025-12-17 06:20:00.954428+00 24385 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ArUPAk_yG5-awZoElEairopjUKQ=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.955797+00 2025-12-17 06:20:00.955801+00 24386 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kdPLwDWNOIaUXzV1pJ-ks3Cct6o=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.957154+00 2025-12-17 06:20:00.957159+00 24387 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x7Y_bTqAlDDj8RsAZF53uuUwp14=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.958529+00 2025-12-17 06:20:00.958534+00 24388 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OSynNkFxRAUrtWvY3Vf7-FiPFO4=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.959916+00 2025-12-17 06:20:00.959921+00 24389 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qweT8UEUyZAo4iXaKWLkKSJPhkY=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N +2025-12-17 06:20:00.961293+00 2025-12-17 06:20:00.961298+00 24390 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=1766038800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vgeb0JmO8l-iQGALm4Wb2J3MQ5g=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.72454+00 2025-12-17 06:30:00.724548+00 24391 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pgqh93phw-eu8bDHcGhb7F7Nr6Q=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.726679+00 2025-12-17 06:30:00.726684+00 24392 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S-ZM9ONORY6UfeSnTXHk-JXflP0=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.728011+00 2025-12-17 06:30:00.728016+00 24393 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZWrfGyg3mUYQT-2GWDdQJKj4C0s=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.729386+00 2025-12-17 06:30:00.729391+00 24394 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qM6tUkKVJQ3ixyOZbjq1_2RWorY=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.731087+00 2025-12-17 06:30:00.731091+00 24395 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R8ytS7XOSGnH9U_6XrRVJ5ogmQk=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.732332+00 2025-12-17 06:30:00.732337+00 24396 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7xGzmw0kPzeDG_fqkCALX5EiePk=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.733712+00 2025-12-17 06:30:00.733717+00 24397 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UE1kJoWV3PQ-nNx2jpUpl0zmllA=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.735039+00 2025-12-17 06:30:00.735044+00 24398 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rIejqkTER2w19pDUw9xGPbfSdlQ=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.736283+00 2025-12-17 06:30:00.736287+00 24399 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gNiv3o0klZA87IiU301BFwjMgBg=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.737551+00 2025-12-17 06:30:00.737555+00 24400 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M97a97CgOZJPVLSksFMRPQjvkHE=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.738785+00 2025-12-17 06:30:00.738789+00 24401 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HEjTMPMpaG69L9pTGA3H08hAaS8=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.740047+00 2025-12-17 06:30:00.740052+00 24402 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LZ0MUIF_Jp_0EedY8Nu6fDWn6aw=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.741342+00 2025-12-17 06:30:00.741347+00 24403 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VUuoT0vBieOc36lf0wUvb35tU8I=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.742666+00 2025-12-17 06:30:00.742671+00 24404 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sne1yflKvibDiQrtjpxHx0zefNo=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.743902+00 2025-12-17 06:30:00.743906+00 24405 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TMUcFR5xPvZKYHLW1ztFaMdNxkE=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.745086+00 2025-12-17 06:30:00.745091+00 24406 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eTFfNdqQWH4MNuZzg_XJxFIg_QM=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.746275+00 2025-12-17 06:30:00.746279+00 24407 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wHw11lv7CyiYk-X9FjAi44dXlRA=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.747558+00 2025-12-17 06:30:00.747571+00 24408 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oN8UhmJx1Pah547Q1Fifp9SU0ZE=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.748762+00 2025-12-17 06:30:00.748767+00 24409 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tcev_G93vD75gDWWIkrI3jts36w=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.74996+00 2025-12-17 06:30:00.749964+00 24410 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SA3kuyajJY2LR2KIcL9E6p62Q-U=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.751141+00 2025-12-17 06:30:00.751145+00 24411 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wIQF39FfrvlQQ7UsDoYQt_QNQ6c=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.752309+00 2025-12-17 06:30:00.752313+00 24412 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YpOVelj08rnXE7Ds8WQxDJr0qos=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.753478+00 2025-12-17 06:30:00.753482+00 24413 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GEvEQb5JKKSn9V7OjnzPIKv5sPI=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.754648+00 2025-12-17 06:30:00.754652+00 24414 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OV_FZLmLiJ2RfmpnE5YXpw3w1FI=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.761454+00 2025-12-17 06:30:00.761459+00 24419 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zqWJkjwCNUt6KW-f9rue-bXDDZM=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.755806+00 2025-12-17 06:30:00.75581+00 24415 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M3dHRjJWGdHbHhknIhKDrHrVt04=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.757299+00 2025-12-17 06:30:00.757304+00 24416 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yff96TyoLOsftuJV5YZGDNCcFII=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.758688+00 2025-12-17 06:30:00.758693+00 24417 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oBH2Gi9cKG78Y-Ez9AxK71k-i_A=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.76009+00 2025-12-17 06:30:00.760095+00 24418 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t6dGinchshqGEawFFKKUDu3bCf8=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.762823+00 2025-12-17 06:30:00.762828+00 24420 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H618lvk_ie4HMmoJBmjq5A1iZlU=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.76421+00 2025-12-17 06:30:00.764215+00 24421 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AEJW2YlY7H04MJnSgZdJrrMf1PY=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.765604+00 2025-12-17 06:30:00.765609+00 24422 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RE9VqIVLWe4r8pJu2raQRSWsjhA=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.766962+00 2025-12-17 06:30:00.766967+00 24423 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cbP_3TI3vN7Xha21zG9Ek1TU6s0=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.768324+00 2025-12-17 06:30:00.768329+00 24424 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ABmX7kp_XNfkPNNM2_e8CRE9e68=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.769774+00 2025-12-17 06:30:00.769779+00 24425 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rC8Vr-qeis9XJTjC-DH_W6B_Jjo=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.771153+00 2025-12-17 06:30:00.771158+00 24426 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V0n_zneh5HTgCUw7co0jwMlK2Rg=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.772511+00 2025-12-17 06:30:00.772516+00 24427 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cjFRjUPh989mgQJCCICiliNHMmk=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.773945+00 2025-12-17 06:30:00.77395+00 24428 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XEp_Sm8KxeLg0CyXbVgt5y_VoXc=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.775323+00 2025-12-17 06:30:00.775328+00 24429 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YI60DlmiVS2G-CDopZ2JJ0saEW8=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.776589+00 2025-12-17 06:30:00.776594+00 24430 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYgXArECRMwaiCi1DYq6Ei8Qi_k=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.777795+00 2025-12-17 06:30:00.777799+00 24431 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3voD3jpjGzZAKVuISatvmX5Yzv4=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.779016+00 2025-12-17 06:30:00.779021+00 24432 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ye89WyY6gJFAh7fAyYYN3sn9eKs=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.780257+00 2025-12-17 06:30:00.780261+00 24433 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YnYJHqLOjmWI3e7nBvnQWNswk60=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.781435+00 2025-12-17 06:30:00.78144+00 24434 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TAD8FoH_HABbZ4KcQ-ODq1IPMo4=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.782647+00 2025-12-17 06:30:00.782652+00 24435 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0nLt0F9H9D8tb9y9WMY9ZLsulQA=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.783829+00 2025-12-17 06:30:00.783833+00 24436 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RecwEsEZcbWZ7U9S-TjJ8EONfjM=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.785023+00 2025-12-17 06:30:00.785028+00 24437 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-EUTAtqNCffMgflNNnJ_9lx9kms=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.786214+00 2025-12-17 06:30:00.786218+00 24438 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:45KAB1voVOEkY0k0IYI-BWtr4JE=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.787372+00 2025-12-17 06:30:00.787377+00 24439 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bswx7q1k7V1cJWIYarZcJBrXlaA=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.788552+00 2025-12-17 06:30:00.788556+00 24440 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PW4BAurtB6F7DWVutniRy4qsD90=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.789764+00 2025-12-17 06:30:00.789769+00 24441 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BEXrLhfMw9pZlceXyQVTn5Jp0Cw=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.791027+00 2025-12-17 06:30:00.791034+00 24442 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oXox9Bj4kV6kLKoIMp3hcwCcmxo=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.792663+00 2025-12-17 06:30:00.792668+00 24443 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mO-VKgC7-Sce9hrdSOX6L40iAHE=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.79405+00 2025-12-17 06:30:00.794055+00 24444 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g87o2yrEgdWSsnu2N3NoydHMgug=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.795447+00 2025-12-17 06:30:00.795452+00 24445 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F9Vu9HioPoglbo1vrQYo9i5PZFU=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.796821+00 2025-12-17 06:30:00.796826+00 24446 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-K6o0uMQW1Ileth1Vnypir-M_p0=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.79821+00 2025-12-17 06:30:00.798215+00 24447 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Orsq2IlBG3QZrqUt9wwKe_BF7p8=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.799521+00 2025-12-17 06:30:00.799526+00 24448 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4irHiWnjCxxgXHs_FKl4GlZ2NZQ=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.800783+00 2025-12-17 06:30:00.800787+00 24449 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8qiJyRcYRD6Dl4A41WB9Oeqs6ww=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.801986+00 2025-12-17 06:30:00.80199+00 24450 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NeJF5dkpgyfbUsY65a6wekm-QZE=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.803178+00 2025-12-17 06:30:00.803183+00 24451 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NVH2_-ht8Fk9RmpTgIZBDzQ8UEc=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.80437+00 2025-12-17 06:30:00.804374+00 24452 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-nBt3AHRfwzOyOZGqkyHaKzeiCI=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.805587+00 2025-12-17 06:30:00.805591+00 24453 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oq3KPy0ma27ajQa5kBfZ-mne4zQ=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.807183+00 2025-12-17 06:30:00.807192+00 24454 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XOZ0JldyXdVK8wIh2QDcKNOLQIk=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.809311+00 2025-12-17 06:30:00.809319+00 24455 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vvpbU_GH6aWEQWESpwKoqynUTYo=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.811439+00 2025-12-17 06:30:00.811446+00 24456 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BSO-PWfLGT3u4z0UkU9ISvO-2Q4=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.813076+00 2025-12-17 06:30:00.813081+00 24457 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2fTX-FxWizlW3eZ9KejlCuYobEg=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.814311+00 2025-12-17 06:30:00.814316+00 24458 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I8tx_TcvpOwXA2msla2p73rwe20=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.815508+00 2025-12-17 06:30:00.815512+00 24459 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c-SaT3dbZAoUkuu5b1Ho8HkkCGE=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.816679+00 2025-12-17 06:30:00.816684+00 24460 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9CrGkYQdz_5AAPkT_Vq0ISHFcYo=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.817945+00 2025-12-17 06:30:00.81795+00 24461 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HOY4yBwJODVCTWs0ul4ubOGB-jw=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.819277+00 2025-12-17 06:30:00.819282+00 24462 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k-UI5yXPg0Sr0J7Mg8IbPEHRFss=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.820462+00 2025-12-17 06:30:00.820466+00 24463 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZkcuU9Z3RTkFp1-Sd2qbm8Y5dIs=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.821666+00 2025-12-17 06:30:00.821671+00 24464 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WLAkBgFv196Bs6n_gi15MnjLHPg=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.822842+00 2025-12-17 06:30:00.822846+00 24465 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xse_bTPvHVscFrYvls27oVaBMr4=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.824068+00 2025-12-17 06:30:00.824073+00 24466 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qOngBVo6_pAi7FJB2MjzhW-BE2g=", "createTime": "2024-08-15 14:40:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.825371+00 2025-12-17 06:30:00.825375+00 24467 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AEboTBQ5nJVqlMw4yZ1Vvk5Gfm0=", "createTime": "2024-08-15 14:40:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.826556+00 2025-12-17 06:30:00.82656+00 24468 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P6RY-4pcvGhhwP3WWe3ni3UreD0=", "createTime": "2024-08-15 14:40:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.827743+00 2025-12-17 06:30:00.827747+00 24469 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PBOcwtn8wa0qQF2biP8ag-bjRgs=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.828935+00 2025-12-17 06:30:00.82894+00 24470 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oKGSgzNK4ep78EE1HbLvgIxY12g=", "createTime": "2024-08-15 14:40:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.830171+00 2025-12-17 06:30:00.830176+00 24471 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i_6ASBdSloRIbnh0JozS51Q7bBE=", "createTime": "2024-08-15 14:40:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.831351+00 2025-12-17 06:30:00.831355+00 24472 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:72Pnwb-dGllXl96ts7CMQYkh7Ts=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.832534+00 2025-12-17 06:30:00.832539+00 24473 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ySZhbjGeAsRRUWhO28slSAg56Qk=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.833726+00 2025-12-17 06:30:00.833731+00 24474 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:po4Kwwt55LUy1QiMa9bZCWaH8QA=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.834895+00 2025-12-17 06:30:00.834899+00 24475 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6bftRK9UKkhV4-lHb0AstyCs8zA=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.836047+00 2025-12-17 06:30:00.836051+00 24476 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:26F5wDCDN6IBNzy_Z_Xc3Nmi-JI=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.837205+00 2025-12-17 06:30:00.837209+00 24477 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HyGsyKvcBtcqIK7WwEdeFGLXzUU=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.838379+00 2025-12-17 06:30:00.838384+00 24478 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJrSbGY0vHrfVTvsfPVy9c7r3MA=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.839533+00 2025-12-17 06:30:00.839537+00 24479 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xmUbP5U9zrApcVOmXkA0LZGaCRM=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.840901+00 2025-12-17 06:30:00.840906+00 24480 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O0vlTFeQdmoRRbkPcNLnqTlWBak=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.842395+00 2025-12-17 06:30:00.8424+00 24481 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y-cpFGgQQVD4FJmkqNAfGRU-U40=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.844178+00 2025-12-17 06:30:00.844184+00 24482 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mROo-_FXzu54qrxtYdK0FJE7uLw=", "createTime": "2024-08-15 14:40:49"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.845464+00 2025-12-17 06:30:00.845469+00 24483 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8j4GClLGBpvLQCbNIuF9s5ZR9PU=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.846678+00 2025-12-17 06:30:00.846683+00 24484 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LeDkmAtS_W7LbB33ILhzvMYmr1Y=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.847953+00 2025-12-17 06:30:00.847957+00 24485 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IQ3VkTOCOoJULPr3naVbROxYqzE=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.849156+00 2025-12-17 06:30:00.84916+00 24486 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qg2rLSiDdp1DbWl-g0dIw1wnt0w=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.850364+00 2025-12-17 06:30:00.850368+00 24487 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tC548KYN8S9sB9Dg3Vm9mekklr8=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.851555+00 2025-12-17 06:30:00.85156+00 24488 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cL4OAouOkUatn6XBjKvM7Qqwe3Q=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.8528+00 2025-12-17 06:30:00.852804+00 24489 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f26-biuVphg_b29SV3CYgb-ukbs=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:00.853999+00 2025-12-17 06:30:00.854004+00 24490 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7hiTuZ8curfeBJ4VDDM3FjfPexM=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.272964+00 2025-12-17 06:30:01.272972+00 24491 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3YjXKWc2Uww13ISUaiWsa1byGZ0=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.27451+00 2025-12-17 06:30:01.274516+00 24492 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZfhAOBuLs6abQfhCWRs_64iXmLQ=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.275842+00 2025-12-17 06:30:01.275846+00 24493 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vuiw2bMAt9VjLOJnLxesXwFJeCg=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.277372+00 2025-12-17 06:30:01.277376+00 24494 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:grYuJAP-1hQ1gMVU0zml-cnHtfo=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.27949+00 2025-12-17 06:30:01.279498+00 24495 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-t2X1f72BIZUUD8Mouhtikl64W8=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.281779+00 2025-12-17 06:30:01.281786+00 24496 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oz4nbHaMEtM3-HrE4F7QAXt3Kgg=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.283843+00 2025-12-17 06:30:01.283848+00 24497 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lYw9MEJURuXdlM3IA3YOLDLyMFU=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.285413+00 2025-12-17 06:30:01.285419+00 24498 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fvd9DHceoR1bux9_gyZJTN-Ajmk=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.286941+00 2025-12-17 06:30:01.286946+00 24499 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dCnNjMVyAwUOVkclwmUnWnKxV8I=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.288432+00 2025-12-17 06:30:01.288436+00 24500 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jQiSFfNlRfC5hJ-e2PP1Ralh5Jc=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.289915+00 2025-12-17 06:30:01.289919+00 24501 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hDk53Yd2DdpqNGKhBxWd_G6zbjg=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.291102+00 2025-12-17 06:30:01.291106+00 24502 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_5_S3ZQVdfDKb47i2xCfKTVJKGo=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.292294+00 2025-12-17 06:30:01.292299+00 24503 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RRgqycHR7ciGwmcMSTMlGTplcb8=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.293543+00 2025-12-17 06:30:01.293548+00 24504 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVvKcVxCZLRQ0W0UT9hCY-UbIAc=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.294746+00 2025-12-17 06:30:01.29475+00 24505 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jBmdZfPGXouqZDArfi5I3jPIoic=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.295933+00 2025-12-17 06:30:01.295937+00 24506 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VAIuOyKWYLXDJf2cnmtvDObpEo8=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.29713+00 2025-12-17 06:30:01.297135+00 24507 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kvNtIu3c2BCTs3DOBCIw9nASyGU=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.298319+00 2025-12-17 06:30:01.298324+00 24508 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KvbzHhpBizGgMG8BQagigE6OBjY=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.299659+00 2025-12-17 06:30:01.299664+00 24509 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z9nH6lqh2faZgbV-d5QJw7-85Vo=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.301056+00 2025-12-17 06:30:01.301061+00 24510 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PAHps2rEx5EXXKRbATQABFgqk70=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.302823+00 2025-12-17 06:30:01.302832+00 24511 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oc-q6lfHvyShtbs5nQhs4YSkcP4=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.304393+00 2025-12-17 06:30:01.304398+00 24512 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gtOY43oSWRx0_xHVdraMYclCdHc=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.305793+00 2025-12-17 06:30:01.305798+00 24513 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nTcL-Uc_hVakFdjAZWOqDd3cuhQ=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.307023+00 2025-12-17 06:30:01.307027+00 24514 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zgscbjCLfwhx0WaUD2zpqmm7F3E=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.308231+00 2025-12-17 06:30:01.308235+00 24515 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i5PN7XXX0EdYftDt6WtVFxxX4i4=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.30943+00 2025-12-17 06:30:01.309435+00 24516 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HZU9UrSbgNpmvJT5IAcA9IydkcU=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.310733+00 2025-12-17 06:30:01.310738+00 24517 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B4rbccNaUFHvh2KM0OugQvFXXYA=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.31203+00 2025-12-17 06:30:01.312035+00 24518 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xi52BtaA-_OMW4pG1RD57kLeSVA=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.313231+00 2025-12-17 06:30:01.313235+00 24519 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DB1lehwybgy2o3TD5uzvu-RcTDU=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.314469+00 2025-12-17 06:30:01.314473+00 24520 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:70k-evsPvFxGRYTkGlQNiFsILu4=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.315777+00 2025-12-17 06:30:01.315782+00 24521 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OB0MzwPgOHLVroAx3NX2IzHOWZs=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.316999+00 2025-12-17 06:30:01.317003+00 24522 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oqXSD2Wv5A09ST8nkLUiZR1ib7I=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.318191+00 2025-12-17 06:30:01.318195+00 24523 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nRBRFYNLWYWGu3DITghpRjTHLz8=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.319375+00 2025-12-17 06:30:01.319379+00 24524 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mumg3-dVfB0FcasBj4P2jb6-fWo=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.32059+00 2025-12-17 06:30:01.320595+00 24525 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T-Hn81ZJy-18sZiBtg-UNIe0KKY=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.321791+00 2025-12-17 06:30:01.321795+00 24526 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qz3ymvNN-3jFAENWUvq0BgY3Bnk=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.322973+00 2025-12-17 06:30:01.322977+00 24527 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7wlaR0Z-JxnmjMC289tiXl8FDUo=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.324256+00 2025-12-17 06:30:01.32426+00 24528 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8s_LfHCsHfQulR4ZlwjUL4TqExU=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.325471+00 2025-12-17 06:30:01.325476+00 24529 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aNxISwh-5SvzhxA47BHvHvIkWCc=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.326708+00 2025-12-17 06:30:01.326714+00 24530 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hwNRpZ-kob4v_SZUJFzBegaGaMM=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.32799+00 2025-12-17 06:30:01.327995+00 24531 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4QbWyM4LgfLs9qdfHWyO84P2URo=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.329176+00 2025-12-17 06:30:01.32918+00 24532 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l-quUVhaBhNU2QAhNw0tnsfGuGU=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.330765+00 2025-12-17 06:30:01.330769+00 24533 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ze8AVpCBJ7qQOdl6Uj2tt2n8wg4=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.331957+00 2025-12-17 06:30:01.331961+00 24534 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MFxKIUSb7RM5vXTtb0mzYPUU3RA=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.333197+00 2025-12-17 06:30:01.333202+00 24535 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TkWWBHfCB7pnj69IqcIZhNWaqP8=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.334373+00 2025-12-17 06:30:01.334378+00 24536 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fZySUUnOoQlsHfl4uA7banS4jJQ=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.335575+00 2025-12-17 06:30:01.33558+00 24537 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i0wC00Eu-dP-nMWici0FC-WfUc4=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.33678+00 2025-12-17 06:30:01.336784+00 24538 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:essuUB25-n6Pr4rgZ78beMUi5tY=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.337957+00 2025-12-17 06:30:01.337961+00 24539 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eMi1HLi9u5hRY4DXZpfRVTx5un4=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.359627+00 2025-12-17 06:30:01.359632+00 24556 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C7WKLkEMZc5g6N9GC3l6MAfHiw8=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.339126+00 2025-12-17 06:30:01.33913+00 24540 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ILZAld-jTKmUoJt_vzv7qv80fks=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.340323+00 2025-12-17 06:30:01.340327+00 24541 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4NnNik7bvuIOeedUao2Oj_ufIoo=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.341499+00 2025-12-17 06:30:01.341503+00 24542 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hIt0EFE2OsPq_mlVqSZwixfN498=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.342685+00 2025-12-17 06:30:01.342689+00 24543 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tKC1suzjbbv4dpbXSMb7x0msaDU=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.344666+00 2025-12-17 06:30:01.344673+00 24544 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wia0oKbjYJ3DMPjwXTsBce67JDY=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.346257+00 2025-12-17 06:30:01.346261+00 24545 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sJb6iDpplacbPOuxdlUiKYOQLJk=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.347474+00 2025-12-17 06:30:01.347479+00 24546 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H2ouWkSRNS9s_wrjYaqsQ3IdIkM=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.348801+00 2025-12-17 06:30:01.348805+00 24547 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xy_ljOzdyYA6viZyNGSFapFfG-A=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.350035+00 2025-12-17 06:30:01.350039+00 24548 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4NqO2yHiaOY20PtUX20Wb_Eu5po=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.351218+00 2025-12-17 06:30:01.351222+00 24549 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vrU_5tIrNoJ29HKI_7Dsa0aQP5c=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.35238+00 2025-12-17 06:30:01.352384+00 24550 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2kAZJm_raYFeDAFJMVtAsgod404=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.353576+00 2025-12-17 06:30:01.353581+00 24551 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QRE9k6FxD7ZG521ef2BX4JBHQmw=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.354757+00 2025-12-17 06:30:01.354761+00 24552 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g_lVIInN8NNq2irOWchvcAG8nDs=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.355958+00 2025-12-17 06:30:01.355962+00 24553 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MYYBQwug7SbVb8QY1jt3vCiURK8=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.357135+00 2025-12-17 06:30:01.35714+00 24554 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1HLPnVj8I3NCi0F0vanqys-OXnk=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.358319+00 2025-12-17 06:30:01.358323+00 24555 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zxc_IhmpyI3Go8Tl4kFrwHhLGu8=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.361112+00 2025-12-17 06:30:01.361117+00 24557 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LFkHZV2WsGBeCaEJsLdmmS1wz8k=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.362355+00 2025-12-17 06:30:01.362359+00 24558 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3PC_oKdwXZ18zo67lObo2PQvSq8=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.363561+00 2025-12-17 06:30:01.363568+00 24559 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:asswu8I-ffOSA2QcCJpQMr-v7bo=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.364759+00 2025-12-17 06:30:01.364763+00 24560 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4uYmckvBHdr9eVd3SMQuqo8-sBg=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.36595+00 2025-12-17 06:30:01.365955+00 24561 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jbv16SGRWy3LdcpBQ0GpR85EpOA=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.367151+00 2025-12-17 06:30:01.367155+00 24562 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yN9znr0b39px89BQfwQka3SafTU=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.368394+00 2025-12-17 06:30:01.368398+00 24563 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z3ZSUk9gXNmNXurwdWyk2xUB488=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.369607+00 2025-12-17 06:30:01.369611+00 24564 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dY1zCZ5Iiomif90fteVn-q00mMg=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.370798+00 2025-12-17 06:30:01.370803+00 24565 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MxcA_XAWZZ4Rd1Hsxotld4V4nvc=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.372017+00 2025-12-17 06:30:01.372021+00 24566 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wrpk2FvExhSI4yGl_7UkY-8CAuo=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.373211+00 2025-12-17 06:30:01.373216+00 24567 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z4jXhARoL4XHcpEIgGZ1BxhnSkM=", "createTime": "2024-08-15 14:40:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.374382+00 2025-12-17 06:30:01.374386+00 24568 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_3z5n9sSFYx8XPPoUZz-qRu351I=", "createTime": "2024-08-15 14:40:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.375579+00 2025-12-17 06:30:01.375583+00 24569 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C4U7oIIrJ_r1NjAQwwCh8S7-nTc=", "createTime": "2024-08-15 14:40:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.376918+00 2025-12-17 06:30:01.376924+00 24570 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p4du1O4dypjRcIfYUt-PBf_JHGw=", "createTime": "2024-08-15 14:40:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.378276+00 2025-12-17 06:30:01.378281+00 24571 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gxq1x06cLAiZouF4PW6mX-6T3RE=", "createTime": "2024-08-15 14:40:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.379585+00 2025-12-17 06:30:01.379589+00 24572 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h_mMbDGJzs2SCBWoV1NkCYoIsg4=", "createTime": "2024-08-15 14:40:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.380823+00 2025-12-17 06:30:01.380827+00 24573 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:23nacYMKm7aiS2gTJseObsBmFfg=", "createTime": "2024-08-15 14:40:56"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.382022+00 2025-12-17 06:30:01.382027+00 24574 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b8-YBOWO9UuTuKlJxnkVL-LQGBY=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.383273+00 2025-12-17 06:30:01.383277+00 24575 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FCVX5tM5fzdy9wOGSGAzHLv3Gwo=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.384469+00 2025-12-17 06:30:01.384474+00 24576 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0uMaHrV3dvdCOXTKZTSinrqkZZk=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.385667+00 2025-12-17 06:30:01.385672+00 24577 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PKvKu0-l5UwyV49meUbSE2ehmko=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.386863+00 2025-12-17 06:30:01.386867+00 24578 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ALJNTQ3MalrAET25_RU0QP6r6vM=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.388087+00 2025-12-17 06:30:01.388092+00 24579 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gxyQaumfhyp2Aa-kSEjI_3ACK7o=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.389307+00 2025-12-17 06:30:01.389311+00 24580 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bePnlfsJR1RBZaXpYaZOLtlqR1U=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.390999+00 2025-12-17 06:30:01.391003+00 24581 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eaCFTQat8NhHy_kFTwmcuqdUZHg=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.392199+00 2025-12-17 06:30:01.392204+00 24582 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fvAbOzChcd6pNn0ECqhmB64wyp8=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.393398+00 2025-12-17 06:30:01.393403+00 24583 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LQ-x_6KrBaJKpgS9oFj4vMBlx6A=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.394962+00 2025-12-17 06:30:01.394968+00 24584 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DcETcnIZwMfL9YAlxKjd46lkxTI=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.396498+00 2025-12-17 06:30:01.396503+00 24585 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0nLIcZUFoMzJi-ha468O-1pU7Ow=", "createTime": "2024-08-15 14:40:58"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.397921+00 2025-12-17 06:30:01.397926+00 24586 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9qqC_lEAzn67KcVNCQXpRAzhpw8=", "createTime": "2024-08-15 14:40:58"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.399154+00 2025-12-17 06:30:01.399158+00 24587 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8B_tgEgSrm-Cbmj96cxUtMDsHuI=", "createTime": "2024-08-15 14:40:58"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.400373+00 2025-12-17 06:30:01.400377+00 24588 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7MjSmRjGDaIALTTBIi6wO7D8pKs=", "createTime": "2024-08-15 14:40:58"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.401575+00 2025-12-17 06:30:01.401579+00 24589 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xNbwsKh45duGXfTdlIddSLu3aI0=", "createTime": "2024-08-15 14:40:58"}] \N 1 1 \N t \N \N \N +2025-12-17 06:30:01.402783+00 2025-12-17 06:30:01.402787+00 24590 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=1766039400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ljBXJJyPB0b_THOFh8YAEBje8VM=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.953434+00 2025-12-17 06:40:00.953442+00 24591 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pfP-gJv7T3jDJsaOmTAlh10uY2M=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.955374+00 2025-12-17 06:40:00.95538+00 24592 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fis9pUSXA02wY9maoJkvR9iZ3T0=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.956786+00 2025-12-17 06:40:00.95679+00 24593 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VYCCKuEHC-iVxiR794_99U6NFYo=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.95817+00 2025-12-17 06:40:00.958178+00 24594 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lBNlqR1yopKQjaz2G9FKLSwdhrU=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.959761+00 2025-12-17 06:40:00.959766+00 24595 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2G8j-PGK6rhBW4oBRk9LIkyDbhM=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.961022+00 2025-12-17 06:40:00.961027+00 24596 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QRoJfrw1zlg8vRu2q6WMtAsXtUo=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.962263+00 2025-12-17 06:40:00.962267+00 24597 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KiGnW_0Bc4eDVdt6ue0LJk3TXrg=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.963495+00 2025-12-17 06:40:00.9635+00 24598 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pK2pf3ZEWkaMLc25nHITQlVq8pg=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.964718+00 2025-12-17 06:40:00.964722+00 24599 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aEsQwnMQfyldkb3b1zfDSbucacM=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.966016+00 2025-12-17 06:40:00.966022+00 24600 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mTg1jNwQXuzS259WEvVlvtKhi0Q=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.967397+00 2025-12-17 06:40:00.967402+00 24601 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c8PhRXB_pTUjhgJdPj_zJui7h9k=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.968626+00 2025-12-17 06:40:00.968631+00 24602 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l7IgYaH-T5RsZ1dJOgnabv7PZg8=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.969862+00 2025-12-17 06:40:00.969867+00 24603 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KDOqvBndt65zTzj6eFV-9GupN6g=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.97108+00 2025-12-17 06:40:00.971085+00 24604 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z61VV53wgCLnyzl9yZE-tJuTP1s=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.972515+00 2025-12-17 06:40:00.97252+00 24605 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6n47GhLOyssxdurpDXqyht3CpBM=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.973773+00 2025-12-17 06:40:00.973777+00 24606 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U9I5Ewo9EGS_FStyZc5v-9fVqho=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.974991+00 2025-12-17 06:40:00.974995+00 24607 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rRWaGyuG9uEK60AD-wVEIlH2UrE=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.976374+00 2025-12-17 06:40:00.976379+00 24608 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TUGlSngQxmjeNn6Q5jJdk7o3b3A=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.977579+00 2025-12-17 06:40:00.977584+00 24609 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2r5Z2KOkSdB1tPQgYWM6ubcarhs=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.978935+00 2025-12-17 06:40:00.97894+00 24610 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EKCLx1yv68A4o-vWYbZJ0ol9L38=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.980245+00 2025-12-17 06:40:00.98025+00 24611 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SpLLpgmuJ6LDwwBSYfWFcP6SY6E=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.981521+00 2025-12-17 06:40:00.981525+00 24612 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OrKpamRl3TI1PhkiF_1b3GMt_RU=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.982728+00 2025-12-17 06:40:00.982732+00 24613 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:whE-OvILVE2h-7rj1jbgriq8cGE=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.983949+00 2025-12-17 06:40:00.983953+00 24614 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qS8iCM8EZhOkIPVwNZAzUIQ4St0=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.985152+00 2025-12-17 06:40:00.985156+00 24615 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5euXEh4gZfmi3ud7A2MX02pKLIU=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.986467+00 2025-12-17 06:40:00.986472+00 24616 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LpMP-YIMAlXinkbJrUvK_YxQNbo=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.988038+00 2025-12-17 06:40:00.988042+00 24617 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hqfjYrDOfBQj2aHiHs-uaPlIs2s=", "createTime": "2024-08-15 14:41:02"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.989619+00 2025-12-17 06:40:00.989625+00 24618 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9D1VRNgbOZpz5nWCiCCeE9avMHg=", "createTime": "2024-08-15 14:41:02"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.991147+00 2025-12-17 06:40:00.991152+00 24619 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:edn0U6m_o_F1tiysrzeF-rni2gw=", "createTime": "2024-08-15 14:41:02"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.992634+00 2025-12-17 06:40:00.992638+00 24620 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MzqaQLnpw0c5TVr61xBBuK4i_0A=", "createTime": "2024-08-15 14:41:02"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.994255+00 2025-12-17 06:40:00.994261+00 24621 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hwHU_afYjNsSF3yBx7SBpy2Ak-8=", "createTime": "2024-08-15 14:41:02"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.996324+00 2025-12-17 06:40:00.996331+00 24622 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oOCrQ25Ec0GI2eHkrNAvuYBz62I=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.998211+00 2025-12-17 06:40:00.998216+00 24623 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5qzj42a-tDw5FCn_eT088JtL5fk=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:00.999772+00 2025-12-17 06:40:00.999776+00 24624 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4iLFLWM207cBNPNVmzTgnfBK0dA=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.001001+00 2025-12-17 06:40:01.001006+00 24625 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ucklfspXzN-ew4ViTDXJBlJl3RQ=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.002244+00 2025-12-17 06:40:01.002249+00 24626 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IVIZs8WdKd0WWAm9DtdmsV0HmaA=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.003474+00 2025-12-17 06:40:01.003478+00 24627 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B72pEpzERKeYU9T2vksmjEGL_Rs=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.004795+00 2025-12-17 06:40:01.0048+00 24628 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JiRxvDTjMs8LN-Cxl6ZlFibhUng=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.006026+00 2025-12-17 06:40:01.00603+00 24629 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e-hik9lPy-c8oZgMn5td7Ryrtxo=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.007305+00 2025-12-17 06:40:01.007309+00 24630 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qeItC_-M0Vc2q1b4xSkq3fUSMqc=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.008848+00 2025-12-17 06:40:01.008852+00 24631 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2dee_mU49V73Q4p3vobWKy_NBFM=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.010943+00 2025-12-17 06:40:01.010948+00 24632 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YOMNjc1Re3eJoH2q0jt9Ab08Kjs=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.012193+00 2025-12-17 06:40:01.012198+00 24633 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SxaKsN8e1GiMEKfHqFwo1LdXiuM=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.013388+00 2025-12-17 06:40:01.013392+00 24634 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ec_E6jjioUvETkBy-aIrUMMqzO0=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.014672+00 2025-12-17 06:40:01.014676+00 24635 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fneiTly4dHtSFPCKrG9z6ds6aBI=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.015931+00 2025-12-17 06:40:01.015936+00 24636 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YvNywP0hG4hebO4k0B_ma2NGvDo=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.017186+00 2025-12-17 06:40:01.01719+00 24637 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vAAT2kuZtr1iAN39owXkxTPxbLQ=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.01842+00 2025-12-17 06:40:01.018424+00 24638 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cDFDMd6nbb5-MlB56g9Z-ejtvAc=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.019618+00 2025-12-17 06:40:01.019622+00 24639 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F_yrz-0DxU27xhbU4Ce_9e7hNuA=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.020832+00 2025-12-17 06:40:01.020836+00 24640 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EtWSMQcW6xxISJbWo4VK3dY7-Mo=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.022021+00 2025-12-17 06:40:01.022025+00 24641 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KnFA-lg27VedT_GsSFLZVlXN_EY=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.023212+00 2025-12-17 06:40:01.023216+00 24642 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V0VUrJme6c3RdFMdFL88bHo7Mbk=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.024433+00 2025-12-17 06:40:01.024438+00 24643 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oUEX9j40aNJuPE-fx4ivl_zeUXQ=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.025627+00 2025-12-17 06:40:01.025631+00 24644 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jzX6v7f2RW_SFvwVvbsjxr5sRcM=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.026846+00 2025-12-17 06:40:01.026851+00 24645 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FelRTxtk7YaeJKpUzVTeWPlPmBw=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.028125+00 2025-12-17 06:40:01.02813+00 24646 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AxkxAmdjyWqj8QhgKR7lEkyNM2Y=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.029345+00 2025-12-17 06:40:01.029349+00 24647 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:89PlKbJlxwI_ldXTf5-Cs_E-iFU=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.030547+00 2025-12-17 06:40:01.030551+00 24648 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e6XkXuhLRWdvoI_B2uUXum62Ozs=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.031754+00 2025-12-17 06:40:01.031758+00 24649 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XWrJhU9AHbblV_tDUu4NerUQCO0=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.032931+00 2025-12-17 06:40:01.032936+00 24650 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hwiwje_Y4RnO2CThaVmlGYOHRfk=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.034123+00 2025-12-17 06:40:01.034127+00 24651 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pWSflwaoPYcXIs1EdZ_6amod2hU=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.03529+00 2025-12-17 06:40:01.035295+00 24652 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YbmJ2vBKGqd5su3simkORXOeUg8=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.036772+00 2025-12-17 06:40:01.036781+00 24653 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3RWu108yFsmBcPAD2NzXrat6ERs=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.038332+00 2025-12-17 06:40:01.038337+00 24654 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wFyjrglV7GFgrslbQ21D_-kLm4g=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.039602+00 2025-12-17 06:40:01.039607+00 24655 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rD-qMSRp_zcsj5oDkFIfywyPox4=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.041165+00 2025-12-17 06:40:01.041169+00 24656 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ShI24QL3vInJWq9wOJw2_RVmZqQ=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.042459+00 2025-12-17 06:40:01.042463+00 24657 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SH12Jecw0RoT8C4F7sU5TVTNVaY=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.043754+00 2025-12-17 06:40:01.043759+00 24658 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XauOg8zaUuFk1bWgeube-SDJS40=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.044971+00 2025-12-17 06:40:01.044976+00 24659 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PXsGe3xMi4pU5rEMFzRPmYZdBHg=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.046165+00 2025-12-17 06:40:01.046169+00 24660 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X8gR9Iv6_tIM0lS5Hcls4Txplmc=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.047388+00 2025-12-17 06:40:01.047392+00 24661 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cdh6tA6S_MQmf0AWTmhCJGjYzMY=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.048627+00 2025-12-17 06:40:01.048632+00 24662 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y0lI6Rl-aOs0_a7n847bxsih8Xk=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.049825+00 2025-12-17 06:40:01.04983+00 24663 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:haRomYkshCJlNXFlgQyC3moIWzc=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.051007+00 2025-12-17 06:40:01.051011+00 24664 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6cwTjzl9dMaJqOVw2kvwOu17mqE=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.052303+00 2025-12-17 06:40:01.052308+00 24665 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NKJjXVLG8Q0Wl3arFwPdLhxAUPc=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.053581+00 2025-12-17 06:40:01.053586+00 24666 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EYXV-yHeQCumKeoIwzG-Mx88M-Q=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.054792+00 2025-12-17 06:40:01.054796+00 24667 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LkoPQ4nhrWdXEB8beDFeGzVt9MM=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.056059+00 2025-12-17 06:40:01.056064+00 24668 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dg7249DRcWQNaMxABy35YOA-RRs=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.057424+00 2025-12-17 06:40:01.057429+00 24669 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ehio514y3Xv75axsDzCdn5NOyw8=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.058686+00 2025-12-17 06:40:01.058691+00 24670 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_bjqPrMmyhD0sb1xDEQVyYl2Yg4=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.05991+00 2025-12-17 06:40:01.059914+00 24671 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8eHz7yYK2oaq9OTwhqL94rUD87w=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.061146+00 2025-12-17 06:40:01.06115+00 24672 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wfi0hxNZ-xYSk11e0mM2ahGLAO0=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.062372+00 2025-12-17 06:40:01.062376+00 24673 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e4ifZrFR7EyUSPsFsDLEkPcj0lo=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.063583+00 2025-12-17 06:40:01.063587+00 24674 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HaKBez6hP2Oh_KHVkRwGB5bPot0=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.0648+00 2025-12-17 06:40:01.064805+00 24675 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kdUuqDsiFs3VU1NMyMG4Our6ClQ=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.066592+00 2025-12-17 06:40:01.066599+00 24676 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:APRpZQfQg6_Zmru6N0eZQRRWdt0=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.068265+00 2025-12-17 06:40:01.068269+00 24677 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:STF5OkY19q-OAGNjMPt219gD3xs=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.069549+00 2025-12-17 06:40:01.069553+00 24678 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1MzjO0rKyp-fX6pRajkU8TDDj90=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.07082+00 2025-12-17 06:40:01.070824+00 24679 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hKCA-q6gW--HNdjJcvHgaMt8wjg=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.072397+00 2025-12-17 06:40:01.072401+00 24680 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iavfZ7UhH62JwcOxsPBNbXC85UU=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.073605+00 2025-12-17 06:40:01.073609+00 24681 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S_YmZ6XNCpk8llzuFHASqg7vGxU=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.075019+00 2025-12-17 06:40:01.075025+00 24682 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vTgGgAfY3Qw7LoQSZNjkI4yAUu8=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.076344+00 2025-12-17 06:40:01.076349+00 24683 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PrvP3ymBV56kiJ2-7h_vVZi8auQ=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.077571+00 2025-12-17 06:40:01.077576+00 24684 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t9ZoeTW8HHMNoT6H6_j3MZwVS7I=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.078789+00 2025-12-17 06:40:01.078793+00 24685 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:27YwLAD-cKJT8i05THl7msR4RDE=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.080012+00 2025-12-17 06:40:01.080017+00 24686 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ui22KHKRcYfOsSNAFL3otYp0YI=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.081346+00 2025-12-17 06:40:01.081351+00 24687 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cfJadsG8H4l5SQKySwHstfV-rsI=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.082766+00 2025-12-17 06:40:01.082771+00 24688 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jTMpaxUtGKH8alp6air9VvrgIBA=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.084368+00 2025-12-17 06:40:01.084373+00 24689 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gyIh36XSq0ZtP3hghjw622rMFaU=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.085732+00 2025-12-17 06:40:01.085736+00 24690 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=1766040000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iF1G7Y0OkvtiXYI2TdjmUCsoo6g=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.590002+00 2025-12-17 06:40:01.590013+00 24691 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sd3q5MNh1iHAWcv7ItWrFkdEHQ8=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.591927+00 2025-12-17 06:40:01.591933+00 24692 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RuwkEYjqGrEJ_aA2ge4FMj_-m0A=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.593252+00 2025-12-17 06:40:01.593257+00 24693 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3xe6ylA0IADx8-HlusBDYWBsR-E=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.594757+00 2025-12-17 06:40:01.594762+00 24694 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4yksshEtOzOhPdk5DOD983crVys=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.59604+00 2025-12-17 06:40:01.596044+00 24695 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V6MufSXAuElkjeYzbrM8kGFIqg4=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.597279+00 2025-12-17 06:40:01.597283+00 24696 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KtyI7Z1TZd3RbxboCg7jXUVJmt4=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.598584+00 2025-12-17 06:40:01.598588+00 24697 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B1TeDQ0deaDatOHWOv7BJI1irUE=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.60503+00 2025-12-17 06:40:01.605036+00 24702 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XVgwchUCGatt503J445BXb-P8fk=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.599841+00 2025-12-17 06:40:01.599845+00 24698 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vh9OZly1qlhw0kDRrqaTXe5QUek=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.601096+00 2025-12-17 06:40:01.6011+00 24699 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wG9nKgzZ_xvhrUpo5I2JI9nplio=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.602305+00 2025-12-17 06:40:01.60231+00 24700 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BSU-avHiBLh-rGbRVlU41qDUK7A=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.60363+00 2025-12-17 06:40:01.603635+00 24701 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RW_U8JK9zN5M4B2u0m0UiYOH6as=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.60643+00 2025-12-17 06:40:01.606435+00 24703 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aNzrkSqm5LzndLHS5vO6ESlrlms=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.607704+00 2025-12-17 06:40:01.607708+00 24704 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4-lRUqlhAS7xbvPKd7WSygLzUBY=", "createTime": "2024-08-15 14:41:09"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.608943+00 2025-12-17 06:40:01.608948+00 24705 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l5yBhPj0lTxa7H5qlItKFBi2-4Y=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.610267+00 2025-12-17 06:40:01.610271+00 24706 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SWVIT98xvRlljbXy5ap9lT1zZbI=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.611507+00 2025-12-17 06:40:01.611511+00 24707 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uh__qSlLg9dZgBFnu7rHeTkXMJs=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.612966+00 2025-12-17 06:40:01.612971+00 24708 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LWsPGShywFreSnUfySrXXbsT0fg=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.61429+00 2025-12-17 06:40:01.614294+00 24709 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yw4AqF5JxuU-uqhshIgKeftyTo4=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.615597+00 2025-12-17 06:40:01.615601+00 24710 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yOkpWwKu1x84ToDI8Gnu-T7nZqk=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.616885+00 2025-12-17 06:40:01.61689+00 24711 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I3qAY8GdO3lDkDi1Mx0eCpJw8JQ=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.618372+00 2025-12-17 06:40:01.618377+00 24712 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XfVkLvgCqlGsSbN-M85TqRdBe1Y=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.619674+00 2025-12-17 06:40:01.619679+00 24713 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EH462MsGTCx-2L-t-JarsLkMD9s=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.620982+00 2025-12-17 06:40:01.620987+00 24714 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t2H8IdiwJyUxPT4yzjfwyhmoNes=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.622253+00 2025-12-17 06:40:01.622258+00 24715 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AGzSvk_IIQ0-Heah5ZmdscBh_-o=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.623533+00 2025-12-17 06:40:01.623537+00 24716 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hwyvisofz9Q4LHDwu0j6uzKIm7I=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.62484+00 2025-12-17 06:40:01.624845+00 24717 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ckhva2mrLVsTJI1Z-j5OSb2GJgQ=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.626434+00 2025-12-17 06:40:01.626438+00 24718 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PDPStXoqIZeYfO7xjZ73aH6xWUM=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.62771+00 2025-12-17 06:40:01.627715+00 24719 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lVfrFiTJaHuyD_d9w4fM9iRoMdA=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.6291+00 2025-12-17 06:40:01.629105+00 24720 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pCS7MtzECYacR6SDJX3X-tz6jEo=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.630404+00 2025-12-17 06:40:01.630409+00 24721 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SLWa62uqwRpeHQD372Hgvf2ZPA8=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.631671+00 2025-12-17 06:40:01.631675+00 24722 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qAX-iRY2AI2J-r3BBKk0zXmsVQw=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.63289+00 2025-12-17 06:40:01.632894+00 24723 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tJ2n90hjIMJ0FyUMfa7FR2A7hb8=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.63425+00 2025-12-17 06:40:01.634254+00 24724 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JOYvrS4UU-3kOG2yeqB7ZzHVhbI=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.635592+00 2025-12-17 06:40:01.635597+00 24725 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PE3F9YqOmL9LGsEjR8XOCZ5WMvw=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.636855+00 2025-12-17 06:40:01.63686+00 24726 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DTG6rniv2jEC6l9d-5BaCdUsSeI=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.638136+00 2025-12-17 06:40:01.63814+00 24727 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CNBZI91-qEkrwt0A_KIyuOSBMqU=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.639396+00 2025-12-17 06:40:01.6394+00 24728 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gqq9zjDyW2V6SUHNyr8XdKLkWoA=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.640832+00 2025-12-17 06:40:01.640837+00 24729 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YjGhtFEqv3Iz5yoJdkYth9Pigog=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.642254+00 2025-12-17 06:40:01.642259+00 24730 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QQR9pJG6dDhKhuc7g79RbN8VkHw=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.643663+00 2025-12-17 06:40:01.643668+00 24731 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cPC885CpiSKtmmJF2dc8JUynzBQ=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.645058+00 2025-12-17 06:40:01.645064+00 24732 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jcVPL2oDkPrQvRHfIsa7vcFlMsk=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.646874+00 2025-12-17 06:40:01.646888+00 24733 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-uY3ijNqmce9AXgH_fFVDuN6X94=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.649087+00 2025-12-17 06:40:01.649097+00 24734 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u0QfgAputl9F2oNgB1zwr9qvhN8=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.651412+00 2025-12-17 06:40:01.651421+00 24735 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TUlOBtWrAeTE1bxFQHPU7y77IHg=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.653132+00 2025-12-17 06:40:01.653137+00 24736 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_zpRhMkEOevUnX-0VEy732DawP4=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.654761+00 2025-12-17 06:40:01.654766+00 24737 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-q9J4-0nRnGvCHapqM09jKTHads=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.657424+00 2025-12-17 06:40:01.657433+00 24738 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rWTFJk2llLlVRjMsXVJMgrAo83Q=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.659644+00 2025-12-17 06:40:01.659649+00 24739 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BJEsWAzhLAfszSS5aEPl3QvalRU=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.661295+00 2025-12-17 06:40:01.6613+00 24740 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fiO90uB2MiGKQLQ0mgUUi9qxHlk=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.662941+00 2025-12-17 06:40:01.662945+00 24741 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LS2oHtu4yZGKmpMTaXSZTQ1_N4Q=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.664456+00 2025-12-17 06:40:01.66446+00 24742 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vzxGn8lzVbDYh-G53quM7AjRpBM=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.665684+00 2025-12-17 06:40:01.665689+00 24743 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pGR0wt4zsnIEKv63Bm8KSSJFKKQ=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.666901+00 2025-12-17 06:40:01.666905+00 24744 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SG9MZqA8LILxmGPehkHeU4O601M=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.668116+00 2025-12-17 06:40:01.66812+00 24745 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jEPcB5fKz7TIfDO4_iD6oohnBQM=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.669404+00 2025-12-17 06:40:01.669409+00 24746 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7GuvYSgJWc8AS6rJCfqDzKLDY4=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.670715+00 2025-12-17 06:40:01.670719+00 24747 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VmNnHIDyq99GnYHu61V-8WJxY6k=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.671956+00 2025-12-17 06:40:01.671961+00 24748 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dWlkEpyxzEB52G3bjmfs7SRzMJY=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.673184+00 2025-12-17 06:40:01.673188+00 24749 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FcRIZKqrYEU9MwAHnBi9RbJpiMQ=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.674419+00 2025-12-17 06:40:01.674423+00 24750 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yqPKms3y3oOJxc6w9dwfuQVJkN8=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.675961+00 2025-12-17 06:40:01.675967+00 24751 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1yD8iriIfYquvequgyyCYc_X0aY=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.677629+00 2025-12-17 06:40:01.677634+00 24752 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P5sJ5rt8K4tMacNFsGUKgGXM-UA=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.678895+00 2025-12-17 06:40:01.678899+00 24753 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zuG89-J-pnA2LXBBwqb5GVSHAVg=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.680118+00 2025-12-17 06:40:01.680122+00 24754 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VvMRXqED1M2OnbXgnX-QKdH7J5M=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.681392+00 2025-12-17 06:40:01.681397+00 24755 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EUXf_-Twov10WaCTCLvKp0MBeS0=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.682649+00 2025-12-17 06:40:01.682654+00 24756 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3WwgTWOapqUjdMreDC3dhbB_MAg=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.683863+00 2025-12-17 06:40:01.683868+00 24757 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FCKigEqb1hByuUgJjODSucnD4ZE=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.685098+00 2025-12-17 06:40:01.685102+00 24758 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X4gTWj5ZiAqKK7JZtHM8uCbvOs4=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.686301+00 2025-12-17 06:40:01.686306+00 24759 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eHzN1-UxNkepSzbff8JtEU15Ma8=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.687494+00 2025-12-17 06:40:01.687498+00 24760 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xaWllEgkuP8QJk2X6o5vRi5Nbco=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.688708+00 2025-12-17 06:40:01.688713+00 24761 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-GtIpmO20ipKnofAsxXuFpiXKMo=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.68993+00 2025-12-17 06:40:01.689935+00 24762 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KuEx0ubUPN1T23NWzrnyp0XuKMA=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.691311+00 2025-12-17 06:40:01.691316+00 24763 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jYhrQVkv2yGSGpEYYlpiJiz3vsE=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.69257+00 2025-12-17 06:40:01.692575+00 24764 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AQ-eBN6lT113_0xX9RY42Y-UUgU=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.693898+00 2025-12-17 06:40:01.693903+00 24765 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nyu7-Y1JPohYKolwNAF5r9jLgvU=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.695167+00 2025-12-17 06:40:01.695171+00 24766 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AvJnh4f639D86f4J_FI0L_LScrw=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.696373+00 2025-12-17 06:40:01.696378+00 24767 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hd1Ft6wuHLYwMRxUfVpVJcGvB_Y=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.697563+00 2025-12-17 06:40:01.69757+00 24768 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-WuM2qTGLmee3L5Z5djY8UlSaZA=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.698889+00 2025-12-17 06:40:01.698893+00 24769 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y-aQLgtSX679EvMyZzaYgC_sPyk=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.700145+00 2025-12-17 06:40:01.70015+00 24770 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pk97C4wToytBaHoIjgvVE1OJjCk=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.701381+00 2025-12-17 06:40:01.701385+00 24771 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fMUcKoOTM9DI1BbqJM_YhT-sC5k=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.702601+00 2025-12-17 06:40:01.702605+00 24772 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pLEcxMipkmHII6S-hYzbv-gzuhw=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.703854+00 2025-12-17 06:40:01.703858+00 24773 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:msnRMK6WqNwf1QP3-Uy_8Y99_a4=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.705299+00 2025-12-17 06:40:01.705305+00 24774 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RCOwYiqVfPyxFWnteEmT7C-lYEw=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.706701+00 2025-12-17 06:40:01.706705+00 24775 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Hr4uJg3hJ5jaYSmkLvE8A9n2yo=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.707953+00 2025-12-17 06:40:01.707957+00 24776 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_je-uvl-wGP39lMV_QQFrqeb_JI=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.70921+00 2025-12-17 06:40:01.709214+00 24777 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I8szf73xEBRvtWKzo-sU-mzJhS0=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.710435+00 2025-12-17 06:40:01.71044+00 24778 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vgZ1yZLRjB1zZXCyPH9wkvUPDic=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.711678+00 2025-12-17 06:40:01.711683+00 24779 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZfTIbYKc7DmIkRtzIPmK3Du5b9E=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.712925+00 2025-12-17 06:40:01.712929+00 24780 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XKL64WyNOoET3ldsOJkubGyMnOI=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.714183+00 2025-12-17 06:40:01.714189+00 24781 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ULZ2FOlgAPsb-e6S18nJ2rmtuI=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.715398+00 2025-12-17 06:40:01.715403+00 24782 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zivQaVtEoZsJjq-RhzpG_Hr4BJA=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.716646+00 2025-12-17 06:40:01.71665+00 24783 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i-66y6cy6N9skiUW0l1XUyt-6KY=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.71785+00 2025-12-17 06:40:01.717854+00 24784 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YgwsZ5FzThukAI28RQZu3dPSqF0=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.719042+00 2025-12-17 06:40:01.719047+00 24785 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mswcs9p6-QFHrHdTzLepNv31hNI=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.720244+00 2025-12-17 06:40:01.720248+00 24786 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NyZn3xItMWn-nDvAnFVtGJOGMkk=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.721674+00 2025-12-17 06:40:01.721679+00 24787 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wh2Z3HPSnrdTAy2XCMOTbvYEVL0=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.72289+00 2025-12-17 06:40:01.722894+00 24788 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k8j6HtXKD5L1FdmQuDR1z4mt5Q4=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.724113+00 2025-12-17 06:40:01.724118+00 24789 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JssLZaf78hP1jB_Rtfvu56QlABg=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:40:01.725321+00 2025-12-17 06:40:01.725326+00 24790 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=1766040001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f7aJFyt8-6QvrNERym5F8_R2lJ8=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.372467+00 2025-12-17 06:50:00.372475+00 24791 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UnDjiWk-glTt1SjW22HXlJcjdPQ=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.37479+00 2025-12-17 06:50:00.374797+00 24792 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QPTmGVJZvIC4OgbkoTQuS0aMc78=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.376413+00 2025-12-17 06:50:00.376418+00 24793 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xg3Nb3rFenjJ_dvLZZTCUs_MmZI=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.377851+00 2025-12-17 06:50:00.377856+00 24794 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4H57rcFgSORt3oi-TOKeuZ6sjMI=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.379394+00 2025-12-17 06:50:00.379399+00 24795 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ZvxnODYcpUBL-gtuqFzRs4LD-k=", "createTime": "2024-08-15 14:41:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.380663+00 2025-12-17 06:50:00.380667+00 24796 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nEU6GRFzBfaq1YRdVpXtGa_ojXo=", "createTime": "2024-08-15 14:41:19"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.381903+00 2025-12-17 06:50:00.381908+00 24797 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pJUJJO-GMJJOiwXYFgBxcvkDoRM=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.383109+00 2025-12-17 06:50:00.383113+00 24798 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sgxFOeCjsX5XTCZSVuoYB0ZieQ8=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.384429+00 2025-12-17 06:50:00.384434+00 24799 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:weN2gkWTPtfAih3eVzpYNOIhBPc=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.38579+00 2025-12-17 06:50:00.385794+00 24800 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8hKGGeAQbvP0b7_EcW3na3sXUOs=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.387034+00 2025-12-17 06:50:00.387038+00 24801 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PcDOQO5t3GnaN6yziS7bmv-_xcg=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.388277+00 2025-12-17 06:50:00.388281+00 24802 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ffv29VqFmnUMyrGIgWLM_WpdF_4=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.389505+00 2025-12-17 06:50:00.389509+00 24803 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vzjomJRG1dEzptm8K9Ez2W0SZOQ=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.390729+00 2025-12-17 06:50:00.390733+00 24804 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZqLqVtP1abkhYYAeCmaZEy7Rq38=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.391954+00 2025-12-17 06:50:00.391959+00 24805 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wzh-5VY98y2n0Tfu_BKUvLnSu_w=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.393151+00 2025-12-17 06:50:00.393155+00 24806 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aQl03U2IOTWPk6jMYzSCKLhJpEI=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.394369+00 2025-12-17 06:50:00.394374+00 24807 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ark6TijuC7lJGDBqluTRIgC9XIg=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.395584+00 2025-12-17 06:50:00.395588+00 24808 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nmnhszc5Z0eCEKzlePcZqoVU44w=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.396784+00 2025-12-17 06:50:00.396788+00 24809 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EgCH7YnqVLf5ef2UzGyEKC_yybk=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.397999+00 2025-12-17 06:50:00.398003+00 24810 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K4l3FK2yVMHuJdeCnaGogOUtTQQ=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.39967+00 2025-12-17 06:50:00.399674+00 24811 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D143oJzSpvG3SEL6H8ZLsCrGwH4=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.400887+00 2025-12-17 06:50:00.400891+00 24812 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EkALQXmDpXOL0Qn60xLtZ1tWFmU=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.402094+00 2025-12-17 06:50:00.402099+00 24813 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PiahSaSV9gXTFBxKo4217yEbQZU=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.403281+00 2025-12-17 06:50:00.403286+00 24814 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S1ZJaoGIaoQ7bLNoFt-8kTHaRL0=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.404486+00 2025-12-17 06:50:00.40449+00 24815 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p_6JSzYB6k9GpxKWjDxi-Tkv0Ek=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.405702+00 2025-12-17 06:50:00.405706+00 24816 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ij4tdpuZrAs1zmMoY83dGUyY-uM=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.406909+00 2025-12-17 06:50:00.406913+00 24817 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vlkuzgROaldTA9J5O9Dk9aXZPMA=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.408155+00 2025-12-17 06:50:00.40816+00 24818 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MW9FdILRqo_xKoiRkrbg-Yaf1zk=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.409372+00 2025-12-17 06:50:00.409376+00 24819 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qN3_QlYse1K6kMcuj4qOx5AlRq4=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.410582+00 2025-12-17 06:50:00.410586+00 24820 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GRQSX2gsziYKBhr81NDKlMhzDOI=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.411803+00 2025-12-17 06:50:00.411807+00 24821 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fwxW96JzWi60odAWyfugmFcE7IA=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.412994+00 2025-12-17 06:50:00.412998+00 24822 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ig_LLe19gPeHLX7QVfZLS76BKJE=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.414191+00 2025-12-17 06:50:00.414195+00 24823 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vF6vDkvue2hsht5nZLRVx1WzCN8=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.415408+00 2025-12-17 06:50:00.415412+00 24824 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IOjxnq7Kp6wLmDDIn5flnU1TKYA=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.41661+00 2025-12-17 06:50:00.416614+00 24825 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:giecmnHP_aUXVfpk8WYdi1mpuNo=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.417812+00 2025-12-17 06:50:00.417816+00 24826 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D8kt8F6xRtWRdlmwB5Ls65oUYY4=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.419016+00 2025-12-17 06:50:00.419021+00 24827 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EGC8pKF2TUw1WRTrHin7ud4peAk=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.420227+00 2025-12-17 06:50:00.420231+00 24828 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qi2-YAuNQdDXgXEo_O7zg2iR7Y4=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.421425+00 2025-12-17 06:50:00.421429+00 24829 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o-USBARCg9o6_rmf0OG6SaUJy5M=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.422623+00 2025-12-17 06:50:00.422627+00 24830 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZzjv765TaRaStyHFzpMM0zdDWQ=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.423823+00 2025-12-17 06:50:00.423827+00 24831 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5flwa2ysL3t2SuFr9Z6lWkxyJVc=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.425054+00 2025-12-17 06:50:00.425059+00 24832 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lUPQgxv2hGxRd0MRbulIksTszo8=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.426267+00 2025-12-17 06:50:00.426271+00 24833 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R2m_FX95rjZ9wf-F4Kkiztof_hA=", "createTime": "2024-08-15 14:41:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.427464+00 2025-12-17 06:50:00.427468+00 24834 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yyej-oa8IztimSGOI0hpEAA5paM=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.428844+00 2025-12-17 06:50:00.428849+00 24835 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tGUTkkp5liMDziNqgHljycmG2Vw=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.430346+00 2025-12-17 06:50:00.43035+00 24836 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JTC6QGQYBQasH1n8fWxlFqY-mpg=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.431871+00 2025-12-17 06:50:00.431875+00 24837 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rS4_0bLaNcb2gka1zBBTaqahCd4=", "createTime": "2024-08-15 14:41:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.433345+00 2025-12-17 06:50:00.433349+00 24838 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z-c0deU74-AhwGyl_Il_jA5LJVY=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.434835+00 2025-12-17 06:50:00.43484+00 24839 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EVlqAhP60VFTY-Uo7WqZqiCzWss=", "createTime": "2024-08-15 14:41:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.436341+00 2025-12-17 06:50:00.436345+00 24840 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kQOyDL-ZiFZQS4DYCjrZbLhtLdk=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.437839+00 2025-12-17 06:50:00.437844+00 24841 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MP7vYL5jdkug7iH4BSDPz8eiF4Q=", "createTime": "2024-08-15 14:41:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.439327+00 2025-12-17 06:50:00.439331+00 24842 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M7eacqWvUMBqWItJ5WVTO5vFKcY=", "createTime": "2024-08-15 14:41:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.440814+00 2025-12-17 06:50:00.440818+00 24843 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4-VUaMscV8VoLUbQF8FGk8GQ90w=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.442077+00 2025-12-17 06:50:00.442081+00 24844 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c2SKiWmOmhjHcUy6z-6mlSsZdsI=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.443305+00 2025-12-17 06:50:00.443309+00 24845 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dL8aykYvwoJWdaUGMKKORwzSybg=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.444497+00 2025-12-17 06:50:00.444501+00 24846 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UqCKKiSX1KQ2BdG_DL4iuAT0Ra0=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.445716+00 2025-12-17 06:50:00.44572+00 24847 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8-PAylHwciKSibgASOkGUvUqiRo=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.446938+00 2025-12-17 06:50:00.446943+00 24848 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3vioVNLm5GmSESVGoLmzoikcxBg=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.448139+00 2025-12-17 06:50:00.448144+00 24849 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wEYPQTBaVE-31bhcFyp36nAoz_g=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.449422+00 2025-12-17 06:50:00.449426+00 24850 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6UqtXgeRnEBzHWQRD9bDVJ7qvco=", "createTime": "2024-08-15 14:41:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.450667+00 2025-12-17 06:50:00.450672+00 24851 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DRx5wRguSIRDbqZHyAL6fQYbF4k=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.451888+00 2025-12-17 06:50:00.451892+00 24852 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4SH39NnRUltNvNlH-x5HlMiO9DM=", "createTime": "2024-08-15 14:41:23"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.453111+00 2025-12-17 06:50:00.453115+00 24853 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NsciXsW7qRHbGcnAPqaONPF0GOY=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.454349+00 2025-12-17 06:50:00.454353+00 24854 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SBV9kN8Bvm1MPwuq5kmKq3-L5kM=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.455557+00 2025-12-17 06:50:00.455561+00 24855 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vLkrK4qznH0ksRUwsL4-3WTqrmc=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.45678+00 2025-12-17 06:50:00.456784+00 24856 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P-iOJhffjeSQZG84IdOtAQJVZRA=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.458029+00 2025-12-17 06:50:00.458034+00 24857 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ddoibCOMjbuKZKlrqRO2GnmmLeo=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.459254+00 2025-12-17 06:50:00.459259+00 24858 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JSYd3jK25NJP4lgS4fFsxhC6jXo=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.460629+00 2025-12-17 06:50:00.460633+00 24859 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QgsDxGok-4yPZx8xWa8DOuGpE74=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.461849+00 2025-12-17 06:50:00.461854+00 24860 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6XZUN7hqJ9B1fxIsvAoWHj9bJ1k=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.46305+00 2025-12-17 06:50:00.463054+00 24861 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y_bnkZFoKRY5PN8mfErmIXn0QFM=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.464305+00 2025-12-17 06:50:00.46431+00 24862 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vHKBb6QsGOIr4ak4G5HK6Jp47DQ=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.465639+00 2025-12-17 06:50:00.465644+00 24863 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XJ4drYuS6opJDJG-NVKATGSuNY8=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.466869+00 2025-12-17 06:50:00.466873+00 24864 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AUCoIE4ROP9H--z0bhpn8oe8w8Y=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.4681+00 2025-12-17 06:50:00.468105+00 24865 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tySoBJY96rwINFQFLEhF8aZ1AoE=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.469373+00 2025-12-17 06:50:00.469378+00 24866 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZgVYhsdKOh5B36586bvOSViBryg=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.470611+00 2025-12-17 06:50:00.470616+00 24867 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BdXqgfZnZ529VvlOnSegEIxdpVQ=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.471876+00 2025-12-17 06:50:00.471879+00 24868 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mDgChSsgn7E4Fplfm3tPMJzaeq4=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.473221+00 2025-12-17 06:50:00.473227+00 24869 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YO-9mvlwJSyvBzHLYzYkspeKu2E=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.474536+00 2025-12-17 06:50:00.474542+00 24870 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1CpP3-3jjQ1PFFrbftlrdutNvns=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.475874+00 2025-12-17 06:50:00.475879+00 24871 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZY0m3OtmoKAsyFWmKWTmeg1PYTc=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.477132+00 2025-12-17 06:50:00.477136+00 24872 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7o9HllX2kcHyC-7PT9FXlTE9D08=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.478352+00 2025-12-17 06:50:00.478357+00 24873 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yvittSDPkFnxipK9AB-B0taZMBc=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.479558+00 2025-12-17 06:50:00.479562+00 24874 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E8BqY5qi38MNAtWubaqb9Y7ZywA=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.480871+00 2025-12-17 06:50:00.480876+00 24875 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vf7oM6K8yD9qskZoCQS9xIAIIxM=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.482282+00 2025-12-17 06:50:00.482287+00 24876 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ougMwxy5RDAkjm0uWXqpLU8z4jQ=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.48377+00 2025-12-17 06:50:00.483774+00 24877 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MdW0ykgfNC_hQPofk8morlEkFY4=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.485171+00 2025-12-17 06:50:00.485176+00 24878 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dOf-PYntNHXsPmHLFRS5vYSPeBo=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.486485+00 2025-12-17 06:50:00.48649+00 24879 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ilU8tTskNCRGPo_Yu4LEg4WAe8c=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.487789+00 2025-12-17 06:50:00.487793+00 24880 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ln4yhdu4hS47kzMe3xcHOaKKwGA=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.489022+00 2025-12-17 06:50:00.489027+00 24881 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hvq815Kvsd1ZryQ9Aw3NqMsx0YM=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.490262+00 2025-12-17 06:50:00.490266+00 24882 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8S2X8PG5HVT4Ut9ujnIapdS-EoU=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.49154+00 2025-12-17 06:50:00.491545+00 24883 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TyCMR7rzv1IXat6yhqWsUEcjAYo=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.492776+00 2025-12-17 06:50:00.492781+00 24884 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AJ4zvb0dW1FdfAw4sBn3zr1ywFE=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.493984+00 2025-12-17 06:50:00.493988+00 24885 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E8447uyllN4nFhNBxdoTf7RooEc=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.49521+00 2025-12-17 06:50:00.495215+00 24886 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3wy0XeIqSkk8kcdOAD3EF0g4UD4=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.496428+00 2025-12-17 06:50:00.496432+00 24887 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W8lS5l8-iHsBboa1vwWk5S3lUw4=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.497667+00 2025-12-17 06:50:00.497671+00 24888 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nNKcBHELrNu23SSfgx9T95nO7Kw=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.498883+00 2025-12-17 06:50:00.498887+00 24889 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wgo5bvKj8xf5QmlBVsYeq9HBPYI=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.500075+00 2025-12-17 06:50:00.500079+00 24890 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=1766040599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r0KxM2f2koHEAzyfsF7m4oYmpIM=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.876802+00 2025-12-17 06:50:00.876814+00 24891 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xod8uQq2sN6_OhUQyZ0kUbdbPhk=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.879159+00 2025-12-17 06:50:00.879166+00 24892 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wg93ztk0GEm7IMrA3NOW0MHUOr0=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.881058+00 2025-12-17 06:50:00.881066+00 24893 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BUQXUPMw6HLqoK4oOREFzPb3QiM=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.883015+00 2025-12-17 06:50:00.883021+00 24894 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:plU2Lyn0ds9-2YshI0XUncaBKSE=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.884392+00 2025-12-17 06:50:00.884396+00 24895 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yxPyiICuenCp0v4SC8d7Z110FJo=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.885629+00 2025-12-17 06:50:00.885633+00 24896 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kMTndor4bcsV1pPOj3pet6diCIg=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.886952+00 2025-12-17 06:50:00.886956+00 24897 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zmfSyML5F0XezYpg_P7fcw-ofKA=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.888198+00 2025-12-17 06:50:00.888203+00 24898 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Q4vTq1TI8urPxTSaJqHlYG6r8k=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.889463+00 2025-12-17 06:50:00.889468+00 24899 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8dKmLSxQzKdZS3yO18zl0XFTuYM=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.890707+00 2025-12-17 06:50:00.890711+00 24900 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EbVxnTUic4ZxICas2uNue74Y63E=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.891961+00 2025-12-17 06:50:00.891966+00 24901 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nS0i1u0LNnpn1faozgV4sPXtjic=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.893181+00 2025-12-17 06:50:00.893185+00 24902 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2uYKzFCDXiFP0O3E6Ww9mIOJ3zI=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.894397+00 2025-12-17 06:50:00.894402+00 24903 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3CAUe0hgjycBYo_Xqe1ViD_qDb8=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.895605+00 2025-12-17 06:50:00.895609+00 24904 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:URJorFel7g3qfj4qqPFgz_EpcPE=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.89685+00 2025-12-17 06:50:00.896854+00 24905 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jFVe9VEY3zYSN_7rpKJ6WQTSkWI=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.898064+00 2025-12-17 06:50:00.898069+00 24906 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AlR4O4tncwXrXH3LjwZNlgts2ps=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.89926+00 2025-12-17 06:50:00.899264+00 24907 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8OruwZ_g36O9Je-HUBG6Ikb69Xw=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.900465+00 2025-12-17 06:50:00.90047+00 24908 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fP4v7nMFabH2A30PDeS-xW5XNpA=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.901682+00 2025-12-17 06:50:00.901686+00 24909 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rh7IcyI7nfzg5o4JPq4WAHZ-Fv0=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.902891+00 2025-12-17 06:50:00.902895+00 24910 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ywOHbdEYsW2e4_f70Kku5ZnPz_U=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.904091+00 2025-12-17 06:50:00.904095+00 24911 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AhlqvmoLM306YpBnRL9vUl7PRiY=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.905306+00 2025-12-17 06:50:00.90531+00 24912 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vYwBZ7GEfGKl7V5tDnW2__u7Etk=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.906591+00 2025-12-17 06:50:00.906595+00 24913 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gvh_7A9pNrxXeZFHVyRt0VeD1fA=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.907894+00 2025-12-17 06:50:00.9079+00 24914 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RpnBQ3jjtXsAnJlxYP84CzQL0do=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.909264+00 2025-12-17 06:50:00.909269+00 24915 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NwukylMkFvWScjsR_MCS_sFcNvU=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.910501+00 2025-12-17 06:50:00.910505+00 24916 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1atpyCXBV2uOu7VLFS8JTiy4a8c=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.911747+00 2025-12-17 06:50:00.911751+00 24917 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1_70dw7uHLdstpx3h1oA9mUm46I=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.912986+00 2025-12-17 06:50:00.912991+00 24918 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pM_jXn3wcK6hNFnAKACbh7dfeYE=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.914191+00 2025-12-17 06:50:00.914195+00 24919 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EflaIZaEa76YotxBt5QNZ9l0foM=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.915418+00 2025-12-17 06:50:00.915422+00 24920 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cwo1nIpSjrMWJXbI_Sg8NZ8KtyE=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.916663+00 2025-12-17 06:50:00.916668+00 24921 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fEsRAmaq8TMcJuCOMQlTO7qSPj8=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.9179+00 2025-12-17 06:50:00.917905+00 24922 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O0k_Rj_zH9iZH4QwuY_QMGAaQ4o=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.919128+00 2025-12-17 06:50:00.919133+00 24923 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IfkjPFlZy_aEvSbqpJF4KHlKgPQ=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.920339+00 2025-12-17 06:50:00.920343+00 24924 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a1xvbTemRl0RkNR11CzkONT8VOE=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.921589+00 2025-12-17 06:50:00.921593+00 24925 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hMDwdsieocMbtqXBiMt2vwQKYhc=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.923008+00 2025-12-17 06:50:00.923013+00 24926 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fjxTLRYg_b4_W5nkX5MTMegwMlg=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.924241+00 2025-12-17 06:50:00.924245+00 24927 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vDwbYlY_I-E-qG5-REbaa_w23iw=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.925473+00 2025-12-17 06:50:00.925477+00 24928 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-1vbmaCWw83B01krr4XEcA1Z5ow=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.926705+00 2025-12-17 06:50:00.926709+00 24929 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JXAQoAFWXUdZnejnMal0saFunmQ=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.928219+00 2025-12-17 06:50:00.928223+00 24930 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bEHTUb8O94Z_N3q9vaGvQEPv58s=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.929434+00 2025-12-17 06:50:00.929438+00 24931 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SOTHjXu8nTymN3D18hRshX7Uw1g=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.930647+00 2025-12-17 06:50:00.930652+00 24932 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hr8-UvWCTttSxwM2v0pVRvb-DTE=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.931852+00 2025-12-17 06:50:00.931856+00 24933 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YDClIxMDGX5D0PTORiXPol3yBCk=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.933067+00 2025-12-17 06:50:00.933071+00 24934 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u72Z4sDbN6GykGQmjgtihsdwH54=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.934309+00 2025-12-17 06:50:00.934313+00 24935 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SG8jjQs9AHOPbkbyHeKI1tQna6Y=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.935531+00 2025-12-17 06:50:00.935535+00 24936 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WM9YnPSRr8D9Bup_xhcoyNFI6b8=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.936825+00 2025-12-17 06:50:00.93683+00 24937 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v9KhmQp0i0PmIK19r3myHd2W7m0=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.938186+00 2025-12-17 06:50:00.938191+00 24938 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7SzkfcP6NgDNPzlqYwLhV6GuXg0=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.939417+00 2025-12-17 06:50:00.939421+00 24939 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zbJUwMqcp3iTNNyv_s-kecBDJgc=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.940636+00 2025-12-17 06:50:00.940641+00 24940 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XntiY45FUtmGxTkiJG90WNSqpms=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.941905+00 2025-12-17 06:50:00.94191+00 24941 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cnlf21njtVzBoeuPHI0UC0OjAWI=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.943232+00 2025-12-17 06:50:00.943237+00 24942 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9-vXPFBooN5wLXoDrOuFgnz4OCY=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.944475+00 2025-12-17 06:50:00.944479+00 24943 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YibbqokGLXN3qHM2HkbByZocwHw=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.945702+00 2025-12-17 06:50:00.945706+00 24944 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VggZcz-XaL8NxMFVF8ZWWjOxUrI=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.963366+00 2025-12-17 06:50:00.963371+00 24958 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xD1NKEvBdiV3i-wTYWnQRVVzStk=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.946923+00 2025-12-17 06:50:00.946928+00 24945 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qq6S7Y7isPfHkw26qZtjlLonpbQ=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.94815+00 2025-12-17 06:50:00.948155+00 24946 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dShgam6_J9NY26XdJrSKB2gEJGI=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.949372+00 2025-12-17 06:50:00.949376+00 24947 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qj7yUjeCLI0zrnTASyz8Exvmmt0=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.950626+00 2025-12-17 06:50:00.950631+00 24948 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FZq0wD7KkvxZUaW51UVU_Dik9a4=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.951835+00 2025-12-17 06:50:00.951839+00 24949 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1D49j9FVSOSfpuA9ayo46K9YvOs=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.953061+00 2025-12-17 06:50:00.953065+00 24950 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OT838v_kOg2_2Vh-5_p8KU6CeTQ=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.9543+00 2025-12-17 06:50:00.954304+00 24951 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j8IndLbB8LtGBPDZ2sqZJUlbJYw=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.9555+00 2025-12-17 06:50:00.955505+00 24952 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h4oH9Xef8NPK7aoa6VbRul6-tiM=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.956723+00 2025-12-17 06:50:00.956727+00 24953 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZwdsSbULfqgwqBW7TCAaHxh3bUY=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.958227+00 2025-12-17 06:50:00.958232+00 24954 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-DrP83auQj-2HhBvUGg_AKCYvPk=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.959664+00 2025-12-17 06:50:00.959669+00 24955 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:balkQWzmMkju7G18fH5u9k3-0QE=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.960914+00 2025-12-17 06:50:00.960918+00 24956 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GW5J1-19a0HlZXh33JNJegJsA-o=", "createTime": "2024-08-15 14:41:34"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.962147+00 2025-12-17 06:50:00.962151+00 24957 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oq6a3ST7bgXpPyCL3736Udcs-CA=", "createTime": "2024-08-15 14:41:34"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.964938+00 2025-12-17 06:50:00.964944+00 24959 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tCjZZg6ls_fZiv7uaUTOWWha6SM=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.966372+00 2025-12-17 06:50:00.966376+00 24960 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KbiCpFv3seqtMloQXj09HZN1hU4=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.967716+00 2025-12-17 06:50:00.967721+00 24961 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KxV-2GUS_slENLSGP7y3ZfysXeI=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.968977+00 2025-12-17 06:50:00.968981+00 24962 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:seHawxNVW9AACFa4d8ejCYxG3wA=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.970543+00 2025-12-17 06:50:00.970547+00 24963 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Bf0hXtr7z623m6POH0PVVlEUto=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.97213+00 2025-12-17 06:50:00.972134+00 24964 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xoOlXEf2oJdyKC-haZLVU1m2j04=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.973675+00 2025-12-17 06:50:00.97368+00 24965 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QCQgWyVTQORFXca17oCp2e1uNsU=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.97529+00 2025-12-17 06:50:00.975294+00 24966 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p6mME0qWkDdXAspk0fU4MUIuYGo=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.976813+00 2025-12-17 06:50:00.976817+00 24967 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zvCmMiVrIsomv26dI_6uHHwN7-Y=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.97832+00 2025-12-17 06:50:00.978325+00 24968 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MM6vy-N8r2Zfr0N1gjBk1hsdtrU=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.979841+00 2025-12-17 06:50:00.979846+00 24969 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:44Kwv000OBuffvD1YfNa9lxtTkA=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.981354+00 2025-12-17 06:50:00.981358+00 24970 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pgGv3Q5Wmn9iinUxQnk7_LMTk_o=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.98264+00 2025-12-17 06:50:00.982645+00 24971 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k7rkFraexR5vA_qbaiCq_h-gZO8=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.983868+00 2025-12-17 06:50:00.983872+00 24972 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HrMOQfAuzt9-ms4U-tpN8wtxS8Y=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.985079+00 2025-12-17 06:50:00.985083+00 24973 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q80DjtDY3oShG7efg53HOBUTxtc=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.986332+00 2025-12-17 06:50:00.986336+00 24974 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oCMmwFl6hjlE-g_8E3zqZu69GSA=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.997592+00 2025-12-17 06:50:00.997596+00 24983 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bzLIakBYhcNKRU-Bi4ShHtmVJgg=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.987568+00 2025-12-17 06:50:00.987573+00 24975 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AYHtC7Im9t8ecULr4XUgHuJ00lI=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.988792+00 2025-12-17 06:50:00.988796+00 24976 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sTORWYQCc0HuyiuRKuKzTOMoAv4=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.990024+00 2025-12-17 06:50:00.990028+00 24977 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x110VhnwiKP6JBbhcZ8_sAlpbtg=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.99143+00 2025-12-17 06:50:00.991435+00 24978 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9xj3qJbCgqxoqqvEiFYELvgCaK0=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.992714+00 2025-12-17 06:50:00.992718+00 24979 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OaQWJN5kp1LFTKjB3TFe0i3eQRw=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.993942+00 2025-12-17 06:50:00.993946+00 24980 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wDddmx-h8TbHch9dZjY5gYcBKCo=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.995156+00 2025-12-17 06:50:00.99516+00 24981 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OloGWyRJEzOaVaCnSsuE81USQ4Y=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.996375+00 2025-12-17 06:50:00.99638+00 24982 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pscoM3sW8xhYXdrfrgTXE9lXGfE=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:01.000026+00 2025-12-17 06:50:01.00003+00 24985 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Lke2BT_XxRl5WEsoGwtdmyZy68=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:01.001271+00 2025-12-17 06:50:01.001275+00 24986 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WxIeDhsykplesA0tzUmTQGaVRXs=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:01.002462+00 2025-12-17 06:50:01.002466+00 24987 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FeSIXE-xbOeQrV6CRSN38-eEkA4=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:01.003775+00 2025-12-17 06:50:01.00378+00 24988 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BKeIVWDLCz7z1lUr1_s72R2iQkw=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:00.998811+00 2025-12-17 06:50:00.998816+00 24984 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sJQBk981xruSBXbDtUUk-24LpMw=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N +2025-12-17 06:50:01.006533+00 2025-12-17 06:50:01.006537+00 24989 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=1766040600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pfFDy09dsdEbfYmskt25KZ6_W2U=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.369859+00 2025-12-17 07:00:00.369868+00 24990 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CtUNIyhLetdZK9K5JudPyKQnoHw=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.371723+00 2025-12-17 07:00:00.371728+00 24991 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OXRVtn_hrBLFt228qtAOli0BJO4=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.373048+00 2025-12-17 07:00:00.373052+00 24992 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8X-uomMasIiMSKJMlxTNGhW7tp4=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.374343+00 2025-12-17 07:00:00.374348+00 24993 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0W_LjnO6SVuew2vbWt99QtDjFPc=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.375602+00 2025-12-17 07:00:00.375606+00 24994 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gHQcsNL8asu402BYV_9kcerbGhE=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.376846+00 2025-12-17 07:00:00.37685+00 24995 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6x0pA2axuWM-_yOsTh6SIJVgHH4=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.378113+00 2025-12-17 07:00:00.378117+00 24996 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HFckhfi-MnHzJWgwHtUC7dvCz2M=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.379357+00 2025-12-17 07:00:00.379361+00 24997 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZdEJXx1XSL-nwR-XX00XQ2mRk4Q=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.380584+00 2025-12-17 07:00:00.380588+00 24998 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BF1U0sSJs-DzNKkFUgXdLcRXvcU=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.381806+00 2025-12-17 07:00:00.381811+00 24999 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1BlMWKP3nsuHoDkr99lcFO7Bnxc=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.383025+00 2025-12-17 07:00:00.383029+00 25000 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qwdviMs4Vf-ED6AeaoL47eOVjhU=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.384248+00 2025-12-17 07:00:00.384252+00 25001 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cKUxkcmArbZVNg3LaFGme6gKQRA=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.38548+00 2025-12-17 07:00:00.385484+00 25002 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k7x3ZhntSpxGIsM21u4q9obmQW8=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.3867+00 2025-12-17 07:00:00.386704+00 25003 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rUrpycvEkN2RgI9Rb1cTUYH9Qso=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.387916+00 2025-12-17 07:00:00.38792+00 25004 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yz01klkkOAFmmJNvyWE-nPQwsco=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.389132+00 2025-12-17 07:00:00.389136+00 25005 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bc8Eu8hMWmnKn-Rga4E1EYQfKzI=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.39039+00 2025-12-17 07:00:00.390394+00 25006 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bBtAITitvE0jhHBhgCKFdk0vp-o=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.391622+00 2025-12-17 07:00:00.391626+00 25007 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JfNZuqnBWh2IZ06JoGqDXHgESSY=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.392845+00 2025-12-17 07:00:00.392849+00 25008 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HPP1bsiuKoLluXVrOXk21CJf-Ck=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.394056+00 2025-12-17 07:00:00.394061+00 25009 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TVCopRht_mpVhJw4aRrAC1zfGxo=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.395277+00 2025-12-17 07:00:00.395281+00 25010 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mrCjuOOYFYXf2KK7Te0vvZZqk9E=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.396503+00 2025-12-17 07:00:00.396507+00 25011 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BrpPXURjtS1HRm_wzWp14RI9Qs8=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.39772+00 2025-12-17 07:00:00.397724+00 25012 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GMMHA2yb8UZdIThNdRLBw8f3LB4=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.39894+00 2025-12-17 07:00:00.398944+00 25013 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ONaOfU8hZOhNBRK1rfQVqw0Tu4Q=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.400155+00 2025-12-17 07:00:00.400159+00 25014 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V0I-dH99_fNQdUVyhgxINzgwE2s=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.401397+00 2025-12-17 07:00:00.401402+00 25015 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDuXUX4YhBF9KRLhu7qYlncjEfA=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.402629+00 2025-12-17 07:00:00.402633+00 25016 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OR8mg-yfowKoI1iNX9kVGoKuCfM=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.403856+00 2025-12-17 07:00:00.403861+00 25017 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:40-L94VDyy8cYNNti1V-HOwGXR8=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.40506+00 2025-12-17 07:00:00.405065+00 25018 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JukaXXHkKN6rAJywrX4QZDEw6jw=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.406321+00 2025-12-17 07:00:00.406325+00 25019 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:seL4b-_C5hV9Ec3lNAH1DvAJKaE=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.407558+00 2025-12-17 07:00:00.407565+00 25020 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-5iYyVe7yWXyKTbh4imZ7v6tmJk=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.40877+00 2025-12-17 07:00:00.408774+00 25021 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iayC-P7bdoOwp9V1D09vkqmB8HI=", "createTime": "2024-08-15 14:41:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.409999+00 2025-12-17 07:00:00.410003+00 25022 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kJOU8cTLX5fAq0a5GCizXck7s4Y=", "createTime": "2024-08-15 14:41:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.411239+00 2025-12-17 07:00:00.411243+00 25023 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h21TbW20RSXgi5tPu97VfTK9Tbc=", "createTime": "2024-08-15 14:41:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.4127+00 2025-12-17 07:00:00.412705+00 25024 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K1JGLdXLE6fBVToB3PPDjx8Vux4=", "createTime": "2024-08-15 14:41:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.413943+00 2025-12-17 07:00:00.413947+00 25025 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bXKnf58Ej9EqROI5fiXPvt524NM=", "createTime": "2024-08-15 14:41:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.420055+00 2025-12-17 07:00:00.420059+00 25030 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZAzvV0lgazLaJ_Xt5ic4Odl47Os=", "createTime": "2024-08-15 14:41:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.415168+00 2025-12-17 07:00:00.415173+00 25026 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Czy4MwLvID7OrjSpTEMwZPDkFU=", "createTime": "2024-08-15 14:41:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.416389+00 2025-12-17 07:00:00.416393+00 25027 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:le0Yn4UVrNfXu1ywWDVXpxWXYPY=", "createTime": "2024-08-15 14:41:43"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.417612+00 2025-12-17 07:00:00.417616+00 25028 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3_Qq58nkxaf3-WDKmzfSxDE0-dw=", "createTime": "2024-08-15 14:41:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.418835+00 2025-12-17 07:00:00.41884+00 25029 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XOtXjJQoo1AIaBYOb3yV85wGqKg=", "createTime": "2024-08-15 14:41:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.421845+00 2025-12-17 07:00:00.421849+00 25031 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0-b2_l42VmwSPHRtu33c-YRtVFo=", "createTime": "2024-08-15 14:41:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.423369+00 2025-12-17 07:00:00.423373+00 25032 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D91qJ3e43qY6YoBp3MaROzm3tQ8=", "createTime": "2024-08-15 14:41:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.42462+00 2025-12-17 07:00:00.424624+00 25033 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M7CWm66okuzLWZjqjxmT2BqAWic=", "createTime": "2024-08-15 14:41:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.425855+00 2025-12-17 07:00:00.425859+00 25034 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HFSjRaZaSAvuqlkW9JV2gb9VGbI=", "createTime": "2024-08-15 14:41:43"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.427077+00 2025-12-17 07:00:00.427081+00 25035 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jA_hoWAQlrrLiV79SJ3OjEraD7k=", "createTime": "2024-08-15 14:41:43"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.428314+00 2025-12-17 07:00:00.428319+00 25036 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UZ22kjZijVmGqfAWotbe1LwVYH4=", "createTime": "2024-08-15 14:41:43"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.42952+00 2025-12-17 07:00:00.429524+00 25037 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p4vpYskBXfAUgsBGO3r7QjAX2nU=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.430748+00 2025-12-17 07:00:00.430752+00 25038 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OtL_77lio5W_FuuaPOXixamgfjw=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.431953+00 2025-12-17 07:00:00.431958+00 25039 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5LoTZz1BCbz7lskvR7CL_ux5wEQ=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.433151+00 2025-12-17 07:00:00.433156+00 25040 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jHi700YXylk989gOysGuyt9Qj2Q=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.434385+00 2025-12-17 07:00:00.434389+00 25041 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K9miYnRKjvRnphMCUX-vi6DndmM=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.435598+00 2025-12-17 07:00:00.435602+00 25042 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yvBt21FSG7yFjaTttWFh74I4r4w=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.436808+00 2025-12-17 07:00:00.436813+00 25043 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IwiFvJzCBqL6IQ5fhjlKNOXWn7s=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.43803+00 2025-12-17 07:00:00.438034+00 25044 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BBpnNdSx4hidjv5GNx8tEZB3Ayc=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.439346+00 2025-12-17 07:00:00.439352+00 25045 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q9RdkZkH43Iv71H9zlj2YWSqevE=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.440902+00 2025-12-17 07:00:00.440907+00 25046 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XR5ac_RJ5r9eHsVjyoBNoEr-gPY=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.442344+00 2025-12-17 07:00:00.442349+00 25047 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CTQt3cWW4EZhWLp0CYxhLEqvAR4=", "createTime": "2024-08-15 14:41:45"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.443627+00 2025-12-17 07:00:00.443632+00 25048 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DOB2vJ-07sni2xbHexM0i1XxH5Y=", "createTime": "2024-08-15 14:41:45"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.44491+00 2025-12-17 07:00:00.444914+00 25049 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5eEglxCfvHkQEA8ysWnyGZ4cHHw=", "createTime": "2024-08-15 14:41:45"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.446169+00 2025-12-17 07:00:00.446174+00 25050 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KohfTgyI7rV3kxzGXobgEnAuR8g=", "createTime": "2024-08-15 14:41:45"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.447379+00 2025-12-17 07:00:00.447383+00 25051 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:odGpniyydQNGJN05SwgNfrGdzlE=", "createTime": "2024-08-15 14:41:45"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.448679+00 2025-12-17 07:00:00.448683+00 25052 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OLEVUTBejuK8iFWQNOrWzidEC8Q=", "createTime": "2024-08-15 14:41:45"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.449979+00 2025-12-17 07:00:00.449984+00 25053 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ua343_00zkxDyFIVUHwo6-02xw8=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.451245+00 2025-12-17 07:00:00.45125+00 25054 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FD_dZ8UcHCK2P3jEA9zXbuvmths=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.452486+00 2025-12-17 07:00:00.45249+00 25055 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8kNKdOJXXF0MVz_GxnWtsPSDqCw=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.453714+00 2025-12-17 07:00:00.453719+00 25056 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sfnzzunyzMgYDkOUBLWBrXriro8=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.454982+00 2025-12-17 07:00:00.454986+00 25057 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qNOtoyAUk_3_ALTep_ktOdmN8FY=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.456351+00 2025-12-17 07:00:00.456357+00 25058 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SQU472MqP-FDFBpZd72ahwz9uD8=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.45798+00 2025-12-17 07:00:00.457985+00 25059 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Md1QLeaLGgIHohJziJNOEKL5ZE=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.459561+00 2025-12-17 07:00:00.459571+00 25060 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i9EFUM1LxumTKoJgFUVAu0N89nM=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.461248+00 2025-12-17 07:00:00.461254+00 25061 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9wZixMKjqKRphvydSwQsE8fMSFg=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.463629+00 2025-12-17 07:00:00.463637+00 25062 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LSx1jfb0i2JzE361lx9AgW0A30U=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.465841+00 2025-12-17 07:00:00.465846+00 25063 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hPCyOh7V1TRS-9VjJGtMvWAFCjE=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.467186+00 2025-12-17 07:00:00.46719+00 25064 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MCXIrekFkI05JlnLzs8xlUgra2Y=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.468708+00 2025-12-17 07:00:00.468712+00 25065 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xdahd5qBvdjDeSEYJ3ft-7qu3wA=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.47025+00 2025-12-17 07:00:00.470254+00 25066 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nEjGecWwU4dBKjrL3CBxxbzACss=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.47176+00 2025-12-17 07:00:00.471764+00 25067 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MuWMZUe1wKnwkiAFFj27qpAMlDA=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.473455+00 2025-12-17 07:00:00.47346+00 25068 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ITPx3MoOGO1pdGk8sD0wfxlkxKw=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.475047+00 2025-12-17 07:00:00.475052+00 25069 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NBGrdYBV9BCwl6eDCiCtbN8N6eE=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.476626+00 2025-12-17 07:00:00.47663+00 25070 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:my9TwDhio7c4J2J2JUxQqNfnsEE=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.478168+00 2025-12-17 07:00:00.478173+00 25071 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DvRemkN_78FGkeQu9AV7Td-GCOk=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.479672+00 2025-12-17 07:00:00.479676+00 25072 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:trI5uK6vcM1F-j0FAVRTfYfmwpc=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.480899+00 2025-12-17 07:00:00.480903+00 25073 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RKMj-pS4kNSjbkLRkAZZzKA35tc=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.482146+00 2025-12-17 07:00:00.48215+00 25074 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WNYu71QCPz8_20LkjnNZkUmvoZc=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.483386+00 2025-12-17 07:00:00.48339+00 25075 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5DOVpaizHfKUPOyJOHE2LNmrxf8=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.484608+00 2025-12-17 07:00:00.484612+00 25076 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x9JO9Eio7OOHnLhQPffRVprfArE=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.485834+00 2025-12-17 07:00:00.485839+00 25077 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NUUQ2ZKvv1ZI64iAgVsL1zw5XnA=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.48705+00 2025-12-17 07:00:00.487054+00 25078 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JURP9xMqXVrNDmsUdHTnQRhStMA=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.488285+00 2025-12-17 07:00:00.488289+00 25079 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I8GxACv0vod6M_JAxveHP_rw9WM=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.489596+00 2025-12-17 07:00:00.489601+00 25080 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oJoBMLoQVC5hUQY7BdJ4KP-W3ZE=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.49091+00 2025-12-17 07:00:00.490915+00 25081 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pYDJdBj_6u7PLgka53JJxLNqeg4=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.492185+00 2025-12-17 07:00:00.492189+00 25082 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w-vxaLBFa8deufxh3XrFAXVtDBE=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.493425+00 2025-12-17 07:00:00.49343+00 25083 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v4Q7Jg9w4tiur_RYI7td_188a6I=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.494654+00 2025-12-17 07:00:00.494659+00 25084 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:muQx-UIBO0B1La3GBJxriwHgh_I=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.495895+00 2025-12-17 07:00:00.4959+00 25085 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GrQ-EV-f9SVaQJm_7Q9hDK7hTQo=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.497119+00 2025-12-17 07:00:00.497124+00 25086 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gQAO8KRHJP2-4yVVRciTE4PZlDU=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.498346+00 2025-12-17 07:00:00.49835+00 25087 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JMhGtBo0fPNCSHgJqkcbwa71jNc=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.499585+00 2025-12-17 07:00:00.49959+00 25088 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JuzUf74gapvykvfnxeggBqESI_g=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:00.50081+00 2025-12-17 07:00:00.500814+00 25089 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=1766041199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gQa4qeQXDysM_427049FjImUOCI=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.065576+00 2025-12-17 07:00:01.065587+00 25090 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:juRZDD8aop-mUQCMcjojR9AzAew=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.067521+00 2025-12-17 07:00:01.067526+00 25091 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RcihCfZCjYkkkQOfCWN8scaD2lQ=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.069319+00 2025-12-17 07:00:01.069324+00 25092 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PyEE1PRtKhA8iX_w_uOxTeVs6jI=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.070796+00 2025-12-17 07:00:01.070801+00 25093 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CXTQMopGV3qJPxeD6H49gv7w7qU=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.072234+00 2025-12-17 07:00:01.072239+00 25094 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bjmObJEMzumvojA3Ki4egvHFxx0=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.073682+00 2025-12-17 07:00:01.073687+00 25095 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SE2DqDVkAnBiuugt5DnZtt__wKc=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.075181+00 2025-12-17 07:00:01.075189+00 25096 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jG-SNpg60rMfDyKp74tQbGn4hWM=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.076771+00 2025-12-17 07:00:01.076778+00 25097 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ML2xXYEjwGJf76fOEK_ivpOO1zU=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.07821+00 2025-12-17 07:00:01.078215+00 25098 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RFnM3sM24UX5parL6M4_TIWvkqU=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.093009+00 2025-12-17 07:00:01.093013+00 25107 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lZCp6d9h9c9vd7kHkeoMe9T_XOc=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.079573+00 2025-12-17 07:00:01.079578+00 25099 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aWrCCHpymminVprMZveqLYQE80I=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.080916+00 2025-12-17 07:00:01.080921+00 25100 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qCiYi2jFRXdxotvRd2DRMpQMTSk=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.082801+00 2025-12-17 07:00:01.08281+00 25101 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V2Ngs7m3XdpyvyjieJepDxI-uX4=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.085147+00 2025-12-17 07:00:01.085154+00 25102 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lW6fgSt57aNfbL-O4_q8OEpRwa4=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.08718+00 2025-12-17 07:00:01.087188+00 25103 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PFkYn36LRR_C4NNrQT2HErd7QXA=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.089141+00 2025-12-17 07:00:01.089146+00 25104 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k4cXHP6vKqzchoBVTDszZCk1vlc=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.090502+00 2025-12-17 07:00:01.090506+00 25105 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iMXV8yuWobwj4TvHnGJvERfjm_0=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.091751+00 2025-12-17 07:00:01.091755+00 25106 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fssc4LmPCJu-CUw26axZDkQvIZk=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.094354+00 2025-12-17 07:00:01.094358+00 25108 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_1_PlFyJIIx4PQSc_YMdI-qc6jI=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.0956+00 2025-12-17 07:00:01.095605+00 25109 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xaRXvM7EDCF13USqSivpXtcdw2Y=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.096835+00 2025-12-17 07:00:01.096839+00 25110 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B8qagk20UURazT4FgfWM4QcOAuo=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.098185+00 2025-12-17 07:00:01.09819+00 25111 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2sIDbERQqtPzNdi-HaWaFaMyn9g=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.099724+00 2025-12-17 07:00:01.099728+00 25112 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z0Q0FcU7hxd-3nfLvzZry1IBOeI=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.100984+00 2025-12-17 07:00:01.100989+00 25113 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JPl4hMwQ_R67MxsH8HbQ3Mja92c=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.102281+00 2025-12-17 07:00:01.102285+00 25114 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lyfNbvKX1qLd9NX42CIB_FtcDa0=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.103514+00 2025-12-17 07:00:01.103519+00 25115 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J_zDUh5WOWbg0pwQsaT8fw7wFlg=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.104747+00 2025-12-17 07:00:01.104751+00 25116 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LYlaybJjXAUXSQJzMRCl6H1eeq4=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.105987+00 2025-12-17 07:00:01.105992+00 25117 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P_402UB8OyPlAmTl-pmOSGcrDcg=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.107362+00 2025-12-17 07:00:01.107367+00 25118 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3kmIoOi9Ke_l7f155Kfp2NbmSuQ=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.108785+00 2025-12-17 07:00:01.10879+00 25119 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pKFs6F8o-ciCYxtdFfkqaT3WaWY=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.110073+00 2025-12-17 07:00:01.110078+00 25120 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LP3cVluUpEsGhW5CJKYzKneHkGw=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.111328+00 2025-12-17 07:00:01.111333+00 25121 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XZmsI-44Z6HU49N77uklmpd_lyI=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.112594+00 2025-12-17 07:00:01.112598+00 25122 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JNcIVD5g0LlTDHYHbamo_rPsAo0=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.11382+00 2025-12-17 07:00:01.113824+00 25123 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NrBmwRkqQcg2_HT57vvzM8DdYDw=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.115032+00 2025-12-17 07:00:01.115036+00 25124 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3SwCu-LQRFn6TpDVRFu3W44bQEg=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.116255+00 2025-12-17 07:00:01.116259+00 25125 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Em-JLGYOL3Cdgwwyvuz9JPRLeUo=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.117509+00 2025-12-17 07:00:01.117514+00 25126 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MREJFiYI7UZ8esXagWWDxCdsT6w=", "createTime": "2024-08-15 14:41:51"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.118775+00 2025-12-17 07:00:01.11878+00 25127 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f_ek0zIF_dlbd-Jhpv12jIrIWMM=", "createTime": "2024-08-15 14:41:51"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.120115+00 2025-12-17 07:00:01.12012+00 25128 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6j8NsR2czYN_S9lNhqeLSobWeVs=", "createTime": "2024-08-15 14:41:51"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.121404+00 2025-12-17 07:00:01.121409+00 25129 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eT7X5qHFi_RHygTpLAV25JBB2sA=", "createTime": "2024-08-15 14:41:51"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.122824+00 2025-12-17 07:00:01.122829+00 25130 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7JJuN7YQwN4yIjrCrsJ6bRhaJhU=", "createTime": "2024-08-15 14:41:51"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.124113+00 2025-12-17 07:00:01.124118+00 25131 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h5c2kaaDJMMok5Kxp2btSWmRvvE=", "createTime": "2024-08-15 14:41:51"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.125388+00 2025-12-17 07:00:01.125393+00 25132 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aG6wUA8omMdpPT9uYTDcDyzxsks=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.126614+00 2025-12-17 07:00:01.126618+00 25133 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iLjH5VTE2eWM_CAhMQprKW8CrKE=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.127836+00 2025-12-17 07:00:01.12784+00 25134 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NObZXWzft5UAbCA_Ne2Jeprx0Is=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.12908+00 2025-12-17 07:00:01.129085+00 25135 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_VBC1sfIitUDFZRie1ByMYz9nSI=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.130766+00 2025-12-17 07:00:01.13077+00 25136 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XwskIXtA5ASAkThQSWbRsj9vO0w=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.131985+00 2025-12-17 07:00:01.131989+00 25137 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a02XjGsJHEywTaTbnElURR3ouhk=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.133194+00 2025-12-17 07:00:01.133199+00 25138 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p0PcbTJCd5HAKiITpdG8yApZgu4=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.134424+00 2025-12-17 07:00:01.134428+00 25139 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pTCjLRDmWIgDMyLxl8PGUyKZNOg=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.13565+00 2025-12-17 07:00:01.135655+00 25140 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2tTFYxmyajD3tg4dB9uGelnLbZk=", "createTime": "2024-08-15 14:41:51"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.136875+00 2025-12-17 07:00:01.13688+00 25141 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YTzv5Tl3XSTPX_Fj0MMg8HGVIxE=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.138102+00 2025-12-17 07:00:01.138106+00 25142 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OtVIoKgxC6W4m5BtZ_apx9auTGA=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.139342+00 2025-12-17 07:00:01.139346+00 25143 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q65SPjYsCfszSPb_7e15Jcf7qp4=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.140658+00 2025-12-17 07:00:01.140663+00 25144 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-DjU5TFAP_aa4RDXVmarGQoK6Og=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.141931+00 2025-12-17 07:00:01.141935+00 25145 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TgvYzd0dupsMVgB3RIUarDhds9E=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.143191+00 2025-12-17 07:00:01.143195+00 25146 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GSuxNTweSCfj18iat-ndTeNRPyA=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.144443+00 2025-12-17 07:00:01.144447+00 25147 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sGNTlfmjTCqmkD6s61gIB3RoU0E=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.145711+00 2025-12-17 07:00:01.145715+00 25148 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wJSgbluUjgGJkd6TyzWzL_20Da0=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.146946+00 2025-12-17 07:00:01.14695+00 25149 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eR-M0I4ow7fUqwD6xwajSSJkRSo=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.148178+00 2025-12-17 07:00:01.148182+00 25150 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QM6j50lB7HMwl-GTB2UYmeUq7Ho=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.149432+00 2025-12-17 07:00:01.149437+00 25151 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZN4IJ0JiGSIK4Zwapn-R-lfQ9R8=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.150691+00 2025-12-17 07:00:01.150695+00 25152 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xuujF5I-Q-o1rUxAiDpWhfUex64=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.15212+00 2025-12-17 07:00:01.152124+00 25153 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:taybL_LqhkNkmUyXbu2rQGylGpI=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.153501+00 2025-12-17 07:00:01.153506+00 25154 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9KspsNi5jA-M0hGLtIYFEq0vU5U=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.154902+00 2025-12-17 07:00:01.154906+00 25155 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IydERfDadHUlZLKjKC7gVA33_Po=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.156189+00 2025-12-17 07:00:01.156194+00 25156 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e4j4PXn5KkNixopEvaV_RGCe4cw=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.157439+00 2025-12-17 07:00:01.157443+00 25157 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:USsSIcOi23ObVaILR1om9HGU-MA=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.163767+00 2025-12-17 07:00:01.163772+00 25162 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N4ljV1uADuhQU63XlUTQXMAVsJQ=", "createTime": "2024-08-15 14:41:54"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.158709+00 2025-12-17 07:00:01.158713+00 25158 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jqNSPtnMISUdQ1HUXSZfTAHGrl4=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.159969+00 2025-12-17 07:00:01.159973+00 25159 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:acV3Kz_6BFewcrxTx3yASDwmSQg=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.161291+00 2025-12-17 07:00:01.161295+00 25160 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eEBaR0j0loY-Jsj2icESC1Y1vo4=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.162521+00 2025-12-17 07:00:01.162525+00 25161 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GlRomVHiUWxdo_28Ab_0TxhPoMQ=", "createTime": "2024-08-15 14:41:54"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.165101+00 2025-12-17 07:00:01.165106+00 25163 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nKgFhv8Oxp--GSBCNmj_fEOfyAQ=", "createTime": "2024-08-15 14:41:54"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.166439+00 2025-12-17 07:00:01.166444+00 25164 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XN2f9FCO2n4K2xVvtTEcZ8fuAdQ=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.167875+00 2025-12-17 07:00:01.16788+00 25165 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QJf8VPu01ZFl3xtIasg_BOHz13U=", "createTime": "2024-08-15 14:41:54"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.169232+00 2025-12-17 07:00:01.169236+00 25166 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YYNXGixv5OedDiZeMfw7v5J9K-8=", "createTime": "2024-08-15 14:41:54"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.170624+00 2025-12-17 07:00:01.17063+00 25167 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ATihn6ZUjkH1S62DeSirtPHvwU=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.172243+00 2025-12-17 07:00:01.172248+00 25168 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8MLzDdRUHVmQNuRVgYJkBovcak4=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.173836+00 2025-12-17 07:00:01.173841+00 25169 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a9xkkb1RoPa0BbxgLcTWbprmn_4=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.175093+00 2025-12-17 07:00:01.175098+00 25170 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QaXlg8C96wVsl5_5H0BgiYFOdvk=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.176375+00 2025-12-17 07:00:01.176379+00 25171 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ufrRnz0VYBUQP6Ec-0_4rkxSa0Y=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.177679+00 2025-12-17 07:00:01.177683+00 25172 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iUNswV3HEF4DoRx5dos6Oeiw8E0=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.17892+00 2025-12-17 07:00:01.178924+00 25173 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gh80sIigZuZuiecs7vNbGk5g3q0=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.180199+00 2025-12-17 07:00:01.180203+00 25174 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PF6ZXMgb_0uFNViNWZbWLTj7ASk=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.181515+00 2025-12-17 07:00:01.181519+00 25175 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pVN6_bX0gBf5TihWdj_wiQ4cqkA=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.182765+00 2025-12-17 07:00:01.182769+00 25176 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qyUmr4zH2gJSSteTDK55wERZ1_0=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.18431+00 2025-12-17 07:00:01.184315+00 25177 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oe9YlerPu0Y3IjHndQwlsazHlLI=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.18593+00 2025-12-17 07:00:01.185934+00 25178 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ktl3KI1y9MvHFEKjrTfSyRcTXYo=", "createTime": "2024-08-15 14:41:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.187233+00 2025-12-17 07:00:01.187237+00 25179 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jBTSIxPBrpV0ldgNLIBVRhi2WRg=", "createTime": "2024-08-15 14:41:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.188541+00 2025-12-17 07:00:01.188546+00 25180 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KlHpP3PiKIJT4_6OAPfjQVHyr-Y=", "createTime": "2024-08-15 14:41:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.190049+00 2025-12-17 07:00:01.190054+00 25181 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d2UDx99rcnavUgnJRCspcUw-MDs=", "createTime": "2024-08-15 14:41:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.191484+00 2025-12-17 07:00:01.191489+00 25182 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xiprv8Rvb4sneRNCf57jiJsI_Kg=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.192926+00 2025-12-17 07:00:01.192931+00 25183 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R-Oeqf1Mre-btUBhGvZ8C_aRENw=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.194367+00 2025-12-17 07:00:01.194372+00 25184 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dc4bz-2P7HLMRvOULjkia-zIe1I=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.196106+00 2025-12-17 07:00:01.196111+00 25185 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VkUngnb2LDbHpIy7Z0SsLZVP0Wo=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.197835+00 2025-12-17 07:00:01.19784+00 25186 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7wvp1gd9Rs4Ncc3xA_La_ODLNqc=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.199589+00 2025-12-17 07:00:01.199593+00 25187 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:euErnxyK74BCvUkF6kLG1ZqCBPQ=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.201206+00 2025-12-17 07:00:01.20121+00 25188 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QrlCGdb_Tskfs5j_s-ERN3bGwCQ=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:00:01.203041+00 2025-12-17 07:00:01.203046+00 25189 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=1766041200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UUqvMwbsyCJgjI7PUXAO7cCP1zE=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.516585+00 2025-12-17 07:10:01.516594+00 25190 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tQEolX_mHsYr2tHT4YY3LtRKsms=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.518922+00 2025-12-17 07:10:01.518928+00 25191 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FyN1fEdgscZqgCnyb11wevdTHr0=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.520854+00 2025-12-17 07:10:01.520861+00 25192 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ARgS8ncvGhMsOULLvju950uEWfU=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.522954+00 2025-12-17 07:10:01.52296+00 25193 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WvU27wyy-FU2MXUegV8ol0GkQLg=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.524485+00 2025-12-17 07:10:01.52449+00 25194 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qVteGothEJxxulqReX0sDSpSATM=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.52595+00 2025-12-17 07:10:01.525955+00 25195 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AvC3aOmHK6QgkH9ZHnSV1qp32j4=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.527249+00 2025-12-17 07:10:01.527253+00 25196 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zCT04OX5YZ8SXRkbuOHNx_4ME8U=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.528552+00 2025-12-17 07:10:01.528556+00 25197 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BxdC1KTNVMc4oTgUe7MOLvTT_tA=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.529813+00 2025-12-17 07:10:01.529818+00 25198 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HTjrqcKg16Mq71jOYUMM6mHrGgw=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.531071+00 2025-12-17 07:10:01.531075+00 25199 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jh-Nr7a3VQ5YPspF4Zc84lmPCr4=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.53235+00 2025-12-17 07:10:01.532355+00 25200 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SkWIYVR19oM9e6zubTgI2fFZ_gw=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.533635+00 2025-12-17 07:10:01.53364+00 25201 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QUQ5fD43XjO9GE9ZbXbEM9iRxz0=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.53488+00 2025-12-17 07:10:01.534884+00 25202 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mexj7VOAnmLBqL-iZRtBGrUytsU=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.536383+00 2025-12-17 07:10:01.536389+00 25203 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:osiKnnYXvUiBITPzEMDDXCa3A7U=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.537794+00 2025-12-17 07:10:01.537798+00 25204 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SR7KEOXb1QnLpoRoE5O55tANFVU=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.539075+00 2025-12-17 07:10:01.53908+00 25205 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zpSAIOgXRaENBDuCwjpn-vgtZTU=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.540334+00 2025-12-17 07:10:01.540339+00 25206 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KQWNKdsPTGq1uMg9DRR6T8_AQTk=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.541862+00 2025-12-17 07:10:01.541867+00 25207 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7VJL6jhDCCkIgaMWlsgMKhGASdw=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.543255+00 2025-12-17 07:10:01.543259+00 25208 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6fKJ1je4hSOPNyUqYg41PwjP46U=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.544531+00 2025-12-17 07:10:01.544535+00 25209 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f4DK3bV8XRfCkhoFMHuSq6lXkCQ=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.545797+00 2025-12-17 07:10:01.545801+00 25210 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_erwk7RJm_XpBbsXuB0MjEQfLc8=", "createTime": "2024-11-21 13:37:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.547093+00 2025-12-17 07:10:01.547097+00 25211 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-c4__tWcWo3lkWoMroJ0mLC3mb8=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.548714+00 2025-12-17 07:10:01.548719+00 25212 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HAYoVJSGw0zPlZ8QdYF5_SS8SV8=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.550353+00 2025-12-17 07:10:01.550357+00 25213 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u-_y9PHMRdUgT7x3kJy7hGyv4-k=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.552069+00 2025-12-17 07:10:01.552074+00 25214 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JdXq_AoBF3IYItDLk-qzxrscjuY=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.553359+00 2025-12-17 07:10:01.553364+00 25215 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QBqEL77hBmVZQiE1MT799_kHzYE=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.554594+00 2025-12-17 07:10:01.554598+00 25216 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5sCp7s3Dx1AQ3YFQv4k3iqX5MIk=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.555817+00 2025-12-17 07:10:01.555822+00 25217 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wxyw1Xlkl8nHB2Fsbwf8R0vbdt0=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.557045+00 2025-12-17 07:10:01.557049+00 25218 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EEL6Ys-pmkmIAYSxaD7PSA0G6lI=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.558278+00 2025-12-17 07:10:01.558282+00 25219 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MlUj067ffMu6_PCpZ_ZVI9XNkOs=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.559503+00 2025-12-17 07:10:01.559507+00 25220 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yFRjw7TFEaX8WvYRddFgsd_ibqs=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.560874+00 2025-12-17 07:10:01.560879+00 25221 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eyBWGPjbgJQsgxukhN8SpRQmk0c=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.562282+00 2025-12-17 07:10:01.562287+00 25222 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1A6VUs6eJaxJbMjXG-nesKa5mgA=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.563562+00 2025-12-17 07:10:01.563571+00 25223 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HYvgOUl1elU5k17RHOZmHdHNP98=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.565031+00 2025-12-17 07:10:01.565036+00 25224 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Adpt0MJu2bDUcAnr3YWMG_Jsqas=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.566289+00 2025-12-17 07:10:01.566294+00 25225 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rBmaYdxpC3No7uHxTZBquYf8niA=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.567501+00 2025-12-17 07:10:01.567505+00 25226 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lyzYU7MQVyankNO82hkwUjF9Pss=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.568818+00 2025-12-17 07:10:01.568823+00 25227 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d5PxkjgFuBB5yvMN2cHu9RFMm8E=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.570073+00 2025-12-17 07:10:01.570078+00 25228 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ozb__S8p5nPBZuUslpfupQ1r50=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.57129+00 2025-12-17 07:10:01.571294+00 25229 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A4qqF3DmpISR-9t-2qJmA5pgu2E=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.57258+00 2025-12-17 07:10:01.572585+00 25230 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lI2z0fynQtZ7HuqVeEXMWySSJik=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.573852+00 2025-12-17 07:10:01.573856+00 25231 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NdxX0PlPa2cksJCFC8TYDj7uP7Y=", "createTime": "2024-08-15 14:42:01"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.575081+00 2025-12-17 07:10:01.575086+00 25232 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qFfy3HKaTvQnPKCvVMkiZJJbr88=", "createTime": "2024-08-15 14:42:01"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.576459+00 2025-12-17 07:10:01.576464+00 25233 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bSeHONZJX3Gc_DgeZFAsrgwz_zQ=", "createTime": "2024-08-15 14:42:01"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.578218+00 2025-12-17 07:10:01.578224+00 25234 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dang3i_rmWBhQXp7cLgy8PYf6v0=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.579549+00 2025-12-17 07:10:01.579553+00 25235 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EEmwcO9ZKhKuld39plrFKd7bIwQ=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.580813+00 2025-12-17 07:10:01.580818+00 25236 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PsxS-3VAdHoLYaDQWGrblfM_TmI=", "createTime": "2024-08-15 14:42:01"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.5821+00 2025-12-17 07:10:01.582104+00 25237 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x4vudqthMTU_dI2hsY_-NvrlOsQ=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.583346+00 2025-12-17 07:10:01.583351+00 25238 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1BVBYqukSy78ktjZ0t6cVKYYqy8=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.584609+00 2025-12-17 07:10:01.584613+00 25239 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LOheOtxrsBkCVcUBcLGg4lSXMnQ=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.58584+00 2025-12-17 07:10:01.585844+00 25240 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nwwXSV3rGFCFkzQ9lgbvFuPwZa4=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.587058+00 2025-12-17 07:10:01.587063+00 25241 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y5BnUc2m9pEkanIXBVlro4UzR2A=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.588319+00 2025-12-17 07:10:01.588323+00 25242 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ajsMhIQuqa-cc6f7q9u6xKhAKg=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.589596+00 2025-12-17 07:10:01.589601+00 25243 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iJgyDiijNuFehye6NXpgbu3LPy4=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.590862+00 2025-12-17 07:10:01.590866+00 25244 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:63YhS1ga7NiMlS8xIdLPoFmkM9g=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.592246+00 2025-12-17 07:10:01.592252+00 25245 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c14thgrvKU8dntkCAyuPSOTc6Q8=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.593814+00 2025-12-17 07:10:01.593819+00 25246 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dFUSSyeLtkLUJ6pf1HviBDobZGI=", "createTime": "2024-08-15 14:42:01"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.595179+00 2025-12-17 07:10:01.595184+00 25247 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TdWy9hHCqrXBxGPSR5R_W46OJ3M=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.596484+00 2025-12-17 07:10:01.596488+00 25248 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hDUJH4iDZi8eDwMLzlptuHlMJ98=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.598092+00 2025-12-17 07:10:01.598097+00 25249 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jW8NeFTxR_tfKyobHOcHqJ_80lE=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.599802+00 2025-12-17 07:10:01.599808+00 25250 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:szT5IYy3KVLiH7tVabsioSHOGPE=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.601379+00 2025-12-17 07:10:01.601384+00 25251 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RFSVtofP3urtrWtRoCKGIkYDUBU=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.602989+00 2025-12-17 07:10:01.602993+00 25252 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tNnw-Cd5y4rur1U6l15irWfcgpU=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.604735+00 2025-12-17 07:10:01.604741+00 25253 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_sAmvAtFnC_qIC-FqXHqgnGOK_w=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.606407+00 2025-12-17 07:10:01.606412+00 25254 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BX4hF6LXg8DVIKbMArqVN9EzHR8=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.608056+00 2025-12-17 07:10:01.60806+00 25255 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9_OVLLSUwSbnTQ44O_aGxuLY5Ts=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.609636+00 2025-12-17 07:10:01.60964+00 25256 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dvq9hRXYt9K_ire70GeeW88kb4A=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.610875+00 2025-12-17 07:10:01.610879+00 25257 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sgz-Wyu8KdPy8urC64izG3Jv5zs=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.612123+00 2025-12-17 07:10:01.612128+00 25258 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pu3CQrcN02ojta_IZjM6yc6kz74=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.61334+00 2025-12-17 07:10:01.613344+00 25259 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gCe1phMuUICPLyatUiMbtCMTbSY=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.614629+00 2025-12-17 07:10:01.614635+00 25260 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8xtzhbfHYRY3YZPTFj3mNrJSvjo=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.615973+00 2025-12-17 07:10:01.615978+00 25261 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rM1r0B2t38OjubtLOEllYMU3zRo=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.617437+00 2025-12-17 07:10:01.617443+00 25262 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IfCOpWrmddA1RSEuSH5QsZcnStM=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.618894+00 2025-12-17 07:10:01.618899+00 25263 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N8OXmVATosTabzMApCQT-mN4xn8=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.620487+00 2025-12-17 07:10:01.620492+00 25264 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:srjMBMJNWZWE8iJjfqdeD-2t0Gw=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.621962+00 2025-12-17 07:10:01.621967+00 25265 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tm2pzeznUHPl00eeRc33vLc2n8s=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.62339+00 2025-12-17 07:10:01.623395+00 25266 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3WXi24yL19t1eOTzLwGvUZIdX94=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.624819+00 2025-12-17 07:10:01.624824+00 25267 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rFbjuFux74aCXyrVbRFvVWBuiyE=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.626265+00 2025-12-17 07:10:01.62627+00 25268 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YpJpo_MGclBhozxxr-LdvvIiGC4=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.627705+00 2025-12-17 07:10:01.62771+00 25269 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CgAtVZUt-KExZVKuhexhYtdj1Fk=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.62912+00 2025-12-17 07:10:01.629125+00 25270 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:64lAr_q3t2V95IMUPgsE_IGm5Jk=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.630535+00 2025-12-17 07:10:01.63054+00 25271 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZHmaEeG_4y46w9duvcq_4dB_oVs=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.631955+00 2025-12-17 07:10:01.63196+00 25272 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:znmLhI6BK28S1M7Y9Pkqz8RWyvE=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.633438+00 2025-12-17 07:10:01.633443+00 25273 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TJrZW-mhksvx0pstYjzuPki0BI0=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.634931+00 2025-12-17 07:10:01.634936+00 25274 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SCAn5waDIkwY0SXzqhEV-BsvQII=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.636381+00 2025-12-17 07:10:01.636387+00 25275 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DvHAIUoB0EUL-L7r8lP3kUNFkXs=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.637815+00 2025-12-17 07:10:01.637821+00 25276 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w5fhevjfN8PfcX7KDRyskBWlkKc=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.639256+00 2025-12-17 07:10:01.639261+00 25277 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TYNI7npforxtzDAOM4pBYxIOIrM=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.640766+00 2025-12-17 07:10:01.640771+00 25278 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z71vy_wxBAamLTgNn0il3oJ5jb4=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.642189+00 2025-12-17 07:10:01.642193+00 25279 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YBCIeLmjdQm5SA9PYSdEgaFPIjc=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.643487+00 2025-12-17 07:10:01.643491+00 25280 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nTgIUSLluVwYsRKzLsdDIaE2WFM=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.644754+00 2025-12-17 07:10:01.644759+00 25281 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RI2VDp52CXEyb59BBRrUKwxdETA=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.646027+00 2025-12-17 07:10:01.646032+00 25282 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o_FJ0KzdU0apJMryaL78YeGmKf8=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.647324+00 2025-12-17 07:10:01.647342+00 25283 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:26pytFANV_tdHJm7lT8EW0ncoVE=", "createTime": "2024-08-15 14:42:05"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.648756+00 2025-12-17 07:10:01.648761+00 25284 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v2eqqfA4IHQDAxW1LacO70D5zE8=", "createTime": "2024-08-15 14:42:05"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.650034+00 2025-12-17 07:10:01.650039+00 25285 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aE1JK1vaGLD5IiFx3mbJPLRytRw=", "createTime": "2024-08-15 14:42:05"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.651285+00 2025-12-17 07:10:01.651289+00 25286 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cyq7dgWeHZmVt6wPk1D_USGcSHI=", "createTime": "2024-08-15 14:42:05"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.652542+00 2025-12-17 07:10:01.652546+00 25287 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jXjNVV1G8XWPZ01wdfjZbpNYI08=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.653834+00 2025-12-17 07:10:01.653839+00 25288 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kRgY0euMlNH8pTZbmCe7HCAntMg=", "createTime": "2024-08-15 14:42:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:01.655111+00 2025-12-17 07:10:01.655115+00 25289 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=1766041800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OGSajIwx7g18BnLIgp3JGC8k-X4=", "createTime": "2024-08-15 14:42:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.62135+00 2025-12-17 07:10:02.621359+00 25290 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZGI6yzrdIF28xroHVHDxmTvq6h8=", "createTime": "2024-08-15 14:42:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.623178+00 2025-12-17 07:10:02.623184+00 25291 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5fZe3QwLiZK0YZSoeXf8h3z4b-k=", "createTime": "2024-08-15 14:42:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.624525+00 2025-12-17 07:10:02.62453+00 25292 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SsXz2ni9V0j3oJ85VW-KS2rGsCY=", "createTime": "2024-08-15 14:42:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.625794+00 2025-12-17 07:10:02.625799+00 25293 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:neiaOMU6PisL687Ti0Z28ktV_Zk=", "createTime": "2024-08-15 14:42:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.627089+00 2025-12-17 07:10:02.627093+00 25294 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4-msjepIIli0Ku-ML2RlFETt_TE=", "createTime": "2024-08-15 14:42:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.628331+00 2025-12-17 07:10:02.628336+00 25295 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q5kjue0dXPNsIs8mgiAxEpYdC3U=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.62964+00 2025-12-17 07:10:02.629645+00 25296 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b05fkQ1zl-9IyS2RakqYiMRc-uE=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.630862+00 2025-12-17 07:10:02.630867+00 25297 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IBaBC9ZZefK5Ow3hWHY9srRMaFQ=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.632163+00 2025-12-17 07:10:02.632168+00 25298 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7qO1bJGCWZewhi7IcGPJ6bkzAvI=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.634025+00 2025-12-17 07:10:02.63403+00 25299 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:awo7TyPX_NZwpMZpkqjgC1h1v1Q=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.635341+00 2025-12-17 07:10:02.635346+00 25300 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wDXPy2OyOTA7hwuVeSOrXVqwx9U=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.636624+00 2025-12-17 07:10:02.636628+00 25301 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3_TRgGmYPXe518p44sJtL_ntCCw=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.637926+00 2025-12-17 07:10:02.63793+00 25302 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0rqWwoiuFrFo8hKuw-_zzOn-mB0=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.639194+00 2025-12-17 07:10:02.639199+00 25303 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LvicG1j4tiK6JNMhlyNQEtq8yRg=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.640419+00 2025-12-17 07:10:02.640423+00 25304 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fv3RykEwfQxTpfV52HbvG-DMtK4=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.641673+00 2025-12-17 07:10:02.641678+00 25305 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hWf4F7uPWU1DPmysBQcYTYxj9UA=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.642922+00 2025-12-17 07:10:02.642927+00 25306 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GDw38UXuvL0mYxLGaNbRaRGDEz4=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.644169+00 2025-12-17 07:10:02.644173+00 25307 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SQxqZdKx2C_0onacd4biEkL42d4=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.645486+00 2025-12-17 07:10:02.645493+00 25308 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-WFArZTJA8vCpYgnjXhWCky3Tjo=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.646951+00 2025-12-17 07:10:02.646956+00 25309 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NDEyP0_qid8gUotrzmZlj-Gqn7E=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.648342+00 2025-12-17 07:10:02.648346+00 25310 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fA_MhvihXMpLs-6ed-lN827zNB0=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.649618+00 2025-12-17 07:10:02.649623+00 25311 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PX-XPcHVhlwBFNfDVKjntZlCtU4=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.650934+00 2025-12-17 07:10:02.650941+00 25312 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QgRl9g8MnhS_v-7OBo2ZrlF5RU4=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.652226+00 2025-12-17 07:10:02.652231+00 25313 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ag9N16iApzkwHL0MVMvXN95Q1dk=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.653489+00 2025-12-17 07:10:02.653493+00 25314 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pTtmFx94VNWgcE3Qj0nrwTuXLaY=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.654746+00 2025-12-17 07:10:02.65475+00 25315 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4sudKgw-Ayn8LfpOJZbvs3GU2G8=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.65597+00 2025-12-17 07:10:02.655974+00 25316 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pNik14ppYqKxMyuNyxp6sRGz7AM=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.657209+00 2025-12-17 07:10:02.657213+00 25317 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jUfITdl4wCM1pfEAjRtw8OOueLA=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.658481+00 2025-12-17 07:10:02.658486+00 25318 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BGFKOIFUPCe_ipElZwZEE0wtYuY=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.659716+00 2025-12-17 07:10:02.659721+00 25319 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NCxNUiW9pBPtFyFxq_jbqxmpWoQ=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.660948+00 2025-12-17 07:10:02.660952+00 25320 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Nvfhcceo6JunB7RdQbqOHGTZ9U=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.662391+00 2025-12-17 07:10:02.662397+00 25321 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uq40bkTbeFrMdqD9_aL0g7a8vXk=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.663787+00 2025-12-17 07:10:02.663791+00 25322 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L6NwBp5CRA9Rv3CdTL-IRbvWd7Y=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.665065+00 2025-12-17 07:10:02.66507+00 25323 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NsW_5YFRX2IK8jBWQSjpoMxptFE=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.66633+00 2025-12-17 07:10:02.666334+00 25324 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CMmqshl8Dy1Jzn5DdB-g1T1xQbI=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.667613+00 2025-12-17 07:10:02.667617+00 25325 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DwBlJlJA4U-NzTGfzYXHeIiPRK0=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.668895+00 2025-12-17 07:10:02.668899+00 25326 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TZ_Sc63Qz8Vomk-XYxZxT70o948=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.670289+00 2025-12-17 07:10:02.670293+00 25327 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h03_jXZ3d-hZo9Cy-USirgH4zS4=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.671737+00 2025-12-17 07:10:02.671742+00 25328 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:egPYDkaeT3w38LtdY9jLg39aZP8=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.673149+00 2025-12-17 07:10:02.673153+00 25329 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VErzIz0uhOpLtBlN9h1wx-L7eyw=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.675013+00 2025-12-17 07:10:02.67502+00 25330 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GZCZ39FrQ_hfQZSC1pz1Ar8N8qY=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.67667+00 2025-12-17 07:10:02.676675+00 25331 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0d4oSvbi8bBpoGTnN_s48YW8OgE=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.678204+00 2025-12-17 07:10:02.678208+00 25332 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_x9wwOmuRZXDbbeJ2qfbndkvDnQ=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.679489+00 2025-12-17 07:10:02.679494+00 25333 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X2gbButVb1GyR_5PZ00eg3dS8Wc=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.68078+00 2025-12-17 07:10:02.680785+00 25334 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c0cjW3v5m-Dsg5jQsXvLGiVO_qU=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.682091+00 2025-12-17 07:10:02.682095+00 25335 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eWuvu7J2Pg_K4Otuc7i2uuM0XNM=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.68338+00 2025-12-17 07:10:02.683384+00 25336 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tq1Y-RVxi9kaq7b9b55RfAZDurE=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.689623+00 2025-12-17 07:10:02.689628+00 25341 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gYj6drEgLqpdBvMvlNOMW50383A=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.684625+00 2025-12-17 07:10:02.68463+00 25337 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D0h-o2iG6CtFCiJ5wheBlEgN9Oo=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.685879+00 2025-12-17 07:10:02.685883+00 25338 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qeyLGJV6DRk_ZrayjBxi7txOP0c=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.687135+00 2025-12-17 07:10:02.68714+00 25339 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nLoRF7MHd1_KnLkOZyTocoUYZwQ=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.688362+00 2025-12-17 07:10:02.688365+00 25340 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hUXZJZo_RedqP_xwZp44tofCdDM=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.691058+00 2025-12-17 07:10:02.691063+00 25342 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FrC-i0qok2nXpI4HcyYVkW7Jtj0=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.692361+00 2025-12-17 07:10:02.692365+00 25343 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eizPCxJihSJxEqMqKkCukY9oRi8=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.693632+00 2025-12-17 07:10:02.693637+00 25344 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ptBEGBX_CvF0ZUj6ASatKpMchvw=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.694992+00 2025-12-17 07:10:02.695002+00 25345 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ug1ObhIIwmt9ANOTF_aflsuIgYI=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.696352+00 2025-12-17 07:10:02.696357+00 25346 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ekCXoJPNn_cTIg7UikD0V50Nqt4=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.697647+00 2025-12-17 07:10:02.697652+00 25347 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CfSX2HgJ0i3DpZ4iq4ojH_lRNao=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.698895+00 2025-12-17 07:10:02.698899+00 25348 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bsHoA0vhJ1MtbXNphQpK-Fd19D4=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.700202+00 2025-12-17 07:10:02.700206+00 25349 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pLAuiL3sHFZRcx0TxP85erqob9o=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.702151+00 2025-12-17 07:10:02.70216+00 25350 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rCVPJ4pdM-IDWQMgZp7tZNJ2Suw=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.704414+00 2025-12-17 07:10:02.704422+00 25351 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iqfZBIcS136ytqQtPc5-80rp_gM=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.706385+00 2025-12-17 07:10:02.706392+00 25352 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F5Gl_9OeOLSjcFV92Mfu9tY61zU=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.708278+00 2025-12-17 07:10:02.708285+00 25353 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W2NhHKR0Il8dpDxiAaN_0sk1sjM=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.710156+00 2025-12-17 07:10:02.710163+00 25354 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ICeN9yVqX4eGfdV22fcqc-ihfd8=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.712041+00 2025-12-17 07:10:02.712047+00 25355 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0GdByJgqDqVkpP-4WovI0jm1hx8=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.71416+00 2025-12-17 07:10:02.714167+00 25356 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OJjW8UsylGdVS3BRo_Lf9BPgGBY=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.716257+00 2025-12-17 07:10:02.716264+00 25357 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-yxoMHXN2FsHRoWuBfIePZT6f4Q=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.718151+00 2025-12-17 07:10:02.718158+00 25358 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pIOjq7DPGm4w1bNMEbB4bTKTy0I=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.719877+00 2025-12-17 07:10:02.719882+00 25359 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zub7Vl5ZruB7fAVfm4PZwaSUyPE=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.721199+00 2025-12-17 07:10:02.721203+00 25360 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tGOaZjQnAuSPAFL0p1aY_eonQrQ=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.722488+00 2025-12-17 07:10:02.722493+00 25361 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0TheAfIaC6unpzylS7Tk2apYyJM=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.723771+00 2025-12-17 07:10:02.723775+00 25362 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WWAo5hpFaHeT6DA8n5U18DPV85Q=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.725016+00 2025-12-17 07:10:02.725021+00 25363 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K9Ih3eFv0OXLyAYZaHqx3WJ2nx8=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.726268+00 2025-12-17 07:10:02.726272+00 25364 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7e88dMUdSt98hrH2FHS1BBk8BAM=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.727518+00 2025-12-17 07:10:02.727522+00 25365 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lZOhmWq2p3m_IBpm0jjH0mHYA_s=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.728801+00 2025-12-17 07:10:02.728806+00 25366 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UOgz4dM2wFzbi0VqlCROyvsWl08=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.730816+00 2025-12-17 07:10:02.730822+00 25367 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dmU1gXqZ88MvB_GTdMTuS0vJiTQ=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.732632+00 2025-12-17 07:10:02.732637+00 25368 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1uwVsIDfGE97ZmTqdPSDVd00SaQ=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.734308+00 2025-12-17 07:10:02.734312+00 25369 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GgidP5GEU1IDfwPsGwk8XiAK928=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.735964+00 2025-12-17 07:10:02.735969+00 25370 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e1eAPf-hQ6rLTQPjsts-RkPNjyo=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.737616+00 2025-12-17 07:10:02.737621+00 25371 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tViyf1C8KWhINqOUqc6BWUAb3zw=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.739184+00 2025-12-17 07:10:02.739188+00 25372 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l5cnbT2_qRQhO-s32ysbQZdTTuk=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.740716+00 2025-12-17 07:10:02.740721+00 25373 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6QPrQOKll-q-0NFdQEkvB6Hbjrg=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.742553+00 2025-12-17 07:10:02.742557+00 25374 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yO-_xOKnB89s8w0m4WDAGwOwytY=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.743932+00 2025-12-17 07:10:02.743937+00 25375 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ccb_ySNFAo-P0tLAgYPu5GIJNg=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.745325+00 2025-12-17 07:10:02.74533+00 25376 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tL2L_g85PeZ-ZtIGLa3QNkmc4BI=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.746681+00 2025-12-17 07:10:02.746686+00 25377 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZFrHU-tcES32Ihim_JIGI7eX_Dc=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.748071+00 2025-12-17 07:10:02.748075+00 25378 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zsRFXcTow6_WdF1YaPOT27Sd9co=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.749335+00 2025-12-17 07:10:02.749339+00 25379 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u-k2QPJT5RCpNS9E9SkdryXBgRg=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.750659+00 2025-12-17 07:10:02.750664+00 25380 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xuXtpah8zQjAgfVyiEcLNQh_Q4I=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.751918+00 2025-12-17 07:10:02.751922+00 25381 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:plqskktPBcRg12nw9JIWEQkpbbY=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.753172+00 2025-12-17 07:10:02.753176+00 25382 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xmNKaZrJV7KXbdyH586t_xoxjyU=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.754408+00 2025-12-17 07:10:02.754412+00 25383 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1yCJj0xyVlN0bZVDoq4m8eqOeG0=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.755681+00 2025-12-17 07:10:02.755686+00 25384 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CNn7iulYQUiQWpXyZ8YUW5qfUyk=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.75692+00 2025-12-17 07:10:02.756924+00 25385 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V7SU87pdEioYfE6Ye1s-H_XRJuY=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.75861+00 2025-12-17 07:10:02.758619+00 25386 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Aer0I_qURNEfVZ8TlLGWRXf33Gw=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.760884+00 2025-12-17 07:10:02.760892+00 25387 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZCBt13w5pq5K01j2VkzkJ2yeLno=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.762861+00 2025-12-17 07:10:02.762868+00 25388 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qCNHc5q15461rNw38i9ci1iAuhc=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:10:02.764758+00 2025-12-17 07:10:02.764764+00 25389 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=1766041802&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D7Vqf06aoUYEOQXT6dBlF1Y1AVM=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.412677+00 2025-12-17 07:20:00.412688+00 25390 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S8t_R_RfZcFEC5J6Yu7I5D9x0Ak=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.415734+00 2025-12-17 07:20:00.415741+00 25391 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r41xT0TjHoOkiSTbphDyfmFCrIE=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.417762+00 2025-12-17 07:20:00.417766+00 25392 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ki0C6uxWkwkkBz-XGDymYUfhrhY=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.419067+00 2025-12-17 07:20:00.419071+00 25393 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bSbWTg8KFRyTcT9Rnpz9VSvYKgA=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.420371+00 2025-12-17 07:20:00.420376+00 25394 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8PDH4b1AX_wx5TQTdCviYthvkDk=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.421657+00 2025-12-17 07:20:00.421662+00 25395 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gjGlVFt5i8PmPaFcw2XICLg8OkE=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.422952+00 2025-12-17 07:20:00.422956+00 25396 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wBHSRKWuq52WvJbDt4LHkT4P1zg=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.424215+00 2025-12-17 07:20:00.424219+00 25397 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qS48X_FpqE_OUZU2HvnBxGmB934=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.425456+00 2025-12-17 07:20:00.425461+00 25398 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VuJR-27a6DzA8EKTDaae-0xOvE8=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.4267+00 2025-12-17 07:20:00.426704+00 25399 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W6z4pIgxGjwRAJZHDfHlSLkRs20=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.428153+00 2025-12-17 07:20:00.428158+00 25400 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gHnswjmIAMLnsn6BVU-9nFLp5Ec=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.429453+00 2025-12-17 07:20:00.429458+00 25401 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7E_UMXh1oUKJZbiOoYCwV6bZ7oQ=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.430696+00 2025-12-17 07:20:00.4307+00 25402 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6S5Td8-KGFmErvlRplsL5P6RDjE=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.431946+00 2025-12-17 07:20:00.43195+00 25403 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LMIdmYKq_uDa9JR2SmUCDwugsR0=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.433227+00 2025-12-17 07:20:00.433232+00 25404 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sdOg1R7euu4ndyrgbw6djGuKYkA=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.434558+00 2025-12-17 07:20:00.434563+00 25405 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l9cJmppvn3xevy65-Y5T47oVGJY=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.435973+00 2025-12-17 07:20:00.435978+00 25406 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1vwdvR1SoVnUPhT6uqTj-EghKrw=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.437262+00 2025-12-17 07:20:00.437266+00 25407 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0oBuIe5euszWuPrbXUBkZnB7880=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.438507+00 2025-12-17 07:20:00.438512+00 25408 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HkQeQzNwqm6SWGmXswUAbe_6aQo=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.439771+00 2025-12-17 07:20:00.439775+00 25409 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s04s28HNdHV88cRNH8LHYNlV9bM=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.44104+00 2025-12-17 07:20:00.441044+00 25410 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mRf6CdVtKMtP8x2i3lqckd8z9jk=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.442283+00 2025-12-17 07:20:00.442288+00 25411 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ki2ar4fAlhko5ch1B7AxgdWewz8=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.443557+00 2025-12-17 07:20:00.443561+00 25412 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rDMdskq4AETKyV2yeWnqyaccLXA=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.444821+00 2025-12-17 07:20:00.444826+00 25413 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u0uAAYFTKciuXFoNCF87d_GDAhw=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.446071+00 2025-12-17 07:20:00.446075+00 25414 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MaiYFccHO2cvMprzQlzNB2FQqb0=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.447311+00 2025-12-17 07:20:00.447315+00 25415 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HpfsnHx37xhWxNPxkZreO5YH8EA=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.44862+00 2025-12-17 07:20:00.448625+00 25416 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sNGNEEos4GsHF_2xh5usgf4TPkw=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.449903+00 2025-12-17 07:20:00.449907+00 25417 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ixf4-dm3wgFuS-gRf89Kq3bfk8I=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.451183+00 2025-12-17 07:20:00.451187+00 25418 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ySnKSH8YVfXFSYS6P0dIwDWQlI=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.462587+00 2025-12-17 07:20:00.462591+00 25427 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NpCRISAigU_gKSiJ9SYmW3YbB4Q=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.452451+00 2025-12-17 07:20:00.452455+00 25419 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ngc8qLxAWgbxHBt_3E89norYUk=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.453758+00 2025-12-17 07:20:00.453762+00 25420 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:teaaxB3rNAVsaYJ5ZCdaU4Kafsk=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.45502+00 2025-12-17 07:20:00.455025+00 25421 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v4Z4aJnWk72Zvz9sWmYdIiPOCtc=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.456273+00 2025-12-17 07:20:00.456277+00 25422 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ce3ZvUVOA6RjfbjegOp2U77idFY=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.45751+00 2025-12-17 07:20:00.457514+00 25423 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vx_4Bck85cUGLxZI0MtxQjYDhm8=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.458793+00 2025-12-17 07:20:00.458797+00 25424 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Twkpbxv7OrIF7tK7HMP9Mm3XR7U=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.460048+00 2025-12-17 07:20:00.460052+00 25425 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MLi-uvdyhqoNw8hwPG6tJgyUsgc=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.461328+00 2025-12-17 07:20:00.461333+00 25426 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9tb8mjCoWltuzedOve8SaCD0Ti4=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.463842+00 2025-12-17 07:20:00.463846+00 25428 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQIg1BJfeq1hwWbJqkDcqd83a5Y=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.465106+00 2025-12-17 07:20:00.46511+00 25429 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e47fSFdldSfk6EPOoVVbn0w3-ho=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.466335+00 2025-12-17 07:20:00.466339+00 25430 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QJKcF-EsC7tgDeQYNfPpHSc6n_Q=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.467568+00 2025-12-17 07:20:00.467572+00 25431 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G05BRSeHR5N0F6E79tz5bqYLijw=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.468816+00 2025-12-17 07:20:00.468821+00 25432 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r5HdajnP5naP0qGXbNYhyEm3rtc=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.470119+00 2025-12-17 07:20:00.470123+00 25433 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GISfBlsA_UGji2ktQAquoP_ppLw=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.471402+00 2025-12-17 07:20:00.471406+00 25434 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kBF2eLdTRnQU6Qv1UDkOnQNOfd0=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.472672+00 2025-12-17 07:20:00.472676+00 25435 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z7xgbM00UkM9aHHlV-ct5KB1rpw=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.473929+00 2025-12-17 07:20:00.473933+00 25436 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6BWnVonEfjVOFxToTEQaqolsukw=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.475251+00 2025-12-17 07:20:00.475256+00 25437 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CAXXwM3HozXx008bd2NQ5yA_ZHk=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.476502+00 2025-12-17 07:20:00.476506+00 25438 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nfSEsTsvCooU0aZxhuS4qxFPYAM=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.477795+00 2025-12-17 07:20:00.477799+00 25439 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nca0ceS2h9tRoC4YV2PNqGZZJHQ=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.479039+00 2025-12-17 07:20:00.479044+00 25440 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sQ5pXJGLl7I3TJPreHUZ1higxYQ=", "createTime": "2024-08-15 14:42:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.480307+00 2025-12-17 07:20:00.480311+00 25441 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kv0ngHGDSUIGTUiAC3_F83TbWbs=", "createTime": "2024-08-15 14:42:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.481561+00 2025-12-17 07:20:00.481569+00 25442 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CYK2Xe9SLQZbKzKyBgJz0A0-jgE=", "createTime": "2024-08-15 14:42:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.482829+00 2025-12-17 07:20:00.482833+00 25443 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EZmi3XreUes4OmxK36Ey-9qaSrs=", "createTime": "2024-08-15 14:42:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.484085+00 2025-12-17 07:20:00.484089+00 25444 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yk1_jmNOn2WrsbNjtjMIgG6E9vE=", "createTime": "2024-08-15 14:42:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.485329+00 2025-12-17 07:20:00.485333+00 25445 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kAfR3nto3JVqzVloRJlS3Um7Otc=", "createTime": "2024-08-15 14:42:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.48665+00 2025-12-17 07:20:00.486655+00 25446 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mWxGKafFsWI6j0Ws8O3CuPTQvh0=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.487916+00 2025-12-17 07:20:00.48792+00 25447 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bZUDD05BxlMVKRIQ3k6kd1_f4jI=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.489158+00 2025-12-17 07:20:00.489162+00 25448 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mECe3wre5BRn2woTcLUrvAoTd_0=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.49042+00 2025-12-17 07:20:00.490425+00 25449 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9AmHLkT13_zaY9LNhegZ0-aJuKc=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.491677+00 2025-12-17 07:20:00.491682+00 25450 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nWawoJ7O5tAGCk6ZaucZAgGTDnw=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.49295+00 2025-12-17 07:20:00.492954+00 25451 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eBbAAjcEPGcR9sirAW2KE6dIkIE=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.494246+00 2025-12-17 07:20:00.494251+00 25452 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LLsv9TC4ctxKy_Es-ZiuL1JvL88=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.495533+00 2025-12-17 07:20:00.495537+00 25453 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:slpZw_cebDK81tXPfBOhP-pGSLM=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.496783+00 2025-12-17 07:20:00.496788+00 25454 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OjgnO4D9kws-BTi5GdBMZgBw0CY=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.498039+00 2025-12-17 07:20:00.498043+00 25455 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wu3Wp1eReQRBAXGi5wUMZk_MelY=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.499279+00 2025-12-17 07:20:00.499284+00 25456 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zYwNRxEAus4UaZemi4oHeLE-17M=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.500536+00 2025-12-17 07:20:00.50054+00 25457 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6VgW_tu2ZDfEUGG1ijESkV3FoFY=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.501806+00 2025-12-17 07:20:00.50181+00 25458 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q-AcnTZqcPpUj-5rXqp7EAbvmxY=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.503069+00 2025-12-17 07:20:00.503073+00 25459 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cdXsg0E00LzCnBy7r0oWfKHw-Uo=", "createTime": "2024-08-15 14:42:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.504317+00 2025-12-17 07:20:00.504321+00 25460 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MAaiotFLu4JLR5SuhGVxkVhrq54=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.505581+00 2025-12-17 07:20:00.505586+00 25461 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mbl8aOs5zl-xNRKnSpMcan82VGk=", "createTime": "2024-08-15 14:42:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.506841+00 2025-12-17 07:20:00.506845+00 25462 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aUnJ1IEgBGJWON8UR9-vDNQcVpI=", "createTime": "2024-08-15 14:42:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.508103+00 2025-12-17 07:20:00.508107+00 25463 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LpG1bJN4N3kFkuM5bTGP0neXC2U=", "createTime": "2024-08-15 14:42:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.509332+00 2025-12-17 07:20:00.509336+00 25464 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NE1cYwGnOpZhmtWFjNvaVhQPhNo=", "createTime": "2024-08-15 14:42:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.510592+00 2025-12-17 07:20:00.510596+00 25465 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ijUwql05aUO2OFDcR65H9Y93HAo=", "createTime": "2024-08-15 14:42:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.51185+00 2025-12-17 07:20:00.511854+00 25466 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uY0XQ2ldqBAoDgV2Ry1o6lKT4mY=", "createTime": "2024-08-15 14:42:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.513105+00 2025-12-17 07:20:00.513109+00 25467 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IaHqYndCAAz3q0JsQoUp6gAKkro=", "createTime": "2024-08-15 14:42:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.514425+00 2025-12-17 07:20:00.51443+00 25468 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8uX0ggmBZ2PNpciguk8UpYiNhAo=", "createTime": "2024-08-15 14:42:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.515691+00 2025-12-17 07:20:00.515695+00 25469 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bmbbsg_Ij1zUTwgGSg-UpYy1Avw=", "createTime": "2024-08-15 14:42:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.516964+00 2025-12-17 07:20:00.516968+00 25470 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ti6QdGV3EwFV8ZNdofZVdgRTGqs=", "createTime": "2024-08-15 14:42:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.518227+00 2025-12-17 07:20:00.518231+00 25471 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4iOo_8snuCyzpbWvxQw8wtCrNc8=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.519512+00 2025-12-17 07:20:00.519516+00 25472 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nkwJm2kzvytG1kWZ2dOkCgyrYuY=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.520796+00 2025-12-17 07:20:00.520801+00 25473 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ICLyTPncSNZtCrsYM6xz5SRh2Jg=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.522066+00 2025-12-17 07:20:00.52207+00 25474 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m8DyfwTI-hTfHYQdU4I-mhCspV4=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.523308+00 2025-12-17 07:20:00.523312+00 25475 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KFvzqbzzbK-dKVD_ptRvtFuCyFE=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.524568+00 2025-12-17 07:20:00.524572+00 25476 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AQyBwbPnnPiWPymH21_0KKe03MQ=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.525812+00 2025-12-17 07:20:00.525816+00 25477 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xCYLAgHmPVrNf4T3EvjWq0GMlqc=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.52707+00 2025-12-17 07:20:00.527074+00 25478 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xh5gpjYdL-GHXIVmnRy4XnlIfhA=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.528318+00 2025-12-17 07:20:00.528323+00 25479 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qzdUYRCXGPvfjFymFeUhBTQpUUc=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.529573+00 2025-12-17 07:20:00.529577+00 25480 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-E6hC0zV-T3vXopFwb2UKHMOMw4=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.530811+00 2025-12-17 07:20:00.530815+00 25481 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hJWjJTrd_Nxj1MQTbEFCe4y7TGM=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.532046+00 2025-12-17 07:20:00.53205+00 25482 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f6zaXSgGxdr5uo8A39yNdHFbcJw=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.533305+00 2025-12-17 07:20:00.533309+00 25483 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iw84bcy77oO0nDrycWFQj0GV4LM=", "createTime": "2024-08-15 14:42:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.534616+00 2025-12-17 07:20:00.53462+00 25484 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HQW55mHMO6pcXH2EoAwXHb8Q06w=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.535903+00 2025-12-17 07:20:00.535907+00 25485 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wo8rSVncBPGJiDBe0wCOM-hjMxQ=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.537232+00 2025-12-17 07:20:00.537236+00 25486 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:koml9JdtVGnxJ1Wa-AiRJ9ZCw1E=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.538517+00 2025-12-17 07:20:00.538521+00 25487 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:spIN1sb-iKGrJliPU7VcqIuXiRw=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.539816+00 2025-12-17 07:20:00.53982+00 25488 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T-BHC4BjHM5H4umeX5i8WcRRd9s=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:00.541085+00 2025-12-17 07:20:00.54109+00 25489 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=1766042399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:56uCbHIrEbsrvUA032BA4sn8lw0=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.209992+00 2025-12-17 07:20:01.210003+00 25490 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WR8KRMgYkhAuK1uwAzVSUcgMNdo=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.212589+00 2025-12-17 07:20:01.212597+00 25491 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aDOiLOjGfgpKZKh9ePO5MCe3QDU=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.214345+00 2025-12-17 07:20:01.214351+00 25492 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cohj0I_OqTqrITx2sC-gYJGlTQU=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.21585+00 2025-12-17 07:20:01.215855+00 25493 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ak5Pck8Eh-qRrypdrS38uYtdpUo=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.217147+00 2025-12-17 07:20:01.217151+00 25494 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mncO-3DtU8Nh2Jwn3pu9zZlT0tU=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.218788+00 2025-12-17 07:20:01.218792+00 25495 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dy2U1lFXXUo15kkg1ufh78COyOg=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.220115+00 2025-12-17 07:20:01.22012+00 25496 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xGix7BLzuJLBqpg1ozQecGpp80k=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.221393+00 2025-12-17 07:20:01.221398+00 25497 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F9ADEYUKgZzB-L5txN0C3yYt72g=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.222683+00 2025-12-17 07:20:01.222688+00 25498 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7cMbka2IJZ6HkKmCfZ6fMLpq2G8=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.22395+00 2025-12-17 07:20:01.223955+00 25499 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n28r7HJwS1I9c_H0vE-cu4DHQJQ=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.225212+00 2025-12-17 07:20:01.225217+00 25500 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hkrcztd_KevTPj-SihkYcb_HZpk=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.226459+00 2025-12-17 07:20:01.226463+00 25501 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y3d8o7aEWa2QQEO6-dRUV1GROCA=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.227698+00 2025-12-17 07:20:01.227703+00 25502 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HVze-6B7fhHFRxoLNkvXhPjiTbo=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.228953+00 2025-12-17 07:20:01.228958+00 25503 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZEOA78-3KNuO4sxn77JNvzaBdfg=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.230201+00 2025-12-17 07:20:01.230205+00 25504 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-1y1MF2Zf2qfbJyZ2tdlp7lk8m8=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.231437+00 2025-12-17 07:20:01.231442+00 25505 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VMC4YRzw5iHpgV6VoV7TBd-DLDU=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.232689+00 2025-12-17 07:20:01.232693+00 25506 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5vFdrn85Y-nxueOpBeMFeDprWBY=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.233925+00 2025-12-17 07:20:01.233929+00 25507 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3RV8Njy2cAIDhBKrTM178jYJGoY=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.235193+00 2025-12-17 07:20:01.235197+00 25508 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ia3h3Ok_z2zhdE0ym3EhBIAFBKU=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.236435+00 2025-12-17 07:20:01.23644+00 25509 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eyDmgzNCgCYlpXRkHyO2kFq0464=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.23802+00 2025-12-17 07:20:01.238025+00 25510 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RbolFd7rlkljt14OSo4iwLguU2s=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.239578+00 2025-12-17 07:20:01.239583+00 25511 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zyHFIZ_zwyb2H3HwmnnVyPj3tns=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.241122+00 2025-12-17 07:20:01.241127+00 25512 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y_qi3IwXKOGcqbo6uErLIRbWt8I=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.242674+00 2025-12-17 07:20:01.242678+00 25513 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UbNtngZ6qLOD1hrYNRFhKzXo7Ak=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.244207+00 2025-12-17 07:20:01.244211+00 25514 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ney3VeUXIsDgYv8a1nYJndXaDeQ=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.245728+00 2025-12-17 07:20:01.245733+00 25515 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SAlvYSX-lFAxpCaK9RPsL_p3pbM=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.247283+00 2025-12-17 07:20:01.247286+00 25516 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ZUKEJyWSt7QIP9574rs9STLBvM=", "createTime": "2024-08-15 14:42:27"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.248945+00 2025-12-17 07:20:01.248949+00 25517 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:31xt5qasFeAONSNN9PtONEvHoVw=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.250175+00 2025-12-17 07:20:01.25018+00 25518 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U2-Gso5RVXsRr-uMCgr1q_ZsHDI=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.251429+00 2025-12-17 07:20:01.251433+00 25519 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x0vRpy1k-b94NuREEPVB_J971uM=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.252679+00 2025-12-17 07:20:01.252683+00 25520 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mp4X3WmpS5gYnCTFgRA-iE1JxBY=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.254004+00 2025-12-17 07:20:01.254009+00 25521 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:idi2-HPsLrsHlVLywPX5iaqsbAU=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.255425+00 2025-12-17 07:20:01.255429+00 25522 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PVELRallt4Zex-mxp9WgNVoS5fE=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.256722+00 2025-12-17 07:20:01.256726+00 25523 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nYlF37eQcd2doGbCqT1zdcZ25Bc=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.257979+00 2025-12-17 07:20:01.257984+00 25524 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9uy_wesLMr6vW_eAFbCWnGjjd6A=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.25924+00 2025-12-17 07:20:01.259244+00 25525 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YAbnrhD6dHffpzhyLot3B9bZxCM=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.260499+00 2025-12-17 07:20:01.260503+00 25526 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:usE_r6O9znnRUMKxWzlDtrpTHis=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.261754+00 2025-12-17 07:20:01.261759+00 25527 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0DLUtsi-yKi1B-YY1HMw1UtXvKs=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.263013+00 2025-12-17 07:20:01.263018+00 25528 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HzRdsQnJ4iRSwmEdQyG7P_D6tgU=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.264257+00 2025-12-17 07:20:01.264261+00 25529 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:njxNldxRSnbVyqRQdqp1s2bHjIU=", "createTime": "2024-08-15 14:42:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.26551+00 2025-12-17 07:20:01.265514+00 25530 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VK3xa89_DUa75JCeBc03ODbj6r0=", "createTime": "2024-08-15 14:42:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.266754+00 2025-12-17 07:20:01.266758+00 25531 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oA5SUsnOUnQklvtvYFK85FmWIN4=", "createTime": "2024-08-15 14:42:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.267986+00 2025-12-17 07:20:01.26799+00 25532 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GzgQ9uJZkZbUO6jc2ilEDC8voUI=", "createTime": "2024-08-15 14:42:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.269219+00 2025-12-17 07:20:01.269223+00 25533 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gUUIuxWhTF4tBnxAcWmCdyCJSiY=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.270475+00 2025-12-17 07:20:01.27048+00 25534 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jYMhkn__EpQADg0XWblSRZD6PbY=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.271752+00 2025-12-17 07:20:01.271756+00 25535 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZLAtsrXrsjkKLSSehUscFw9YXHc=", "createTime": "2024-08-15 14:42:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.273005+00 2025-12-17 07:20:01.273009+00 25536 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0HgmGLByGSNIdTuIenNt87oc6J0=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.27426+00 2025-12-17 07:20:01.274264+00 25537 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QBzE4Sw9ZDnE7IfM7pBkjwod4ws=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.275496+00 2025-12-17 07:20:01.2755+00 25538 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ax_r_VcsuQOgvFAFgNXjpuTQ-_0=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.276729+00 2025-12-17 07:20:01.276734+00 25539 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bPRMaStc96j4qSJugFzo-P06mAU=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.277953+00 2025-12-17 07:20:01.277957+00 25540 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:taSw9ogb1Nlz5jcBXh4MmG9XgMA=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.279274+00 2025-12-17 07:20:01.279279+00 25541 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:imudCwtmojH1shINZSDtmJPTTZA=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.280526+00 2025-12-17 07:20:01.280531+00 25542 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jhl6Q1LtBCWo1w7zo8T5DH-oSv0=", "createTime": "2024-08-15 14:42:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.281763+00 2025-12-17 07:20:01.281767+00 25543 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DeAbPc9JMMrCVdO5WTD3PBX_nSs=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.283067+00 2025-12-17 07:20:01.283072+00 25544 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tkjxIJQFnIaraYieUE9PJgPuuBk=", "createTime": "2024-08-15 14:42:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.284447+00 2025-12-17 07:20:01.284452+00 25545 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BNx5sRKzS7ZEqpOpwFZrvfmk1vY=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.285702+00 2025-12-17 07:20:01.285706+00 25546 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vqHKZ1lPDm1ozF7j5LxezZx-a5Y=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.286979+00 2025-12-17 07:20:01.286984+00 25547 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qpdtc_IUBWWb-RbSG2ADHClL8KQ=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.288284+00 2025-12-17 07:20:01.288288+00 25548 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:agDsNMGQCbba9rMWpom2pjpyBFA=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.289536+00 2025-12-17 07:20:01.28954+00 25549 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uMBsR43Sy3Xn2P4awi6afCW4n6Q=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.290772+00 2025-12-17 07:20:01.290777+00 25550 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E_3PCHGbUEBMbhsDHAW5vevPP28=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.292046+00 2025-12-17 07:20:01.292051+00 25551 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XCoqfg_8G4z5pJkLviKBHnpyNVM=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.293421+00 2025-12-17 07:20:01.293427+00 25552 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tBmlz1MldHl-2_VLXXnlk13v6JM=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.294763+00 2025-12-17 07:20:01.294767+00 25553 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lKe5hkN4mmsFQTOOwqX1tJoNWTI=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.296138+00 2025-12-17 07:20:01.296148+00 25554 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDejtXOJrXntHaCfNmghPmXdUrU=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.297718+00 2025-12-17 07:20:01.297724+00 25555 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ghorFV3uR-bCFQ_SUsrFLRLBAxA=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.29942+00 2025-12-17 07:20:01.299425+00 25556 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_6c9Gksso-8yjZt-Ndb9Oo8-2yw=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.300887+00 2025-12-17 07:20:01.300892+00 25557 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iCOhPo8Ca6x372ZxWCvanbrdyb4=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.302338+00 2025-12-17 07:20:01.302343+00 25558 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TQsLDwRkDhooZZlMlvHWo9jgS0w=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.303845+00 2025-12-17 07:20:01.30385+00 25559 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L4E9oIPTOTasILhBEBruuE4gjy0=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.305333+00 2025-12-17 07:20:01.305338+00 25560 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pQNG7fW-4qSVLpPyzK0JkFZbRV4=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.306801+00 2025-12-17 07:20:01.306806+00 25561 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xr0uh-oUiUXKDYc3ipoVC_2tuqE=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.308289+00 2025-12-17 07:20:01.308295+00 25562 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MxjJvEbWvtL6OUc-jxtv-7ixsJ0=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.309793+00 2025-12-17 07:20:01.309798+00 25563 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fsEi1epJyM8X5w1TPtweGj2X1a0=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.311492+00 2025-12-17 07:20:01.311497+00 25564 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oZrhNCBpqRNll5ZNPG7-oi4NGg4=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.312934+00 2025-12-17 07:20:01.312939+00 25565 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:18KapfesgrdgEBGd3ra9bQ3m6jg=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.314372+00 2025-12-17 07:20:01.314377+00 25566 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t4KLcR8veZToaXwAR_5OlLXTX_U=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.315889+00 2025-12-17 07:20:01.315894+00 25567 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y5x5FtXmnmKE7JBx9aEPdhSiWWM=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.317363+00 2025-12-17 07:20:01.317368+00 25568 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IAorW8wWUKP3yKcbbtxjK1QtVrA=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.318832+00 2025-12-17 07:20:01.318837+00 25569 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BzSM3x-_6YaEhQ6UbrnbQLlEV3c=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.320556+00 2025-12-17 07:20:01.320561+00 25570 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ijo5cRbSIYXd73HHov85rnZIKKo=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.322028+00 2025-12-17 07:20:01.322033+00 25571 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wadvy5UDEpf4XbABpOa9yRzNJjw=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.323466+00 2025-12-17 07:20:01.323471+00 25572 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ggdVXGDQI7-opTVsHOvZ0ovEiQ=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.32492+00 2025-12-17 07:20:01.324925+00 25573 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-w51c8FD9oZKR0eaZp7m_6KMHQU=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.326361+00 2025-12-17 07:20:01.326366+00 25574 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GQdPgEWLaIWn0JA4n7455TZa0XU=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.327825+00 2025-12-17 07:20:01.32783+00 25575 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oY-2tNVS7CCqGgk3cVwT5V2XJ68=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.329277+00 2025-12-17 07:20:01.329282+00 25576 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gyqDP_vtTBoWTAkjXMKFrYqn8qc=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.330734+00 2025-12-17 07:20:01.330739+00 25577 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MOaZmp8oSQv4wCbOMuN2hSYcdNY=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.332177+00 2025-12-17 07:20:01.332182+00 25578 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dfk5c7nQjbhvzNxoMPL3QC61cqY=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.333654+00 2025-12-17 07:20:01.333659+00 25579 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ajJuGxqXiIJdyG4EM36x8sJipoU=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.3351+00 2025-12-17 07:20:01.335105+00 25580 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5zys6jXOrbhm8p8d3n0G77eSnTQ=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.336542+00 2025-12-17 07:20:01.336547+00 25581 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J1fbCyU0LleNz0g2Sx5e6Iltdx4=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.338009+00 2025-12-17 07:20:01.338014+00 25582 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-fyMnNrYHR6PehQ55LJobFn6-5o=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.339475+00 2025-12-17 07:20:01.339479+00 25583 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SfKQlIp5WZNashRDlg30i7SpeJQ=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.340978+00 2025-12-17 07:20:01.340983+00 25584 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hF5DWAcP6Jx67nf_OvXpk-Totvo=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.342314+00 2025-12-17 07:20:01.342318+00 25585 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YCNbI4oJ5bSRUvRR9-QYqFVlPDM=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.343587+00 2025-12-17 07:20:01.343591+00 25586 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Otr4fQCTj8NZUq8jeQmezhDx2tA=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.344868+00 2025-12-17 07:20:01.344872+00 25587 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f6QcK9Yg_XrG-mz-ACDwSkxmN0Y=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.346122+00 2025-12-17 07:20:01.346126+00 25588 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:liTchwkw0-gWiZfWH3LKIY9L7kA=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N +2025-12-17 07:20:01.347386+00 2025-12-17 07:20:01.34739+00 25589 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=1766042400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nreg03k4eaQKDmG5FEhNpD1rs_0=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.364263+00 2025-12-17 07:30:00.364272+00 25590 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:chRrBoCSlbx7DsLhTbC0yjR3Wx0=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.366703+00 2025-12-17 07:30:00.366709+00 25591 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xv9rKcZlcR31QqhmkKtdtw_A8ow=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.368424+00 2025-12-17 07:30:00.368429+00 25592 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UoKZ72xN-ZutM-Fla-qToYs7spo=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.369988+00 2025-12-17 07:30:00.369992+00 25593 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-tb7wBi1UYx4TmOp188LseJxQBE=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.37135+00 2025-12-17 07:30:00.371354+00 25594 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jlz-dLt_Wnex9Ya8Xo6NhQmO20w=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.372708+00 2025-12-17 07:30:00.372712+00 25595 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KVZ_1rs4GJBEuoyQEth0M1YZC28=", "createTime": "2024-08-15 14:42:36"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.374025+00 2025-12-17 07:30:00.374029+00 25596 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e8tkVg44u65p7RZ0qwHqAVne9WU=", "createTime": "2024-08-15 14:42:36"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.375305+00 2025-12-17 07:30:00.375309+00 25597 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h9LF-U9xTe05Nqb_8Wnru4BWGiE=", "createTime": "2024-08-15 14:42:36"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.376593+00 2025-12-17 07:30:00.376598+00 25598 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YXz84JjVnmTJQJbDF5brp-X1anQ=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.378098+00 2025-12-17 07:30:00.378103+00 25599 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xc_NWdLMFOedjjc_n6dvtnD0dVA=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.379391+00 2025-12-17 07:30:00.379399+00 25600 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TwDnv8mxUN3dbytaVwv0ZhFsrOo=", "createTime": "2024-08-15 14:42:36"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.380687+00 2025-12-17 07:30:00.380691+00 25601 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ogg73HviKTcpGvRd4snrd8N9TBc=", "createTime": "2024-08-15 14:42:36"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.382018+00 2025-12-17 07:30:00.382022+00 25602 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DlJjqekptl1aLxcuvJmzANVGakM=", "createTime": "2024-08-15 14:42:36"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.383317+00 2025-12-17 07:30:00.383321+00 25603 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:83ntnCLL7_o396DncZfGkkE8fPw=", "createTime": "2024-08-15 14:42:36"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.384744+00 2025-12-17 07:30:00.384749+00 25604 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xnDdkGo0_Sp7swURAD8W8CGWq-U=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.38618+00 2025-12-17 07:30:00.386185+00 25605 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qal-kAb5nHu_-Fc7leeh_6D8nwQ=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.387671+00 2025-12-17 07:30:00.387675+00 25606 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VgsUOpZWoWYzOvTb9xdoir5Kmns=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.389142+00 2025-12-17 07:30:00.389147+00 25607 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Of-g3KhsbphboTU1_--bPGe4pqk=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.390615+00 2025-12-17 07:30:00.39062+00 25608 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bv09QzxpVN7t6o3zQnnQKXwvd_Q=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.392107+00 2025-12-17 07:30:00.392112+00 25609 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CvjMJWhfk4ylzKKusaAK8SDPZeQ=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.393574+00 2025-12-17 07:30:00.393578+00 25610 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6neoPPqy1uVoA1_1nK83w12Ac1w=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.395031+00 2025-12-17 07:30:00.395037+00 25611 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2FULiMCFYr6epI7iG_yXMe_TBHE=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.396504+00 2025-12-17 07:30:00.396509+00 25612 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x2uYiw2qutRr5h7DsS5zM7hk020=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.39796+00 2025-12-17 07:30:00.397965+00 25613 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gHH7s-k4wBPNnlCrhIVrrVLaOQ0=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.399409+00 2025-12-17 07:30:00.399414+00 25614 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:quAXNqQ6xG14PaRzBzQbaEe6esA=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.400886+00 2025-12-17 07:30:00.400891+00 25615 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KvtmViTNVmUaXJjSa7XWI6rQFvg=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.402356+00 2025-12-17 07:30:00.402361+00 25616 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4q2yOa5kz8o7z03-4wZIlv3fkKo=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.403808+00 2025-12-17 07:30:00.403813+00 25617 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4xiLFP7aIg9Bk3d3kmTzfFAYDTE=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.405268+00 2025-12-17 07:30:00.405273+00 25618 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t3L_uY5ilPrMpPT8Ve3zR-pzShY=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.406721+00 2025-12-17 07:30:00.406726+00 25619 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-tt8atEbOEdxG97F4LJpa2FLJAA=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.408205+00 2025-12-17 07:30:00.40821+00 25620 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UAu2pon2e79rc4bkRkpQK1C1wts=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.409681+00 2025-12-17 07:30:00.409686+00 25621 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:80grpNivQPtQXdoNL6Uu8GN54jw=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.411135+00 2025-12-17 07:30:00.41114+00 25622 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H3gK7bMhja7E_5t3ZeM_tIfkuhQ=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.412601+00 2025-12-17 07:30:00.412606+00 25623 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M3C0YVgzh-j_1fXcpXBaEMMbafA=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.414168+00 2025-12-17 07:30:00.414173+00 25624 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wNvPesXe1rhXbfVJJbsxKGF5Td4=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.415613+00 2025-12-17 07:30:00.415618+00 25625 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VHPVyPvGB_-vjN9mHtwW8qgJz7I=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.417023+00 2025-12-17 07:30:00.417028+00 25626 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vS3WXPYPEo_3FWOeuV_8LdIMBu8=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.418331+00 2025-12-17 07:30:00.418335+00 25627 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dlg9JaFbD7LXfaZHXTrtmS2V1pc=", "createTime": "2024-08-15 14:42:39"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.419623+00 2025-12-17 07:30:00.419628+00 25628 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u1Og92slOmSu7AczJiis-Zmk5OQ=", "createTime": "2024-08-15 14:42:39"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.42097+00 2025-12-17 07:30:00.420975+00 25629 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FwzDHHiBc_t5aUEzczSSpNei19U=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.422448+00 2025-12-17 07:30:00.422452+00 25630 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4navjB6XIIB0xAv_scItWSEGabQ=", "createTime": "2024-08-15 14:42:39"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.423849+00 2025-12-17 07:30:00.423854+00 25631 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NLl0-bx38X9R2BivPbbruc3eUkQ=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.425163+00 2025-12-17 07:30:00.425168+00 25632 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eyI4aVL2PIgeTwpBuTegwmZF2yo=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.426444+00 2025-12-17 07:30:00.426448+00 25633 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1IaOgzO0GLiTugLKFh5YbZ8X9M4=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.42772+00 2025-12-17 07:30:00.427724+00 25634 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aK6xoP80fy6-NpvaD34_J-vMoB0=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.428997+00 2025-12-17 07:30:00.429001+00 25635 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W8W28F22QClqHSvUKvV7JC3jS2o=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.430361+00 2025-12-17 07:30:00.430366+00 25636 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yUmV4Cnl5yEyarPyTm__b26wKUo=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.431656+00 2025-12-17 07:30:00.43166+00 25637 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7kTkhgbbIAd3jarn4F4KYiC9zpA=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.432928+00 2025-12-17 07:30:00.432933+00 25638 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Aczt2QjU2h3P6osS3M3wZKQdG-k=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.4342+00 2025-12-17 07:30:00.434205+00 25639 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-O3rvmKqhkwXruCNlsdJTSyCENg=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.43549+00 2025-12-17 07:30:00.435494+00 25640 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0mWEhSkD8EHnQq7OQHrgFGKJ0qA=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.436767+00 2025-12-17 07:30:00.436771+00 25641 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:psH9gS_Giv62_uR5AA_56KvuKc0=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.438031+00 2025-12-17 07:30:00.438035+00 25642 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zoHsRgJtpyQzpVm7ayFIrRyqz7c=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.439291+00 2025-12-17 07:30:00.439295+00 25643 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rXpUwYAkbxJIjNmWNlNqjBkugHc=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.440655+00 2025-12-17 07:30:00.44066+00 25644 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2LQvhs0sMcPt5eLJv4qH-QDYY9E=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.441973+00 2025-12-17 07:30:00.441977+00 25645 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ocYCxBuVIL5Zw5o-TS_FTl6RXbQ=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.443269+00 2025-12-17 07:30:00.443274+00 25646 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_4-fJznqfkrnSzGGG2faRg1i3Rw=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.444609+00 2025-12-17 07:30:00.444613+00 25647 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4xQZiuDL-cVCrRngpuIj14gUOyU=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.445999+00 2025-12-17 07:30:00.446003+00 25648 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t6Xi4GGdT-QbFhgIxVeVvqh4EoQ=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.44728+00 2025-12-17 07:30:00.447285+00 25649 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9td63QqyVpfymNnvngusx-ZbpJo=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.448571+00 2025-12-17 07:30:00.448575+00 25650 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9dqdPH0NcmvYjT8rlo19hQntVkU=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.449878+00 2025-12-17 07:30:00.449882+00 25651 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aSfVcOe8Kcv2tdh1VtpgEbnyn9s=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.45119+00 2025-12-17 07:30:00.451195+00 25652 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nk7eSphDsPZdnjv_AXwK4eSLBYc=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.452548+00 2025-12-17 07:30:00.452554+00 25653 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ux2fkjNVKligeyJOggM20thGbWg=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.453947+00 2025-12-17 07:30:00.453952+00 25654 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4EvF-akzDB9tqUwidCSkesM4XG4=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.455239+00 2025-12-17 07:30:00.455243+00 25655 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wO00dV1MWSSgOtW5Qk8ydQwx-3E=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.456523+00 2025-12-17 07:30:00.456527+00 25656 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rkZp-roDzLA1vf5Jrz3jyRKkBaA=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.458089+00 2025-12-17 07:30:00.458094+00 25657 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H8Ah5GloXwEPpU8lrBf1yBGdsUI=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.459397+00 2025-12-17 07:30:00.459401+00 25658 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-dKOGNY41qkTb2gWSWcZCI0fUbo=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.46076+00 2025-12-17 07:30:00.460765+00 25659 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qIeYjxCIcCa7XGDQLBgui4xeFYk=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.462205+00 2025-12-17 07:30:00.462209+00 25660 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fj3_xYCltBp6GOwHGQb_zQ8xFh4=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.463607+00 2025-12-17 07:30:00.463612+00 25661 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ej7xoNQQLkWRjnCPwQFqWz6uyI=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.464913+00 2025-12-17 07:30:00.464917+00 25662 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v1mhf4K7DbBoOkMoOdAdHsZ6TT8=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.466194+00 2025-12-17 07:30:00.466199+00 25663 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-os91_miMHK_YLWYGY4FkHkWHRI=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.467464+00 2025-12-17 07:30:00.467468+00 25664 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xKAm1M4b2uYMNI77EEVL8_ObuUE=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.468739+00 2025-12-17 07:30:00.468743+00 25665 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0YzH2vQ5q_0BJMJvUcGVPFtUcWw=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.470009+00 2025-12-17 07:30:00.470013+00 25666 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WETblc0WUC4ix5H8nI-jZT58UBQ=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.471279+00 2025-12-17 07:30:00.471284+00 25667 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jniDYhgwQjIZKzPEiqlH_rb-S-A=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.472572+00 2025-12-17 07:30:00.472576+00 25668 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3NiffXwRZKcNwk92GbuPfkUyf9Q=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.473852+00 2025-12-17 07:30:00.473857+00 25669 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gkt8iiNrZSyCCgHD4n7m0qTfj08=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.475371+00 2025-12-17 07:30:00.475378+00 25670 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aBBej4Vt27vzZKnXvQEHNnn25g0=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.476877+00 2025-12-17 07:30:00.476882+00 25671 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QIBtUz-wnBJPhgjoUxEsmwzgkmM=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.478177+00 2025-12-17 07:30:00.478182+00 25672 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HoVR-9hECM3n2IUzcQpUz05NLrc=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.47954+00 2025-12-17 07:30:00.479546+00 25673 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fZ-kWTy2uHIXoy6Ojpk5uAtl9Hc=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.480865+00 2025-12-17 07:30:00.480869+00 25674 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VKhA8wksgeHZn8tk9N_UNjWylDU=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.482156+00 2025-12-17 07:30:00.48216+00 25675 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gJJF2VzmA9ZebxTREA8u1t9mnL8=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.483434+00 2025-12-17 07:30:00.483439+00 25676 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N2ei5gFgtzQk94p8ODbHnkwUie8=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.484703+00 2025-12-17 07:30:00.484707+00 25677 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_qAtJ88yQqNglcA9ZlDkmuURCi8=", "createTime": "2024-08-15 14:42:45"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.486+00 2025-12-17 07:30:00.486005+00 25678 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lHDxbKUuA-lXlLc6ZytzpLLJcxQ=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.48726+00 2025-12-17 07:30:00.487264+00 25679 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Ft9rGO7KHu7uNZMz3LCh8UiHMY=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.488556+00 2025-12-17 07:30:00.488561+00 25680 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Pp-us8mE8MpmllYDq9Q3-kjsmw=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.48983+00 2025-12-17 07:30:00.489835+00 25681 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XGQ826TYHVB19uOvnIk2H7mdjMM=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.491179+00 2025-12-17 07:30:00.491183+00 25682 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H913YZpwhtCdMuFxPNj-h5F6_0I=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.492494+00 2025-12-17 07:30:00.492499+00 25683 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rf1TXWxLleb4NMDrjss2EnF7VNk=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.493806+00 2025-12-17 07:30:00.493811+00 25684 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:evQTIggJVuiP40tD4LvCyOS4eeM=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.495091+00 2025-12-17 07:30:00.495095+00 25685 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TY2M64tDr3sxPdjNRFXST7hW9Fg=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.496366+00 2025-12-17 07:30:00.49637+00 25686 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cy3GiWzxOq21mAOj-UF7CgyvxfM=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.497634+00 2025-12-17 07:30:00.497639+00 25687 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NXAS_m87DqaOXFO-xZrGnJpLDMQ=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.498943+00 2025-12-17 07:30:00.498947+00 25688 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=1766042999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jlOCp3kjpYFUa8GHHTcJvTXKSEU=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.868424+00 2025-12-17 07:30:00.868436+00 25689 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VSqmPeajCGEX-JDj5LbtYKSZtv8=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.870298+00 2025-12-17 07:30:00.870304+00 25690 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DXSN4THQBhj81yHEjzUMmgyxtM4=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.871892+00 2025-12-17 07:30:00.871896+00 25691 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UpQUafbGQc63coVTOC2uQj7H37w=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.873474+00 2025-12-17 07:30:00.873479+00 25692 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b23-G4VS0p2A0zXl0HsB0cHEZ9Y=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.87503+00 2025-12-17 07:30:00.875035+00 25693 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ebJjdamyrpihXvxCzwCjELjJvzY=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.876534+00 2025-12-17 07:30:00.876539+00 25694 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ooJQM-ceNEc39KWvFqDc0oq0Y1c=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.878344+00 2025-12-17 07:30:00.878349+00 25695 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q15GN0-PGa1mRmO7IswQThVp4Qw=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.879765+00 2025-12-17 07:30:00.87977+00 25696 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PJkvXgDuPIVLN9WPFmY4Zjhfax0=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.881124+00 2025-12-17 07:30:00.88113+00 25697 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AMA1z40tSsb5ctzK5-hKJPt-loE=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.882658+00 2025-12-17 07:30:00.882665+00 25698 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V7FGPD3JAyUaDZPRnV8Gg6VBpiU=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.884172+00 2025-12-17 07:30:00.884178+00 25699 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v_r0cHRZn-TMe_Gt1gH0xmI8j3o=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.885707+00 2025-12-17 07:30:00.885713+00 25700 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RZGMWFRFbs00b9pboRwlbKrkbYg=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.887114+00 2025-12-17 07:30:00.887119+00 25701 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7vXvi9JHZL2Ht6A58bqL2MsZP3g=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.888624+00 2025-12-17 07:30:00.888628+00 25702 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UXImv6IPdALn4YzLhE6DiR252LE=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.889909+00 2025-12-17 07:30:00.889914+00 25703 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U3OryXltKBpUrrmYcYNhStHg8zg=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.891236+00 2025-12-17 07:30:00.89124+00 25704 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d_vJbnEQNL0GtjWPAq_8inMiyks=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.89261+00 2025-12-17 07:30:00.892615+00 25705 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WzrgMEriavR9R86cKXJ0MB6vkok=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.893895+00 2025-12-17 07:30:00.8939+00 25706 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_o8Q2dx9Z83U7VQqO7iXBR9KWKM=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.895167+00 2025-12-17 07:30:00.895171+00 25707 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kB343D3bvxTViZ49Nm9oHkXky3w=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.896459+00 2025-12-17 07:30:00.896463+00 25708 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vwQo2Q-Bz4WjWPbSQf1rL8TpqHs=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.897755+00 2025-12-17 07:30:00.89776+00 25709 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0no8ky5WoaRnWAE2PxcxmH3vtTs=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.899023+00 2025-12-17 07:30:00.899029+00 25710 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UrHdZyaY7hZh5hwrkLOTLyMG1jI=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.900365+00 2025-12-17 07:30:00.900369+00 25711 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J1-2r5ZqeO9WJ7H22gqyQ6TOhIM=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.902221+00 2025-12-17 07:30:00.902226+00 25712 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i31q2nqRVk7eZRRclGeJMqyMrbQ=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.903546+00 2025-12-17 07:30:00.90355+00 25713 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p_YeoSBIjjn7hXCObBk7eSk6heQ=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.904907+00 2025-12-17 07:30:00.904912+00 25714 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AbY1F_0VJeUaESpCga-bm4jf0PU=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.906292+00 2025-12-17 07:30:00.906296+00 25715 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f1KhhRRvlRzyerobcQbRGvfR4bc=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.90763+00 2025-12-17 07:30:00.907635+00 25716 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RR-G7XP6dPXgKjs9i0tIHNLo0SQ=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.908929+00 2025-12-17 07:30:00.908934+00 25717 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yohMtZemwRRHBMMO3mUCwEQOOIU=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.910235+00 2025-12-17 07:30:00.910239+00 25718 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eliq426uaeiRIY9fTyEBc-jzvV8=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.911498+00 2025-12-17 07:30:00.911503+00 25719 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5sb2DGLvAjac6bOz9q9ZZ4EqiNA=", "createTime": "2024-08-15 14:42:49"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.912782+00 2025-12-17 07:30:00.912787+00 25720 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cmg7AElPAGi_HVrz23ngatdbYdU=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.914063+00 2025-12-17 07:30:00.914067+00 25721 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_2tDQkQew0eCqebSTbiAMIHQdl8=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.915352+00 2025-12-17 07:30:00.915357+00 25722 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JTVNGF7NXwa1hvP3xeb1KkyiUXU=", "createTime": "2024-08-15 14:42:50"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.922384+00 2025-12-17 07:30:00.922389+00 25727 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I-DY7T7K3w3eLdC95ImHrMmpV0Q=", "createTime": "2024-08-15 14:42:50"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.916718+00 2025-12-17 07:30:00.916723+00 25723 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i8yixtEo19DCoY3LpEB61-2tRh0=", "createTime": "2024-08-15 14:42:50"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.918094+00 2025-12-17 07:30:00.918099+00 25724 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ex2l7n1EbGfK8QygEPL-7tjIJw=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.919574+00 2025-12-17 07:30:00.919579+00 25725 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5dU21D5pWX10RrC64N7LJGizg4U=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.920946+00 2025-12-17 07:30:00.920951+00 25726 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4fDftl7VhsmUbv4zCIpJ-jEZCcM=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.923733+00 2025-12-17 07:30:00.923737+00 25728 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iy48CC82WSDWRD15dNyHn4mgIuE=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.925081+00 2025-12-17 07:30:00.925087+00 25729 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yc8bSYzJqX1f38qFDylQLNzBg7Q=", "createTime": "2024-08-15 14:42:50"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.926393+00 2025-12-17 07:30:00.926397+00 25730 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zRAxy6rUNyqR3h1jX0jm_rlF3gk=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.927682+00 2025-12-17 07:30:00.927686+00 25731 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2AV3_3eAr_URBLM9FlM63aSTDAA=", "createTime": "2024-08-15 14:42:50"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.928958+00 2025-12-17 07:30:00.928963+00 25732 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dPC6-ZEdU67HMIooceKozyBJPj8=", "createTime": "2024-08-15 14:42:50"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.930499+00 2025-12-17 07:30:00.930505+00 25733 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XkEPKEy6Hl9F5GeLUWXZzaNErpY=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.931945+00 2025-12-17 07:30:00.93195+00 25734 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jRrrO9y2HdOvTI2s8Pja9DveRUQ=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.933386+00 2025-12-17 07:30:00.93339+00 25735 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fuTdPKnrdmJn5rPW_TFhRwmDFCA=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.934769+00 2025-12-17 07:30:00.934773+00 25736 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9wT4d1BpD4L_A-ju2MbkEqAH_Zo=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.936166+00 2025-12-17 07:30:00.93617+00 25737 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y1JHaiyEcyc5H3378MLGtwmFWwM=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.937499+00 2025-12-17 07:30:00.937504+00 25738 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rxggiRP0QIv4LRGTgoWpT-5YwEU=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.938815+00 2025-12-17 07:30:00.93882+00 25739 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rhSmthoZI3xPOB-CsEmbfkKMCOQ=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.940115+00 2025-12-17 07:30:00.940119+00 25740 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IPJ0qAMNHCMxbOqSzIqtvUcsPpc=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.94142+00 2025-12-17 07:30:00.941425+00 25741 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jw98-eSWa8iJWGA7T72lp7X2UHE=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.942776+00 2025-12-17 07:30:00.942781+00 25742 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j86htH0jfl3RaQaDEkgr0s_-aoo=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.944058+00 2025-12-17 07:30:00.944062+00 25743 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0eezDT4lLkWokOdD2XqUAQ0DF2E=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.945329+00 2025-12-17 07:30:00.945333+00 25744 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T0DdZbhI7igF6Fw0tEBFwXAWkl4=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.946604+00 2025-12-17 07:30:00.946608+00 25745 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gzUOT7-MWiQ3mq92-6UpyaDfMS8=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.947909+00 2025-12-17 07:30:00.947913+00 25746 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e6X1bP8zngMLorIxJoWDX9xi79A=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.949216+00 2025-12-17 07:30:00.94922+00 25747 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZO39l9CUSRR_7ay7w2cfzr55AkQ=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.950493+00 2025-12-17 07:30:00.950498+00 25748 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CEPkv6H2lg2JSr0xKbGxCfRkSjk=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.951843+00 2025-12-17 07:30:00.951848+00 25749 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PXKCH-d4Rfa7pSM6o3Xp5wqAVuY=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.953226+00 2025-12-17 07:30:00.95323+00 25750 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xhL3hJXt0pGOJ-Eb17wYCMHBLdk=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.954527+00 2025-12-17 07:30:00.954532+00 25751 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3N_Lmsh70tXB54uOGm3TFRShfZw=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.955808+00 2025-12-17 07:30:00.955813+00 25752 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6R9-BD_kFmsYjD0Qce6zU26fUT8=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.957104+00 2025-12-17 07:30:00.957108+00 25753 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FSHUBj_p03KKdUHnVRyg-OQlSmM=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.95858+00 2025-12-17 07:30:00.958585+00 25754 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ortr7JCHfXCO3APMQW4QHQ8fA48=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.960042+00 2025-12-17 07:30:00.960047+00 25755 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mflBHL2rEnd8Dhx1fX2zG0qoD50=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.961348+00 2025-12-17 07:30:00.961352+00 25756 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R0djnM_bpooX05Zp7hB6aLlI6so=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.962754+00 2025-12-17 07:30:00.962759+00 25757 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s1NYfsN775pbvJonRG9ui5B-1dE=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.964437+00 2025-12-17 07:30:00.964443+00 25758 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f8wQwgiWULyCdbnxl7gLngq1fSw=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.965902+00 2025-12-17 07:30:00.965907+00 25759 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KaQM4gQX4xymlv7n3cdKbe1tATA=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.968535+00 2025-12-17 07:30:00.96854+00 25761 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BWSnLskPt7PYTGQBT-7CNLDYl3Y=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.969875+00 2025-12-17 07:30:00.96988+00 25762 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JrTAPs2MFwYZau082o1zYaITe-I=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.972466+00 2025-12-17 07:30:00.972471+00 25764 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:URM4ds1RXA3Lx-vi2mVJ3uJ5DUo=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.973767+00 2025-12-17 07:30:00.973772+00 25765 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wxInT1SR5D6jqhj6-0lDXmD2tgw=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.975086+00 2025-12-17 07:30:00.975091+00 25766 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kZOe26rL5GGman1ALkD79yxwUII=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.967228+00 2025-12-17 07:30:00.967232+00 25760 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aBGCBINRjgoUcmIEklPC2B08kJY=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.971159+00 2025-12-17 07:30:00.971163+00 25763 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Jc6xqE3WWaE9tRLunhbanKyYFI=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.979649+00 2025-12-17 07:30:00.979654+00 25767 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4sHBN-MtOlwSyh2ekWOozpLlvsI=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.980947+00 2025-12-17 07:30:00.980951+00 25768 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-AhE9RFYE3zRkoCcl5tpA0bDeLs=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.982261+00 2025-12-17 07:30:00.982265+00 25769 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L7hCyZorVuG3PWXIVJwHTvH1ows=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.983514+00 2025-12-17 07:30:00.983518+00 25770 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nWfzMEJoNc1A3Sl6nqmMYZRWSGM=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.984817+00 2025-12-17 07:30:00.984821+00 25771 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aenDWwUmdX82m-9nQd-EIQHuEGY=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.98608+00 2025-12-17 07:30:00.986085+00 25772 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pHrKpP15DE6kk0jG88lzYrLYRdE=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.987354+00 2025-12-17 07:30:00.987358+00 25773 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ggQ58bVuVgTaeFl3eE275Q8Fe8=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.988638+00 2025-12-17 07:30:00.988643+00 25774 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zLnbERW31PFT_kkOAQ45dH-l-3Y=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.989915+00 2025-12-17 07:30:00.989919+00 25775 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:18ztyq3Enfws0muKOb556zvYt7E=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.991174+00 2025-12-17 07:30:00.991179+00 25776 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z7a1ZECnlbOpixXVOnNBZL-5S6s=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.992487+00 2025-12-17 07:30:00.992491+00 25777 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ngVii6K1djVF9SbPx6aljHTXkag=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.994418+00 2025-12-17 07:30:00.994422+00 25778 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CxomvQy_4RHieSHgjzwbBIuzCiw=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.995708+00 2025-12-17 07:30:00.995713+00 25779 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TRFG6-ght9HuR2pK7aR2u3LVZJg=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.996995+00 2025-12-17 07:30:00.996999+00 25780 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xcnOll4Rf0idKb2oglatzn5bohQ=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.998277+00 2025-12-17 07:30:00.998281+00 25781 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xjiyt_Ct43Hq50DypDDlagrJQps=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:00.999546+00 2025-12-17 07:30:00.99955+00 25782 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Aq9j722pQFxC4TRMu_6Hho_76kU=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:01.000835+00 2025-12-17 07:30:01.00084+00 25783 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hTKV9DRvU05AXgcTcc2N1zrEDpw=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:01.002096+00 2025-12-17 07:30:01.0021+00 25784 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_gTI5h5dmNCzBYdGGU2dvoKnby8=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:01.003348+00 2025-12-17 07:30:01.003352+00 25785 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HXOtxYNFk7lTsJ36T02IoN0gVTg=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:30:01.004735+00 2025-12-17 07:30:01.00474+00 25786 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=1766043000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e6mXune_c1yJA4R9wTPN1tqIJAo=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.365386+00 2025-12-17 07:40:00.365398+00 25787 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PqJiyEwfUxQhvuCuxA5q3Y4oYeI=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.368871+00 2025-12-17 07:40:00.368881+00 25788 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SasOF8UIEFODusDcIdNFSIKngRI=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.382504+00 2025-12-17 07:40:00.382508+00 25797 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kr4kPdCYlJ0NDf0suJARR4f45to=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.371395+00 2025-12-17 07:40:00.371403+00 25789 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TG7xxRbYi--N_0jx1zYvERI4kjc=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.373427+00 2025-12-17 07:40:00.373432+00 25790 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I3lk-5KUqbqDTQL9J3Muh7BN7Hs=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.374783+00 2025-12-17 07:40:00.374788+00 25791 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ykvWsmkqZxqmcJHTBdm74ZLl7A=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.37609+00 2025-12-17 07:40:00.376095+00 25792 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wJkh8E1V9lrzREPrkoxY4Ovi5nQ=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.377373+00 2025-12-17 07:40:00.377378+00 25793 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yRcn0hSend_7zU6U4nCMX3AmOHU=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.378677+00 2025-12-17 07:40:00.378681+00 25794 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k5pdXLswJ7EixHgp1OyP_LNkF5s=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.379957+00 2025-12-17 07:40:00.379961+00 25795 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LEciqNIoAvWWULr_-0WG1uMS47w=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.38123+00 2025-12-17 07:40:00.381234+00 25796 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oZdxan4BFx_IBGFt4dhCU2Yu8W8=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.383798+00 2025-12-17 07:40:00.383802+00 25798 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eAkOrAGkjRpBJKTsM1qYdEZoXiA=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.385058+00 2025-12-17 07:40:00.385062+00 25799 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GXTBPq2TEEvzvFtVZWneHbv6Gks=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.386517+00 2025-12-17 07:40:00.386521+00 25800 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wC_KmOh19v7sMRaoQW7rg1RZ4lU=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.387891+00 2025-12-17 07:40:00.387895+00 25801 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SzDSiS0090Dz37UUwxeuP3MiWvI=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.389212+00 2025-12-17 07:40:00.389217+00 25802 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zU6JhMwrXLrE2x171nC9Q4iz0sw=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.390719+00 2025-12-17 07:40:00.390725+00 25803 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Xmo_Jxd-yi4dsE1L6-vWuZRzjs=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.392043+00 2025-12-17 07:40:00.392047+00 25804 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nhxwFFGosLK5iDBqiUB7nojYpmY=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.393339+00 2025-12-17 07:40:00.393343+00 25805 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JrUgNRNfinpR-_uBU8nCSACOGv8=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.394655+00 2025-12-17 07:40:00.394659+00 25806 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JaZsMQ8mRERxt9Rjw-W1r1-uqDg=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.396123+00 2025-12-17 07:40:00.396127+00 25807 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0N_AGvRmxQrCj3ISTIsQN1b0Q44=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.397474+00 2025-12-17 07:40:00.397478+00 25808 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ylH4ytPIYoVWBBXXHtweenvgmr0=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.398775+00 2025-12-17 07:40:00.398779+00 25809 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KS-FqzAT3vtrQC58SBn47eNAe6M=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.40004+00 2025-12-17 07:40:00.400044+00 25810 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CqcZAcgsrrfBs6ic3jMjfCWcRjQ=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.401492+00 2025-12-17 07:40:00.401497+00 25811 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5vs5c4cGC6U6XZyfvCDjepwTIyE=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.402861+00 2025-12-17 07:40:00.402866+00 25812 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fjuGP_FKxTTa8Kuyz87sE_t78z4=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.404238+00 2025-12-17 07:40:00.404243+00 25813 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XV6-3_BkbsER7ifmMhNvKccqTco=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.405587+00 2025-12-17 07:40:00.405592+00 25814 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TKwBr-yJAPtMSMMKYII9zK-sHKs=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.406925+00 2025-12-17 07:40:00.406929+00 25815 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EYD1ogFxU0z_OmnG4wZZqHw5Cxk=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.408193+00 2025-12-17 07:40:00.408198+00 25816 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bF4txESuLv1edlzkyLyYc3wW858=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.409479+00 2025-12-17 07:40:00.409483+00 25817 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8JAc7MpCyuWcGcmFEgX778s17T0=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.410766+00 2025-12-17 07:40:00.41077+00 25818 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vZIAAFVgOwNxkRcKMQcn0cZLvsw=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.412058+00 2025-12-17 07:40:00.412063+00 25819 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xYUthvk5FAnzXlNlI6X3hh2cwZA=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.41333+00 2025-12-17 07:40:00.413334+00 25820 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:08Y9U1IwwZJjBHfozIZZvV-gmvA=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.414604+00 2025-12-17 07:40:00.414609+00 25821 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ODSBIvvuULZ4gEfx4QxcEnBQDb4=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.415887+00 2025-12-17 07:40:00.415892+00 25822 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JITX9U-ySa1yJS3LeBVZ4ly_uZ8=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.417192+00 2025-12-17 07:40:00.417196+00 25823 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D2HP5R0MKlBI8B32OlIge6DpmMM=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.418761+00 2025-12-17 07:40:00.418766+00 25824 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cc5r5hLHymuKqmbfWu6gasA5M8s=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.420335+00 2025-12-17 07:40:00.42034+00 25825 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:whLF2IPdCxUMYvw_YODy09NGdIQ=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.42199+00 2025-12-17 07:40:00.421995+00 25826 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ERpRcWfttA2S3-DbCc7ri0AcQjo=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.423606+00 2025-12-17 07:40:00.423611+00 25827 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9urOkG9MRlFCSPCF0d0Ek3bNkLM=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.425193+00 2025-12-17 07:40:00.425197+00 25828 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RZyHUAkoVbrguDmZJdhwhYw2-2A=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.426752+00 2025-12-17 07:40:00.426756+00 25829 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NsDa_XG5wxmsX-DIneFIkPTaYK8=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.428341+00 2025-12-17 07:40:00.428345+00 25830 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:juDZ40m6iNKtjMH5uU3YGvmVI6c=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.429935+00 2025-12-17 07:40:00.42994+00 25831 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A440vG59g3uwTjRrEZFoDpS6tOc=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.431209+00 2025-12-17 07:40:00.431213+00 25832 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pPonZChy3ryZrd0TYP_4lOfDw6Q=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.432548+00 2025-12-17 07:40:00.432552+00 25833 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QCZ2IBz3lsyO_ebbthmN2lOLDAc=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.433834+00 2025-12-17 07:40:00.433839+00 25834 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r416s8BA3F9_ksnitRXe23xkgRc=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.435128+00 2025-12-17 07:40:00.435132+00 25835 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rzr0vAf6Hhfoh2enV8suuGE7Wqk=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.436411+00 2025-12-17 07:40:00.436415+00 25836 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZUHltuygePmTWqQeKCP7oZwJ-jw=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.437709+00 2025-12-17 07:40:00.437715+00 25837 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jLwb9dE8HoutghzyWaJC2zuJH1E=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.439012+00 2025-12-17 07:40:00.439016+00 25838 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_w67oERZ-aQKWsHnkNiUkrDBcvo=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.440304+00 2025-12-17 07:40:00.440309+00 25839 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VB9NnFONbnGw36pakoIZNPIM2R0=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.441557+00 2025-12-17 07:40:00.441562+00 25840 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kOy5kxM7XSk-jLm7ruVINKXqDkk=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.442845+00 2025-12-17 07:40:00.442849+00 25841 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7fioCnH0BO8AjoHC0dzVUzSde4Y=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.444126+00 2025-12-17 07:40:00.444131+00 25842 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z1vCMIBOtSpOvZitmHyiGuGIzFA=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.44542+00 2025-12-17 07:40:00.445424+00 25843 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l6lHO79lovtk3vS84mEz53demP0=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.446735+00 2025-12-17 07:40:00.44674+00 25844 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YmHlKxHWd-WKp8cKd2vtXuIwIIM=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.448004+00 2025-12-17 07:40:00.448008+00 25845 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bftIwtCClEYbXV5g6lvtOCj987E=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.449283+00 2025-12-17 07:40:00.449287+00 25846 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zpbyvM_6bcHFFkinrK4iOzzCHHI=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.450552+00 2025-12-17 07:40:00.450556+00 25847 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aKgy3pMKee0TAm2Bimj3CWGC6Ts=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.451848+00 2025-12-17 07:40:00.451852+00 25848 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UHDjLZnPeKaSvgKufiInDqm72rI=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.453113+00 2025-12-17 07:40:00.453117+00 25849 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Lg7QZDJCJ7OHzIFKh4ZyM3_i44=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.454427+00 2025-12-17 07:40:00.454431+00 25850 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iJ5OfI1S3srVjagLf0vb-BFc-k0=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.455729+00 2025-12-17 07:40:00.455733+00 25851 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q53in_fZ6FZ-55XDIonvP2CQm9k=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.456994+00 2025-12-17 07:40:00.456998+00 25852 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HxZUTcS7owyHTYaKjQtgb4-MRG0=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.458416+00 2025-12-17 07:40:00.458421+00 25853 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nCLd0rrojAKkAoKm13d28bgNCgA=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.459789+00 2025-12-17 07:40:00.459793+00 25854 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zpY31ID2s1lTzXGFg1j9XEuq7DM=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.461387+00 2025-12-17 07:40:00.461392+00 25855 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Y8h9O5cXa2a8S6eGlXdsl816j8=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.462921+00 2025-12-17 07:40:00.462925+00 25856 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CzuXwkREz4zvDcBAzHpYkRcFVUQ=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.464724+00 2025-12-17 07:40:00.464728+00 25857 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LMdcYz3HMpcJGeU3BG4W8_fKCHc=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.466164+00 2025-12-17 07:40:00.466169+00 25858 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DO5FkB6A-X_S8lXJ9atKn78kuqQ=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.467673+00 2025-12-17 07:40:00.467678+00 25859 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6fAAzjxjsl13bun1mvrL_MY7GcI=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.469155+00 2025-12-17 07:40:00.46916+00 25860 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iHGSNtfYIvSkejUbNocCt42dBTY=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.470629+00 2025-12-17 07:40:00.470634+00 25861 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ubVSyO61vuWSPnwg_ujXtUBgeWo=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.472169+00 2025-12-17 07:40:00.472174+00 25862 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5rmAyWggwwBkGGN0Vuaf3ifS6Ao=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.473535+00 2025-12-17 07:40:00.473539+00 25863 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UoLe_nBiNzRYF5YM9NpWwotBGVw=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.474856+00 2025-12-17 07:40:00.47486+00 25864 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LTEhtI3wXxnU96pHN2CMAingVPw=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.476163+00 2025-12-17 07:40:00.476167+00 25865 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GVY-qwO0xT3Ucq3JdZx0KVMnEUA=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.477589+00 2025-12-17 07:40:00.477594+00 25866 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WSBEJY6Dxy5dVQT_k4o_fAfobho=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.479097+00 2025-12-17 07:40:00.479102+00 25867 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NEsnSzWme-U6buU5bnbWXbMDEvY=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.480572+00 2025-12-17 07:40:00.480577+00 25868 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gNf8Qs5gQDPuf7uJ79KpyAPSd8U=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.482041+00 2025-12-17 07:40:00.482046+00 25869 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vVlh2pfhfdoFF0fVIPfCoJ0-OaM=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.483505+00 2025-12-17 07:40:00.48351+00 25870 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fpJY1x_j-rZVm6c7LquF8q2zCR0=", "createTime": "2024-08-15 14:43:05"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.484986+00 2025-12-17 07:40:00.484991+00 25871 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0qqfoe0K9BlRIWGNPVJ1pm75mtw=", "createTime": "2024-08-15 14:43:05"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.486676+00 2025-12-17 07:40:00.486682+00 25872 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iVI8FbDwPMAJxNszKY1wQ2QrleQ=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.488125+00 2025-12-17 07:40:00.488129+00 25873 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lmuiko5w4gUs38ztm7XSMDh_odM=", "createTime": "2024-08-15 14:43:05"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.489512+00 2025-12-17 07:40:00.489516+00 25874 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SjUPjBGQfwxsOn5jOWyw2xpljNA=", "createTime": "2024-08-15 14:43:05"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.490875+00 2025-12-17 07:40:00.490879+00 25875 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zDQ7BrsqlYPMMCrHH_KWWVmqsAE=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.492185+00 2025-12-17 07:40:00.49219+00 25876 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v0_j8MMxCPnxrAv6-azS2cCwZco=", "createTime": "2024-08-15 14:43:05"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.493549+00 2025-12-17 07:40:00.493553+00 25877 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pAFika_VNTb95eyg8pDqdQ4iC6Y=", "createTime": "2024-08-15 14:43:05"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.494891+00 2025-12-17 07:40:00.494895+00 25878 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A_ew8sje3U0ijGJ_-dwb1BAwCA0=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.496206+00 2025-12-17 07:40:00.496211+00 25879 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8WR64hDS06kmpQjBZgDtfHxx-P0=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.497498+00 2025-12-17 07:40:00.497503+00 25880 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cGazlW0FmJtYNmf5rIhfMQtYimU=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.498836+00 2025-12-17 07:40:00.498841+00 25881 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A5nBD-zpZotTz6ytRbXdL1stOaQ=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.500324+00 2025-12-17 07:40:00.500329+00 25882 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p4iduQJyx9ldyxpH3n797S6okoA=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.501695+00 2025-12-17 07:40:00.5017+00 25883 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JqApqzjRjSrsJC6VQ8-kaAGbG8Y=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.503001+00 2025-12-17 07:40:00.503005+00 25884 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KKVv19sBf58y2hyOXoBjBqVdbr4=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.504531+00 2025-12-17 07:40:00.504536+00 25885 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7rCTf7tUQAQBV3mWSgKpM0Ry5uI=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.505916+00 2025-12-17 07:40:00.505921+00 25886 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=1766043599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:90AaLrustJreN5ORW15rusH8DOU=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.900289+00 2025-12-17 07:40:00.900301+00 25887 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TO82wpJyGCWst_YReYY0WG_82vE=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.903199+00 2025-12-17 07:40:00.903208+00 25888 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ee0HGoSfxlMejChcFoa_CkHi_VY=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.904901+00 2025-12-17 07:40:00.904907+00 25889 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gEWt8HBHJ928SVC0X6-FChUDmB0=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.906274+00 2025-12-17 07:40:00.906279+00 25890 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xlm2Id1pOgAbaEBGWSbKE-rlCWc=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.907714+00 2025-12-17 07:40:00.907723+00 25891 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zeI4VhuO4608kFVKWUqIshrl1co=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.910016+00 2025-12-17 07:40:00.910023+00 25892 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5nDfVSgvTHPrjXuyFRii-AkLeX0=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.911905+00 2025-12-17 07:40:00.91191+00 25893 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sOMBrTJPXBsbbPZOJK3DD932X5I=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.913306+00 2025-12-17 07:40:00.91331+00 25894 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YaDn17oBPJ8LwuqsubyE50MeJ6o=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.914624+00 2025-12-17 07:40:00.914628+00 25895 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VWK-71B3_-H9DBOMFRdIWeUQ2-o=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.915917+00 2025-12-17 07:40:00.915922+00 25896 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8jbM7anlGlwsUfb3jMyw0c9ydA0=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.917207+00 2025-12-17 07:40:00.917212+00 25897 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8D-oisoljWwxpME1qVcSNgf6PcA=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.918494+00 2025-12-17 07:40:00.918498+00 25898 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w_OMZaYp3jC8u-eBvTimiGKLDtE=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.919798+00 2025-12-17 07:40:00.919802+00 25899 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f27BpV4URBoouzG0r8RRGMRdniw=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.921079+00 2025-12-17 07:40:00.921083+00 25900 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EIxytYgPnsWDrP-9QeE6BZyjSsM=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.92247+00 2025-12-17 07:40:00.922474+00 25901 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dsBVVXyA97M4uh9Bw3Eh-ZYW5no=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.92377+00 2025-12-17 07:40:00.923775+00 25902 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uCKsgwSaLO09ebQZ3tGkVkSsEow=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.925309+00 2025-12-17 07:40:00.925314+00 25903 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZeE_6Z01gLG3hmRIfgjSISdYbgk=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.926599+00 2025-12-17 07:40:00.926603+00 25904 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sh7O9Nfvx4h4fDP6VUQBfI8cDOg=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.927877+00 2025-12-17 07:40:00.927882+00 25905 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tHwnHHG8n5zBfecF-euZ0p_FtnI=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.929153+00 2025-12-17 07:40:00.929158+00 25906 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SDG6unpJZ1Szp6iXPmOIY_R3CPQ=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.93043+00 2025-12-17 07:40:00.930434+00 25907 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sIFpKArzS-W1xqYbKYw5VWatyIs=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.931797+00 2025-12-17 07:40:00.931801+00 25908 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QxB2MNqlpDNlz_d0jKbbn02z3hU=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.93311+00 2025-12-17 07:40:00.933114+00 25909 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dPEWfiC5uy1oZt5_WnTZPkNytmA=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.934404+00 2025-12-17 07:40:00.934409+00 25910 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WgnRpf_gkXYX4W70mCS5T1Q1aDk=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.935702+00 2025-12-17 07:40:00.935707+00 25911 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZrRIGTZAB3YEyTdzfxrOnBsCc4I=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.937028+00 2025-12-17 07:40:00.937032+00 25912 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LqMKywLkAgHn2NPMy-3OOaUYylg=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.938405+00 2025-12-17 07:40:00.938409+00 25913 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OJ4Ac2J-NVBWHTPbDb900kFzpoE=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.939704+00 2025-12-17 07:40:00.939708+00 25914 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aYpZNPQq4J5MjXIdcAlMOZPGRwE=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.941035+00 2025-12-17 07:40:00.941039+00 25915 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4bymdJNHKJLCjX35giWgeGEbMEA=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.942347+00 2025-12-17 07:40:00.942351+00 25916 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GPIXHZ0eu-Tq-OgtgjtxK26AO_M=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.943637+00 2025-12-17 07:40:00.943642+00 25917 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T3nWmhVcsrpr0EcNrMeS4-qckdc=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.944926+00 2025-12-17 07:40:00.94493+00 25918 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oNQDAH2fQozHep2Fh_J8DV5EXfg=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.946797+00 2025-12-17 07:40:00.946805+00 25919 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aT2d3to2oD-2zp-_NZmOeQcQ8ws=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.94892+00 2025-12-17 07:40:00.948926+00 25920 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KlKi987sCZAncisuI2t2PbhtfQw=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.950461+00 2025-12-17 07:40:00.950466+00 25921 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Z5Fhk_k-fUoNKw01Bf-03RckeM=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.951785+00 2025-12-17 07:40:00.95179+00 25922 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G5AahoZUXTPLe4WIwqoPRy2RLsM=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.953107+00 2025-12-17 07:40:00.953111+00 25923 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yikHZ_xMDTQ52xesWQrMFh2N9U8=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.954397+00 2025-12-17 07:40:00.954401+00 25924 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3jgNahDM9btcW2Cyhf8sbdfLSLQ=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.955899+00 2025-12-17 07:40:00.955904+00 25925 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V1BbgAhLFcTdxSHbGAlN86XW_Ik=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.957269+00 2025-12-17 07:40:00.957274+00 25926 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ugcvuu_OU5MWpYlouYY9lOLMG0k=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.959005+00 2025-12-17 07:40:00.95901+00 25927 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bbik_IkIJx7C9qllB-JFuAMGP30=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.960328+00 2025-12-17 07:40:00.960332+00 25928 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Muy955ty2zDuKLSqjxK2sxzhOyo=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.961624+00 2025-12-17 07:40:00.961628+00 25929 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ip7YSDi3uWmJW9xiECT1zes1jQ=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.962933+00 2025-12-17 07:40:00.962938+00 25930 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CnQAIYLZKsI8IqtmG_CtMj2LAhA=", "createTime": "2024-08-15 14:43:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.964257+00 2025-12-17 07:40:00.964261+00 25931 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UPfId_40qctBGEfKONst1flv4vc=", "createTime": "2024-08-15 14:43:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.965555+00 2025-12-17 07:40:00.965559+00 25932 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HBKe6anSkaaG9HSMX7AW2wReKZ4=", "createTime": "2024-08-15 14:43:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.966862+00 2025-12-17 07:40:00.966866+00 25933 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SGROXl9EJJ-FGFWEF-aDLQZODnk=", "createTime": "2024-08-15 14:43:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.968209+00 2025-12-17 07:40:00.968213+00 25934 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TfNt-pMryIHernaU5Tw7xdDgMg0=", "createTime": "2024-08-15 14:43:11"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.969501+00 2025-12-17 07:40:00.969505+00 25935 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-FGDhaaR6q5rhXkMN1afuyTcSlo=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.970858+00 2025-12-17 07:40:00.970866+00 25936 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r-Uqo2qb8yD32OjkG71p9b9Mj5Q=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.972264+00 2025-12-17 07:40:00.972268+00 25937 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ArXqUFybAJLFgMH9yFPKVznyoeQ=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.973582+00 2025-12-17 07:40:00.973586+00 25938 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9StoekDRciy1zCZTNQhASibMCj8=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.974902+00 2025-12-17 07:40:00.974906+00 25939 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2cqziHv-Hnzla7VOyClHIDT8U2A=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.9762+00 2025-12-17 07:40:00.976205+00 25940 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FJHQF4YM0VXYMiPrSthDjnxc3Cc=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.977487+00 2025-12-17 07:40:00.977491+00 25941 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PJI2yMqzqrp2SgTnNp1Qtg_q-FQ=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.978794+00 2025-12-17 07:40:00.978799+00 25942 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fdSvZuk9kDQP94vJLhy5iXUwx9A=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.980094+00 2025-12-17 07:40:00.980099+00 25943 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2_cHbbpHMVU66QhNFPSlydiDMuo=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.98141+00 2025-12-17 07:40:00.981415+00 25944 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5D5ChieV7V5t1pmKdw2sNIQDtTY=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.982724+00 2025-12-17 07:40:00.982729+00 25945 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W6TmbpdrxdrSgxOL-Op_9cValno=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.984046+00 2025-12-17 07:40:00.98405+00 25946 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CN8bsUSu0n4RxbbDJW465N5AeDM=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.985373+00 2025-12-17 07:40:00.985378+00 25947 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BWRcuiijjvr3APtLXWsSglE85OU=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.986692+00 2025-12-17 07:40:00.986696+00 25948 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DCX6ujgjKd4hq1SibZ28NWUmHK0=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.988092+00 2025-12-17 07:40:00.988097+00 25949 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XtGxJK-R-qJ_NxBtbHckgKNlCUY=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.989464+00 2025-12-17 07:40:00.989469+00 25950 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qfh7xwDP9fhrw9IAy5zbiquLUUA=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.991697+00 2025-12-17 07:40:00.991701+00 25951 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AytjH1mwTlxviN14CMT6x01OaMI=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.993244+00 2025-12-17 07:40:00.993248+00 25952 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:50aHrStvrnvg5BUL7Z-XUvMSnwI=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.99479+00 2025-12-17 07:40:00.994794+00 25953 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZYOtAB-A7zLsV3-41hkB9xzd-Q=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.996305+00 2025-12-17 07:40:00.99631+00 25954 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VTEUiNbMhRB174nMCwq4YYJjmsM=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.997876+00 2025-12-17 07:40:00.997881+00 25955 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9LU7fq5J7pHtKwIN4CbWzx33X5Q=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:00.999463+00 2025-12-17 07:40:00.999468+00 25956 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SWSaR6BvczMlKHTxsTzr0stCAQw=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.001011+00 2025-12-17 07:40:01.001016+00 25957 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:POQ5Qi0f8jPZQBxqBHv6_BGmYFQ=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.002543+00 2025-12-17 07:40:01.002547+00 25958 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q1OwVVJD1N6l_8sucKQRDJB1_DM=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.003951+00 2025-12-17 07:40:01.003956+00 25959 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JNtLQ_xtVJM_4iDpPaCh-BqOA8E=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.005302+00 2025-12-17 07:40:01.005307+00 25960 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:44hY_Ym145EeKaSCyuIMmoDLvwI=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.006636+00 2025-12-17 07:40:01.006641+00 25961 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:70iwkzEJijFjXh1B2CqW0HMyAH8=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.007946+00 2025-12-17 07:40:01.00795+00 25962 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UX6AGCCEbne5LYjTs8J-XZ-ZGaI=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.009257+00 2025-12-17 07:40:01.009261+00 25963 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u1Il1pkgbfCnGxijIZ1QMTfEigM=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.010555+00 2025-12-17 07:40:01.01056+00 25964 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f0RjGicnGKovOqLbPFDz6q7kiwI=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.011847+00 2025-12-17 07:40:01.011851+00 25965 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hJSFZ4NHRfHzBxSZasGXTPz-kY8=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.013386+00 2025-12-17 07:40:01.013391+00 25966 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SvD4sNLwOT7-bSqQuOwjhZaRsDM=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.014652+00 2025-12-17 07:40:01.014657+00 25967 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cvY9pU0WFpTF0hKAT89ci_tZuKE=", "createTime": "2024-08-15 14:43:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.015951+00 2025-12-17 07:40:01.015955+00 25968 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lDMIbIbJLBRv7cowmH4IIleNU88=", "createTime": "2024-08-15 14:43:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.017252+00 2025-12-17 07:40:01.017257+00 25969 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NvUq3rs-l0hlPY3Mmot3VgzUJUs=", "createTime": "2024-08-15 14:43:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.018525+00 2025-12-17 07:40:01.018529+00 25970 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WncJp2hV_W1BsMkD7aqm3LK1FOc=", "createTime": "2024-08-15 14:43:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.019804+00 2025-12-17 07:40:01.019809+00 25971 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dsmt11o-yRTM7WyM-rG_MachSjE=", "createTime": "2024-08-15 14:43:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.021083+00 2025-12-17 07:40:01.021088+00 25972 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oiiBxXcKhpYMW3ojK5BQfYE9mV8=", "createTime": "2024-08-15 14:43:14"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.022466+00 2025-12-17 07:40:01.022471+00 25973 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VdHmoZJrP00kkCOaiOl5GMJFU6I=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.024107+00 2025-12-17 07:40:01.024112+00 25974 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RepKdES_9WnkvUHEXWOx7qEphh0=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.025403+00 2025-12-17 07:40:01.025407+00 25975 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N3T4-jk-wI_pq3T6X-Sn-FSeO7I=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.02669+00 2025-12-17 07:40:01.026694+00 25976 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JgtenK8KoXk0wUXXTw3HdbrcnCw=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.02798+00 2025-12-17 07:40:01.027985+00 25977 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Tuc7CL6n49wG5lkwQkYMoQ5sAo=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.029273+00 2025-12-17 07:40:01.029277+00 25978 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3H5x-uJD_Sjv55dmXZAaBrLoblc=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.030544+00 2025-12-17 07:40:01.030549+00 25979 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1lQMXZuwt8pwA5qay4-C4hb79Ms=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.03184+00 2025-12-17 07:40:01.031845+00 25980 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mv2MbdfuH4v_J9-CJDnOorSNQuM=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.033139+00 2025-12-17 07:40:01.033145+00 25981 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tjpZLoyUjxf1xioQrhJCZhFcfkU=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.034697+00 2025-12-17 07:40:01.034702+00 25982 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fKqGp8M5NsRjM8F1ODmwaeeBoU4=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.035998+00 2025-12-17 07:40:01.036003+00 25983 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2DTJgYlFQA_DRwBXb_-IsgzU_E8=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.037331+00 2025-12-17 07:40:01.037335+00 25984 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G230XKXPw2RRBvnr-UBC0PlKn4Q=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.038692+00 2025-12-17 07:40:01.038697+00 25985 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KvvteJqaOsaFu5XcF6K6Fphqpsw=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:40:01.040039+00 2025-12-17 07:40:01.040043+00 25986 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=1766043600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:skGt_QY_pZpY3rZkd03kJ8wwjQY=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.619517+00 2025-12-17 07:50:00.619525+00 25987 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jkaLfab_IRsf_oPlV3CVdK9KxsA=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.622195+00 2025-12-17 07:50:00.6222+00 25988 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vNfREESUqRqR_oFjkRhscFSqN6I=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.624312+00 2025-12-17 07:50:00.624316+00 25989 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pf6mn16hJ-GxqtWrGjyg9ZE2iX0=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.625727+00 2025-12-17 07:50:00.625732+00 25990 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q62zTy4fpeudl-F5gjDeICuYrT8=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.627039+00 2025-12-17 07:50:00.627043+00 25991 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WgsmpAzrZp6Awc_1QQnKbV_4wSc=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.628453+00 2025-12-17 07:50:00.628458+00 25992 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kHrg2VP87QWLmkNzDFlsWklvIlU=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.6298+00 2025-12-17 07:50:00.629804+00 25993 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nhwZCtZrvPz5DgbMzVlotGJnNfk=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.631495+00 2025-12-17 07:50:00.631499+00 25994 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:22LmlSx2PER5cHWuFPON43KTzB8=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.63282+00 2025-12-17 07:50:00.632824+00 25995 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HMIvS5aFwmPuDk_2jO9JXgmk1lA=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.634105+00 2025-12-17 07:50:00.634109+00 25996 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L4Itwiotnw07SvtrfRa-F_RPtp8=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.635377+00 2025-12-17 07:50:00.635382+00 25997 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H_ZxFsJxapQXid2HkrMAVXVkmfs=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.636653+00 2025-12-17 07:50:00.636657+00 25998 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vYuxWe91PNU4wqBkdTXoPAy9e7U=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.637931+00 2025-12-17 07:50:00.637935+00 25999 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j7IJ_3sZKnSbdrd9Gv-KK-p24gk=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.63918+00 2025-12-17 07:50:00.639185+00 26000 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MZTGYbaUb2WKkPPzldJG8tMW3Ic=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.640567+00 2025-12-17 07:50:00.640571+00 26001 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8F0fmKD6w7aCk5a0pFiSIu0Okr4=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.64187+00 2025-12-17 07:50:00.641874+00 26002 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x2ZNEI7kyUM0RG9V1uSqgjU9MLw=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.643176+00 2025-12-17 07:50:00.643181+00 26003 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ctAYcnhLqn66OxhRFjIehRFPnlk=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.644463+00 2025-12-17 07:50:00.644467+00 26004 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GXio9ousmH_l1YBsc0KV1WVE8Mc=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.651692+00 2025-12-17 07:50:00.651699+00 26009 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aNvJD0sx46jppdPZ0RmKKmL33FY=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.645738+00 2025-12-17 07:50:00.645742+00 26005 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:didHzdYqfhazMNP305Jdv53Eq1g=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.647283+00 2025-12-17 07:50:00.647288+00 26006 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N6psZ4eUA9e0n3lfpSACkPdrBhY=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.648667+00 2025-12-17 07:50:00.648671+00 26007 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kd8fEpv4f7Mwo2HQekcQwZpPhUA=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.650035+00 2025-12-17 07:50:00.65004+00 26008 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gmwRX8YX9PAFrVcVocWfjFumvfc=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.653123+00 2025-12-17 07:50:00.653128+00 26010 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HStEyDnIrB0_mwCVGugdsdiHCl4=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.654447+00 2025-12-17 07:50:00.654452+00 26011 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j2p7-yVXby23JnStsDStj8OzJaA=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.655809+00 2025-12-17 07:50:00.655815+00 26012 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L24Bcm8p3lWAVr4V36HeHFIIKSE=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.657173+00 2025-12-17 07:50:00.657179+00 26013 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rUOJwI5EH3qcr_wJLEx3-sUjFNU=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.658525+00 2025-12-17 07:50:00.658529+00 26014 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CwByZKKkjyjqaQouP2FYLig7JBI=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.65985+00 2025-12-17 07:50:00.659854+00 26015 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TZ14NuL6youNaSENiXCsvGkgKFc=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.661182+00 2025-12-17 07:50:00.661186+00 26016 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b_3OsVM-oQSn6rQdz8tiTMPPNII=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.662513+00 2025-12-17 07:50:00.662517+00 26017 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NbGyysFGms9_IoTZUl9NAejgZ5o=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.664491+00 2025-12-17 07:50:00.664496+00 26018 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u5fhQfV5echHnLxpO3V0rQLEykc=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.666079+00 2025-12-17 07:50:00.666083+00 26019 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m9-KAZHm8sDePb42M9Gg_TWnQDg=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.667665+00 2025-12-17 07:50:00.667669+00 26020 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ie0hqTGEG09vvGteEP3bz7yhbq8=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.669252+00 2025-12-17 07:50:00.669257+00 26021 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CBhObNpf7hdz_DLnBUUciHjXvOk=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.670995+00 2025-12-17 07:50:00.670999+00 26022 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Exs9KR5rENxxz53rUIQZpqg5pjM=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.672608+00 2025-12-17 07:50:00.672613+00 26023 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FBqRwrMNLm0tXCJ5BkDyqfAFZY0=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.674297+00 2025-12-17 07:50:00.674305+00 26024 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2wS7brofNcZ4WWlM2OLgh-YybHY=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.676043+00 2025-12-17 07:50:00.676051+00 26025 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:282b2Z-F93ZsomvP8uVBGDfH7D8=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.677687+00 2025-12-17 07:50:00.677692+00 26026 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HzSitKCNZ5N2mLF4M_elm2WizIc=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.679032+00 2025-12-17 07:50:00.679037+00 26027 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rgo7epOP-RvoPf5bMuwEXUW63mU=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.680476+00 2025-12-17 07:50:00.680483+00 26028 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lTJ23D9kwu69QnBunI-VNM7j6Cg=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.683071+00 2025-12-17 07:50:00.683075+00 26029 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6wurwcnGYv8tBGiuJcKEk0d9fQY=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.684788+00 2025-12-17 07:50:00.684792+00 26030 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QV0eTtDbXNHBHR3vclkbIZFHNvg=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.686172+00 2025-12-17 07:50:00.686177+00 26031 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j_xInb56Rr6Ae58TcNslbkC4Sjk=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.687538+00 2025-12-17 07:50:00.687543+00 26032 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NoC3kC1VFhblI3rW9OH5KO8r0Pg=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.688845+00 2025-12-17 07:50:00.688849+00 26033 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EvgN-XTzdy3B0Sl6e_ZGmaQgKlI=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.690403+00 2025-12-17 07:50:00.690408+00 26034 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ysF8CGukTphzwSMfxTehB2YOGZo=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.692141+00 2025-12-17 07:50:00.692146+00 26035 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W4UGbC8zvhYZpdTAt7Cn71ZY0fY=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.693807+00 2025-12-17 07:50:00.693811+00 26036 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_g3YDyY_3FwgQhaAYSJWkBoW4lg=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.695683+00 2025-12-17 07:50:00.695687+00 26037 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FL4be-fhFpN-igAIp0zlsTGV0vc=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.697598+00 2025-12-17 07:50:00.697602+00 26038 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uGhci0xSMqYIZW7c3gnDOC2ubSA=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.699438+00 2025-12-17 07:50:00.699443+00 26039 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0t7KifjfyLqT2gvybOU3vExcsPA=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.700983+00 2025-12-17 07:50:00.700987+00 26040 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qtOd-gDi6U98m4-NdSiNzgrIPds=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.702489+00 2025-12-17 07:50:00.702494+00 26041 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VP3olxaF-f4SylI0-9sNYcdUGmQ=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.703983+00 2025-12-17 07:50:00.703988+00 26042 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Si6j7jFon2S3lGLCV6i-9cSwf5s=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.705459+00 2025-12-17 07:50:00.705465+00 26043 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D7l9x78030CueDHWKJ964IOhDWg=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.70696+00 2025-12-17 07:50:00.706965+00 26044 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aXJ3pOpLoKaSJkVpMAd6GtrP12Y=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.708497+00 2025-12-17 07:50:00.708502+00 26045 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4oITkxANZ8k7IsX6o2UZLsWa7XA=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.709996+00 2025-12-17 07:50:00.710001+00 26046 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:svbPQLxqPaImkNpTO39TvrA2Ic8=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.7115+00 2025-12-17 07:50:00.711505+00 26047 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g6nn3TlBr8AJ8qV1_IZIX4Td5dg=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.713011+00 2025-12-17 07:50:00.713016+00 26048 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FPkYLlZwlOj4RCOHTp-2U5EkkUg=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.71453+00 2025-12-17 07:50:00.714536+00 26049 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:grqCoD9S3VtQH1KbeUljmV88fyU=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.716037+00 2025-12-17 07:50:00.716042+00 26050 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-8yXjMdwIxCNHTg8XthK2W2Hlz8=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.717522+00 2025-12-17 07:50:00.717527+00 26051 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ra8w4KbsTbHmcc3EQYwo61bV_0=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.719021+00 2025-12-17 07:50:00.719025+00 26052 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iXN8npsdxKjJ9BIwlDuE8elnJi4=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.72052+00 2025-12-17 07:50:00.720525+00 26053 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tYO_VsZD9lDHpNqHWhWHKzmM0H0=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.722027+00 2025-12-17 07:50:00.722032+00 26054 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sCiEsCDSy7WioJQoGZRCRn1hUlY=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.723534+00 2025-12-17 07:50:00.72354+00 26055 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v-hWr--IEQFQJmrIEwMf3masSsI=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.725108+00 2025-12-17 07:50:00.725112+00 26056 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6GBdXqyv-zmEguAaYl2CbQ877Ug=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.726463+00 2025-12-17 07:50:00.726467+00 26057 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BG_kxcX0xHmYaDewLRu0z1sqom8=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.727817+00 2025-12-17 07:50:00.727821+00 26058 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Heud9m4dZeyEdtLdbUrZKZZcAkA=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.729121+00 2025-12-17 07:50:00.729126+00 26059 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8DLY95zmE79ppWLXnyc06u2i9nY=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.730417+00 2025-12-17 07:50:00.730421+00 26060 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w2AiyCoHYYCKcQNugKVS9yu48mw=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.731721+00 2025-12-17 07:50:00.731725+00 26061 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CDQUIR6m1-1CNaB5mxy8x3JwdkE=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.733017+00 2025-12-17 07:50:00.733022+00 26062 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4PZQmHJYOtn8bpfzibdx8lp5o6w=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.734319+00 2025-12-17 07:50:00.734323+00 26063 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Eqto2MwQzmNTyIkJ2LDr-Lf_EI=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.73562+00 2025-12-17 07:50:00.735624+00 26064 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4WuANuysn-sBzLEu-hoY3HYMe1U=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.73718+00 2025-12-17 07:50:00.737185+00 26065 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dYmHDB_cCTFby8QGIw3g8fJOV7Q=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.739192+00 2025-12-17 07:50:00.739197+00 26066 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NOW99bHD18az5nNjMttdKPt5hV4=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.740567+00 2025-12-17 07:50:00.740572+00 26067 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xyUCJKe3bErrqc9y8WpmltoNY9E=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.741884+00 2025-12-17 07:50:00.741888+00 26068 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vlJMIcYUnWA7HDZBXXKcl8eB_Ks=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.743177+00 2025-12-17 07:50:00.743181+00 26069 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xFaN9LOe38wnidEF722XI4AvH0Q=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.744474+00 2025-12-17 07:50:00.744479+00 26070 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:afPaVDPR4SwiPIEe42X9kNtxC_Q=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.745969+00 2025-12-17 07:50:00.745974+00 26071 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O6xwf1keMv4MewSMdKGCaaLTNbY=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.747303+00 2025-12-17 07:50:00.747307+00 26072 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1njdXyVp1oL8r_07lYUpKyEl8aY=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.748653+00 2025-12-17 07:50:00.748657+00 26073 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_NZIfzoWK1rsgc0oMRrkM4oMZv8=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.749966+00 2025-12-17 07:50:00.74997+00 26074 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZjWYCyPI9UKR2ejRNigFnDcJdk8=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.751269+00 2025-12-17 07:50:00.751273+00 26075 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b1RpplIX7aGUHS-gLxdeOsjMuio=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.752597+00 2025-12-17 07:50:00.752601+00 26076 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FxsFiymva97H571BTNyXTH0E4lM=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.753905+00 2025-12-17 07:50:00.753909+00 26077 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gVA7ZVPcDRQdayk8SdoK6U9p3cY=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.755205+00 2025-12-17 07:50:00.75521+00 26078 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O2Gvtq_MHclFxsfVbaKCOL2pudE=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.756489+00 2025-12-17 07:50:00.756494+00 26079 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eArcCwF2A256GVeV3f1SBZsi_38=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.757969+00 2025-12-17 07:50:00.757976+00 26080 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UAdIzFJAbYuPXG4N55XhuGj5mPQ=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.760278+00 2025-12-17 07:50:00.760285+00 26081 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pqWreYPpnRaSqO7Yt3TLwok45aY=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.7621+00 2025-12-17 07:50:00.762105+00 26082 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b4SGeurZthLtPGMx6LybpdzAq5A=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.763536+00 2025-12-17 07:50:00.763541+00 26083 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AvqmST_IKNBppOdy--tFe1igU1g=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.764943+00 2025-12-17 07:50:00.764948+00 26084 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2MZM_dqJzL8m6dT-fZK0-II5vpE=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.766271+00 2025-12-17 07:50:00.766275+00 26085 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EulBozsZiTwGwCIYFF1TYxzbWmc=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:00.767591+00 2025-12-17 07:50:00.767595+00 26086 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Up9OFP0K-Fuy5ZxrkhbF7K44LA=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.182287+00 2025-12-17 07:50:01.182298+00 26087 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:87nOEJgX2mHGG32kq56PMCZKs4Q=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.1853+00 2025-12-17 07:50:01.18531+00 26088 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9j88eSX55z7V-68C7JzSEHM_aPQ=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.187309+00 2025-12-17 07:50:01.187314+00 26089 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z4YqoexXxBfrdSqLs-xn3Hnax_0=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.18879+00 2025-12-17 07:50:01.188795+00 26090 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AUPXKAjtvPG9BJc4Ui2gDONmj4k=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.190278+00 2025-12-17 07:50:01.190283+00 26091 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n30AEpl9cv8o1shlTnj_PFBjjBA=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.191665+00 2025-12-17 07:50:01.191669+00 26092 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0zPq73OYi_Nd9U1QQorli9TGcss=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.193043+00 2025-12-17 07:50:01.193048+00 26093 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OAbZBKLaLW2eJA8FM9vbutiN73g=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.194446+00 2025-12-17 07:50:01.194451+00 26094 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zuj_K2MVS8bJS8qQrnnzVq1zUv4=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.195778+00 2025-12-17 07:50:01.195783+00 26095 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SlKfsDSrDa4n39l5ebbutHEu_5I=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.197508+00 2025-12-17 07:50:01.197513+00 26096 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2kgaxXkODj6YImxrfikHpGxGdAQ=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.199596+00 2025-12-17 07:50:01.199601+00 26097 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9gIoFelMAXCS_UDFkegAOXFQPnA=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.201311+00 2025-12-17 07:50:01.201315+00 26098 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:svVBZqfCtVWy_M7NQHrqVVRg_Og=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.202969+00 2025-12-17 07:50:01.202974+00 26099 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y7y6e0_U3GaT859kL17XOdG7igQ=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.204378+00 2025-12-17 07:50:01.204383+00 26100 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Er_9AdtrHx6otunZ9qCaarIfe7o=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.205785+00 2025-12-17 07:50:01.20579+00 26101 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tbJkhJfTowb7YgTJkhNoINsXNKA=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.207107+00 2025-12-17 07:50:01.207111+00 26102 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u3vZx6nbrzbnNb3-dFCkHcdwuFk=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.208545+00 2025-12-17 07:50:01.208553+00 26103 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4timf7GSWwWmrEBNZb8vl9gG6fA=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.210056+00 2025-12-17 07:50:01.210061+00 26104 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LNSeOlZooxkhd6p5ineifhan_qU=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.211396+00 2025-12-17 07:50:01.211401+00 26105 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GadbhngGrx3NRvkqlUk8KHh48Nk=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.212776+00 2025-12-17 07:50:01.21278+00 26106 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mT19YTxsJtyLKGGs2LN-6Qw0KSA=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.214171+00 2025-12-17 07:50:01.214176+00 26107 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bA--jvr7I0h7PMkqs_n4poQlWyM=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.215531+00 2025-12-17 07:50:01.215536+00 26108 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ro9CqFLEqL9YevfqMujxIZMhKk=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.216918+00 2025-12-17 07:50:01.216922+00 26109 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XEWKI1vnmItOJVhPUze8EN9f_bE=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.218271+00 2025-12-17 07:50:01.218276+00 26110 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RmuSSTkeRWwf7zzDY2MzpKZABic=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.21977+00 2025-12-17 07:50:01.219774+00 26111 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8O6lnDYYCaqgNwVNzpm27gB42ww=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.22122+00 2025-12-17 07:50:01.221224+00 26112 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3l-YcvR0UCrBQnjnDsascQnOul8=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.222543+00 2025-12-17 07:50:01.222548+00 26113 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x9sN7pOIJruhlMxuHjN41lqV8QA=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.223857+00 2025-12-17 07:50:01.223861+00 26114 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GX_9ugH5ExAy3stD0p59W2UOKo0=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.225172+00 2025-12-17 07:50:01.225176+00 26115 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wOTv4iYYXihbJlqRDphzcsqkBwE=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.226462+00 2025-12-17 07:50:01.226467+00 26116 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iyjTCxesa-4jc7SBt1Ok4NtEL-w=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.227772+00 2025-12-17 07:50:01.227777+00 26117 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J5ZFWGuxi7v2jf2HznqOcQ164Ig=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.229079+00 2025-12-17 07:50:01.229083+00 26118 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dnX-43Ai59GuNiDpcooYg6o0LaI=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.230502+00 2025-12-17 07:50:01.230507+00 26119 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_DC-zH2wdBQsN8XH6ybpXXG0FIU=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.232208+00 2025-12-17 07:50:01.232213+00 26120 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ulg5Y9BGeejW5vwMCsJ9Fri0uTw=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.233611+00 2025-12-17 07:50:01.233616+00 26121 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OzDkBHVGWHtCpfbQb1JrXcOdFxs=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.234948+00 2025-12-17 07:50:01.234952+00 26122 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PmHmUuanrAp2EaYssbt3NB0_3j8=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.236273+00 2025-12-17 07:50:01.236278+00 26123 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xJwc3YSjrYMvnzhO1xNYhr_x2XQ=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.237592+00 2025-12-17 07:50:01.237596+00 26124 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JBVy56a_cLKZDYz7cZk5ukbuUrc=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.238904+00 2025-12-17 07:50:01.238909+00 26125 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Y9ko4gMS7kclUhZLItZiZqG-cA=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.240197+00 2025-12-17 07:50:01.240202+00 26126 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KgMAdeI5vriM_3pGs00ufc4XtFU=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.24148+00 2025-12-17 07:50:01.241484+00 26127 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rmNJ6XPEz17sOiupXWIosnAm99c=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.242817+00 2025-12-17 07:50:01.242821+00 26128 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D5_38f6m-znFpsRk9qL_TBXRxLA=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.244146+00 2025-12-17 07:50:01.244151+00 26129 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ruHjsZAC3d7nfVhBrYNYI8gUjXE=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.24544+00 2025-12-17 07:50:01.245444+00 26130 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nnmKmVF0Ix2paCiSNjC17QXu79w=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.246906+00 2025-12-17 07:50:01.246911+00 26131 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wKzrUDM1VYGY07lYj6zoZ07aHCQ=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.248263+00 2025-12-17 07:50:01.248268+00 26132 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cFF4lHlNlQwMTKnTkQ21W95aSkc=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.24955+00 2025-12-17 07:50:01.249554+00 26133 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t-KGVGR9lPjcnDEytGmylPh0EHE=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.250853+00 2025-12-17 07:50:01.250857+00 26134 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7_OADPnlfSKDDEosUggzvuwhFII=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.252131+00 2025-12-17 07:50:01.252136+00 26135 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZsNjWYXnU6gEXgeAG3kpcoRH4WY=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.253865+00 2025-12-17 07:50:01.253869+00 26136 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zANE3uIfIn_eRVLCkxlCxkDMldM=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.255185+00 2025-12-17 07:50:01.25519+00 26137 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4laSR-t7w3oOFqL_hw9Ur2wqn9A=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.256477+00 2025-12-17 07:50:01.256481+00 26138 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Brv7PAJyBfPRo-DoA9fLTXPHBus=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.257876+00 2025-12-17 07:50:01.25788+00 26139 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dqtd-b9psg5WQc2fo03Gi7Y_pHE=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.259238+00 2025-12-17 07:50:01.259243+00 26140 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7a40PhRIfgCBzDHwyakkoGz1kzU=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.260556+00 2025-12-17 07:50:01.260561+00 26141 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cogDTW4nYeGippazMS1SkLWMB-8=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.261896+00 2025-12-17 07:50:01.2619+00 26142 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7_UWAvTuSLgALcWX2BlvXcEj_og=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.263277+00 2025-12-17 07:50:01.263283+00 26143 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jcvi-sqlU66JJXlznDgxzQM1xls=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.264761+00 2025-12-17 07:50:01.264765+00 26144 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jiEiDFqtwoT7K9bpy14q-6_EyZU=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.266621+00 2025-12-17 07:50:01.266625+00 26145 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OAjtmYpMJ9-Q6ZerFfY90xmHmm0=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.268215+00 2025-12-17 07:50:01.26822+00 26146 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YZ1nuyC2JoLN0_X0EoaHKg9Vmus=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.269799+00 2025-12-17 07:50:01.269804+00 26147 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o27nogfeUcRccgBDOTjWyiu6vQo=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.271393+00 2025-12-17 07:50:01.271397+00 26148 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n6QO3_fFFLNzdBQufF2pay4Z87w=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.273021+00 2025-12-17 07:50:01.273025+00 26149 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J-jtqG18iDrFh8t57d7eizAzEt8=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.274615+00 2025-12-17 07:50:01.274619+00 26150 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vdbVqdIn3ONzZMcvRmR5CaBFIGQ=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.276215+00 2025-12-17 07:50:01.276219+00 26151 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kv0P1a-xuTl006q4La-YNGrh66c=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.277813+00 2025-12-17 07:50:01.277817+00 26152 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D9KWa6ICmU12K0FI9IzoQLJjer0=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.279266+00 2025-12-17 07:50:01.279272+00 26153 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z8IdHydlEgZJVtN7UCkA1mKyaaI=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.280926+00 2025-12-17 07:50:01.280931+00 26154 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CLLfrT-1ONOxehq0cWHsnae5YT4=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.282497+00 2025-12-17 07:50:01.282501+00 26155 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tFD1CUGmlllk1ECbp7DrWuCyuRc=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.283813+00 2025-12-17 07:50:01.283817+00 26156 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I5vky23nroTvZVSoawsNhq7G2oU=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.285105+00 2025-12-17 07:50:01.285109+00 26157 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8TSFbJWasHiihJudfbl3aeTmFNA=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.286402+00 2025-12-17 07:50:01.286406+00 26158 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-F0yIUZiB8RpPjyK3Cip3Roaric=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.287718+00 2025-12-17 07:50:01.287722+00 26159 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NX35H--maWr7UvN5TN_Mhi0sYsM=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.289364+00 2025-12-17 07:50:01.289368+00 26160 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qkb6HRvEYlsFo1ZugSFXhSqpiWY=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.290646+00 2025-12-17 07:50:01.29065+00 26161 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b2qdUXBD_o3DBGV9a0xaGqW2YUI=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.291955+00 2025-12-17 07:50:01.29196+00 26162 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n6ErvvY6LZEPDcrWYfpjizc8asY=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.293245+00 2025-12-17 07:50:01.293249+00 26163 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ORZJiINR1IcuSAKiwUjwsaUNt2I=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.294535+00 2025-12-17 07:50:01.29454+00 26164 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ya9xCU6mCyMpFcA7ZyVjL_c1F0g=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.29583+00 2025-12-17 07:50:01.295835+00 26165 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O7lePJXDqfSnbNr_N6CPkIGYe4Y=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.297181+00 2025-12-17 07:50:01.297185+00 26166 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E6BPP4fMqLGDJ7gsBxjfp8Pwewo=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.298488+00 2025-12-17 07:50:01.298493+00 26167 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NvehuGQ8jblh14HCOGzSi5-cqdE=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.299776+00 2025-12-17 07:50:01.29978+00 26168 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EAt6ijlETNGBEcMEhGpzhQrFGfU=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.301082+00 2025-12-17 07:50:01.301086+00 26169 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jVZSm9pLdBChG5qEfbTTUHzKhJQ=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.302368+00 2025-12-17 07:50:01.302373+00 26170 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C6uegoC3-q_ZOBeaPYJBh1SgqkQ=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.303723+00 2025-12-17 07:50:01.303727+00 26171 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KFgkCHRKzIQ5ryUtQ9t8js97O6s=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.305121+00 2025-12-17 07:50:01.305128+00 26172 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q6SNNEsAIgaw4BMllseXE2S3G0o=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.30662+00 2025-12-17 07:50:01.306624+00 26173 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d5igXBdC4ZFYes1IWfuxp149neU=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.307965+00 2025-12-17 07:50:01.30797+00 26174 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VSA1WvJZe_5t_djGdsoH0yqVBgM=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.309303+00 2025-12-17 07:50:01.309307+00 26175 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r2oRXmljaddCvpH81uS6I5ZDgGk=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.310629+00 2025-12-17 07:50:01.310633+00 26176 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:21YBcYaU8w3QfaW1QXWjrxi3z30=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.311918+00 2025-12-17 07:50:01.311923+00 26177 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H9iICoogbwV7xS3jjWSYAXT2m_s=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.313365+00 2025-12-17 07:50:01.31337+00 26178 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:27MByFxuAG1hJoXWf8otkP_wjrQ=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.314773+00 2025-12-17 07:50:01.314777+00 26179 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZOad7UkDXy-0pLJ0uf-vG1WvbqA=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.316113+00 2025-12-17 07:50:01.316118+00 26180 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JYrLKeS_Z5nzN3ZCEa-tDIf9JEs=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.317416+00 2025-12-17 07:50:01.31742+00 26181 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eFpC4SE69BN1aV36nzUw9woCGGc=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.318743+00 2025-12-17 07:50:01.318747+00 26182 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sOK3GWR5fqxpaoiwEeeXUHVEyD8=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.320069+00 2025-12-17 07:50:01.320074+00 26183 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o6vtZKrvIP1frz1AtYCRKqmyA-0=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.321731+00 2025-12-17 07:50:01.321735+00 26184 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O4oZFiCq-VkR9rtUDwO3P2O-kgw=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.323016+00 2025-12-17 07:50:01.32302+00 26185 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WOmMGPybO8u2zOwQypjQcYf0j90=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N +2025-12-17 07:50:01.32431+00 2025-12-17 07:50:01.324315+00 26186 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=1766044200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iDySxw7CKmbCqdGGjmvrhbgBJ0I=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.403989+00 2025-12-17 08:00:00.404001+00 26187 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OEXszZvwL1Qm-r4b9mGXScEF0oc=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.406414+00 2025-12-17 08:00:00.40642+00 26188 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pIEeoltEdzmuD6mEIndtw0A73x0=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.408975+00 2025-12-17 08:00:00.408983+00 26189 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vyY_CMFu0O2tisSi8P7Y_XehFqQ=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.411672+00 2025-12-17 08:00:00.41168+00 26190 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L4w-1j51JnRgZIs3joquWlscP4E=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.414123+00 2025-12-17 08:00:00.414131+00 26191 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IJyWhQItihQNv48t61LZ3aSfXv4=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.416202+00 2025-12-17 08:00:00.416209+00 26192 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-SF-ScimjRCagZVFoOMGxF3pe3E=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.418356+00 2025-12-17 08:00:00.418362+00 26193 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PSDnp02LOKsiyU25Vxrf3bqFDhQ=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.420393+00 2025-12-17 08:00:00.4204+00 26194 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eyefwNQT2nc3_KfWLPwdbsGldrI=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.422399+00 2025-12-17 08:00:00.422405+00 26195 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ma2FIioH-B2MOP2SpY7WVQHAKHs=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.424322+00 2025-12-17 08:00:00.424328+00 26196 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Wdne9j6xFWuHQvg1nV6TyqcSGM=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.425866+00 2025-12-17 08:00:00.425871+00 26197 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BShnVHSiIfIoqobilhg48HIGQEs=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.427302+00 2025-12-17 08:00:00.427307+00 26198 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bhTCny09cmjC0Hg2RoKakYBLgYk=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.428673+00 2025-12-17 08:00:00.428678+00 26199 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qv2XROr-QHAHMp5_EegQgRjMz_s=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.430088+00 2025-12-17 08:00:00.430092+00 26200 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QxaATlaWjy1tPcTSYRCIhySILOs=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.431439+00 2025-12-17 08:00:00.431443+00 26201 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pduhBpN5LSYjkFZBD75PAAfz16k=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.432783+00 2025-12-17 08:00:00.432787+00 26202 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pcZPFrU5_vx2Ltliq7oGP5JBQCU=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.434118+00 2025-12-17 08:00:00.434122+00 26203 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C8KLbgt2iq552HMHVbPULBNsTQo=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.435486+00 2025-12-17 08:00:00.43549+00 26204 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pOglyKeAvYIuVMj-_XX8ZFZoM-E=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.437357+00 2025-12-17 08:00:00.437362+00 26205 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PYmnK6-hbt3w7vuHjBZ49HXFWSQ=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.439136+00 2025-12-17 08:00:00.439141+00 26206 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HwPsL6Z5yoSlW6OxgNlW6k_xToI=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.440505+00 2025-12-17 08:00:00.440509+00 26207 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:loSVZgiKwUBL08V-Y41momLSlfg=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.441903+00 2025-12-17 08:00:00.441908+00 26208 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cXNiLGdoR9hSdPn7myB7PyzIfX8=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.443263+00 2025-12-17 08:00:00.443267+00 26209 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ekh-MC9-Cm6AL1Vt60CD_ONfm6Q=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.444596+00 2025-12-17 08:00:00.4446+00 26210 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vzrstHgB5OAPLXOhjtATHc1l-qg=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.445951+00 2025-12-17 08:00:00.445956+00 26211 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9goJmUd4yjJ-2LNGEoSiEpdIU6s=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.447269+00 2025-12-17 08:00:00.447273+00 26212 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gUT4ckTMRXlSkqPiVgUHNZnNvrU=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.448574+00 2025-12-17 08:00:00.448578+00 26213 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wo8sGLExUKG6-Xxozn43JJATmjI=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.449878+00 2025-12-17 08:00:00.449882+00 26214 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wYs52vSXT3B1FZVJMbRgEE6jjxs=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.451199+00 2025-12-17 08:00:00.451204+00 26215 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R2cFVDmrkeEO-DbnLi3P5o_eXls=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.452548+00 2025-12-17 08:00:00.452558+00 26216 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P2mgpa1uSlfPHtwrBMVua41cH2U=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.454548+00 2025-12-17 08:00:00.454553+00 26217 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n7THM4bS8en0CnhkEZ5BJ-emBUg=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.45596+00 2025-12-17 08:00:00.455964+00 26218 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:urPyRmSTkAb7NFZcKFMkD7-M_cE=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.457652+00 2025-12-17 08:00:00.457658+00 26219 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ha3gvgquNOdawW-C5Oqiyk0gdwA=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.459059+00 2025-12-17 08:00:00.459064+00 26220 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-s7rC24ua8BVXPH7R1fUuKaAWO8=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.460518+00 2025-12-17 08:00:00.460522+00 26221 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WbGsV-mqCjJge4LWRr4bGjCmOKc=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.461891+00 2025-12-17 08:00:00.461896+00 26222 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yvPjiYH1JAGB0_XcOTaVXh699pk=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.4634+00 2025-12-17 08:00:00.46341+00 26223 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1hXn1NvPBfR1LR32boLMV1l6pCc=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.465856+00 2025-12-17 08:00:00.465862+00 26224 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OAz3kiepD3FNoQSHF-w6rdhM0yE=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.467353+00 2025-12-17 08:00:00.467358+00 26225 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tChTjReVNvN8LcwaKFrypmnJdok=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.468812+00 2025-12-17 08:00:00.468817+00 26226 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bKVAh87IuYyXZp9rqOcv8vP8XL8=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.470188+00 2025-12-17 08:00:00.470193+00 26227 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CO7GunZ0YMiQ1Kk_BnB-PZOuUWA=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.471545+00 2025-12-17 08:00:00.471549+00 26228 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V5rg6mNOG3iEvDmKwXK_104OhXc=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.472884+00 2025-12-17 08:00:00.472888+00 26229 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pOeKPRsVstpG2GHHrzKEhWMAVCU=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.474215+00 2025-12-17 08:00:00.47422+00 26230 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5x6uNtLUnGNAuDtZVSHaTnU2160=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.481234+00 2025-12-17 08:00:00.481238+00 26235 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c_vh1QjwOTp9mERQbyblDQerVJY=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.475528+00 2025-12-17 08:00:00.475533+00 26231 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qc_NjtkGtbPgofqKR5XOLnjXjX8=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.476893+00 2025-12-17 08:00:00.476897+00 26232 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9nvMDTKhPwwJWoyCvESnfoNswb0=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.478202+00 2025-12-17 08:00:00.478207+00 26233 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I8Sa7BNvZugySPbw_xqMPpoSiiQ=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.47984+00 2025-12-17 08:00:00.479844+00 26234 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tE5gpxVo326SCfI0HO87vqYb55E=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.482574+00 2025-12-17 08:00:00.482579+00 26236 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0zhsjvQ8Ju6Eo4a68H2TU6HFijQ=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.483945+00 2025-12-17 08:00:00.48395+00 26237 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gJOXI3oWJ7A0HsOxSggaxyoe-AM=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.485385+00 2025-12-17 08:00:00.48539+00 26238 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gPKUAEBO52umbpLRy5UxJI3sqD8=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.486782+00 2025-12-17 08:00:00.486787+00 26239 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XAahkZ_Fk1RVfVJNU_WBQAvgb1g=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.488156+00 2025-12-17 08:00:00.488161+00 26240 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NtPqEJLRlP6wUI-pTwCzGsWQnD4=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.489523+00 2025-12-17 08:00:00.489527+00 26241 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HfCeJSZxCTth4dhD6oPHsGZPKss=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.490843+00 2025-12-17 08:00:00.490848+00 26242 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L5_p5VMPtfm8xHr9oi7tf29P-BM=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.49274+00 2025-12-17 08:00:00.492745+00 26243 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MGSVn9nbIBcJl53sVa_OFIT56pE=", "createTime": "2024-08-15 14:43:36"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.49427+00 2025-12-17 08:00:00.494275+00 26244 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HSNBW6oxRqWJETKX73bURXMAg-E=", "createTime": "2024-08-15 14:43:36"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.495679+00 2025-12-17 08:00:00.495683+00 26245 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ANEX1MnwNWbA73I27rnGEai4x20=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.497012+00 2025-12-17 08:00:00.497017+00 26246 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:izPxoeWUNVXLGu3W0gr74a4Up1k=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.498371+00 2025-12-17 08:00:00.498376+00 26247 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6m-vkwSzvedvt9prRZWbrIYmWiU=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.499893+00 2025-12-17 08:00:00.499899+00 26248 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wvVGXq3xDCCogM_6hQitR1P8K80=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.501363+00 2025-12-17 08:00:00.501368+00 26249 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bT-w3XCC8OlHWiOaARq3UWYnW6I=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.502752+00 2025-12-17 08:00:00.502756+00 26250 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LoLoPhGK-m1mQa7TA9Dgfhr2Jt0=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.504088+00 2025-12-17 08:00:00.504092+00 26251 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ifyWIr5ZXmXjhYnF3c_RzKXX9ck=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.505411+00 2025-12-17 08:00:00.505415+00 26252 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PghYUr9joNkjoN8PgvU-3Fet10E=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.506739+00 2025-12-17 08:00:00.506743+00 26253 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JiVcS5tysRVrzHMdvTI06ceHsB8=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.508217+00 2025-12-17 08:00:00.508223+00 26254 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UUcn8WVcSFxuMI7Jnydyo0TY7II=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.509965+00 2025-12-17 08:00:00.509969+00 26255 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kMVuyI63Bw-95NaFBgcGY0GlKkI=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.511314+00 2025-12-17 08:00:00.511318+00 26256 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7IrchrWGrLfYKe_oS-hSP7jBm6g=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.512674+00 2025-12-17 08:00:00.51268+00 26257 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Z8xLC413UvkLqikqVdYnLRsb5A=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.514197+00 2025-12-17 08:00:00.514201+00 26258 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vps0C3OliSlgJ6SJ45T37JcaGRk=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.515529+00 2025-12-17 08:00:00.515534+00 26259 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SFA_W-AnIoC17BRXXx2ObOlyUiE=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.517093+00 2025-12-17 08:00:00.517097+00 26260 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4-JrKl7AahyLp1Xl_gadDDna-Gc=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.518644+00 2025-12-17 08:00:00.518648+00 26261 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iZu1Y6lstXyW1Uw9fVV0IC_m1Uk=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.520764+00 2025-12-17 08:00:00.52077+00 26262 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:irSKB0J9buNV9_2w3U_aR3EIZRI=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.522675+00 2025-12-17 08:00:00.52268+00 26263 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GElGMuKGa-x1OcfoK16zvUh09r8=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.524102+00 2025-12-17 08:00:00.524107+00 26264 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z0g1Q3BwyhIf2OobBz6radLEYzY=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.525417+00 2025-12-17 08:00:00.525422+00 26265 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:93UgdBPsdgkrLG-9h_hPgVaZnqI=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.526783+00 2025-12-17 08:00:00.526787+00 26266 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7N9ltEF9GfZpCnlb5TwM2Eko-HI=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.5281+00 2025-12-17 08:00:00.528105+00 26267 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vloroJIbVcL0E_9WAB0aehTxp3g=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.52951+00 2025-12-17 08:00:00.529515+00 26268 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:84mrouKRjY2wuGj8dSiDEJJQ24c=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.530914+00 2025-12-17 08:00:00.530919+00 26269 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0udi_1o1QMzqIilh210X7BpqiE4=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.532258+00 2025-12-17 08:00:00.532263+00 26270 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G02wyiD3dk55_1yLDPV3gWcy6vM=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.533571+00 2025-12-17 08:00:00.533576+00 26271 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vfChiByfyzGTZNxRmuCB9_t6ccw=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.534912+00 2025-12-17 08:00:00.534917+00 26272 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OPQNaGc7fzmEq_UUulZRgkVcGOs=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.536412+00 2025-12-17 08:00:00.536418+00 26273 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e0ghtEZO_XBKrAouoyCokrusf08=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.537795+00 2025-12-17 08:00:00.537799+00 26274 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5TzajhQEG4qTJ7ycrKz_xW-Q3Ow=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.539415+00 2025-12-17 08:00:00.539419+00 26275 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:opXo_ChhAib0TjwNWwBJuj5-l-k=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.541052+00 2025-12-17 08:00:00.541057+00 26276 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EmnHT-LdqxfUFCBJir6zywJcb6o=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.542662+00 2025-12-17 08:00:00.542666+00 26277 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ByX-JfEWrAM-ggCQVJskh7lIl_I=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.544274+00 2025-12-17 08:00:00.544278+00 26278 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZMDrtN1b8nf-dFqHUqsZdO873JQ=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.54616+00 2025-12-17 08:00:00.546166+00 26279 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ku5pMZIhcp5u0BCAeI0nfR3YWWU=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.54842+00 2025-12-17 08:00:00.548425+00 26280 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XSyXCJVjQc0fT_uqlyX3e4kaxcs=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.550239+00 2025-12-17 08:00:00.550244+00 26281 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VUYOMIB8NzlkaPaanp3zqzkwX5k=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.552148+00 2025-12-17 08:00:00.552153+00 26282 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tol4LHNzb4GNZ5vAKMP3s_kyLuI=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.55354+00 2025-12-17 08:00:00.553545+00 26283 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oJET0kUc392z6OvSxmqTgcPMPhI=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.554883+00 2025-12-17 08:00:00.554888+00 26284 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1EMnvUdPf4VjrVpnKS4EAbzJ9kM=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.556329+00 2025-12-17 08:00:00.556333+00 26285 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fxETUtehk5gfH7CNJBdSMir4PHo=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.55766+00 2025-12-17 08:00:00.557665+00 26286 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=1766044799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Xa3iNn_1iNouIucD8rjbA4gGfQ=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.95813+00 2025-12-17 08:00:00.958142+00 26287 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F-rhLh_neDEobihkc0_6aX4y0jY=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.960132+00 2025-12-17 08:00:00.960138+00 26288 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oWYoSgAssdUJ2XOBxE1szsShhQM=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.961594+00 2025-12-17 08:00:00.961599+00 26289 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YU6lv8ehhkbxh-rHShAhc_anVSw=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.9632+00 2025-12-17 08:00:00.963205+00 26290 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CTeGyBtTf27mDeXTRRo6y-o5EeA=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.964663+00 2025-12-17 08:00:00.964668+00 26291 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F009CIBk99-rqQB24zKumGuFfWg=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.965986+00 2025-12-17 08:00:00.96599+00 26292 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ct3VaWuzOFp8cJsxzPSXZ8WHtEk=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.967941+00 2025-12-17 08:00:00.967948+00 26293 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pEl5aXmJi5GTGfQLnDCCJ0deRVg=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.96997+00 2025-12-17 08:00:00.969976+00 26294 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GhUYZWH5JmqVn0xG9juVG3Ral0g=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.971581+00 2025-12-17 08:00:00.971585+00 26295 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NNZSekp-Vv1kOG_BqbYMFpsYC9A=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.972912+00 2025-12-17 08:00:00.972917+00 26296 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3U3gonlvBuiwRquQSvyBKvIuEqw=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.974233+00 2025-12-17 08:00:00.974237+00 26297 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u2qGMyljQl-EwS322JtcV2lIjAs=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.975554+00 2025-12-17 08:00:00.975558+00 26298 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a2X9VWWGZjmDeZZhfKin1dE3aw0=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.976891+00 2025-12-17 08:00:00.976895+00 26299 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h436K4pMZK8KxnTJRZRiNxR_k5k=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.978252+00 2025-12-17 08:00:00.978257+00 26300 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pkPColv4orB7uYkkNheY8Mrvydk=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.979781+00 2025-12-17 08:00:00.979785+00 26301 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N8C2MaGAeLH1WGwQ8cZC4QJq9D8=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.98145+00 2025-12-17 08:00:00.981456+00 26302 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k2eKNhAvAlEc_fJBZMYR0DmwXAQ=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.982974+00 2025-12-17 08:00:00.98298+00 26303 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_tvu0IPI1PlfsG1WuNYY-LKEdyM=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.984603+00 2025-12-17 08:00:00.984607+00 26304 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hqnDlinSHgESwGGvLN-5qsqHxLk=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.985945+00 2025-12-17 08:00:00.985949+00 26305 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cMxzYYLA0aUggtO9KQzY8AVLA_s=", "createTime": "2024-08-15 14:43:43"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.987349+00 2025-12-17 08:00:00.987355+00 26306 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I-9VxMWz7Vmog3r-HQPMMWKzt5Q=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.988753+00 2025-12-17 08:00:00.988758+00 26307 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iwa2z6ch0ymN0olZWHVPS57JDDY=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.990124+00 2025-12-17 08:00:00.990128+00 26308 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MqkVS42ydNK4UDfLC1ry8hw3q0Q=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.991472+00 2025-12-17 08:00:00.991477+00 26309 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O9umcS8J_RIs0kfWXwvc6WWIV3k=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.992808+00 2025-12-17 08:00:00.992813+00 26310 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kihAWYudv9Qdxn7kN5hKSvUP7QY=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.006661+00 2025-12-17 08:00:01.006666+00 26319 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zPqs1ZXJqFQ-imQR0g6xeK0mZRg=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.994165+00 2025-12-17 08:00:00.994171+00 26311 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kHijBVpTs8VCg0cVhIGh6UkONS4=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.996731+00 2025-12-17 08:00:00.996737+00 26312 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A2Sa5-yoqMSIYoNsx9lkwSUv9k0=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.998314+00 2025-12-17 08:00:00.99832+00 26313 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PfbnI4kYEeOzyoToXfcJn8Tn3gk=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:00.99969+00 2025-12-17 08:00:00.999694+00 26314 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NLWJ7JbyFB7yAayhKQ1-H4qdUHY=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.001086+00 2025-12-17 08:00:01.001091+00 26315 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tK1ZKAQZ1TSYjTPcfWCmz1b7_E8=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.002465+00 2025-12-17 08:00:01.00247+00 26316 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rnFa7GZQet84YR7UbK5mxDZbPqE=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.00394+00 2025-12-17 08:00:01.003945+00 26317 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1_xPan6OGnGNFJ7vze6DB4NmcTY=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.005268+00 2025-12-17 08:00:01.005272+00 26318 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uoLTOKg3_hlw5-ZQzOZ5HrXPVdk=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.008083+00 2025-12-17 08:00:01.008088+00 26320 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1XWdw93iM5naoAPhX5pGTVto6IQ=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.009418+00 2025-12-17 08:00:01.009423+00 26321 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:je6qVuEYkLIg-kmEGo5lPeZfWsA=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.010773+00 2025-12-17 08:00:01.010778+00 26322 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jsEBKR1kkouUZwPQIMJJ5kHXpaE=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.012302+00 2025-12-17 08:00:01.012306+00 26323 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GmrYvnBigLVXw5rlfWennwZtpnw=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.013668+00 2025-12-17 08:00:01.013672+00 26324 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jhyIH1OGUrSNr5IJ6Nre3RV_XAw=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.015032+00 2025-12-17 08:00:01.015036+00 26325 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lDBZmgLeVwnumrWDGDnR7N9ZQPw=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.016426+00 2025-12-17 08:00:01.016431+00 26326 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r9MS9KMMoUdCtoUhkcE_XCLvJ5M=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.017764+00 2025-12-17 08:00:01.017769+00 26327 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kt-wGqTw6_2ZUiIqOwBf0tEJT7Y=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.019665+00 2025-12-17 08:00:01.01967+00 26328 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:950VJjBlZXON2D0xujW3JodNlQA=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.021076+00 2025-12-17 08:00:01.021081+00 26329 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o53_snEnoLcESSK9f0hdfd7hxZY=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.02262+00 2025-12-17 08:00:01.022627+00 26330 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xAkSNrR-FOmdRry-6UjcQTXIDKk=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.024152+00 2025-12-17 08:00:01.024157+00 26331 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yPU7T4EM1bG9dMYRuoIas2azeEs=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.026061+00 2025-12-17 08:00:01.026067+00 26332 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:21iu0XBOzze2IgVAS8zluko5RVU=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.027759+00 2025-12-17 08:00:01.027763+00 26333 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p9hITdXKACwIVd28f57zDRn3wxE=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.029122+00 2025-12-17 08:00:01.029127+00 26334 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2aZ4QV2cYdq1kldSOCjC9E7qN0w=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.030502+00 2025-12-17 08:00:01.030506+00 26335 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r1t7p0EZeY1q2U9QEq3Cj58-Kz4=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.037458+00 2025-12-17 08:00:01.037462+00 26340 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PlwV61MY9NvGsyVkCFENeL_yfCU=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.031874+00 2025-12-17 08:00:01.031878+00 26336 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nzJQc7rE_93taP5TKasW3p6c8yc=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.033335+00 2025-12-17 08:00:01.03334+00 26337 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r785TwOXf94bjSYVVDcINtjdOK4=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.034741+00 2025-12-17 08:00:01.034745+00 26338 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FkRvXnYPuhxM5VLShqub0zxEfNw=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.036122+00 2025-12-17 08:00:01.036127+00 26339 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O-NB1A7yQlthXpESFxQL91yiXv0=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.038817+00 2025-12-17 08:00:01.038822+00 26341 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2m5W_AaNgBXTkftftVkJ4lwilWg=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.040403+00 2025-12-17 08:00:01.040408+00 26342 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:87QPNWu9PI2fQjqm-_CNO1oRyGg=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.041822+00 2025-12-17 08:00:01.041827+00 26343 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OpqzHcxw9xqvx60VSlEuSK7Eks0=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.04318+00 2025-12-17 08:00:01.043184+00 26344 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fbW3l2xhfBFQ3mtXdfm4nk7CkRs=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.044545+00 2025-12-17 08:00:01.044549+00 26345 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xtr8_tH9yGGK50Nr9xNRrUolFd0=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.045977+00 2025-12-17 08:00:01.045982+00 26346 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RucNH9JpTkvcK1_WOWjKjle22dE=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.047331+00 2025-12-17 08:00:01.047336+00 26347 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5A0XjeNVCc-arLmt0oGU6hBkfzM=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.048662+00 2025-12-17 08:00:01.048666+00 26348 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vLBItLVau2zdbMFsi9q3XLrKUqA=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.05749+00 2025-12-17 08:00:01.057495+00 26353 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yoR34E1mdmLOjYTfdPXWAX29yh0=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.050047+00 2025-12-17 08:00:01.050053+00 26349 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:flu63pKYuNF2QNHvgPzQz8zVPlg=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.052052+00 2025-12-17 08:00:01.052059+00 26350 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ozcutiR91DQmTAQbg7dKiiHWJpY=", "createTime": "2024-08-15 14:43:48"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.05407+00 2025-12-17 08:00:01.054075+00 26351 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9QWugjqELJSqAPnqB7qkhUrcN38=", "createTime": "2024-08-15 14:43:48"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.055781+00 2025-12-17 08:00:01.055786+00 26352 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SZa58XqL8ZusYgcNkJdjBGFHpuw=", "createTime": "2024-08-15 14:43:48"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.059153+00 2025-12-17 08:00:01.059158+00 26354 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DyiEH--VwDjjrRFtdfpt3d-5fXk=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.06055+00 2025-12-17 08:00:01.060554+00 26355 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kCw3P4Vp1U2b2ff85WGyDOSb-pU=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.061903+00 2025-12-17 08:00:01.061908+00 26356 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eeMd-kfZtlC-LHGXTzN08lrvsqE=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.06326+00 2025-12-17 08:00:01.063264+00 26357 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:086LMSUk6PKitRFvNfUwqzQ6ymE=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.064596+00 2025-12-17 08:00:01.0646+00 26358 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U8ElMsQ2eHv4ljaUwEx4kVuwDEc=", "createTime": "2024-08-15 14:43:48"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.065962+00 2025-12-17 08:00:01.065967+00 26359 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6d1j0IdOxVj-WjB9P8y4M_XQK1c=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.067601+00 2025-12-17 08:00:01.067606+00 26360 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w4SCweekMYJX5OOO9xL7as6vdeU=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.06907+00 2025-12-17 08:00:01.069074+00 26361 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pMxvK2DvcgEsCEgI0dUBSxJGdZ8=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.070501+00 2025-12-17 08:00:01.070506+00 26362 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GMBJ5LiXlzkzblGY_-TMAETuRoc=", "createTime": "2024-08-15 14:43:48"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.071972+00 2025-12-17 08:00:01.071977+00 26363 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eiSyx6juEm3X7UzLq7SX0_8BrAU=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.073461+00 2025-12-17 08:00:01.073466+00 26364 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wp8L2HxAWCbAmbhgyCRid_340Sg=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.07514+00 2025-12-17 08:00:01.075144+00 26365 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0xIUvRMS-zreyubaZxy5xiRxy4s=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.076541+00 2025-12-17 08:00:01.076546+00 26366 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2zlYC8PmaNSiYQJgIxN8eSvMDg8=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.078061+00 2025-12-17 08:00:01.078067+00 26367 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wgx57bXcdN2scS6XtFnt8iqso_0=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.081397+00 2025-12-17 08:00:01.081408+00 26368 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sy2exOqef6U_iVJlCP6vNTHgf7g=", "createTime": "2024-08-15 14:43:50"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.083449+00 2025-12-17 08:00:01.083454+00 26369 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vuMFSm5gYe-B3nAAH_RcecACVns=", "createTime": "2024-08-15 14:43:50"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.085734+00 2025-12-17 08:00:01.08574+00 26370 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ajNZbymn_w_woz0JxeKhiVos0u8=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.087816+00 2025-12-17 08:00:01.087821+00 26371 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:72mYawEbtAE5Ax_c8BgKM25Gljs=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.089643+00 2025-12-17 08:00:01.089649+00 26372 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nVHcbird8am3HYpLZtgDYeYRWP0=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.091324+00 2025-12-17 08:00:01.091329+00 26373 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xdOs0xdrSJAdB-TBSap6ACJaAwA=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.092785+00 2025-12-17 08:00:01.09279+00 26374 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EFwpwyaS7kXLETF374WrWYL1j8c=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.094192+00 2025-12-17 08:00:01.094197+00 26375 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y5nqx7-Fh_mlIg-u6NnA_lQgtlE=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.09578+00 2025-12-17 08:00:01.095785+00 26376 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iu-Yds-sQ4Ck4_yp3LlwdSNxtO8=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.097187+00 2025-12-17 08:00:01.097192+00 26377 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BUAEKFCch3e_kmiQVOnB9HfMI_M=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.098541+00 2025-12-17 08:00:01.098546+00 26378 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dPriYcz8B0UNeyL6b0bLUrKRfAA=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.100021+00 2025-12-17 08:00:01.100026+00 26379 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lDN2QcevRIWj5BukRtG1Gtd1UtE=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.101427+00 2025-12-17 08:00:01.101431+00 26380 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-A7E4VUNyT2D-wX92wG28_YWY1Y=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.102948+00 2025-12-17 08:00:01.102952+00 26381 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IF7lbagpWubMpRvcmZo9rro83uY=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.1046+00 2025-12-17 08:00:01.104606+00 26382 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:59gsGwCvPMqKBTicWv8m84mVA74=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.106473+00 2025-12-17 08:00:01.106478+00 26383 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EGwncocoOHwmXtPtqdmXrGBcQH8=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.108035+00 2025-12-17 08:00:01.108041+00 26384 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sLe5EEmlseh-QrCOM5o9UCcCvPU=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.109498+00 2025-12-17 08:00:01.109504+00 26385 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iWet8HO28JAw5b6vWhCNTgptfXM=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:00:01.110935+00 2025-12-17 08:00:01.11094+00 26386 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=1766044800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fdk1dQYEdshJf5_RUixc3yQ5UGg=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.370231+00 2025-12-17 08:10:00.370239+00 26387 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t9NCHiTnSGvcDJplJog0o2kdrLY=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.372937+00 2025-12-17 08:10:00.372942+00 26388 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:usm6qrDGWQXL3Fbw1DoSX0vKDME=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.374696+00 2025-12-17 08:10:00.374702+00 26389 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qz_GPpvz4b2U_HiWKPb-nj7huMM=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.376302+00 2025-12-17 08:10:00.376308+00 26390 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a4sV_TtESAaEIuqeNBZPeKhPYH8=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.377688+00 2025-12-17 08:10:00.377694+00 26391 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ECvmlbPx8gdNNC7IfD19K37WoRw=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.379409+00 2025-12-17 08:10:00.379413+00 26392 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G1-gZKe4EP8x9X0njVHo4Xgqoiw=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.381084+00 2025-12-17 08:10:00.381088+00 26393 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CRItm03g1Kob_KH0cWEf8Nx6fEk=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.382526+00 2025-12-17 08:10:00.382531+00 26394 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qRA11Em-26eYzFen5wYlgq1D9Is=", "createTime": "2024-08-15 14:43:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.383946+00 2025-12-17 08:10:00.38395+00 26395 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_hsDo_hG-R7C_86Aminbbo7y0vY=", "createTime": "2024-08-15 14:43:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.385325+00 2025-12-17 08:10:00.38533+00 26396 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eAcKTJn_XyFByjDYrzkVXYkpp9U=", "createTime": "2024-08-15 14:43:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.386645+00 2025-12-17 08:10:00.386649+00 26397 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oWsy3TD7rChrhZVg9nefP0yAKxE=", "createTime": "2024-08-15 14:43:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.387986+00 2025-12-17 08:10:00.38799+00 26398 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7P6PVD8PdRlnb0GzZbXAmPc0k9I=", "createTime": "2024-08-15 14:43:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.401592+00 2025-12-17 08:10:00.4016+00 26408 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lJ5l9cPyAZaydkMOLME093_x-js=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.389311+00 2025-12-17 08:10:00.389315+00 26399 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wSuiqQomRrv9569R9DOZCmtv5KU=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.390638+00 2025-12-17 08:10:00.390642+00 26400 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wp_nBuuLcWc5sLLqL5H125YcE0U=", "createTime": "2024-08-15 14:43:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.392013+00 2025-12-17 08:10:00.392019+00 26401 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G1eMWpzrReLWeIfr186y7HKGYvs=", "createTime": "2024-08-15 14:43:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.393477+00 2025-12-17 08:10:00.393481+00 26402 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sRpqkY1PC3FLkyTmwKVoUpR3ExQ=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.394836+00 2025-12-17 08:10:00.394841+00 26403 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qrpDqGe5lf5RKGzJVj7y2OjdrTM=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.39619+00 2025-12-17 08:10:00.396195+00 26404 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3e0G2KmjnWs9mgfNazQeNMWWLlA=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.397534+00 2025-12-17 08:10:00.397539+00 26405 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zQvYrktJ9IbBDyvmmMPn0keC2io=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.398876+00 2025-12-17 08:10:00.39888+00 26406 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OfPhKAY2ZyrYMUJ2amWsVyEPfoc=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.400198+00 2025-12-17 08:10:00.400203+00 26407 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0hVyD0sgblj-7CymyGsSxjzi5V4=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.403047+00 2025-12-17 08:10:00.403052+00 26409 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AHYG95RcTRr3Tomn6TZcdFtXlxQ=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.404444+00 2025-12-17 08:10:00.404454+00 26410 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kV21GB4gsDD6bx43IIqNYZZ-PPk=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.405838+00 2025-12-17 08:10:00.405843+00 26411 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yUNyQPdcmK4avdDgcmTzjE6UUAo=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.407175+00 2025-12-17 08:10:00.40718+00 26412 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-8PWewFHuvXGiXfmEjizi-7Rebw=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.409901+00 2025-12-17 08:10:00.40991+00 26413 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kPjITGyMSvpXig4k6RYXVKMBdRM=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.41194+00 2025-12-17 08:10:00.411946+00 26414 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1bCMwOlWQnwzeX24NbPL0tJqcC0=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.413401+00 2025-12-17 08:10:00.413406+00 26415 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_EfFYuanGO-QfKnJ7FO_iHk3SCU=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.414769+00 2025-12-17 08:10:00.414774+00 26416 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ThPuBQ8BZE6TR2kCWg704wHTyq4=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.416126+00 2025-12-17 08:10:00.416131+00 26417 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xPB2k0x1oeMdx2BdokDFxkKkOxs=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.417479+00 2025-12-17 08:10:00.417483+00 26418 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mKEt-0j7G2l2uDbmq3lZd8K69qI=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.418815+00 2025-12-17 08:10:00.418819+00 26419 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VGYSC1wzgHcbbXiH-wJeAOo33EA=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.420147+00 2025-12-17 08:10:00.420151+00 26420 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yhyMBBgvceLQxFPBaJnske-WcY4=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.421475+00 2025-12-17 08:10:00.421479+00 26421 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ij32DsUwwkXKCmj_lwUibdq2KvY=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.422806+00 2025-12-17 08:10:00.42281+00 26422 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K6nn_SnkWXW68-jU47tXD1Js3A4=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.424277+00 2025-12-17 08:10:00.424282+00 26423 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iDdTEPwNlvxgNqQSQecuzqObZEQ=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.425972+00 2025-12-17 08:10:00.425976+00 26424 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gFJmCaK1Bh90kL9eLdzu_M8WHg4=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.42742+00 2025-12-17 08:10:00.427426+00 26425 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oMpMKsLWRHDlLpRsliY8NzX-QcU=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.428893+00 2025-12-17 08:10:00.428899+00 26426 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zn90R1J6N9yZ5_DllA_UiEFc8Ok=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.430397+00 2025-12-17 08:10:00.430402+00 26427 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DomWNlt8k0KUEZ5zPDE__cycHxw=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.431835+00 2025-12-17 08:10:00.431841+00 26428 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vc1ZCkiMWe6nd1ETtn4mNoKoV2c=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.433353+00 2025-12-17 08:10:00.433358+00 26429 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JIcbWo5XhZttr5o3iPeLgHSlezk=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.441096+00 2025-12-17 08:10:00.441105+00 26434 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:le4BgWGEP8JEuHOCnBwl_6xlIC4=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.435051+00 2025-12-17 08:10:00.435056+00 26430 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:75axE6y4QcZ-0ZsdOHrhxh5nugA=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.436679+00 2025-12-17 08:10:00.436684+00 26431 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VTJTfb-DlSsRyJh8-sv8qVjeies=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.438213+00 2025-12-17 08:10:00.438218+00 26432 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QYYgycspB56Y6WITniGsyrTe1dM=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.439716+00 2025-12-17 08:10:00.439721+00 26433 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aO_HeuT3edaR3vN2k3KsEymbMpk=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.442462+00 2025-12-17 08:10:00.442466+00 26435 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6ps_JGbPpk63y48AyKxpV7a2Apg=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.443933+00 2025-12-17 08:10:00.443938+00 26436 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WUDWFf0b1KsN4M91A5um6ZP4b1U=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.445292+00 2025-12-17 08:10:00.445297+00 26437 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D5Xl_DCU-pB9Pm0YLw_GCZhUUKc=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.446657+00 2025-12-17 08:10:00.446661+00 26438 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HMwElzNWl11YUJQvAv44HsDLBiw=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.44799+00 2025-12-17 08:10:00.447995+00 26439 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bid_fxALNBPoW-qrmVT37M3xJGA=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.449366+00 2025-12-17 08:10:00.44937+00 26440 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NqQ2Li-G7G8bZ9CCtVr_-hG447I=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.450775+00 2025-12-17 08:10:00.450781+00 26441 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FRhV-seQUxCoLcSx2OGEdSRDMZY=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.452277+00 2025-12-17 08:10:00.452281+00 26442 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ONCZl-wgO1WFmyI71O532iWvHFk=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.453789+00 2025-12-17 08:10:00.453793+00 26443 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2l3UhKCSMp0VVvmjLaH1IOx3CFo=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.455151+00 2025-12-17 08:10:00.455155+00 26444 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TPKtaQ1YsdPQbjWfMGqIvoK-RYA=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.456505+00 2025-12-17 08:10:00.45651+00 26445 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ps2K9LFak0yXdK-r2knnLdM8Vvo=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.457908+00 2025-12-17 08:10:00.457913+00 26446 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:phzkKzUOG4uPgn5mVTwRXQ5x7No=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.459385+00 2025-12-17 08:10:00.45939+00 26447 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cjac7uPwyCbakmtf_QLty7VE6bM=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.460788+00 2025-12-17 08:10:00.460793+00 26448 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p_UEmnyaGcMxXdyMcmJXO6krQGo=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.46214+00 2025-12-17 08:10:00.462145+00 26449 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kQ0WnZmbs518YtCAHpLCJcZ0atU=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.463896+00 2025-12-17 08:10:00.463906+00 26450 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6l5IV_c2Ue8DOE1TW0kEGiY0KaA=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.466861+00 2025-12-17 08:10:00.46687+00 26451 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ew1979T9JbDgAaVYgZ68VebAGVc=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.469477+00 2025-12-17 08:10:00.469484+00 26452 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pa2akRjqahtJw7eRoFKArEauMQo=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.472128+00 2025-12-17 08:10:00.472135+00 26453 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UvaoeILSkMd_uWaJ7I2TwTnySdI=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.474117+00 2025-12-17 08:10:00.474122+00 26454 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eU_BKlTyDqzqOK6JZNFR1aToAR8=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.475833+00 2025-12-17 08:10:00.475838+00 26455 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dor9Wad-loaIWenkRopHNjg1A0E=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.477509+00 2025-12-17 08:10:00.477514+00 26456 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hqd9ZmspYw7cMs8IQeAKoFhlLOc=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.479152+00 2025-12-17 08:10:00.479156+00 26457 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AvDpKzW_HG3tNUWp7DwMM9BpWww=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.480538+00 2025-12-17 08:10:00.480543+00 26458 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:43aXFdodba2oq8rSnZvfO0HK0L0=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.481952+00 2025-12-17 08:10:00.481957+00 26459 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:90oCxtxK6WntLuMvqGJTQNkd2O8=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.488821+00 2025-12-17 08:10:00.488826+00 26464 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9uLhZN2C8asBebYZf63Cy-09MXw=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.483321+00 2025-12-17 08:10:00.483325+00 26460 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kZeh4W_lXHG_nwM53d4aylfFf_M=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.484721+00 2025-12-17 08:10:00.484726+00 26461 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:THDSZmjrunZjg55JKz5fVYan704=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.486109+00 2025-12-17 08:10:00.486113+00 26462 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O5VcjjmrcVoyiCT9k3LdBVFMgbY=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.487467+00 2025-12-17 08:10:00.487471+00 26463 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1HyMSxbfuRqG4urxrWeQiaDpWes=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.490183+00 2025-12-17 08:10:00.490188+00 26465 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XhOD7Ci5Dtbx0YLF9syIr8Q7y9Q=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.491514+00 2025-12-17 08:10:00.491518+00 26466 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zI_K1tM1U5rCLshmX4x2kIs2uUg=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.493154+00 2025-12-17 08:10:00.493158+00 26467 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xrE-FDKC-S0bZPTg_FEbs1S-sUA=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.494691+00 2025-12-17 08:10:00.494696+00 26468 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D5xVGKqZW8xBC-nw0i7QwQwwCeA=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.496332+00 2025-12-17 08:10:00.496337+00 26469 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WzAkTkyIxEsHp-j1fBOAs0j8u1U=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.497694+00 2025-12-17 08:10:00.497699+00 26470 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5YCsV5XxoqX4FftJ5bMtHMEp8o=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.499167+00 2025-12-17 08:10:00.499172+00 26471 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A482gQYXYK1L3FQaeS1su-PFM30=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.500529+00 2025-12-17 08:10:00.500533+00 26472 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lqViSeK3QhgnsbsGKa_NuDdqNQ0=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.50188+00 2025-12-17 08:10:00.501885+00 26473 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N_4M1yee6yTuFX0lxGovBVObCj8=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.50323+00 2025-12-17 08:10:00.503234+00 26474 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0UCJksupR1PgeMkLoN4Oxc5TQUw=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.504568+00 2025-12-17 08:10:00.504572+00 26475 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d6_IHptQ6TwvlGXUFcWC6UZUCDw=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.5059+00 2025-12-17 08:10:00.505904+00 26476 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P5Hm9LBDkcrMci3vNU1TWTWtBbA=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.507233+00 2025-12-17 08:10:00.507237+00 26477 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BKgojqj_LRespoXBUVUtYBK-_Qo=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.508579+00 2025-12-17 08:10:00.508584+00 26478 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RSwK6bc49jzgkV6uf8iA_gdTCyM=", "createTime": "2024-08-15 14:44:01"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.510069+00 2025-12-17 08:10:00.510073+00 26479 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xvCa7wmT9nVGeQfdGGNhCmxeznA=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.511461+00 2025-12-17 08:10:00.511466+00 26480 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RgE4WB92XMc7lm8LTr9wP0e-uXU=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.512924+00 2025-12-17 08:10:00.512928+00 26481 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A7CGiGVfIK-kIzJHp4TDGO5Z2cI=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.514354+00 2025-12-17 08:10:00.514358+00 26482 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SKx7qpI5HpnrxyaZAv3v7nG_UQs=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.515681+00 2025-12-17 08:10:00.515685+00 26483 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MOKLbQFnDNahl0w8o9CahTpikhU=", "createTime": "2024-08-15 14:44:01"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.517052+00 2025-12-17 08:10:00.517056+00 26484 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FCHAlu2aAKR9a08iV8mKwEBAGm8=", "createTime": "2024-08-15 14:44:01"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.518396+00 2025-12-17 08:10:00.518401+00 26485 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HLiFNo3UuhZojhmf0kEtU6RgHEg=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:00.519809+00 2025-12-17 08:10:00.519814+00 26486 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=1766045399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7hgltKPLgXk8M90sjkaLJoCKciQ=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.005861+00 2025-12-17 08:10:01.005874+00 26487 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1FH3ROcHc7uz-XjvmFNC5-idS6U=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.008457+00 2025-12-17 08:10:01.008464+00 26488 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nXij2z9r8DMmChoIXrMp8AApX3o=", "createTime": "2024-08-15 14:44:02"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.010157+00 2025-12-17 08:10:01.010163+00 26489 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KeJzJBTJ6vjKX1aTxuQkcyDbkaA=", "createTime": "2024-08-15 14:44:02"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.011781+00 2025-12-17 08:10:01.011785+00 26490 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XdwhX6pReuDBY-9TYH2ddbItGrw=", "createTime": "2024-08-15 14:44:02"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.013158+00 2025-12-17 08:10:01.013162+00 26491 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GNcludEflALv2UFTsxi5H-Euqto=", "createTime": "2024-08-15 14:44:02"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.014524+00 2025-12-17 08:10:01.014529+00 26492 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Id7tp06zrvv67cTp8fkK0cK2gCk=", "createTime": "2024-08-15 14:44:02"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.016271+00 2025-12-17 08:10:01.016276+00 26493 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ge__iX21LZyki_zRr7CE_FgQRM=", "createTime": "2024-08-15 14:44:02"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.017661+00 2025-12-17 08:10:01.017666+00 26494 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PSGX0xLnPuBIoPZTHq9W4i2gTEw=", "createTime": "2024-08-15 14:44:02"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.019068+00 2025-12-17 08:10:01.019073+00 26495 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KQWBC0EgcPf-_qoqQFgVWswq1CQ=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.021747+00 2025-12-17 08:10:01.021751+00 26497 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AkvejvPIgv0rAydox3zIFOfUqu0=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.028962+00 2025-12-17 08:10:01.028968+00 26502 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:URwW8_adKwHjixJjNsPEu436hOc=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.023137+00 2025-12-17 08:10:01.023142+00 26498 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ILFtd8FNgSvw6KVZOIrKJ-DEefw=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.024569+00 2025-12-17 08:10:01.024574+00 26499 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YVTrGKv1pDfXjLBxLmF922Hreik=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.026082+00 2025-12-17 08:10:01.026087+00 26500 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uV2AA3_WYIL-x5rxRY9vBGxJoss=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.027572+00 2025-12-17 08:10:01.027577+00 26501 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oeub3efnqgKgQ-1njtnoDTFbE_Y=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.020396+00 2025-12-17 08:10:01.020401+00 26496 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-R3KjEOzvudCO1SYVw0zwNCp5yw=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.032369+00 2025-12-17 08:10:01.032374+00 26503 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mUkIrMPWeTcZGC67FI1mlOjakcU=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.033758+00 2025-12-17 08:10:01.033763+00 26504 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Rob4Hdo6KgozVgipaKnqjblV_s=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.035366+00 2025-12-17 08:10:01.035371+00 26505 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kexrq8YE9DmUIGgr4XsrQk2OozY=", "createTime": "2024-08-15 14:44:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.036735+00 2025-12-17 08:10:01.036739+00 26506 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TpVeCaZBctlmZvXGXJtPnzoFlyA=", "createTime": "2024-08-15 14:44:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.03809+00 2025-12-17 08:10:01.038095+00 26507 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XpuoHuC9hltLzrAuMi-9bnr_uhU=", "createTime": "2024-08-15 14:44:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.039455+00 2025-12-17 08:10:01.03946+00 26508 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xCZlqITxv0rY-0A5kA96hnsP2uk=", "createTime": "2024-08-15 14:44:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.040842+00 2025-12-17 08:10:01.040846+00 26509 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vGu6yYrvRO1fsC5ORodiI1WPMjw=", "createTime": "2024-08-15 14:44:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.042179+00 2025-12-17 08:10:01.042184+00 26510 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ltBYog-hH2pkjr83xh_FunbpirQ=", "createTime": "2024-08-15 14:44:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.043628+00 2025-12-17 08:10:01.043632+00 26511 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p-8gDxTJbrgpGMZX5jzzMFVwq_Q=", "createTime": "2024-08-15 14:44:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.045061+00 2025-12-17 08:10:01.045066+00 26512 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iBzxxU_DI_wHEPygYtjimlptxxo=", "createTime": "2024-08-15 14:44:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.046416+00 2025-12-17 08:10:01.04642+00 26513 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Igds4t27JuQn5-Q1-s5iP2qVaEE=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.047758+00 2025-12-17 08:10:01.047762+00 26514 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sQRrxQaApj5u9DEYsIwVc-6ZU9Q=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.049087+00 2025-12-17 08:10:01.049091+00 26515 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1H8AlxoL0SLXUk9_eLhIWF2TEqI=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.050421+00 2025-12-17 08:10:01.050426+00 26516 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rspTLZ1k6E2Xo-2anlD9cAnQ4PY=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.052159+00 2025-12-17 08:10:01.052164+00 26517 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:10obbXT_a3Cy4Ug-CvQDNithjRc=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.053682+00 2025-12-17 08:10:01.053686+00 26518 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QxxF3FVGm6aVHP93w39Dq_cipW0=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.055072+00 2025-12-17 08:10:01.055076+00 26519 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EvMUinM3nKrhiu-lTKUhANmZIOc=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.056436+00 2025-12-17 08:10:01.056441+00 26520 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aQQv4dcdyiZu8gM5CqqhEHOCRz4=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.057806+00 2025-12-17 08:10:01.05781+00 26521 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nxddStmpLuFqAlj03hU2MG7Pf08=", "createTime": "2024-08-15 14:44:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.059247+00 2025-12-17 08:10:01.059253+00 26522 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R6gt6apIhm6aWLjzynTmonJVU3E=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.060727+00 2025-12-17 08:10:01.060732+00 26523 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nqb1oZR8KM_-q5NJfMUcygaSQYc=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.062151+00 2025-12-17 08:10:01.062156+00 26524 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lbpqoqasJDl8nAtIbJydbBwI9qc=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.063535+00 2025-12-17 08:10:01.06354+00 26525 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ujs1QgliflDzfU-PD3aoOIoZT9Y=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.064887+00 2025-12-17 08:10:01.064892+00 26526 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OWG0qm0k8ffDybKJ6drIskVXSoM=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.066225+00 2025-12-17 08:10:01.06623+00 26527 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s3I9CDHpz_a8ah3cF1PMsfRMnmg=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.067929+00 2025-12-17 08:10:01.067936+00 26528 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sMeV2LQq2sTGTrx6RTYwNVw-0HY=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.069659+00 2025-12-17 08:10:01.069664+00 26529 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j_LxgT5FaGNmEskLVfsJREXhFZc=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.071063+00 2025-12-17 08:10:01.071068+00 26530 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wOPd08chMVoFmGVcCcNIsRqr-vo=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.072522+00 2025-12-17 08:10:01.072527+00 26531 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n4sp5y7BhJiHbGnspIMXoRxNibU=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.074047+00 2025-12-17 08:10:01.074051+00 26532 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ozBbaCNqV1xMueTQ1rGCtmu1cy4=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.075425+00 2025-12-17 08:10:01.07543+00 26533 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5svgtblMThXZv-YLQicgLzrw1ZE=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.076794+00 2025-12-17 08:10:01.076799+00 26534 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vDTiFbSGAdGR3oYr1s-nq-h9qHc=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.078239+00 2025-12-17 08:10:01.078245+00 26535 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G2OGk05NyvYfc_V5Giwujs_YnrU=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.080606+00 2025-12-17 08:10:01.080612+00 26536 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NFmkJ1XMIRNGpZJkA-QkDD-Jmfw=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.083465+00 2025-12-17 08:10:01.083474+00 26537 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:291pU5S4wH3Ze1JRUBs_LCzEo0A=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.089077+00 2025-12-17 08:10:01.089085+00 26539 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jddZQso86d9IcDiEUedZT6wqEjc=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.091493+00 2025-12-17 08:10:01.0915+00 26540 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yX48Qb7KjAUQMvhCg2_2mrDt1_c=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.093703+00 2025-12-17 08:10:01.093709+00 26541 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qjbIIk-JHPEfyvozfP1sfDELCxM=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.086405+00 2025-12-17 08:10:01.086413+00 26538 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w2khHUIDziTpXo4xKWR6Nt4AfO0=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.097152+00 2025-12-17 08:10:01.097157+00 26542 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KAmUwtBXdOfCBfYpwiSFkVwJ_OQ=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.098838+00 2025-12-17 08:10:01.098843+00 26543 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9BjrYE_k_e4-2eCpcoO5hTKCxxk=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.100248+00 2025-12-17 08:10:01.100253+00 26544 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_c1nknZdgKtrR5SzmpPS85J897U=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.101627+00 2025-12-17 08:10:01.101632+00 26545 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gpDrwPU0pIDkA_22NKVr2OxErnE=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.102989+00 2025-12-17 08:10:01.102993+00 26546 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:clJ61n3u95xWt_IOe6SncYBnFcU=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.104382+00 2025-12-17 08:10:01.104387+00 26547 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cwGVee0i4wwCyA8QreZFCu3ZHlo=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.106082+00 2025-12-17 08:10:01.106087+00 26548 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZOTQdEN-l3dj0FXFRZlblHUeFmc=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.107678+00 2025-12-17 08:10:01.107683+00 26549 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sWkydM5NXY1o-4gz7mw-UvCA_zc=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.109176+00 2025-12-17 08:10:01.109181+00 26550 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YlKAmmGxSrPSeQaVlD5de2F5xFY=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.110619+00 2025-12-17 08:10:01.110623+00 26551 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:faaphpBP9awaA6gNKqB9oEavKV4=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.112047+00 2025-12-17 08:10:01.112052+00 26552 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r993Px4gjnMBUvp5PyrxYh-OAeI=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.113497+00 2025-12-17 08:10:01.113502+00 26553 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8j8Hb53XLfoOH6Jx0gXetJAcaO8=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.114917+00 2025-12-17 08:10:01.114921+00 26554 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yCV7k-i5ID9JYGFp9mwySmllxy0=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.116266+00 2025-12-17 08:10:01.11627+00 26555 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b_ejptlKNI4SKFMFJIaOqxCrMfU=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.117628+00 2025-12-17 08:10:01.117632+00 26556 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hScRf8j66N0aqSV_doOGlI6n8m0=", "createTime": "2024-08-15 14:44:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.119005+00 2025-12-17 08:10:01.119009+00 26557 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0kuuvJBPgR9DDVH3z4a62iD-zXI=", "createTime": "2024-08-15 14:44:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.120364+00 2025-12-17 08:10:01.120368+00 26558 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LZtebgzBKCJdXgN2gbL8XFen470=", "createTime": "2024-08-15 14:44:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.12171+00 2025-12-17 08:10:01.121714+00 26559 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dpvkh5EanQF2JVMJ1nQIiA7yOiY=", "createTime": "2024-08-15 14:44:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.12315+00 2025-12-17 08:10:01.123154+00 26560 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZrVS_f3Nbl8qDg2PMa_lBNu4JcM=", "createTime": "2024-08-15 14:44:10"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.124716+00 2025-12-17 08:10:01.12472+00 26561 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ng13ETPyCmuq8qf5byiEobPSzLc=", "createTime": "2024-08-15 14:44:10"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.126136+00 2025-12-17 08:10:01.126141+00 26562 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EDQzbMBiwyEjBdjPdLWR4euToag=", "createTime": "2024-08-15 14:44:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.127527+00 2025-12-17 08:10:01.127532+00 26563 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AEPoO55CWLJ9ZkPmsub6_FmS0_o=", "createTime": "2024-08-15 14:44:10"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.128961+00 2025-12-17 08:10:01.128965+00 26564 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:98-5rBoHgney6coTGl3unIhM3dI=", "createTime": "2024-08-15 14:44:10"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.130367+00 2025-12-17 08:10:01.130372+00 26565 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TiJJeQQgutsUy-e0gVSD47bGyq0=", "createTime": "2024-08-15 14:44:10"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.131734+00 2025-12-17 08:10:01.131738+00 26566 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1QZ20AuKv2txBGVuEnkxp2RnKzs=", "createTime": "2024-08-15 14:44:10"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.133087+00 2025-12-17 08:10:01.133091+00 26567 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_DDZALumSmrA_P7GdPcVrwvdX5A=", "createTime": "2024-08-15 14:44:10"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.134448+00 2025-12-17 08:10:01.134453+00 26568 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QuvhYKcB-17-9xcIz-UikaYh-HQ=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.136239+00 2025-12-17 08:10:01.136246+00 26569 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-fA2qZUqOpCPt6MD0RtwxpEnS3s=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.138238+00 2025-12-17 08:10:01.138243+00 26570 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ej45nDaoImbJwXc43pI-6YwYyrY=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.139774+00 2025-12-17 08:10:01.139778+00 26571 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vaMH22cuhvxNhcqaO9SMTi9SC1M=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.141549+00 2025-12-17 08:10:01.141554+00 26572 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TJEj1DHvDDLVzIjDfouBd0Ccy7g=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.143235+00 2025-12-17 08:10:01.143241+00 26573 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GoJP9mAgwonD9qeUonz_cQTx61I=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.144957+00 2025-12-17 08:10:01.144962+00 26574 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AlnP8EIqOF1zbvafxR3ZnGoiR7U=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.146696+00 2025-12-17 08:10:01.146701+00 26575 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ju_saHAh450bna7PCe68kf7vCL4=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.148397+00 2025-12-17 08:10:01.148401+00 26576 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:it4BVr3RhGLNfxYPf6rypvIjQNA=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.150297+00 2025-12-17 08:10:01.150302+00 26577 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GmX2EywP5gTK0WZtEqloZoCok_0=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.152217+00 2025-12-17 08:10:01.152222+00 26578 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:srYL3HPD9HeNAQojnVBke6RWVG8=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.153942+00 2025-12-17 08:10:01.153946+00 26579 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9yHeLnIibdDbdTFtO4S49xDPvXE=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.161149+00 2025-12-17 08:10:01.161153+00 26584 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0btRkp9IoAeG-AQ8qpt4xkQW6Nc=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.155604+00 2025-12-17 08:10:01.155609+00 26580 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FGj5Dtt4rhGOQPD6uZ8BBMptcOY=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.157038+00 2025-12-17 08:10:01.157043+00 26581 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xuVC2IXcZmJmQWH8T039YL7NyLU=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.158405+00 2025-12-17 08:10:01.15841+00 26582 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ck0OdERcdMN4rZDRBg46It36GJU=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:10:01.159785+00 2025-12-17 08:10:01.15979+00 26583 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=1766045400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DhtGGnc_AFQLFZJ4HTknrR42Xvs=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.05867+00 2025-12-17 08:20:01.058679+00 26585 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SO7NQ29jBykbyTasvGtU6jIq2fw=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.061309+00 2025-12-17 08:20:01.061316+00 26586 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gdst6b2YKmfGzT3gJ7eaBefM_PY=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.062951+00 2025-12-17 08:20:01.062957+00 26587 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hc5P6FO6v7tBnUiYzNbm2D9CWuA=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.064665+00 2025-12-17 08:20:01.064671+00 26588 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wiTzey-7LiUiYtey7HvfF5coRaU=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.066188+00 2025-12-17 08:20:01.066193+00 26589 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d-H080IZbKwg4YNVb9_VcpdlGdk=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.067731+00 2025-12-17 08:20:01.067737+00 26590 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vYZeQpCKzTZHyRJkUO4t9yY1H2M=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.069308+00 2025-12-17 08:20:01.069313+00 26591 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VSzgPrtF2BMiVlklDhs_cSJQF_E=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.070814+00 2025-12-17 08:20:01.070819+00 26592 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cAPuzY9k7zYvC81gghDXRN6OTQM=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.072537+00 2025-12-17 08:20:01.072542+00 26593 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F6f8izisQsZZo1irf4AYxHcyIi8=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.074254+00 2025-12-17 08:20:01.07426+00 26594 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qk68jfh9o0NaPFMA2-nA4ryNcck=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.075998+00 2025-12-17 08:20:01.076003+00 26595 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NtfSAJCJlBTPbuiwhCPua2B58uc=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.077534+00 2025-12-17 08:20:01.077539+00 26596 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yPlTvwiJw6qE8b3CE5qRV_sgq84=", "createTime": "2024-08-15 14:44:14"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.079289+00 2025-12-17 08:20:01.079294+00 26597 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ilzRLhWFWcZ20Js1x4OTk-kVGb4=", "createTime": "2024-08-15 14:44:14"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.081365+00 2025-12-17 08:20:01.081369+00 26598 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PwyWQoXD_T8CV1q8bS1KzrIJk-w=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.082852+00 2025-12-17 08:20:01.082857+00 26599 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NsGlZQ6hscsZRQusztOl8yrvVqI=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.084304+00 2025-12-17 08:20:01.084309+00 26600 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7-qTJRi5aUPoSCuW5KEg0mNwdpQ=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.086373+00 2025-12-17 08:20:01.086379+00 26601 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xj9bt3f96zdBaQX7NK7OdaXjZEc=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.087949+00 2025-12-17 08:20:01.087953+00 26602 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_3rk6fCQmOKVT2oIuZVjemURqhU=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.090072+00 2025-12-17 08:20:01.090077+00 26603 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zCXBfTZMZlCLla8KnURBrCpCBdI=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.091773+00 2025-12-17 08:20:01.091778+00 26604 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q5clM_1trLSD94jZTVM14ObE6nI=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.09347+00 2025-12-17 08:20:01.093475+00 26605 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:acTu9CDnHni_PmM0qvEqt_0_amc=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.095174+00 2025-12-17 08:20:01.095179+00 26606 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4U91n-vscaBThiQ94XKwTtpsaB4=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.096772+00 2025-12-17 08:20:01.096777+00 26607 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E_15RCPIr-QJkYoZKKcFvUIIeu0=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.098341+00 2025-12-17 08:20:01.098346+00 26608 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:86PUeCQTXKb1pzfdSMC4r1F8ygY=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.100169+00 2025-12-17 08:20:01.100174+00 26609 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZggcN7KIXSgI8hsKX0JQLYm3pDQ=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.101703+00 2025-12-17 08:20:01.101708+00 26610 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RZRiKRdi_SI8qp_LaxfAhezHFNs=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.103527+00 2025-12-17 08:20:01.103533+00 26611 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wfaC_6Ek8MlqH8YEevU3ZFwbWWQ=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.105241+00 2025-12-17 08:20:01.105247+00 26612 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BxYjNdz8g6EgUEvA-x9AujMxVoc=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.106864+00 2025-12-17 08:20:01.10687+00 26613 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uLLu6aGXgaX6AbRfn0IhS2ZDax4=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.108757+00 2025-12-17 08:20:01.108762+00 26614 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PVUlduqEU7baQeOq9DNuwd75Sps=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.110472+00 2025-12-17 08:20:01.110476+00 26615 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9FerxnL9Pzvy8yG68gkPgsfIc1U=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.111903+00 2025-12-17 08:20:01.111908+00 26616 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XAhx2BnJvjwVh_IvSc4WXAJw8pE=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.113707+00 2025-12-17 08:20:01.113712+00 26617 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WiN44kwmPhTuUC8vYV2kRDaZRu8=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.115112+00 2025-12-17 08:20:01.115117+00 26618 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:crtNBQNm7WFiW8LoGyOA7sjWrtc=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.11648+00 2025-12-17 08:20:01.116485+00 26619 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-w-6OtmyfZOVywcYdqc78z4wjOk=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.117847+00 2025-12-17 08:20:01.117851+00 26620 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jyYngLBv1qEat706425g8wPPRIg=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.119199+00 2025-12-17 08:20:01.119204+00 26621 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wq-Uy83Zn39Q9zMJ5YNzJb-vkpg=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.120604+00 2025-12-17 08:20:01.120609+00 26622 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nA5NxZevumQ8gzxqerdR7KZZBWs=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.121997+00 2025-12-17 08:20:01.122002+00 26623 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7AeMYfDLd-dzbFra19jP6bqjKNo=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.123388+00 2025-12-17 08:20:01.123393+00 26624 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IIYPL58ZiODC2N2zM5ZwNZsIers=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.125293+00 2025-12-17 08:20:01.125299+00 26625 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8HbjR5Zp5x1X98tHgLDkOHth22c=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.133836+00 2025-12-17 08:20:01.133842+00 26630 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mCZJ6z75KJvsfU3KFeXM3DLw2kw=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.126919+00 2025-12-17 08:20:01.126924+00 26626 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9gyxp-aY1LnoPTiq3egBsTNXry4=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.129367+00 2025-12-17 08:20:01.129372+00 26627 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BML8k_gSYTBxp_EZg7zpv7WCNIo=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.130815+00 2025-12-17 08:20:01.130819+00 26628 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v1bLGMgmBAqgtbBuHPtAtTi5J4c=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.132178+00 2025-12-17 08:20:01.132183+00 26629 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ebtoJEd60EjDYUm9q9TiO5OX_hw=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.135342+00 2025-12-17 08:20:01.135348+00 26631 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lX2K3JiDqUKFEPLCUCJ8gSikwCw=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.13703+00 2025-12-17 08:20:01.137036+00 26632 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YiK3nwxvQGeslfNyrzfMHHxZIQ0=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.139231+00 2025-12-17 08:20:01.139237+00 26633 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s87IS1uf31mMwhXgIpaeOjOEcP0=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.140856+00 2025-12-17 08:20:01.140861+00 26634 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R4Uw_Hxos8OvQi2E_tyE-AuvAn4=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.150237+00 2025-12-17 08:20:01.150244+00 26639 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s3snaU8ryLkhew-goyqDPijebwo=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.142414+00 2025-12-17 08:20:01.142419+00 26635 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ODrwsTpWj8zbOJvbeToi9lW5a48=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.144243+00 2025-12-17 08:20:01.14425+00 26636 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:POuJrhTecdwiLfAzDmjsH4UxdGc=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.146232+00 2025-12-17 08:20:01.146238+00 26637 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e07SjDb_vjqH3xAQ5M9qS7bxfZQ=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.148124+00 2025-12-17 08:20:01.148131+00 26638 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TJN_j9bmwONUDDODx5-ceA5UwvM=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.152129+00 2025-12-17 08:20:01.152134+00 26640 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pvpJHp1A2y_d17tXQQEzo_NvQeU=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.154126+00 2025-12-17 08:20:01.15413+00 26641 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cKcmwJJ7T1MCCUX4_Jn1MP5x7G0=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.155836+00 2025-12-17 08:20:01.155841+00 26642 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ju-s2sdLe3zjoEV2yK6OTx7vujw=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.157426+00 2025-12-17 08:20:01.157431+00 26643 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dOvc_o45sdxReCjIDus2Kv6eFWk=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.158888+00 2025-12-17 08:20:01.158893+00 26644 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VSpit2Gc5IEo51-MalKnJLr-h0E=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.160326+00 2025-12-17 08:20:01.160331+00 26645 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VkXf10FTHFvKIEeG8eO4PhXPW-g=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.161754+00 2025-12-17 08:20:01.161759+00 26646 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eTM44qszBc0CNrInbSH1bsCR1EA=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.163377+00 2025-12-17 08:20:01.163382+00 26647 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1JU8_p-qJ8dXDwpWdiz9iFPk3Rk=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.164921+00 2025-12-17 08:20:01.164926+00 26648 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oV_51xBLJQNZxwDWCb_CtsomrRU=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.1695+00 2025-12-17 08:20:01.169506+00 26649 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NiTe2_eyJAeSTcuCBz-26VjUnV0=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.171217+00 2025-12-17 08:20:01.171221+00 26650 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lwO2EeLDlOPr64H5FNt5N_d_YsE=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.17262+00 2025-12-17 08:20:01.172625+00 26651 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DMzFf4OYT20KCW42S8eyqn-3OI0=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.174009+00 2025-12-17 08:20:01.174014+00 26652 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l0x7DJhhx9kyTpkbe7wEs2NoeJs=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.175446+00 2025-12-17 08:20:01.175451+00 26653 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vGJQVAXkl73ZwXe84gkvBPjUByc=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.176838+00 2025-12-17 08:20:01.176843+00 26654 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q4BOFyw2IaYLn3Hd8JiKT28Jeho=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.178389+00 2025-12-17 08:20:01.178393+00 26655 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MK918MZas0rL77O5QmoYX2oSfyI=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.186319+00 2025-12-17 08:20:01.186324+00 26660 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lL7UQpcHSJXqYJUxMgNG30naaIw=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.180172+00 2025-12-17 08:20:01.180177+00 26656 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P2wc6Pcs5I0k2SOA_3W_Ewr68x4=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.181572+00 2025-12-17 08:20:01.181576+00 26657 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:baNKmXXM1CbHSWo1V5bTAr9fKRY=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.182953+00 2025-12-17 08:20:01.182957+00 26658 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X58PWm4YjxEU-7LlyK0yM84FL34=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.184656+00 2025-12-17 08:20:01.18466+00 26659 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UJ0GmtX2I5eLiog-EUC5SGpVg28=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.187981+00 2025-12-17 08:20:01.187985+00 26661 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pzbLAukk3OUTAq_96DxRo5lZpIs=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.189645+00 2025-12-17 08:20:01.189649+00 26662 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lz5UV3o4vbV1N2dkJV7Fnju-bu0=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.191657+00 2025-12-17 08:20:01.191667+00 26663 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VPlOD3yZrNZbc0DpuJ10EEn8A0k=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.19409+00 2025-12-17 08:20:01.194095+00 26664 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pgV3WAf4VnIW4DIsZ_WVXeF00UY=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.19598+00 2025-12-17 08:20:01.195984+00 26665 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wk9VwS8v8896x8JCeTNZen1RfL4=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.197914+00 2025-12-17 08:20:01.197919+00 26666 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4vC8LlMhyycAAgO4zPu4nmZ1QN0=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.199405+00 2025-12-17 08:20:01.19941+00 26667 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cZbBX15KD-2un3Q31jigql77PHY=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.200804+00 2025-12-17 08:20:01.200808+00 26668 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qOeqrKF1_CWHFl-XUjYCpYd0dsI=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.202225+00 2025-12-17 08:20:01.20223+00 26669 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xUGtgltVyVQWQ1DDNX4XO1y14LE=", "createTime": "2024-08-15 14:44:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.203664+00 2025-12-17 08:20:01.203669+00 26670 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qW8KUyG0odK2K6mwg8vVQKUJxAc=", "createTime": "2024-08-15 14:44:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.20507+00 2025-12-17 08:20:01.205075+00 26671 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZVWMQM4rjekb4REpLmmJt2mw-dQ=", "createTime": "2024-08-15 14:44:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.206718+00 2025-12-17 08:20:01.206722+00 26672 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cShUjYFzYFNrSwFehLdlH-lHkTg=", "createTime": "2024-08-15 14:44:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.208097+00 2025-12-17 08:20:01.208101+00 26673 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GBo4XxfhdANZbXcYV50UsIkb6yc=", "createTime": "2024-08-15 14:44:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.210001+00 2025-12-17 08:20:01.210007+00 26674 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MSYa9JWqfs8oKMhkmwHFkzslwqA=", "createTime": "2024-08-15 14:44:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.211833+00 2025-12-17 08:20:01.21184+00 26675 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fi7evXlj4ebUDWz-MDiuDoyaIAs=", "createTime": "2024-08-15 14:44:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.213603+00 2025-12-17 08:20:01.213607+00 26676 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sNFaMh2haGfHYPlvtkPAOmaXpno=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.215204+00 2025-12-17 08:20:01.215209+00 26677 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xa3IU8Ntwf0m3XSrk4E2011d_lM=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.216808+00 2025-12-17 08:20:01.216813+00 26678 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oynhx1cVZEDYeauuida1Rp7kDqc=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.218378+00 2025-12-17 08:20:01.218383+00 26679 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nmf3Vj0XkJJmBI_M9HHmCi3w12E=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.220214+00 2025-12-17 08:20:01.220219+00 26680 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yIsWFzsEQb3G03NQhCMx_4EsX8I=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.221833+00 2025-12-17 08:20:01.221838+00 26681 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g09NtE1_Y5TgRSLNgw8axXMID34=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.223365+00 2025-12-17 08:20:01.223369+00 26682 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EoFvDyX08JR9ob_AgXzVFQua-xo=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.22483+00 2025-12-17 08:20:01.224835+00 26683 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=1766046000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TNuR0XmDxr471Pig7cJLVPuR_no=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.643612+00 2025-12-17 08:20:01.643622+00 26684 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8_nph6GLONWN3OWMaYMmPFtvHx0=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.645703+00 2025-12-17 08:20:01.645708+00 26685 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FQpFdOjQeKsct9ATztQevEahEcA=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.647431+00 2025-12-17 08:20:01.647439+00 26686 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fso0shd3x4ewMXjr9fypg3zmyTs=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.649066+00 2025-12-17 08:20:01.649071+00 26687 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lkd6KHSSulzwNm3ZOueSIVz1bbU=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.650478+00 2025-12-17 08:20:01.650482+00 26688 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P2QTXhFcm2TWukbqYInF3Pbg790=", "createTime": "2024-08-15 14:44:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.652059+00 2025-12-17 08:20:01.652065+00 26689 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wf6nRJu0D39wJE0iGMijEkAX6AQ=", "createTime": "2024-08-15 14:44:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.653641+00 2025-12-17 08:20:01.653647+00 26690 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PrOEP4j9ypU8GvZqmcu5it3JhEY=", "createTime": "2024-08-15 14:44:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.655051+00 2025-12-17 08:20:01.655057+00 26691 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A7xHGeewmEtKAIkouEk9sbx8lm4=", "createTime": "2024-08-15 14:44:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.657485+00 2025-12-17 08:20:01.657493+00 26692 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-80Dm4hMyneAGiuddVSCLqQkyAQ=", "createTime": "2024-08-15 14:44:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.65924+00 2025-12-17 08:20:01.659246+00 26693 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RtFkm-shm81C6vc9NimeB6AAV8w=", "createTime": "2024-08-15 14:44:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.660761+00 2025-12-17 08:20:01.660766+00 26694 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Kas3imJBQAdr2cEhWP0LwgK1Jo=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.662228+00 2025-12-17 08:20:01.662235+00 26695 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jz-H-ef6UHbi_Qavg0sQPJu4gh4=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.663678+00 2025-12-17 08:20:01.663683+00 26696 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SRuPBcMAvjuRRiGgfkRrXObT7d8=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.665056+00 2025-12-17 08:20:01.665061+00 26697 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QwNuMYcv44P51MNl7xEcBEy2knA=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.666517+00 2025-12-17 08:20:01.666523+00 26698 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lz0qXUjNtmc_xtLdYeugVSmjr5g=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.667972+00 2025-12-17 08:20:01.667976+00 26699 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DG4Ag7izLD1jCZdjTa8rP4YD7N4=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.66964+00 2025-12-17 08:20:01.669645+00 26700 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LfCOXRHxrLYCPt-wA3MGLpq-6Oc=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.671041+00 2025-12-17 08:20:01.671045+00 26701 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ma9FE7ho_w3BA5JhqzCCOS1S2pw=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.672644+00 2025-12-17 08:20:01.67265+00 26702 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WYuR8F6mcHum7zAeJUKfCtQOE5g=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.674263+00 2025-12-17 08:20:01.674268+00 26703 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ip_bXBVepoDJk_wQ6GZSZB2zxAQ=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.675843+00 2025-12-17 08:20:01.675848+00 26704 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hl9vFVNT2Stftfn3DttdjRS-Bps=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.677339+00 2025-12-17 08:20:01.677345+00 26705 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FX99SBCMseClXBkNOpeGlmXv044=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.678733+00 2025-12-17 08:20:01.678737+00 26706 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2TVWCoFMRhinwxLQ0qQQUjf_VY0=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.680138+00 2025-12-17 08:20:01.680143+00 26707 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OwXN5MOy-KytxyfSbZi_o-PbdS0=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.681786+00 2025-12-17 08:20:01.68179+00 26708 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_v1LZlpbiINdxc5nLmceM7VLw8M=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.683246+00 2025-12-17 08:20:01.683251+00 26709 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F5O4hOcI5n1TXta7M7gojTjiFiE=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.685132+00 2025-12-17 08:20:01.685138+00 26710 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sYCDVSq0aR8n9zc6NppoVaIfj2E=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.687079+00 2025-12-17 08:20:01.687085+00 26711 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yKpkgdVEVWDS9agWanhGb8imPhc=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.688946+00 2025-12-17 08:20:01.688951+00 26712 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Aw2MuONc1SSbM_zUuPIuZDPSYa4=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.690528+00 2025-12-17 08:20:01.690533+00 26713 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G2y5JAJJO0QDyknQQf6I1Nqpt5E=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.691959+00 2025-12-17 08:20:01.691963+00 26714 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-eAFekU20rO9nSVhmrZd-vmV6ds=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.69335+00 2025-12-17 08:20:01.693355+00 26715 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c8Njkks7GfwulF7v105OUsdLlXI=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.695004+00 2025-12-17 08:20:01.695008+00 26716 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sxj1gtPqHEV1YhVwBWHHtMGZlu8=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.696406+00 2025-12-17 08:20:01.69641+00 26717 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O7fLGa-XtP-h2eXVBf8X_7NWmWI=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.697803+00 2025-12-17 08:20:01.697807+00 26718 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XjJrvxebYXmg34rVTZhZs92J6SI=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.699163+00 2025-12-17 08:20:01.699167+00 26719 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z1fQiSvm2MYR9O8_E_MczM-1y6M=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.700557+00 2025-12-17 08:20:01.700571+00 26720 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4TjwJGtqFPOgD9S8gXtbMqlCswQ=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.702286+00 2025-12-17 08:20:01.702292+00 26721 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qv7uIsPjj-uKUq4isjbv-Wn-zzA=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.703947+00 2025-12-17 08:20:01.703952+00 26722 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6N9GNirpeViAZYWDeVdTF1bRqN4=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.705453+00 2025-12-17 08:20:01.705457+00 26723 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tNytbiVdut8RHM-sgrtQ8PNIl1g=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.70718+00 2025-12-17 08:20:01.707184+00 26724 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mBSJXZOQPJAtr7JY3ZUZuDyV-H8=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.708646+00 2025-12-17 08:20:01.708651+00 26725 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ercwyByU1bb4tRu6nm8Er8dM_54=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.710155+00 2025-12-17 08:20:01.710161+00 26726 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rE9Dj4QZVeeHD5HPJotJUUTb1kI=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.711713+00 2025-12-17 08:20:01.711718+00 26727 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4cQO2DBc0DJ2C9hR-fpZcPfExfs=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.714182+00 2025-12-17 08:20:01.714192+00 26728 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4nacRDEojvlWL6jrVDuNkECNrGU=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.716956+00 2025-12-17 08:20:01.716965+00 26729 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BU0nU9ZIRxpGwOmnKDYZ5MFmC8M=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.719649+00 2025-12-17 08:20:01.719657+00 26730 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-X_XJvAN0YO0TGVHfzVMymyDrwA=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.721972+00 2025-12-17 08:20:01.72198+00 26731 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_KXXHopymvzUg5riOGIdEHSpI_E=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.724082+00 2025-12-17 08:20:01.724089+00 26732 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uHmS-URc7BJfNxVV30Yun9yY9pY=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.7262+00 2025-12-17 08:20:01.726206+00 26733 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UtgFuDafOCjt1D4sgWXkApp1NSU=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.72781+00 2025-12-17 08:20:01.727815+00 26734 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bnADS5IRZyS1_YsjgtxL8NzQPQE=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.729491+00 2025-12-17 08:20:01.729497+00 26735 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jwR85b2tbUR9l9C4-B0-Kp5Tla4=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.731581+00 2025-12-17 08:20:01.731587+00 26736 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W97Mav_IGTZPpioID464tWFYDxk=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.733995+00 2025-12-17 08:20:01.734+00 26737 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mu9puTfhuebIJFixnf0-luKUQT4=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.736134+00 2025-12-17 08:20:01.736139+00 26738 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:egpFdbumBZ1H_Ryx7AFzykXB6zk=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.738021+00 2025-12-17 08:20:01.738032+00 26739 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uy1r5ilHpw-BnMaeFYiAyhdHpn0=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.739916+00 2025-12-17 08:20:01.739922+00 26740 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OJxdBI5TqsIgL_QRPcZlIJFh5sA=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.741901+00 2025-12-17 08:20:01.741906+00 26741 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:okrMiPyugDod8k5NISZwDfmnP-o=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.743826+00 2025-12-17 08:20:01.743832+00 26742 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6k_uZSWWmHqinOMeYNwmVq143w4=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.745795+00 2025-12-17 08:20:01.7458+00 26743 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FZNmu0dRa43YQ0MXxjXpcoj6Nj8=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.760709+00 2025-12-17 08:20:01.760714+00 26752 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7OSoUGwYXrOV_wVS0liOomTIdv8=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.748081+00 2025-12-17 08:20:01.748086+00 26744 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y76Ke94UHL1Z7o6tp4_wRvqxkvs=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.749796+00 2025-12-17 08:20:01.749801+00 26745 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q0QvaDaMy1_tCG0INhfWrkn944I=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.751418+00 2025-12-17 08:20:01.751422+00 26746 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-yJeT8bDH9oqwX7FSIZjbpqBSRc=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.753059+00 2025-12-17 08:20:01.753063+00 26747 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:08AcMMAgWG1T5D2OX0r3ggS3SeM=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.754521+00 2025-12-17 08:20:01.754525+00 26748 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FypB7Rt2U7lPkO5oqina7H9jb1Q=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.755919+00 2025-12-17 08:20:01.755924+00 26749 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I-di3WsOsujqPHeL37XirTf4ROw=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.757296+00 2025-12-17 08:20:01.7573+00 26750 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fxa-SOC2LTFgi-gaaprznO3E4oE=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.758847+00 2025-12-17 08:20:01.758852+00 26751 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HjXU3_H0uuiqYo36Dj3N29s6cuE=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.762215+00 2025-12-17 08:20:01.76222+00 26753 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zD241BGNPj75MtT7EmFpZEOtaCM=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.76376+00 2025-12-17 08:20:01.763766+00 26754 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iVhoyMnYW2p8sP03OXJCo3Z7yYQ=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.765387+00 2025-12-17 08:20:01.765393+00 26755 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TRLbvwZ7y8YxYBckbihnwQGvxLc=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.767154+00 2025-12-17 08:20:01.76716+00 26756 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UDXhU4M_K5dD-4W85i9tAGG7ZCk=", "createTime": "2024-08-15 14:44:30"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.769014+00 2025-12-17 08:20:01.76902+00 26757 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WVO-4p98aTXqe4NHG_5Pyl1LYIQ=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.771171+00 2025-12-17 08:20:01.771178+00 26758 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VA45Mg_w1jg9sKUoJoHclv8Q_Do=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.772932+00 2025-12-17 08:20:01.772938+00 26759 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XbW60btASzqh-wNca_-acVceLQU=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.77524+00 2025-12-17 08:20:01.775244+00 26760 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S3h5lU9itGQyv1noh9822ekyM3U=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.776804+00 2025-12-17 08:20:01.776809+00 26761 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q3AWBYd2CEMpHLkVZh0or4Pltso=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.778488+00 2025-12-17 08:20:01.778492+00 26762 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jKfBYh9aDZNAFFDl0eUIX7hTWGo=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.779989+00 2025-12-17 08:20:01.779994+00 26763 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AAvn9lt_4Voy9r7i0TNDG4YBF8o=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.781521+00 2025-12-17 08:20:01.781526+00 26764 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-0v8bc2XAsHn-bLjvCTAxDKGOIo=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.783114+00 2025-12-17 08:20:01.783119+00 26765 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VAXne_nfTCgfjDhIqA6UrdCD14U=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.784766+00 2025-12-17 08:20:01.784773+00 26766 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YvKSy8nkW55s2KNcjHMzgOPOYGQ=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.786792+00 2025-12-17 08:20:01.786798+00 26767 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VGijv8fn4d3ZfuBd0WtfokneTWM=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.78988+00 2025-12-17 08:20:01.789888+00 26768 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3UYDmqGhYhp5LLPWtZp651z7igA=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.792414+00 2025-12-17 08:20:01.792422+00 26769 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JyygLMWZHM9ha8VCsikJVxOcC2k=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.798502+00 2025-12-17 08:20:01.798528+00 26770 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P4hiiEt6zbiM_vTmdbs9lzIRuUI=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.803877+00 2025-12-17 08:20:01.803893+00 26771 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:opBBQeTstF0qfjJF36UpldEG_Z8=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.808066+00 2025-12-17 08:20:01.808079+00 26772 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Um3-Jv6f9C6bKluYMhK-Q_QC6Y8=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.81245+00 2025-12-17 08:20:01.812465+00 26773 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YfR7KlKHfXWrs4A_UsofvVhqQ8U=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.816357+00 2025-12-17 08:20:01.816371+00 26774 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-PNIBMdTVE1E-dPBQqRGLc7d0mw=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.820049+00 2025-12-17 08:20:01.820063+00 26775 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B0CSvopeNIj-HubctBd5cliQNbA=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.82404+00 2025-12-17 08:20:01.824053+00 26776 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ItIIlBrZnmXzh5SGvWzdz9m71f4=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.826618+00 2025-12-17 08:20:01.826627+00 26777 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wk2XAslpvD4JjmU_C6m-rY-fseI=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.829139+00 2025-12-17 08:20:01.829148+00 26778 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RdtpRPvLTnCwbisRlUcd0yMgPzU=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.831328+00 2025-12-17 08:20:01.831334+00 26779 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h8_wi_7vs1-kx97ihKzxMSYowKk=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.833219+00 2025-12-17 08:20:01.833224+00 26780 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j2o7CHT4vb-Y0ZNzDDyFEXxFnnA=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.835251+00 2025-12-17 08:20:01.835256+00 26781 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v33C_w7kC8b8_-MXlpWw9c-XulM=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.838041+00 2025-12-17 08:20:01.838053+00 26782 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E0gJ20vmj_ILwLpuRdQzWgYk1Qw=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:20:01.841889+00 2025-12-17 08:20:01.841902+00 26783 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=1766046001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hValM92LedxAEc717lw5LYLzg7A=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.36525+00 2025-12-17 08:30:00.365261+00 26784 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9czgztqRop19ZfFMoqaFp_ju-4w=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.368851+00 2025-12-17 08:30:00.368859+00 26785 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bHFKaNDiriNzswLux1celUxZKlE=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.371709+00 2025-12-17 08:30:00.371717+00 26786 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R1dto07mU5lfYXdxlxHs4hiQosA=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.374043+00 2025-12-17 08:30:00.37405+00 26787 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fCRwPLpKz6N7d8_q1fbro0MJQJ4=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.376362+00 2025-12-17 08:30:00.376368+00 26788 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mlsgs-zz0G48C1CUyCCGjcAYAeM=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.378032+00 2025-12-17 08:30:00.378038+00 26789 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48tfwu6Cqh5TFkN3sET38PdqsSQ=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.379709+00 2025-12-17 08:30:00.379714+00 26790 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OUrjZF2kM12F_U2ZfzbhCnyBgE0=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.381227+00 2025-12-17 08:30:00.381231+00 26791 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1_bJV3Ruwi63BpfmyLXPTeVB01o=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.382887+00 2025-12-17 08:30:00.382891+00 26792 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q0Wt5DS5ynZOydmnkeE-zHHaDkE=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.384293+00 2025-12-17 08:30:00.384298+00 26793 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JVj0YjWGNvPIm17ZM5Y5tBkikWo=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.385759+00 2025-12-17 08:30:00.385764+00 26794 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YTfHogMy5nFyRDpEus-oxYclMq4=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.387175+00 2025-12-17 08:30:00.38718+00 26795 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ArztDgMPSmU81LhBgxOpMmod3E=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.388591+00 2025-12-17 08:30:00.388596+00 26796 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a4JNNfApyKt__eVlpzmul_BzjYc=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.389986+00 2025-12-17 08:30:00.38999+00 26797 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:afOox9kDOL9v4BMZu6US7VeP_Bc=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.391437+00 2025-12-17 08:30:00.391441+00 26798 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Re4t-WqNCCBecootdqVR8CSVUU=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.392901+00 2025-12-17 08:30:00.392906+00 26799 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G8BCXI7ytg70bYG6sQsGk6_rh2k=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.394722+00 2025-12-17 08:30:00.394727+00 26800 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EhRdUD6nbq4GZ3uhszf-DCYD8zo=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.39633+00 2025-12-17 08:30:00.396335+00 26801 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l9T0P1KRLX1q0FUJDlbl7uKyV0c=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.397909+00 2025-12-17 08:30:00.397914+00 26802 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CRHBswoSVpw4GqtfPfG6Dksm924=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.399392+00 2025-12-17 08:30:00.399396+00 26803 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IM3ljW__nALrR4ks3M8y0lzIf5s=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.400845+00 2025-12-17 08:30:00.40085+00 26804 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pzz55kwm7hfCvmDcgPf2N6hyMGg=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.402278+00 2025-12-17 08:30:00.402282+00 26805 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H_y39lXUPS06xMm9WLbaNGXoRf8=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.40367+00 2025-12-17 08:30:00.403675+00 26806 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JCqvR3O84X2yGqYQE6MOzvmAiyg=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.405456+00 2025-12-17 08:30:00.405462+00 26807 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m3lKBlBgWzXMF6_v-juAjM_dG_8=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.407282+00 2025-12-17 08:30:00.407288+00 26808 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nFzO_B9hrXCDkSC82YBEc6rSIqI=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.408694+00 2025-12-17 08:30:00.408698+00 26809 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EdD101hPDpim4eDKtX3_PQL1R6M=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.41056+00 2025-12-17 08:30:00.410572+00 26810 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UNpB0EoaWGZdGTyoYWzu2Bnq-qQ=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.412036+00 2025-12-17 08:30:00.412042+00 26811 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mfUIeER6j8baO4G69TEJyy9rlZE=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.413398+00 2025-12-17 08:30:00.413403+00 26812 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8HzOXreHPYxOxmtFBO0r_oH6c04=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.414859+00 2025-12-17 08:30:00.414864+00 26813 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mbweGqMlVULU1IfWQh_h_pTun70=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.416262+00 2025-12-17 08:30:00.416267+00 26814 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tidK-uuhLR9nDihfSrpvGkabNCw=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.417624+00 2025-12-17 08:30:00.417628+00 26815 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cAPACwQkb8Fz2PcHqA2raDdCSyk=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.419275+00 2025-12-17 08:30:00.419279+00 26816 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O8a9JKhPxcng4R7wYTOGBHVKnZU=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.420728+00 2025-12-17 08:30:00.420733+00 26817 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zFvYZRAR7JtCV67BJcNS6cYLxP8=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.422274+00 2025-12-17 08:30:00.42228+00 26818 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CH-MUYZj_ycy9cA6cBCpkmZx3UI=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.424521+00 2025-12-17 08:30:00.424527+00 26819 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U8QlHKmp6hH0z9moTe8DUcBTSOA=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.426463+00 2025-12-17 08:30:00.426467+00 26820 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w8j1sFZWbTo35jjZD7DA6m12xC8=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.428034+00 2025-12-17 08:30:00.42804+00 26821 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NNxtrrpT3kmcUnd1YeB8k69g9Nk=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.429607+00 2025-12-17 08:30:00.429612+00 26822 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Zk2KMTIlQtVJsMO_lNZiKXgB1k=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.43136+00 2025-12-17 08:30:00.431365+00 26823 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i2Xmc2GIzVHRH7bPlgFmYCL8Cpg=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.433354+00 2025-12-17 08:30:00.433359+00 26824 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GldqwhBG8_KQmJdr503wgb577ME=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.434763+00 2025-12-17 08:30:00.434768+00 26825 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gYsWjkoEFoH6HUKgkHIJFmQywsY=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.436141+00 2025-12-17 08:30:00.436146+00 26826 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2-Yr9JvyaiFV7RUUNDYHIB_ubvM=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.43753+00 2025-12-17 08:30:00.437534+00 26827 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LEHT1my8bVo8AXDd0hyBOkOOr1s=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.438937+00 2025-12-17 08:30:00.438941+00 26828 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3hIl_5NfI7rPLBTYWVwa6LwOzss=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.440308+00 2025-12-17 08:30:00.440312+00 26829 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eCKlktPLPo2C_J2tF5sLqpsTeHM=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.441675+00 2025-12-17 08:30:00.44168+00 26830 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gj-hn3YxyJbAOQ20f17NC5OB6JA=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.443039+00 2025-12-17 08:30:00.443043+00 26831 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a1g4g70M-Tnp4FHAXI8gpNQcK98=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.444742+00 2025-12-17 08:30:00.444746+00 26832 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b9MM-UFcIkveqAfKHPi2-tsZxrg=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.446253+00 2025-12-17 08:30:00.446258+00 26833 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iczJ3Pd465z9vNhjRqjRRKMHI8s=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.448112+00 2025-12-17 08:30:00.448117+00 26834 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yWcQHKDKvhL6Yy8hdK-rqluXKeo=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.449519+00 2025-12-17 08:30:00.449524+00 26835 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iBwU87rPOHXCOUYPh5OytpMYWwo=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.450966+00 2025-12-17 08:30:00.450971+00 26836 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3flwzpeANGM49BKHf8Tmk5tlGnQ=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.45233+00 2025-12-17 08:30:00.452334+00 26837 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5a-OuPaxu1fYYVwwcO5KoSWKQg0=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.453706+00 2025-12-17 08:30:00.45371+00 26838 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xYW3UWQL17lovPsB7DkQAC-dUg4=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.455072+00 2025-12-17 08:30:00.455076+00 26839 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K6jwQN3u5a9_kEkbPfhLYJGvjLg=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.456751+00 2025-12-17 08:30:00.456755+00 26840 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NEjRpiEox9GWuu14S-oAQ5xxLF8=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.458122+00 2025-12-17 08:30:00.458126+00 26841 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fh2cf7mJPm35496ObUDjiBsRJXg=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.459503+00 2025-12-17 08:30:00.459507+00 26842 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TTy68CUgpqn5_5c-wPQ5VWm1cfw=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.461016+00 2025-12-17 08:30:00.461021+00 26843 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oqhqotbw_OPcC8mhX2svz6WZao0=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.462428+00 2025-12-17 08:30:00.462432+00 26844 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g_XGs_sc3yamEwJg7YYcVaePocc=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.463899+00 2025-12-17 08:30:00.463903+00 26845 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a61-iSfc3_XdQH8PkGpW-4kZyaA=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.465298+00 2025-12-17 08:30:00.465302+00 26846 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NEnHBid0k7aK02NPhdAhJfkPClc=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.466723+00 2025-12-17 08:30:00.466727+00 26847 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E68of95lJOROwwnrRL4DmclLqlM=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.468397+00 2025-12-17 08:30:00.468401+00 26848 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nzUeeDotrazzxvRLTQR_CftGgmM=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.469809+00 2025-12-17 08:30:00.469813+00 26849 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zWPNuZdBEhSOkA-sYzso7Zut8ao=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.471292+00 2025-12-17 08:30:00.471297+00 26850 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hQyA6R-pDLt95AfBBH6U-onawOM=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.472678+00 2025-12-17 08:30:00.472682+00 26851 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yw0RwynMu_vabrrSYhmQivzeq0w=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.474062+00 2025-12-17 08:30:00.474066+00 26852 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qM2HCvbSKPyhh4SsVlTF4b-qsrc=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.475435+00 2025-12-17 08:30:00.475439+00 26853 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:neo5qwfveUeNvbo1-tf80ydDLjk=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.476783+00 2025-12-17 08:30:00.476787+00 26854 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iqj_VTAH_90HIP0uS0gPYi2J-OE=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.478184+00 2025-12-17 08:30:00.478188+00 26855 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B36xTgFb22geY-KPbUKIhakX_kQ=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.479847+00 2025-12-17 08:30:00.479852+00 26856 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-2YXlk-mPnlQm3ODXuKeXl5x_Uw=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.48145+00 2025-12-17 08:30:00.481455+00 26857 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iAIkQfnHEkyLzofj1_91vTkFroU=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.483364+00 2025-12-17 08:30:00.483368+00 26858 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pG1ovGWf765JlrxI96Rg8hFefDQ=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.484784+00 2025-12-17 08:30:00.48479+00 26859 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DMus2R46SdF4n7JtbW4KlqTTOns=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.486352+00 2025-12-17 08:30:00.486358+00 26860 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h0g_zClb1kczRpPlB71-rF_M9u4=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.487856+00 2025-12-17 08:30:00.48786+00 26861 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UAHd5bEw48N_gD16EFcm6wB2jI8=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.489242+00 2025-12-17 08:30:00.489246+00 26862 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tiR33xJdjzl8pnmfKPukEy6sFAE=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.490649+00 2025-12-17 08:30:00.490654+00 26863 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AQP8nC9EIflZCGDeXOOYeEB9nvM=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.492352+00 2025-12-17 08:30:00.492357+00 26864 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pLqKDmw0c_vmBeJkwgzmUDdNsjg=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.493754+00 2025-12-17 08:30:00.493759+00 26865 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1VUNSlCGG014F5FKf_QOQwCMk5E=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.495258+00 2025-12-17 08:30:00.495262+00 26866 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XQHiuOcDJewiC81XDJCTw50knzA=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.497013+00 2025-12-17 08:30:00.497018+00 26867 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hyziE1Q4FRhD6My5IVJIjZ8M7Wk=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.498744+00 2025-12-17 08:30:00.498749+00 26868 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PrZNKrtTRg9gf0xDqDysb0cwA-Q=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.50044+00 2025-12-17 08:30:00.500445+00 26869 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LF1rY0zjlBXTv5Uol4l6n11VK5Q=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.502143+00 2025-12-17 08:30:00.502148+00 26870 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wKyhYpiHMBCNDfSjdsn-wIeE_ww=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.503816+00 2025-12-17 08:30:00.50382+00 26871 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NnbiaQBtnuYOdo1oszXnvU0tcFM=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.505489+00 2025-12-17 08:30:00.505494+00 26872 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1SwUELRo5oJYJD0wXXOVhGSk_ic=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.507197+00 2025-12-17 08:30:00.507201+00 26873 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZX2tCGdUIjY-fwI2PuChxns0uUw=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.508887+00 2025-12-17 08:30:00.508892+00 26874 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ERvvwcU_m5fUyET6qCE8-x6O3PE=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.510257+00 2025-12-17 08:30:00.510261+00 26875 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cC3twAVxq4kB0HrHQeZaYDqU6zE=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.511818+00 2025-12-17 08:30:00.511824+00 26876 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:52wLdniXI4CvRrm9gJXerjqW3gQ=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.513555+00 2025-12-17 08:30:00.513559+00 26877 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mJgCTdtpxBwALwAVAGRLxbyW1yI=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.51506+00 2025-12-17 08:30:00.515065+00 26878 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sv3jT9LBrZrhAT-OkGjZNt_VLWU=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.5165+00 2025-12-17 08:30:00.516504+00 26879 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6lIeQtGQsjfJC_pLNANJfbEtYZ0=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.518254+00 2025-12-17 08:30:00.518259+00 26880 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ShmW8yOY-3UmMsOX0u2e_PtcJE=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.519692+00 2025-12-17 08:30:00.519697+00 26881 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zd2O4crUK7GKxr7x2ehuD7OdzAA=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.521314+00 2025-12-17 08:30:00.521318+00 26882 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hvh5PPRA7_k4JdPHrH6f7QsL7ms=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.522695+00 2025-12-17 08:30:00.5227+00 26883 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=1766046599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t7fsJxyUQU4F2OFq6tm2APPd7Ag=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.90507+00 2025-12-17 08:30:00.905078+00 26884 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rPCyCRLQYo-_o5h9VBrcXssdbG4=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.906856+00 2025-12-17 08:30:00.906862+00 26885 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TmZuifkPKaPdmNyk7p2t37I-7Fw=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.908736+00 2025-12-17 08:30:00.908743+00 26886 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YSeetGMxSIjc-GOgZIW6bO2tslQ=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.910504+00 2025-12-17 08:30:00.910508+00 26887 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mLrUwcvnLpS5j4fXNkCfHS_e8dg=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.911915+00 2025-12-17 08:30:00.91192+00 26888 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NGj_17UBIIhx9ma0ivFTreedhjc=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.913296+00 2025-12-17 08:30:00.913301+00 26889 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mzzWTMrBfZobbQ1wPJDegvw2aaI=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.914779+00 2025-12-17 08:30:00.914783+00 26890 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9nWo6V1DMZK4GoovX7YhqKfjtCM=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.916811+00 2025-12-17 08:30:00.916816+00 26891 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:whEsc7cBJrwryWuN1SzVHIa1YvI=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.918209+00 2025-12-17 08:30:00.918213+00 26892 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9c8NkErhqF3CvEP3lRt7FbY5XOQ=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.919584+00 2025-12-17 08:30:00.919589+00 26893 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:plM3my0xuOrdgT1Ngig5e0TgAdI=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.921017+00 2025-12-17 08:30:00.921022+00 26894 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qFkJcS_nLqnaR4dMY-0t6i2zRGA=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.922421+00 2025-12-17 08:30:00.922426+00 26895 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gmc8Hr5zDC9nZM_1gn6EZi-Tfm4=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.923915+00 2025-12-17 08:30:00.92392+00 26896 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1nn4SgQ0dECOpC9n20TVyPOumHk=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.925649+00 2025-12-17 08:30:00.925654+00 26897 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8JLPh71HtPghdYzwaGUq25FVUvQ=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.927055+00 2025-12-17 08:30:00.92706+00 26898 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iOs2tnC8w2ZbQBEXatyqxpB4dQ4=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.928739+00 2025-12-17 08:30:00.928743+00 26899 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uKYzlmRp0OdH5jx7gN9XvMTiriw=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.930134+00 2025-12-17 08:30:00.930139+00 26900 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oTxDZKO3jguoK2UWrCEbJ1I3KIQ=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.931977+00 2025-12-17 08:30:00.931982+00 26901 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3gykSisbIDDCWgoCwtEtCFeYYgE=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.933668+00 2025-12-17 08:30:00.933673+00 26902 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s7e06dUo7zfpRvRLPIaZaOqf8Pc=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.935051+00 2025-12-17 08:30:00.935055+00 26903 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JDrrf0tWpuGav5_6HgUQOqbEe-I=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.936434+00 2025-12-17 08:30:00.936439+00 26904 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O2k2yV4OpxPu9eAlW0xZYA4MoIA=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.93782+00 2025-12-17 08:30:00.937825+00 26905 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EOYMaQnfqAmIVP6lNZo3Zj0gkPI=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.939196+00 2025-12-17 08:30:00.9392+00 26906 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yUnWuiOrEd3QpIJKB0YqwlnH18s=", "createTime": "2024-08-15 14:44:44"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.94087+00 2025-12-17 08:30:00.940875+00 26907 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a0JHhT49gq4UxkFwVBjzQ_wLv7c=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.942264+00 2025-12-17 08:30:00.942268+00 26908 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HTrz4svxlf7WmD0jq68J7x3GtG8=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.943705+00 2025-12-17 08:30:00.94371+00 26909 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dbqSUyC8P2Odnf8P_YjY8chU1xc=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.945155+00 2025-12-17 08:30:00.945159+00 26910 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wPWZbYiEQrXOzdtTwMJi28RrNP8=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.946554+00 2025-12-17 08:30:00.946558+00 26911 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sx-I-JDspZm1npUSbnk1e9yeB6c=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.948042+00 2025-12-17 08:30:00.948046+00 26912 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0-U8J0P3yfdwLt9kH2taqQ2-FFo=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.949469+00 2025-12-17 08:30:00.949474+00 26913 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vlfN2_dJO8YziMTlj7DtOMkzqDs=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.950869+00 2025-12-17 08:30:00.950874+00 26914 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6QGfjIwvEcz615suxG8m_4GxDaU=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.952538+00 2025-12-17 08:30:00.952542+00 26915 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YAmEScAZeTzATadzXhAlfFP7lcc=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.953931+00 2025-12-17 08:30:00.953936+00 26916 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4awPvq6_b19k7WL67Pv-1SO0Z0s=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.955304+00 2025-12-17 08:30:00.955308+00 26917 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZHfYWoZsOmZf21BvxAg0OC8PLJw=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.956685+00 2025-12-17 08:30:00.95669+00 26918 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CK2831QL2CniPVA6PNeGvqNs1F0=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.958089+00 2025-12-17 08:30:00.958095+00 26919 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:--9N-y0BIqAoKTkuT9tcJiVj9gQ=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.95968+00 2025-12-17 08:30:00.959686+00 26920 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v5gNuY1DgQIJsk55bBUrstFWrPY=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.96117+00 2025-12-17 08:30:00.961175+00 26921 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1HiEFQaYDREvPtLtE0RpgIJP2j0=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.962882+00 2025-12-17 08:30:00.962887+00 26922 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mnQdZOiKEVaauMRGN1uxp8jXhHc=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.964663+00 2025-12-17 08:30:00.964668+00 26923 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JXCpTZrKaY5jrIRFRxlPxbc5YKk=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.966106+00 2025-12-17 08:30:00.966111+00 26924 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J0qRH05AqzWJtzM0PhwHLsfCipQ=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.968001+00 2025-12-17 08:30:00.968006+00 26925 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JalarWZxJaWuu_H0CThrqf1lY2Q=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.969438+00 2025-12-17 08:30:00.969442+00 26926 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J3c5FM1aewI4ILkb3isYZRT187A=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.970825+00 2025-12-17 08:30:00.970829+00 26927 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aauOFGxbfFD3BzS0xoI_Nhcs2Go=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.972227+00 2025-12-17 08:30:00.972232+00 26928 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v4YM3jXCowK64pZKox_cI9R0xyw=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.973618+00 2025-12-17 08:30:00.973623+00 26929 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ouGzqMSkPuPz-MbK9kL6nifM3r4=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.975054+00 2025-12-17 08:30:00.975058+00 26930 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e1SsgqOGrxjtIjjstUW_cZxRbjo=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.976721+00 2025-12-17 08:30:00.976725+00 26931 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y9zlibE2y_xggA7M94xkRjlfOQA=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.978106+00 2025-12-17 08:30:00.97811+00 26932 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mXwUWjlPDmBN1UXge6VnJQ_sWiw=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.979471+00 2025-12-17 08:30:00.979475+00 26933 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QvnRM3JvaRMidJbwUf6iv5rxE9E=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.981203+00 2025-12-17 08:30:00.981214+00 26934 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zUACK0969UrDr6xl1y2wzeMmH2U=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.98355+00 2025-12-17 08:30:00.983555+00 26935 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ibl-fjkDO2HtsX1w22mkZXdE1Ok=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.985315+00 2025-12-17 08:30:00.985319+00 26936 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YYfg_CMdO4R0MeV6z02ZCbLPdEw=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.986956+00 2025-12-17 08:30:00.986961+00 26937 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Ys9P3RmndHp7ZTXt1vtyT9nCqk=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.988501+00 2025-12-17 08:30:00.988507+00 26938 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dtGp6xqlSyGl41MxHGxNgfB-gMQ=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.990233+00 2025-12-17 08:30:00.990238+00 26939 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:92qeiIhyhWcRY52iaVo1qmM5Q_M=", "createTime": "2024-08-15 14:44:48"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.991722+00 2025-12-17 08:30:00.991727+00 26940 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UxXHST6wxHgkryaFkMZfeITHqFs=", "createTime": "2024-08-15 14:44:48"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.993131+00 2025-12-17 08:30:00.993136+00 26941 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZaO-MvF8nz24Q-EBLEtKqWTH6pA=", "createTime": "2024-08-15 14:44:48"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.9945+00 2025-12-17 08:30:00.994504+00 26942 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YM9jghTmR_4vANAX63ULc1cBBE0=", "createTime": "2024-08-15 14:44:48"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.995891+00 2025-12-17 08:30:00.995895+00 26943 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dr8MdzauOyVfB74RRLc8NMdNwuc=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.997383+00 2025-12-17 08:30:00.997389+00 26944 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rnp8Hw0j_9pK8e0AKq-ucxwtRAM=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:00.99884+00 2025-12-17 08:30:00.998845+00 26945 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mdGqPRGC9LhASuUO9Tkoxq7-SQE=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.000237+00 2025-12-17 08:30:01.000242+00 26946 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jlXsVk4JQLEhAl5l-dJRwOwBktE=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.001949+00 2025-12-17 08:30:01.001953+00 26947 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YIvDBWhNI9VqFldWHzs6nOvn4vQ=", "createTime": "2024-08-15 14:44:48"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.003401+00 2025-12-17 08:30:01.003405+00 26948 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:60u-1mut6iNhZm9Y20FQwlsWHZ0=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.005271+00 2025-12-17 08:30:01.005276+00 26949 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7V-Z1CRdOt4jDpNetAWkqK76WQM=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.00753+00 2025-12-17 08:30:01.007537+00 26950 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ISW1rlq5llCAzyXM8mrvT-msJFY=", "createTime": "2024-08-15 14:44:48"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.009266+00 2025-12-17 08:30:01.009271+00 26951 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aYJTKqJzRvEY9t6598G5MCEFpnw=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.010667+00 2025-12-17 08:30:01.010671+00 26952 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E6uI48OVmdfeJMFrnBS3oq9BzZE=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.012052+00 2025-12-17 08:30:01.012057+00 26953 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j14ZLmv0ewAad-vIQ-2wi49FkoY=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.013407+00 2025-12-17 08:30:01.013412+00 26954 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z-TIUIVdaJItdqwuckHlEMrYUZ8=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.015801+00 2025-12-17 08:30:01.015809+00 26955 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I7px1msDShTgrv9aSzYyU_Xw6E0=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.018416+00 2025-12-17 08:30:01.018424+00 26956 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jj1W-VNusLRY4EoXDUYMzS9mRVg=", "createTime": "2024-08-15 14:44:48"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.020821+00 2025-12-17 08:30:01.020828+00 26957 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KSgFr20DhfuYUSglFSy3LJZZ8fk=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.023156+00 2025-12-17 08:30:01.023163+00 26958 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NlSsX0kQtRpuRDFOGGyTleB1d9o=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.02505+00 2025-12-17 08:30:01.025055+00 26959 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kl8YORJORZQly0KfoqRxQpkiP9o=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.02652+00 2025-12-17 08:30:01.026525+00 26960 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uKWNYn01JnOgVmX-W-4p9E39ANQ=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.027971+00 2025-12-17 08:30:01.027975+00 26961 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TKfCkxyanj5xp-LpYdyfbfp-lig=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.029354+00 2025-12-17 08:30:01.029358+00 26962 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qjj0FdC3fjjbzhJD_u19f-00hfY=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.031044+00 2025-12-17 08:30:01.031048+00 26963 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bTbDkzOZ42RyzZ9cTfZ61Jt0y1c=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.032433+00 2025-12-17 08:30:01.032437+00 26964 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7O30_igxamOqj-kSbwQlNnfc4cA=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.034017+00 2025-12-17 08:30:01.034022+00 26965 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IrAnz9hY8uhT6zL58k1eByunEMQ=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.035572+00 2025-12-17 08:30:01.035577+00 26966 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_d6WKtGMXZS1OeEbPYTbsMFE6_s=", "createTime": "2024-08-15 14:44:50"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.037023+00 2025-12-17 08:30:01.037027+00 26967 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HcqWCyXsBpy9K-FTc6RaXYV7aYQ=", "createTime": "2024-08-15 14:44:50"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.038413+00 2025-12-17 08:30:01.038418+00 26968 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dbIvAW3WMql_63Ub5nOtPG_SyCQ=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.039825+00 2025-12-17 08:30:01.03983+00 26969 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wjRAEqS1rNLgrmqI3zcTRt0kbaE=", "createTime": "2024-08-15 14:44:50"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.041223+00 2025-12-17 08:30:01.041227+00 26970 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fKwhKAMsjwQnXYSzuBC91O1lBSc=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.042923+00 2025-12-17 08:30:01.042927+00 26971 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iDATIo3PTAI6BJb_K0M_knwhoLY=", "createTime": "2024-08-15 14:44:50"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.044332+00 2025-12-17 08:30:01.044336+00 26972 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ARKCUJQ2mcqg5w3bn5929yDXgEQ=", "createTime": "2024-08-15 14:44:50"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.045867+00 2025-12-17 08:30:01.045871+00 26973 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zKLEdP_ipqHR6XABXgqMrmvJ9ag=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.047227+00 2025-12-17 08:30:01.047232+00 26974 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-XQFHp8XakasU3NsTYxod3GGTdk=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.049965+00 2025-12-17 08:30:01.04997+00 26976 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i_RzioS2cASXmxUTdDW2Zm5uPt0=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.051335+00 2025-12-17 08:30:01.051339+00 26977 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SztoPgei-uqUc0Mu5DJplJZCmb8=", "createTime": "2024-08-15 14:44:50"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.052728+00 2025-12-17 08:30:01.052732+00 26978 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:phYUT8IwsuqDBvmORd8ilH2kqPo=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.054401+00 2025-12-17 08:30:01.054405+00 26979 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QoFTbSscXOOj5PHWPVqTK66CxyU=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.055781+00 2025-12-17 08:30:01.055785+00 26980 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1rfAa1MQRSgVi_Gi214Fdcgtnro=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.057356+00 2025-12-17 08:30:01.057362+00 26981 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sszifmk8UfxX5sb_iRBnQp2Aimk=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.04859+00 2025-12-17 08:30:01.048594+00 26975 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yVLyyYXnXM6Qq_zP1051U6SWYhs=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:30:01.061178+00 2025-12-17 08:30:01.061184+00 26982 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=1766046600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OEtQlaIWwNJyrBGGQpM5FSY6p_c=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.701043+00 2025-12-17 08:40:00.701055+00 26983 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SKTYH19CJaYw0rnlJQqvFoEhito=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.704178+00 2025-12-17 08:40:00.704186+00 26984 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vH5G470i0PT_UtOv1C5NEukq5ik=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.70653+00 2025-12-17 08:40:00.706538+00 26985 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q8KwWvkGirVHBkvaFQAyEjK9Zw8=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.708627+00 2025-12-17 08:40:00.708632+00 26986 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:He65zps-LZ-_Py4nDgcadA5Fcj0=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.71049+00 2025-12-17 08:40:00.710495+00 26987 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SRGLQ1K_WfdbT9EWWL8qAWh_bXA=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.711962+00 2025-12-17 08:40:00.711966+00 26988 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_rEmxUX-3_d0iSwEFOO9XcwsyME=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.713553+00 2025-12-17 08:40:00.713558+00 26989 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LVl0bvsNEnPDUF6jd_dRUnnEjf4=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.715062+00 2025-12-17 08:40:00.715066+00 26990 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VCL2Fg-Xy2sZmMmHmhDSA4HqHEo=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.716474+00 2025-12-17 08:40:00.716478+00 26991 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N9yLXYiYGiRDPNDev3gqNXGa_B8=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.717887+00 2025-12-17 08:40:00.717892+00 26992 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kVgmYJRizO1Jvu5gXM6KkozTB0s=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.719282+00 2025-12-17 08:40:00.719286+00 26993 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-8AeEeAJNuaj--q6JqDlRsVUIlM=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.720681+00 2025-12-17 08:40:00.720685+00 26994 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YGCmvCp4hY58nFrf9u4U7Fq9Guc=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.722395+00 2025-12-17 08:40:00.7224+00 26995 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:djb_uzcw9JYt1wY6teUPxNjVdIU=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.723801+00 2025-12-17 08:40:00.723806+00 26996 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:osalcXaLPxgdTPWqcVdMYh1Id2Q=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.725186+00 2025-12-17 08:40:00.72519+00 26997 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WyAUYDB_2IFSHa2M0I8HMiWL2Ac=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.72658+00 2025-12-17 08:40:00.726585+00 26998 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IeI1tTAIYkD1iW3_ZynJaTOfYUc=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.727969+00 2025-12-17 08:40:00.727974+00 26999 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xJzEC9VaoIJuWtwUmOySu8rHj-0=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.729503+00 2025-12-17 08:40:00.729507+00 27000 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vYhmluhJiZSzGK4VBMrGeH12Gu8=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.730945+00 2025-12-17 08:40:00.73095+00 27001 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ON0xsgz84isibdfEsg4lv7UqFwE=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.732364+00 2025-12-17 08:40:00.732369+00 27002 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kJyFSf3pqtLEoiBV6f711HKM7ic=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.734329+00 2025-12-17 08:40:00.734333+00 27003 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m5KAEGxfcz9f8uuR34DfFv7gt38=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.735731+00 2025-12-17 08:40:00.735736+00 27004 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HQVMYWUpiTGZp0ttmKkMHdYchxU=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.737122+00 2025-12-17 08:40:00.737126+00 27005 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TuJ4GTZlovf04MfkTZsv_A8zmlY=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.738544+00 2025-12-17 08:40:00.738549+00 27006 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-AroBQKdAuw7AvQBFT7JPq6JLdc=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.740016+00 2025-12-17 08:40:00.740021+00 27007 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MBUFUSPP74eXE-EPI4ttrjL7vhc=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.741422+00 2025-12-17 08:40:00.741427+00 27008 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EmuM60keBMiqGGF9NtaeXH_C8Ks=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.743059+00 2025-12-17 08:40:00.743063+00 27009 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MCIbia3_KRgdytH01glG-OBAxak=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.744445+00 2025-12-17 08:40:00.744449+00 27010 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MqkYZw8OaylH0E2xn7tph6daXiA=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.746198+00 2025-12-17 08:40:00.746203+00 27011 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FrUlA92YcBiioglj8hs_FJIAFuI=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.753359+00 2025-12-17 08:40:00.753364+00 27016 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UiaTEP3Apfzrp2lDimGxmYSvBVQ=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.747752+00 2025-12-17 08:40:00.747756+00 27012 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ginqe_josEcHeIgptKQZm0z1S3U=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.749202+00 2025-12-17 08:40:00.749206+00 27013 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rnjpGLqhZe01WH6aLhe3BcjWGww=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.750571+00 2025-12-17 08:40:00.750576+00 27014 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3kVdc2j1iB7ueRQH8kK650Cm29k=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.751976+00 2025-12-17 08:40:00.75198+00 27015 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jSE-NDSulIoNNDS5hMjyL2EC_UQ=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.754737+00 2025-12-17 08:40:00.754742+00 27017 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JXmNgQuudXpnyLv_ARW-Gnumwzg=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.756149+00 2025-12-17 08:40:00.756153+00 27018 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:olPKIjAPftFLMTFGf25TJR88zCI=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.757807+00 2025-12-17 08:40:00.757811+00 27019 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:88KhaNJVVxd2IKiHLpUjBxW8idQ=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.759187+00 2025-12-17 08:40:00.759191+00 27020 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qmeGZ6jDhBTYg9_c6Dpmc0vSIkI=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.760583+00 2025-12-17 08:40:00.760588+00 27021 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZY7XR_ePe-CWFEEBHy-CCJ9E6TI=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.76198+00 2025-12-17 08:40:00.761984+00 27022 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:muhHqTc4Mt1G3IKr7Ox3z_Khq74=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.763619+00 2025-12-17 08:40:00.763625+00 27023 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xfn5Z7t4I1vSjl7_9PgtoN8bHEw=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.765603+00 2025-12-17 08:40:00.765608+00 27024 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hmd3ONr9WOQqnw1zniXufp-13XI=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.767434+00 2025-12-17 08:40:00.767438+00 27025 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:akDbP9QDrvt_vqgwESGMsLY3xUk=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.769008+00 2025-12-17 08:40:00.769014+00 27026 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:waVZgUVzeLLJF9Iwsh89nvi5Kl4=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.770858+00 2025-12-17 08:40:00.770863+00 27027 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QlmaV48IYYiAX7-i1xy29VAxUJE=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.772421+00 2025-12-17 08:40:00.772425+00 27028 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lyqz6-D9QULP17GuM995Y3HeYHE=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.773938+00 2025-12-17 08:40:00.773943+00 27029 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eeHOM98MhPacz-POiDMxAc2X3_8=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.775401+00 2025-12-17 08:40:00.775405+00 27030 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k-BFXL634niqAD7DzmY_eQ2JR3E=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.776839+00 2025-12-17 08:40:00.776843+00 27031 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OUo7SuKhOfT69M2PGWdL8smGvgU=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.778206+00 2025-12-17 08:40:00.778211+00 27032 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fm4jc9p5_EhhOPtWpvTnT0NhQNU=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.779696+00 2025-12-17 08:40:00.7797+00 27033 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oai9gPeLL-DL-i0S5n-3FyCiB-k=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.781117+00 2025-12-17 08:40:00.781122+00 27034 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rqZ1JBQMDX1kgVBmYT4JKyW61NY=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.782836+00 2025-12-17 08:40:00.782841+00 27035 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HTonK9kOHszRUW6B7Knd1XlUFE8=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.784259+00 2025-12-17 08:40:00.784263+00 27036 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qmH-DvdJsEe4UfPgAjoLtxdyUew=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.785649+00 2025-12-17 08:40:00.785654+00 27037 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Kjk2-KnGUwr3BP1__tQswGYXT4=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.787041+00 2025-12-17 08:40:00.787045+00 27038 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aZ_wN9TQftcQZx2krnALLqDYMPo=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.788433+00 2025-12-17 08:40:00.788438+00 27039 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7OzyKE5anFuWFoSYE2mfBHTfJkA=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.789823+00 2025-12-17 08:40:00.789827+00 27040 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KqE21dhsv0JJKhFh4iG8chBnQC0=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.791213+00 2025-12-17 08:40:00.791217+00 27041 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gJoAGBYMb6vc1ClbGz5eIsDSbcI=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.792766+00 2025-12-17 08:40:00.792771+00 27042 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-N9jSVoc5mPlq5W3iI_zbxkLd8c=", "createTime": "2024-08-15 14:44:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.794498+00 2025-12-17 08:40:00.794503+00 27043 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XbWRxjV-5G4hFApemRLeZMNKVwc=", "createTime": "2024-08-15 14:44:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.795902+00 2025-12-17 08:40:00.795906+00 27044 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:arGWuVJJ5Ex-Z4MJKH2V_RqpgLE=", "createTime": "2024-08-15 14:44:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.797848+00 2025-12-17 08:40:00.797853+00 27045 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BvFXk2osZG4vchUpNMA5gu4gmaI=", "createTime": "2024-08-15 14:44:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.7997+00 2025-12-17 08:40:00.799705+00 27046 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FLuRcFnod-hAPKfRTkF8yH5KjkA=", "createTime": "2024-08-15 14:44:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.801283+00 2025-12-17 08:40:00.801287+00 27047 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tSqJZHYJ9m85_fnAPm1ZCe1ofGM=", "createTime": "2024-08-15 14:44:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.802902+00 2025-12-17 08:40:00.802908+00 27048 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C17eASYdKDK4ad5eH17rFnRQ0n4=", "createTime": "2024-08-15 14:44:56"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.804669+00 2025-12-17 08:40:00.804673+00 27049 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sS233-X1fL--fumKyZZkuG8wLSI=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.806105+00 2025-12-17 08:40:00.806109+00 27050 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KA5AMGP1_QQ4nR1VxkdY4JpVS2c=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.807843+00 2025-12-17 08:40:00.807849+00 27051 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YI0iWzqyAIWvNqIURQRbAUURhkI=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.809337+00 2025-12-17 08:40:00.809341+00 27052 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vJvRDdwnDfnYEg2RKroEhmXSiIs=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.810751+00 2025-12-17 08:40:00.810756+00 27053 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lIarKB9b3I-utA9jCypK17a6nD0=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.812152+00 2025-12-17 08:40:00.812156+00 27054 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pyHTyCwNVvN1Ty04V9wQARmb08I=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.813654+00 2025-12-17 08:40:00.813659+00 27055 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GjXVCpQDnBg91rcOAy3_x1qCEAI=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.815093+00 2025-12-17 08:40:00.815098+00 27056 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9nmS2U5j3ZE_F1BzCqNgdsHxFXY=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.816503+00 2025-12-17 08:40:00.816507+00 27057 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UbCFbPhdpCrdS9nzPmYKpCyQyjI=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.817948+00 2025-12-17 08:40:00.817952+00 27058 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:85BXFnmUPqQ_P6mwm6zyT1GkCzE=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.819643+00 2025-12-17 08:40:00.819648+00 27059 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yAc-rtde5oEssIHYk_cWR0cGtuA=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.821212+00 2025-12-17 08:40:00.821216+00 27060 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PqPOotxl9FA67CnmuzNbtkdrodI=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.822643+00 2025-12-17 08:40:00.822647+00 27061 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7jtT5_n8JwRjQ2BlieLBJTC7ERE=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.824006+00 2025-12-17 08:40:00.82401+00 27062 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IKalLFSWHoatFJMQFJJUrYi82rA=", "createTime": "2024-08-15 14:44:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.825404+00 2025-12-17 08:40:00.825409+00 27063 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B3rzbJe8vnwqYDP3drb0cmQ0kf8=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.826794+00 2025-12-17 08:40:00.826798+00 27064 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qLM5aQTha9rsX0UeH3qKM3UQsDE=", "createTime": "2024-08-15 14:44:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.828179+00 2025-12-17 08:40:00.828183+00 27065 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:shqf2g3gxz1r1XO8sPpO-kaiRCE=", "createTime": "2024-08-15 14:44:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.829677+00 2025-12-17 08:40:00.829682+00 27066 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0z3rWK2NkoMeKjRJVpwlBn24j6o=", "createTime": "2024-08-15 14:44:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.83157+00 2025-12-17 08:40:00.831575+00 27067 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RCufmwsJCPKy1_i44BAA0zcTkOc=", "createTime": "2024-08-15 14:44:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.833264+00 2025-12-17 08:40:00.833269+00 27068 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:27bJLWlJAQtKfrdI798mkmK60x4=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.834995+00 2025-12-17 08:40:00.834999+00 27069 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z2TMeQVtRcrURpcCWjxTWsWbhyM=", "createTime": "2024-08-15 14:44:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.836424+00 2025-12-17 08:40:00.836429+00 27070 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZgWUuzRtq48stg-eAkCkj8ucFq4=", "createTime": "2024-08-15 14:44:58"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.837946+00 2025-12-17 08:40:00.83795+00 27071 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LWqOEuG8-fHNGfg1EQMXe7cOOP8=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.839419+00 2025-12-17 08:40:00.839423+00 27072 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B7hr6gVBMVCTbtqjPLRZrPrHX8E=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.840855+00 2025-12-17 08:40:00.84086+00 27073 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iHL1IwWxssiUWacRqEG7U5BfaHQ=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.842373+00 2025-12-17 08:40:00.842378+00 27074 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sPswxD8utTQmCTIPBLCVK8GmB14=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.844252+00 2025-12-17 08:40:00.844257+00 27075 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9cU8ALYzpsephTy4ZFj_cVexQpo=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.845953+00 2025-12-17 08:40:00.845958+00 27076 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q9h3NxWMoofG5HhseV3eECgYSOE=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.847527+00 2025-12-17 08:40:00.847532+00 27077 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SDC96tJYGddAyIA4r9YoGMMzCiE=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.848992+00 2025-12-17 08:40:00.848997+00 27078 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UwvEg8P9N1gQ57j_WSQqQl_nQyc=", "createTime": "2024-08-15 14:45:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.850392+00 2025-12-17 08:40:00.850396+00 27079 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B6obmuGFuobr3z7uaAIhaxJ0liI=", "createTime": "2024-08-15 14:45:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.851823+00 2025-12-17 08:40:00.851827+00 27080 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y_qBkooES_2u2T9IQJNqat6Ky5Y=", "createTime": "2024-08-15 14:45:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:00.853242+00 2025-12-17 08:40:00.853247+00 27081 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a7tYyweu3FEOycBG80jdNqYzuaM=", "createTime": "2024-08-15 14:45:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.218841+00 2025-12-17 08:40:01.218853+00 27082 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EsIEUuJMLYJly6IAyk3HbwuXe5s=", "createTime": "2024-08-15 14:45:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.222406+00 2025-12-17 08:40:01.222416+00 27083 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M_U1X5-jJZHm0VvAfUlnKevUQIg=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.225483+00 2025-12-17 08:40:01.225491+00 27084 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jWML1DkE6olPr_KztqaJNIwXLls=", "createTime": "2024-08-15 14:45:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.228718+00 2025-12-17 08:40:01.228726+00 27085 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SycXfi6mqZg-z4Ifb2YRPG4Y-6E=", "createTime": "2024-08-15 14:45:00"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.230863+00 2025-12-17 08:40:01.23087+00 27086 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KKNoVps5hvZyM_tNIxvnkHjEbxw=", "createTime": "2024-08-15 14:45:01"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.233273+00 2025-12-17 08:40:01.23328+00 27087 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ikgivtpbQ5IfW3E08-d-MkF_FgQ=", "createTime": "2024-08-15 14:45:01"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.235386+00 2025-12-17 08:40:01.235391+00 27088 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NysFep-YhdvBbD48xnmphHi9bhE=", "createTime": "2024-08-15 14:45:01"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.236892+00 2025-12-17 08:40:01.236896+00 27089 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aoExgj0sIsxIFn12jwAw7jdC-ys=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.23848+00 2025-12-17 08:40:01.238485+00 27090 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VmwiG9WPLH-ephd5n-QloVl0eS4=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.240273+00 2025-12-17 08:40:01.240278+00 27091 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZvCehnbGSH4hSwFVvPtXkWCz9_s=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.241709+00 2025-12-17 08:40:01.241714+00 27092 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TWgxG55BQaPqBiNEVpslpbYlD5E=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.24312+00 2025-12-17 08:40:01.243124+00 27093 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EoDy_L9Jk42f8kgwE_8RLe_r8a4=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.244542+00 2025-12-17 08:40:01.244547+00 27094 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H5R3M-Fw8EPuw6R-vryus8H7ZiY=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.246016+00 2025-12-17 08:40:01.246021+00 27095 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WyOnaX0O2bpH3YJCzH4cCiimhs8=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.247437+00 2025-12-17 08:40:01.247442+00 27096 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gCkaoz5h0Ms8bcxdxOnTqaRGMwE=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.248868+00 2025-12-17 08:40:01.248872+00 27097 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AGuLyOcXvn5t3D2j8X6TJrsLdVE=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.250305+00 2025-12-17 08:40:01.25031+00 27098 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9oY64LP4qHSP58aFx8qEDotJrzk=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.252046+00 2025-12-17 08:40:01.25205+00 27099 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I-BU04yp49rCc7IurLDYABqIoFA=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.253455+00 2025-12-17 08:40:01.253459+00 27100 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dpvFbQYJSbRTGL5sDIbBdNdAr9k=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.25489+00 2025-12-17 08:40:01.254894+00 27101 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CH1ieGgcNa9VtnZbErw9vIEdbhM=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.25635+00 2025-12-17 08:40:01.256354+00 27102 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Xtsrg8_1uGHaxYWS9mRLTRbdjk=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.257755+00 2025-12-17 08:40:01.25776+00 27103 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BHhODneVGEhnXJTaRffniPhJEms=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.259209+00 2025-12-17 08:40:01.259213+00 27104 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SWxX-b4h_xNa293Y12EzlAjQZRU=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.260658+00 2025-12-17 08:40:01.260663+00 27105 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qPkkPDPA6ssKktqayTtw8X2Q0Rg=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.262206+00 2025-12-17 08:40:01.26221+00 27106 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i1HkInQ7i4yjGV1wvuUK-lrE7y0=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.264227+00 2025-12-17 08:40:01.264234+00 27107 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iTI87_Z2Iruq2w66MqJBbp75iiQ=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.26618+00 2025-12-17 08:40:01.266185+00 27108 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ugqnpe9vpZgaWnJxZbjNvKE_s6A=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.267632+00 2025-12-17 08:40:01.267638+00 27109 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2fCqDcdKSuJUgKGpypTFlAFBCQI=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.269159+00 2025-12-17 08:40:01.269163+00 27110 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BUMbeHedVf9K651QPgFZEhib4uM=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.270753+00 2025-12-17 08:40:01.270758+00 27111 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fEWT0t0rPs5FbPBPFnKnHkWKevM=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.272226+00 2025-12-17 08:40:01.272231+00 27112 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dGdSSqCUnHd8SE0H0LfNMLyfMuk=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.273678+00 2025-12-17 08:40:01.273683+00 27113 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D4UsuKhgQkDOcnnTWDS5Sqs32tE=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.275089+00 2025-12-17 08:40:01.275093+00 27114 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3JDubuaATBm5nvbfBdXXBfYeAjU=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.276794+00 2025-12-17 08:40:01.276798+00 27115 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IA6k4D5ihSVByueu5eCs3hcIehs=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.278176+00 2025-12-17 08:40:01.27818+00 27116 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xGCZ7EVyTzTyE-EmJcW9nQwRIE4=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.279885+00 2025-12-17 08:40:01.279889+00 27117 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XqOpIiZ4d705IwOG-E28fR_brEA=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.281375+00 2025-12-17 08:40:01.28138+00 27118 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1GWv9iSHOvDU4VMZnkKGwBla7XM=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.282829+00 2025-12-17 08:40:01.282833+00 27119 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_F3Nga1MPt8TDXzd6k_-BE4nP8o=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.284236+00 2025-12-17 08:40:01.28424+00 27120 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WPxDnlmgXodn_JOqV8fc4-cJT_w=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.285639+00 2025-12-17 08:40:01.285643+00 27121 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XDYXMihs8Jn2q2dZXWSmHDR4NMQ=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.28707+00 2025-12-17 08:40:01.287075+00 27122 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mNhBJcW-g_NI2C2bjviZbQ9Jolo=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.288754+00 2025-12-17 08:40:01.288758+00 27123 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FomfCki_7RI145Vmaq1y6nf40B4=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.290178+00 2025-12-17 08:40:01.290182+00 27124 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0YCqGkaFJgQkzaCvgTOpuH7WQIk=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.291584+00 2025-12-17 08:40:01.291588+00 27125 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dJ0Gk8_1tX4blOOLEc5IL2jgWCU=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.29299+00 2025-12-17 08:40:01.292994+00 27126 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:--H2cTzMwaTIezSm7dzwluY6MBo=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.294403+00 2025-12-17 08:40:01.294408+00 27127 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iMHcHVSY9NFxCpoZJbhYoZAmTTA=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.29587+00 2025-12-17 08:40:01.295874+00 27128 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fpmeCn6Wiw9w6NA-6BEnDi6b5RM=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.297304+00 2025-12-17 08:40:01.297308+00 27129 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4JuioCRtEotHfkC2N6D78i_QD64=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.29874+00 2025-12-17 08:40:01.298745+00 27130 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hXjc2gsvS9GES4ggJ5gHBAt_3Tg=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.300442+00 2025-12-17 08:40:01.300447+00 27131 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K_NIZJ5p6UWFjF-4-6AdlGmXQeE=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.301829+00 2025-12-17 08:40:01.301834+00 27132 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AuR9EzDs7PBr--Kci0Pe4PRcQEo=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.303226+00 2025-12-17 08:40:01.303231+00 27133 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CCUzuUnqAHI60V-smuWEbHfapeQ=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.304639+00 2025-12-17 08:40:01.304644+00 27134 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p8ls4hcvGHdCl6zySQcvmOKZb5o=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.306023+00 2025-12-17 08:40:01.306028+00 27135 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lTdKucU9kXmIcMZphE_4ZLzi4ho=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.307394+00 2025-12-17 08:40:01.307399+00 27136 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ziOn7rDvJGF4xYwe8nkhPk6kl8s=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.30882+00 2025-12-17 08:40:01.308824+00 27137 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HQyS-b77z1js1GU679Qm5tAdGRM=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.310256+00 2025-12-17 08:40:01.31026+00 27138 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1EZR3YALssA2FlUcNiBCqfh3p1I=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.312065+00 2025-12-17 08:40:01.312069+00 27139 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B2kuGbJ5cdHTDSI39QnO1egsFrY=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.313502+00 2025-12-17 08:40:01.313507+00 27140 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ree7owZybSMOCnwhpEkUWBEVhso=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.314921+00 2025-12-17 08:40:01.314925+00 27141 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pcl0DfemDBJHyOzns4GwfHLyCaM=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.316341+00 2025-12-17 08:40:01.316346+00 27142 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sf1bHS0q0UHG0DDVDBBhUMpv4dE=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.317734+00 2025-12-17 08:40:01.317738+00 27143 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3VJnR00UzHTPBMHtiUhlWcBQswA=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.319123+00 2025-12-17 08:40:01.319127+00 27144 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z5jfPM0GE7vWSjgXoxe9nt8Ai-M=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.320512+00 2025-12-17 08:40:01.320517+00 27145 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wxa_DO4XbZdi7QqHXZskCm3-r9c=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.321984+00 2025-12-17 08:40:01.321988+00 27146 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x6lhznLtfOAKkBaP4KzxgHdrdGQ=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.323767+00 2025-12-17 08:40:01.323771+00 27147 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2aW-uoWxt6_HMLXW0CoP9r0xu-0=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.325457+00 2025-12-17 08:40:01.325461+00 27148 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJ504V97dOB_zwTxUpux6GmVvUI=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.326873+00 2025-12-17 08:40:01.326877+00 27149 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cEecJT6AbQUBMYW-JN72pd97wcY=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.328318+00 2025-12-17 08:40:01.328322+00 27150 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gVLsgtyTjsSmEaq_IvTabNAtMdE=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.329724+00 2025-12-17 08:40:01.329728+00 27151 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f35yiEu_l7D1wpIRtYlt4PizDzE=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.331112+00 2025-12-17 08:40:01.331117+00 27152 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ab08R6yxspgCoydV_aw19H-pqjY=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.332592+00 2025-12-17 08:40:01.332596+00 27153 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FXYd0JhCTrrOPAXuhx0oS_ObILM=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.334068+00 2025-12-17 08:40:01.334073+00 27154 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zsgmhg2mQrw5WOpMZ_3-plljR6E=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.335745+00 2025-12-17 08:40:01.335749+00 27155 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q1mGwf-5qbcCr6MtfGddsnG-qtI=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.337144+00 2025-12-17 08:40:01.337149+00 27156 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D2M2JJ5WkfOQHT-sJzpIhj3yx4o=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.338556+00 2025-12-17 08:40:01.338561+00 27157 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XZOeif0VkHNA2nsRRtvZBAnauIw=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.339959+00 2025-12-17 08:40:01.339963+00 27158 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XKbgIB1MlHbUSFIQ60hEW6tK8Jo=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.341362+00 2025-12-17 08:40:01.341367+00 27159 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ItO6GrRM3thADU8_uiDLuf_cUFY=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.342774+00 2025-12-17 08:40:01.342779+00 27160 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gX98LFnbnTjiSN4yg4GMgeZUpdU=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.344166+00 2025-12-17 08:40:01.344171+00 27161 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TKJapP7JK9FqQHiOtxmhZ5CkRBc=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.345551+00 2025-12-17 08:40:01.345555+00 27162 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FpnjlPMZzUdpT1UIDqvpF3sHSxE=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.347285+00 2025-12-17 08:40:01.347289+00 27163 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c1kYQ4vys2mGJA98nCGcsddRezE=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.348769+00 2025-12-17 08:40:01.348774+00 27164 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:so0pyTCCW-R0Y-bdo6itw0fvO8M=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.350318+00 2025-12-17 08:40:01.350323+00 27165 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yBJOYGuisk8YRDlECIGy8G2SiFw=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.351748+00 2025-12-17 08:40:01.351752+00 27166 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DI2KnsxcK56mkc-3-8JDHE08pug=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.353178+00 2025-12-17 08:40:01.353183+00 27167 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3QP4pBbq3yG_rVjtYgfrCCt4nVA=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.35459+00 2025-12-17 08:40:01.354595+00 27168 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8IjxTKKXe_VML1jdLEEj7wxD750=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.356194+00 2025-12-17 08:40:01.356201+00 27169 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6pl1LT6Nb4ykz-7XQtatledu7dU=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.357682+00 2025-12-17 08:40:01.357688+00 27170 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qZQVktH5BWn0Vs0fuzsXpTVDy_g=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.359463+00 2025-12-17 08:40:01.359468+00 27171 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1rz9zoA-WUi8dXHJkTjk6XypBcs=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.36091+00 2025-12-17 08:40:01.360915+00 27172 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VwErJwTLp88i6wFvP8lYw6gfu4A=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.362355+00 2025-12-17 08:40:01.36236+00 27173 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-YBAxy4Re0Nziz9eUnLe6wj52zk=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.363787+00 2025-12-17 08:40:01.363792+00 27174 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dyJNJxc2u4WntYSvGqzUOlWApZw=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.365209+00 2025-12-17 08:40:01.365213+00 27175 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yxnlQEt8B0l1k-P4WckVpDDoseY=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.366653+00 2025-12-17 08:40:01.366658+00 27176 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zl0dw_Uyk2rjk5ooua_5H6svixo=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.368286+00 2025-12-17 08:40:01.368291+00 27177 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HkRnu6aUzc88SVR46fPfHASOCcM=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.369813+00 2025-12-17 08:40:01.369818+00 27178 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NNLcV2Is0NnyxK8VUzPUY-26bM4=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.371752+00 2025-12-17 08:40:01.371757+00 27179 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:igyf6K4QDtKXmCItdXFexzUxJHQ=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.373366+00 2025-12-17 08:40:01.373371+00 27180 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hptfPv4fK_1FH81zkHfN51h4G2w=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:40:01.374957+00 2025-12-17 08:40:01.374962+00 27181 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=1766047200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eefp4g7nPNaBrNQL2mwX2m17SuI=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.391769+00 2025-12-17 08:50:00.391782+00 27182 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nE306t_LgJ-SSvhZgruwu9DWIPA=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.395165+00 2025-12-17 08:50:00.395173+00 27183 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:72UY5QA4bnhl4llFKMzOl0oRljM=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.397948+00 2025-12-17 08:50:00.397954+00 27184 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u_8g1vrT2ixPTpt7U5vyGtIoQgg=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.399875+00 2025-12-17 08:50:00.39988+00 27185 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DGoku-4gTnffm08nwXSdIqNfVOM=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.401727+00 2025-12-17 08:50:00.401734+00 27186 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VjzKghf69MBACqQx7PAyoI8x0I8=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.403504+00 2025-12-17 08:50:00.40351+00 27187 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GdVmI2pISe3osSdBdFEyAZSgmDU=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.406452+00 2025-12-17 08:50:00.406462+00 27188 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RtrMO1TJk1uKcBKWwqUXv2gbjrY=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.409066+00 2025-12-17 08:50:00.409073+00 27189 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YoY9eLntKK9ZhWjIaccRcHjgYzU=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.411582+00 2025-12-17 08:50:00.41159+00 27190 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mHTvgWVseOgGjdZRC11O2C-CUOw=", "createTime": "2024-08-15 14:45:10"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.414053+00 2025-12-17 08:50:00.41406+00 27191 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iroxqxtche3o1mihkYD3HDVe4I8=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.416744+00 2025-12-17 08:50:00.41675+00 27192 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g7z-9lGAwfR71yiOSjzOM-g9GlI=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.419003+00 2025-12-17 08:50:00.419009+00 27193 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B4Tj1PJyfY1hBXNuBNDZnCRyFrA=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.4208+00 2025-12-17 08:50:00.420804+00 27194 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zYA_E-_DxnpFFcxhMho0uh7d0xg=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.422252+00 2025-12-17 08:50:00.422257+00 27195 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:anOiohSmkazl0VQh8Vs2E2FL1g0=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.423883+00 2025-12-17 08:50:00.423889+00 27196 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:grjvYNU5jNQteSIRGHr6hvOhsII=", "createTime": "2024-08-15 14:45:10"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.425772+00 2025-12-17 08:50:00.425777+00 27197 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8yMEaZIwC4hZhpo0V9udCixFiP8=", "createTime": "2024-08-15 14:45:10"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.427323+00 2025-12-17 08:50:00.427328+00 27198 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kszsLN2ja4ii0WRySQqWeuDoocs=", "createTime": "2024-08-15 14:45:10"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.42877+00 2025-12-17 08:50:00.428774+00 27199 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1oJfeCNO7ofaf741pZZNAAKYBhY=", "createTime": "2024-08-15 14:45:11"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.430527+00 2025-12-17 08:50:00.430532+00 27200 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qM5Okxw_4E6ia9n6qiY5LzjM3SY=", "createTime": "2024-08-15 14:45:11"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.431975+00 2025-12-17 08:50:00.431979+00 27201 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kfi_y6NsBuQgup2Esk0hx1600ME=", "createTime": "2024-08-15 14:45:11"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.433465+00 2025-12-17 08:50:00.43347+00 27202 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r3a7vMSjQ6jzZx9mQNVyUjOIhWg=", "createTime": "2024-08-15 14:45:11"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.434915+00 2025-12-17 08:50:00.43492+00 27203 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hlt_fhSuoxZjtSAF8JOmanqfYrA=", "createTime": "2024-08-15 14:45:10"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.436787+00 2025-12-17 08:50:00.436793+00 27204 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:azYy0bNOaO4R_KBMxQ7G-UFfpsk=", "createTime": "2024-08-15 14:45:11"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.438619+00 2025-12-17 08:50:00.438627+00 27205 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5-aYrcMuGu49pekjzUiLfBmJFLE=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.440193+00 2025-12-17 08:50:00.440198+00 27206 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C1oTzueDd5GDaEdHWcURWzT_1AE=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.441632+00 2025-12-17 08:50:00.441637+00 27207 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zxwlK_589b3jgg5LrZ1ryh-Wabw=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.443416+00 2025-12-17 08:50:00.443421+00 27208 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJi0EiSpOgieAIX9LI9P2JH9bNY=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.444892+00 2025-12-17 08:50:00.444897+00 27209 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c9CT2lqlZYgjTSJpyKplrtcH220=", "createTime": "2024-08-15 14:45:11"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.446349+00 2025-12-17 08:50:00.446355+00 27210 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s8zEzTNwNmJp4BVfbRO1XKWSiVI=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.448393+00 2025-12-17 08:50:00.448406+00 27211 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ERhJxKmOk9aGWowuOPy_nv58cbI=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.450728+00 2025-12-17 08:50:00.450734+00 27212 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j7FXfkj-dJJPwyz_ysAywW04VPs=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.452449+00 2025-12-17 08:50:00.452454+00 27213 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t3JKarC8Cb5T1A9TKvHnFHagHh0=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.453924+00 2025-12-17 08:50:00.453928+00 27214 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l_BIZizSpoOwzacMhhCnQ5CZwKc=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.455368+00 2025-12-17 08:50:00.455373+00 27215 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pbgElBmZgY8TnkqLN_JM2vzaChE=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.457151+00 2025-12-17 08:50:00.457156+00 27216 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8v5CDbE97hugUVUijPZVhdcfink=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.458903+00 2025-12-17 08:50:00.458907+00 27217 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qYH7g5m_C5vla2u6kkCwqxR3hQs=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.46038+00 2025-12-17 08:50:00.460384+00 27218 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v6XLsjljokDdd5MG_kWAHZylTeQ=", "createTime": "2024-08-15 14:45:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.461783+00 2025-12-17 08:50:00.461788+00 27219 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DbizHNzEqML18xuWRB41G45ZwXQ=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.463237+00 2025-12-17 08:50:00.463242+00 27220 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rXB2PwpVxF59ZoU6IGtztVCFtCk=", "createTime": "2024-08-15 14:45:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.464903+00 2025-12-17 08:50:00.464907+00 27221 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mCyYjta4bu9B2jweUTIcs9fhs14=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.466295+00 2025-12-17 08:50:00.4663+00 27222 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dw5OpF2hkGO743M1YGx1Zu_1lwY=", "createTime": "2024-08-15 14:45:13"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.467782+00 2025-12-17 08:50:00.467786+00 27223 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6E_EmVQzD61sFTxxVglZ5TzGoXA=", "createTime": "2024-08-15 14:45:14"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.469529+00 2025-12-17 08:50:00.469534+00 27224 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T3Dph5Et-jSmtL_VHdOYk1mqkkI=", "createTime": "2024-08-15 14:45:14"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.470969+00 2025-12-17 08:50:00.470974+00 27225 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FdHg3DCZLx3vDlZKUN92wyf3DMc=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.472654+00 2025-12-17 08:50:00.47266+00 27226 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wrjbDT0nPGbx4aZZOZakvKqspfw=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.474206+00 2025-12-17 08:50:00.47421+00 27227 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GmchnKoCxcspN9Y0Aj1kO_hAxEk=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.475637+00 2025-12-17 08:50:00.475642+00 27228 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_4AlEJyqsKhLLDDN9HD8Rjh-yXU=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.477121+00 2025-12-17 08:50:00.477125+00 27229 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kNGyfPcRJb-rJVKwZYeAg41wf38=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.478545+00 2025-12-17 08:50:00.47855+00 27230 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UMD9Gm13Gr6U3vTzusAmAritXjI=", "createTime": "2024-08-15 14:45:14"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.480115+00 2025-12-17 08:50:00.480122+00 27231 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b_vK5XDf9Lzdc-kWvA1FPp6lG-s=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.481905+00 2025-12-17 08:50:00.481909+00 27232 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jDHqhq1J4QY0F4z1W2sWnecEFgQ=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.483391+00 2025-12-17 08:50:00.483396+00 27233 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ERcwH38razAbKJhQfzMILkKieY0=", "createTime": "2024-08-15 14:45:14"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.48515+00 2025-12-17 08:50:00.485155+00 27234 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:25r560__EVRcSSJOgtEgOygsXb8=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.487097+00 2025-12-17 08:50:00.487101+00 27235 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nK7GuYQ7lRinvBwhiO9jCm-lXFU=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.488883+00 2025-12-17 08:50:00.488887+00 27236 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D-epD5WtkNsX3xUqtPxA1dlf43I=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.490656+00 2025-12-17 08:50:00.490662+00 27237 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j98mty8EWQucvKmzzdmu9YriCbo=", "createTime": "2024-08-15 14:45:14"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.492453+00 2025-12-17 08:50:00.492458+00 27238 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QeAO2XoNzS6B9ydwhvnzXTP0-So=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.494291+00 2025-12-17 08:50:00.494295+00 27239 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZjrsQC_psgZRCKGc-NGdzK1nIXY=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.496035+00 2025-12-17 08:50:00.49604+00 27240 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nMNfW0x7j27VtDXHforqSaynXJ4=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.49829+00 2025-12-17 08:50:00.498297+00 27241 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gd0c5ugx-9iTSeyKRKqW-Y9DdTA=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.500472+00 2025-12-17 08:50:00.500478+00 27242 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6ImMsi9Rrh5rG0m4_xA_hI3bdWE=", "createTime": "2024-08-15 14:45:14"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.502315+00 2025-12-17 08:50:00.502319+00 27243 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJpUJW9Pq-EZFEuFx41DShZGhRI=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.50382+00 2025-12-17 08:50:00.503826+00 27244 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X7cqe5Ifc4n5fUyhNP294d2l9No=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.505331+00 2025-12-17 08:50:00.505336+00 27245 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wB2o5AiT5LogpDWXLix5GmIrBik=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.50685+00 2025-12-17 08:50:00.506855+00 27246 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QXP_lLl_kqw8R08thIeB1Mmeee8=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.508432+00 2025-12-17 08:50:00.508437+00 27247 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K_3ehrfld27KGj22SpK5PFo0yvw=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.510241+00 2025-12-17 08:50:00.510246+00 27248 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EgsbmqrKXFbnjehboaqOdrIPb1Y=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.51169+00 2025-12-17 08:50:00.511695+00 27249 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ehUZHYL42zFHWJRm9mqRwHiT-mw=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.513328+00 2025-12-17 08:50:00.513333+00 27250 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GccSphvjb2tH5NOucLDjRNr_VnQ=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.514879+00 2025-12-17 08:50:00.514884+00 27251 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eJdiTYUvGOISYz9uR47dSfKSQAk=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.516315+00 2025-12-17 08:50:00.516319+00 27252 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:76XtF6AcHxvK1dxfOl9X2xesdsc=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.517741+00 2025-12-17 08:50:00.517745+00 27253 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D3lFwp3xcK0KyOS-xYhGZASoUJs=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.519264+00 2025-12-17 08:50:00.519269+00 27254 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0kjGOWyY35XxY9OK-QSpykoukuE=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.520793+00 2025-12-17 08:50:00.520797+00 27255 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tm7UQK5_DTXE634UmO-xu4AwhHI=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.522581+00 2025-12-17 08:50:00.522587+00 27256 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J0yjUomEYfYot13pjClHH5RqzzE=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.52438+00 2025-12-17 08:50:00.524385+00 27257 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gpt-_qFq42TjcrcJZyTE3V95774=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.526196+00 2025-12-17 08:50:00.526205+00 27258 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Aj7HO8iK_-SPo_yD8-WTnZA-A44=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.52886+00 2025-12-17 08:50:00.528868+00 27259 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M9L7OamrewAfBuNbSCGmuECLQIg=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.531216+00 2025-12-17 08:50:00.531222+00 27260 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xMbV6yc71WyfRrso5l6vA495uUU=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.533004+00 2025-12-17 08:50:00.53301+00 27261 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bRR5dqzDZlyqMYbXaiRJxxdo0rs=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.534661+00 2025-12-17 08:50:00.534666+00 27262 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jEcJjbyF_lLw7wBLu_Xa7RzlaUQ=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.536555+00 2025-12-17 08:50:00.53656+00 27263 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:47RcZ7__cX8Xyu1mQztSjzIRGhs=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.538255+00 2025-12-17 08:50:00.53826+00 27264 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z0OPgKLEGGcofgXdRhg2Qg2OFcg=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.539897+00 2025-12-17 08:50:00.539902+00 27265 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cEde3UojYrgMWyXqDNalVyfaIxE=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.541736+00 2025-12-17 08:50:00.541741+00 27266 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KgqR-TBIHZmzZ_tNO1A198cjxRw=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.543567+00 2025-12-17 08:50:00.543573+00 27267 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IDfXGnV3c5BQu3Ho1V5dPBubPa8=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.545637+00 2025-12-17 08:50:00.545642+00 27268 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:82ql5Q-RJLbP9AezZV-Ntl3u9YI=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.547223+00 2025-12-17 08:50:00.547228+00 27269 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T6C6TqcUultM-vIBwr2lf1jkWn4=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.548852+00 2025-12-17 08:50:00.548856+00 27270 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p_fc_U6nTrAtxqJbTNkQGKXHJBs=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.550663+00 2025-12-17 08:50:00.550669+00 27271 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2T8d3sYR8DAcCgB26oLweUxyvi8=", "createTime": "2024-08-15 14:45:19"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.552544+00 2025-12-17 08:50:00.55255+00 27272 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xDk_aLvajGNeiR5mXUBgbnzISqQ=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.554137+00 2025-12-17 08:50:00.554142+00 27273 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:76NLsM5gwATTxZnRT6qfpkSm1bA=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.555557+00 2025-12-17 08:50:00.555561+00 27274 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3K78GCWQqBuiqXnoxCO_MthJ1Pw=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.556987+00 2025-12-17 08:50:00.556991+00 27275 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pVZkJVyrlKJ9HlEeiRuN8nueyak=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.558928+00 2025-12-17 08:50:00.558934+00 27276 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eyu7tJNt2rq2vKv_KTktcHE7NHY=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.560775+00 2025-12-17 08:50:00.56078+00 27277 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tjn_cBcmscijFdCcN6Us4mIZmts=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.562237+00 2025-12-17 08:50:00.562242+00 27278 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F0Ud9S96sEqOF5bSkOEPsG0Iqcc=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.563685+00 2025-12-17 08:50:00.563689+00 27279 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1QJm5KasX2okopXLOo6ZoC94oJY=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.565163+00 2025-12-17 08:50:00.565167+00 27280 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S3umnXKIUjKmuBCJCDc48JyrG-0=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:00.566617+00 2025-12-17 08:50:00.566621+00 27281 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=1766047799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l7PtCrIE6ox0ITwt3ChkXCwpn-c=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.027272+00 2025-12-17 08:50:01.027282+00 27282 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jsZhIK0pbpvd5SwrCJUshpBazQA=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.029772+00 2025-12-17 08:50:01.02978+00 27283 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cu87bGt6ranVpAsT-BtYvkxLdTI=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.032555+00 2025-12-17 08:50:01.03256+00 27284 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1zl0iOhfGYTF1kdxMQBq2EKcAI0=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.03489+00 2025-12-17 08:50:01.034896+00 27285 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kwo9eFYLPjA5Ey_if-il-tsfkc4=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.03747+00 2025-12-17 08:50:01.037477+00 27286 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1SkB99SJUkaYGFkCL70gV8hszHQ=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.03975+00 2025-12-17 08:50:01.039758+00 27287 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gzTO3rcwmnFWHzx1XVxSaUaPuxc=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.042069+00 2025-12-17 08:50:01.042075+00 27288 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oEezJjoHllqgq_glvJ0V19HUcCo=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.043856+00 2025-12-17 08:50:01.043862+00 27289 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:61gp19Ll7X8pE2TVmA724xLBEZU=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.045412+00 2025-12-17 08:50:01.045416+00 27290 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GnAKoc0TcDX2lpfeAfWngmkq9DU=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.047054+00 2025-12-17 08:50:01.047059+00 27291 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JY2HJMjY9NxhkJyJJILBPDsftuI=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.049687+00 2025-12-17 08:50:01.049693+00 27292 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_3EMQ98HlfRva0i0saQTw90DTaE=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.05197+00 2025-12-17 08:50:01.051977+00 27293 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vtof3PUV23Z7qwsxcKpVUHyd1bA=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.05409+00 2025-12-17 08:50:01.054097+00 27294 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D7iClX-wZZ_D6IpcFQoykscWHk8=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.056126+00 2025-12-17 08:50:01.056132+00 27295 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Ifp5jRdNBRTJk3wVhwTDyfHohQ=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.057934+00 2025-12-17 08:50:01.057938+00 27296 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:va_A2HUY-ywZpnK4Aqcko0FcLc4=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.059788+00 2025-12-17 08:50:01.059793+00 27297 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Ouf7AXNCC2VUOPYjNLeTnKgnmc=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.062026+00 2025-12-17 08:50:01.062034+00 27298 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uKqsA9ECjt3419so0DtF7aY2QiE=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.064519+00 2025-12-17 08:50:01.064526+00 27299 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:giph1JOyOWwCT_mGtkEtn6q9BQU=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.067362+00 2025-12-17 08:50:01.06737+00 27300 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:McBTXPmsv1UXnGE5y_Bt8rx7e8g=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.069778+00 2025-12-17 08:50:01.069787+00 27301 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0b2y9aUNS_EtrVfHtw9wQ64p45E=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.071865+00 2025-12-17 08:50:01.07187+00 27302 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Czj2z4Ywqy5XuKmwFwopYRj4L2Y=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.073902+00 2025-12-17 08:50:01.073908+00 27303 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dc0dkRHdwcP9j5V7HikE7VFNvYg=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.075829+00 2025-12-17 08:50:01.075835+00 27304 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PmuQEf52N7HMpav3U2oDBmSTXVM=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.078295+00 2025-12-17 08:50:01.078304+00 27305 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xGT6bRrDPvRxvk929rKelCDCs5o=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.080932+00 2025-12-17 08:50:01.080939+00 27306 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TE1-AW16i8HGSceSyvjB2dMreC4=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.083076+00 2025-12-17 08:50:01.083082+00 27307 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8plXpDoeFxk5xK-e3fVQlkjgaNo=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.084875+00 2025-12-17 08:50:01.08488+00 27308 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4QP2QR52fNSulcNbuvmk3EXB1m0=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.086584+00 2025-12-17 08:50:01.086588+00 27309 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8tyFM4amFsqX-0J4QaW5EO8GCnY=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.088008+00 2025-12-17 08:50:01.088012+00 27310 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Tt6Q7ouMRqyWQYtI01sLK8efg4=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.089446+00 2025-12-17 08:50:01.08945+00 27311 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QzQjrBGBrtxmGwRL9J4XIMwT0bA=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.091486+00 2025-12-17 08:50:01.091493+00 27312 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8VEJvAmRmymfAw60VePRq8Jbk6M=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.09355+00 2025-12-17 08:50:01.093577+00 27313 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rkRf-7_6_9cfjUKFhccfB7_Ve0o=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.095708+00 2025-12-17 08:50:01.095716+00 27314 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ptAwmgcl7izhRlJ5WwL4aU2if54=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.099263+00 2025-12-17 08:50:01.099273+00 27315 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MPmH-7IZO7E_gQ9R-auOrJ7p2gs=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.10224+00 2025-12-17 08:50:01.102248+00 27316 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7kpU34T129rju-Mg6c_Zj6M5fEY=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.104469+00 2025-12-17 08:50:01.104474+00 27317 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5_SJGmfBiogMY6mnuZXZyzb0zQs=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.106136+00 2025-12-17 08:50:01.106141+00 27318 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ACmadVvx3cR5d9R47HSr12ZVv8=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.107916+00 2025-12-17 08:50:01.10792+00 27319 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GG8RE4LO3tLgn4sne3SJVnztlZ8=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.10944+00 2025-12-17 08:50:01.109446+00 27320 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FL4Yvpmh60XBYYUgqAOiEY2xH-Y=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.111026+00 2025-12-17 08:50:01.11103+00 27321 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tFTf7fA9wvRXFZ30-5EL-E6kMjQ=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.112692+00 2025-12-17 08:50:01.112696+00 27322 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RjGkRTgBrr_KcBiBhlbJmibMjLU=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.114142+00 2025-12-17 08:50:01.114147+00 27323 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ylPZZ7I7Kbi7NHTHMbWTvaSuyl8=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.115918+00 2025-12-17 08:50:01.115923+00 27324 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zdJmeienSzp8nTEmp-SDG4UrhF8=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.117546+00 2025-12-17 08:50:01.117556+00 27325 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bdwGqih1kpW9DB4Q237hVMRimnE=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.12018+00 2025-12-17 08:50:01.120189+00 27326 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1qWdkiZbc0t8HwgB2XykHogGEDM=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.122687+00 2025-12-17 08:50:01.122692+00 27327 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rR9eCMtA_wwsHILHvkfIM0Qbhn4=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.124446+00 2025-12-17 08:50:01.124451+00 27328 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6pvSuYx7dgT7-um-Fm7G7EuxFMY=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.125965+00 2025-12-17 08:50:01.125969+00 27329 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LX_wWm7og3GuCAlNDO_JQPLji-0=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.12773+00 2025-12-17 08:50:01.127736+00 27330 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:08FlXIUTT_bhLRbQ_WDOW2lP4AQ=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.129385+00 2025-12-17 08:50:01.12939+00 27331 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BMXIV33zfi57czhlphPRE1ZVvVU=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.131251+00 2025-12-17 08:50:01.131255+00 27332 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R2IvI7vE81kpSBRzlj2l8kt6UJ8=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.13297+00 2025-12-17 08:50:01.132974+00 27333 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mKSyvAzbgqjhuCVTDmLS4-7SaDw=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.134428+00 2025-12-17 08:50:01.134434+00 27334 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pqbSTbc35SY9eo30PBkCkAlMqnY=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.135989+00 2025-12-17 08:50:01.135993+00 27335 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rOmTR62EIU2LRBQHX4xbr9B6V4g=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.137589+00 2025-12-17 08:50:01.137593+00 27336 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DYn7DrhRtg4rB8te0hm04OYyEC8=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.13908+00 2025-12-17 08:50:01.139084+00 27337 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yWuU9C9tLSq-CsHVAojigVCiyy0=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.140608+00 2025-12-17 08:50:01.140613+00 27338 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TSDfLLOTLG4JGRg7foObAmHb_LE=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.142076+00 2025-12-17 08:50:01.142081+00 27339 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cb4UO9YUhbioy61Z3HtMiDGkFGQ=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.144537+00 2025-12-17 08:50:01.144543+00 27340 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XyITAFXjscqrj4ySkOUbavhcRDs=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.146782+00 2025-12-17 08:50:01.146787+00 27341 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g6B-1hjKUx47Fm3Iz7yLMzMCVLU=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.148417+00 2025-12-17 08:50:01.148422+00 27342 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tJ21TzlkK8h-Uopu3ZQIgutdghs=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.150138+00 2025-12-17 08:50:01.150142+00 27343 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0IRG3mPtNpAQizsT07bxm6pvZ-I=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.151595+00 2025-12-17 08:50:01.151599+00 27344 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bbkGTgTCkyV4cAnxN81hxV9IiBk=", "createTime": "2024-08-15 14:45:25"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.153026+00 2025-12-17 08:50:01.153031+00 27345 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6D1BJVObd4JkAbnuxmcmaWMAa_E=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.154542+00 2025-12-17 08:50:01.154547+00 27346 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mhipi05xK31_iEMUtlgGIZx8J-o=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.156776+00 2025-12-17 08:50:01.156783+00 27347 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J4CL9nGU6CVNHLBO8Dxa3ERq6Lk=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.159336+00 2025-12-17 08:50:01.159342+00 27348 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uqGUCTp7RQUjXOHNewia0kYB4JI=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.161334+00 2025-12-17 08:50:01.161338+00 27349 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MzVozATnIbDDvu4Ibsrun-yMDPA=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.162832+00 2025-12-17 08:50:01.162837+00 27350 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sTwuzV3W30OF09DEISzdh-dxpfw=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.164681+00 2025-12-17 08:50:01.164687+00 27351 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kGl0MaLysu9UbiSmg05D4mpBNXM=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.166503+00 2025-12-17 08:50:01.166508+00 27352 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uYz1FBCiEazZ1dKJ0PsXEnvD-uY=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.168468+00 2025-12-17 08:50:01.168473+00 27353 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L6r37W44uMNvs-3dHUF7ZW0Q2GQ=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.170158+00 2025-12-17 08:50:01.170162+00 27354 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EUzIwmZOgrekxHKTugB0_djFFdw=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.171891+00 2025-12-17 08:50:01.171896+00 27355 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TjvYPwG-nIKeSW2MwLHsF4qL4Vo=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.174046+00 2025-12-17 08:50:01.174052+00 27356 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xRlb1hA30Zfw9sV2reozYEtFn18=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.176118+00 2025-12-17 08:50:01.176123+00 27357 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W3GQtxcreWkZjn8TWTGl3EvgUd0=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.178241+00 2025-12-17 08:50:01.178246+00 27358 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9c6yLYxVHs-XsbG69qbv0u-Wlo8=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.179666+00 2025-12-17 08:50:01.17967+00 27359 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B3iWM9yFJZuOO6y9jtwUmUDYMSs=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.181097+00 2025-12-17 08:50:01.181101+00 27360 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FBGfsm7aO87Vow2uKv2mbX8D2g0=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.182533+00 2025-12-17 08:50:01.182537+00 27361 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u-oTlp1FidsSGiZppMYmRsc_xKs=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.18399+00 2025-12-17 08:50:01.183994+00 27362 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_KUbGCwfTAyZ5P9ycOFItw93hh8=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.185407+00 2025-12-17 08:50:01.185411+00 27363 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pv6SuI2ZydDVPy4H-lOVubqORhk=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.187096+00 2025-12-17 08:50:01.187101+00 27364 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fm8mnlJk2QtR0H6wzoZnc-szInw=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.188504+00 2025-12-17 08:50:01.188508+00 27365 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3vyy_ge6K93oenmNs0yBcrTtuw0=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.189929+00 2025-12-17 08:50:01.189934+00 27366 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gkgg5EW7pYGZL5FFnNJcUHnK9WM=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.191347+00 2025-12-17 08:50:01.191351+00 27367 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eNrbKTWb1WYkOKHfaW1qipsmyQM=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.192778+00 2025-12-17 08:50:01.192782+00 27368 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tuAAziJVzFEMnIjwZ6F9BCDV8Gc=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.1944+00 2025-12-17 08:50:01.194406+00 27369 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d19MY7ffnFJbdz-FEq1KPIVGaaY=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.196055+00 2025-12-17 08:50:01.19606+00 27370 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iYVLZJ8sxpp0zD--LXQkdHSaJ1c=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.19759+00 2025-12-17 08:50:01.197595+00 27371 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dGpzY3K1t-XD3KlrD1y7cJwjgKs=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.199341+00 2025-12-17 08:50:01.199345+00 27372 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0IxTHRJKv98j-L4RgJVXe5Y8oBQ=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.200873+00 2025-12-17 08:50:01.200881+00 27373 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zQFBDVEnR-R8NWhDOLM0G8sTlWg=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.202379+00 2025-12-17 08:50:01.202384+00 27374 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EgMXROQ7N0RHkJMMsRYaP6ql2GY=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.204024+00 2025-12-17 08:50:01.204028+00 27375 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1WdkOSIDwj1L9WU8eIctSmqH-74=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.205515+00 2025-12-17 08:50:01.20552+00 27376 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gG6IuXmL1r4Iup48aUqP8zg_SGM=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.207147+00 2025-12-17 08:50:01.207152+00 27377 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SmQLa9h-yA1yzKlHreLA2nPZXb0=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.208651+00 2025-12-17 08:50:01.208656+00 27378 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:duSDyuFWP7JoTawnOtTZy0ngtsI=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.210105+00 2025-12-17 08:50:01.21011+00 27379 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N0BSxeAVB--u6N79xJT1HpmLSc8=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.212089+00 2025-12-17 08:50:01.212095+00 27380 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WG-tcuZwdqHAunQKaZWLhQhZY5U=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 08:50:01.213738+00 2025-12-17 08:50:01.213743+00 27381 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=1766047800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WOQuNIpyTU2HQPe9tB0qGlDkQUA=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.389511+00 2025-12-17 09:00:00.389522+00 27382 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aqllW7VwUGly2ssEPNNi86qnyvY=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.392393+00 2025-12-17 09:00:00.392398+00 27383 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MH_GvJyFXOXu2VxCbdrHmCmgqe4=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.394037+00 2025-12-17 09:00:00.394041+00 27384 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GIpN51RqoTu6NE9TFRjgYGDXDPk=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.395526+00 2025-12-17 09:00:00.395531+00 27385 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tgrzNVQFwHOinaNeB3tSttrQCQE=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.397004+00 2025-12-17 09:00:00.397008+00 27386 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hIkKq-zH2XPY_oaUIzSciIsdeqk=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.398437+00 2025-12-17 09:00:00.398441+00 27387 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:95Qq2jI9impXNJAS4AnD1EL8-Hs=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.399915+00 2025-12-17 09:00:00.39992+00 27388 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w6BVd_tisPHODM88OBU49iBPIPE=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.40135+00 2025-12-17 09:00:00.401355+00 27389 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sjdwg3p8bvGWYzOmmKlH5uhaV94=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.402754+00 2025-12-17 09:00:00.402759+00 27390 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dUksDbDeUEvmQBKBS_yxZFiKiAg=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.404198+00 2025-12-17 09:00:00.404202+00 27391 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kUlWbzwrXV29CeLasJViQH-vJ5g=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.405647+00 2025-12-17 09:00:00.405651+00 27392 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mi-bw9qka7UzaM7MXWndlzc0xvg=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.407423+00 2025-12-17 09:00:00.407429+00 27393 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zhBHczb3u9rJO1CUQzn5moZYd9c=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.408987+00 2025-12-17 09:00:00.408991+00 27394 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kyXqDw4ADKMYKf0kjgY5F4WQSwA=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.410498+00 2025-12-17 09:00:00.410503+00 27395 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0E2J3l_60HKcEyv6QcbADl4lh4I=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.412036+00 2025-12-17 09:00:00.412041+00 27396 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wJT5sy-Ddjg3FVoc9nyP9rqVukI=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.413486+00 2025-12-17 09:00:00.413491+00 27397 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ZmYdiU5NNSEfTgVCPUb_j6pbpU=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.41491+00 2025-12-17 09:00:00.414915+00 27398 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F1FiQUJPHgxmSHvh9Q2VxaXz-VU=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.416608+00 2025-12-17 09:00:00.416612+00 27399 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DzqGSoUl-QDsJo4JNqQmy9OmsPQ=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.418089+00 2025-12-17 09:00:00.418093+00 27400 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1jk8WMyn3IK1Ijz7M4wOc8lOu80=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.419509+00 2025-12-17 09:00:00.419513+00 27401 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZpbSgKlBoaxfHVZl9CgPOGwrXi8=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.42094+00 2025-12-17 09:00:00.420944+00 27402 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8xQco7DgoSUX3nyqLmFLGk5wwHc=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.422348+00 2025-12-17 09:00:00.422353+00 27403 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ZO7DMTTgbI8L_A_uayK61RFUxc=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.424119+00 2025-12-17 09:00:00.424127+00 27404 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yoic5y8tzcybFjpj5H5MnNbU22Q=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.426085+00 2025-12-17 09:00:00.426089+00 27405 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NOm_D0MgQ5tj7hktgy2oFKCx7Vg=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.428027+00 2025-12-17 09:00:00.428033+00 27406 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CNLPzpK5i75Jw6RvCBTwlCoe6uU=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.429903+00 2025-12-17 09:00:00.429908+00 27407 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tegZVtgW87HgJZfGZ_JbVdG3FV0=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.431351+00 2025-12-17 09:00:00.431356+00 27408 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9XLnACOkFGgcRQzIw9WWU9zSZ3Q=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.432823+00 2025-12-17 09:00:00.432829+00 27409 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kJcbnvTlQYphIGX7in5xbEHor0A=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.434384+00 2025-12-17 09:00:00.434388+00 27410 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dk2-g57DQplV31AaEzC4fCAQWfc=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.43589+00 2025-12-17 09:00:00.435895+00 27411 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8KX-z47GMplqtPErnbCNheYuHbA=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.437344+00 2025-12-17 09:00:00.437348+00 27412 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rdsIcVUI8hRhfNIRoEsEgofc3sw=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.438807+00 2025-12-17 09:00:00.438811+00 27413 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bp7vhqwhzGUCmfFRnVd2LijmFEo=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.440355+00 2025-12-17 09:00:00.44036+00 27414 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2DkEDbxs8F2Smsm31p9p5GElurc=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.441867+00 2025-12-17 09:00:00.441871+00 27415 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mwivk5yfyyHyDzA-W-s0JCUlfr0=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.443393+00 2025-12-17 09:00:00.443397+00 27416 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lsL1kI1XkaK67rdbQEl6j8Ae_O8=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.445032+00 2025-12-17 09:00:00.445037+00 27417 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hyi2ce0nyM_qqBTaPddBm7C4ZI8=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.446598+00 2025-12-17 09:00:00.446604+00 27418 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L1IolNo-R1cWRMXUHVcaN8MCrIg=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.448062+00 2025-12-17 09:00:00.448067+00 27419 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UvM8-ScpX5ByHQQ4ukMP7SPD24Y=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.4495+00 2025-12-17 09:00:00.449505+00 27420 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OQ8vlbcLG1p2fINsl-BaHDUJkwE=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.450941+00 2025-12-17 09:00:00.450946+00 27421 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ORf_on1RQEEBZLqFoqm0AU95dP0=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.45236+00 2025-12-17 09:00:00.452365+00 27422 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7UbpTW-05le8C6L9PLVobC8vSpw=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.453798+00 2025-12-17 09:00:00.453802+00 27423 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gs4Z5gYLF9A2QepycOhr9UkdQzk=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.455227+00 2025-12-17 09:00:00.455232+00 27424 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3nEU9Q4GfvXmP3MWsmHPyhqREM8=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.456871+00 2025-12-17 09:00:00.456876+00 27425 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jsqGIB_h9rhgJa7ljq00XLwudxo=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.458417+00 2025-12-17 09:00:00.458422+00 27426 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0vMiYfvaXofl_N1o5Nw7XcY4uQs=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.4599+00 2025-12-17 09:00:00.459905+00 27427 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fl1aEb2Tl_CXEj4rkWcGrYk4ato=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.461347+00 2025-12-17 09:00:00.461351+00 27428 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DKEvb0t_WioAg_jv0B17cbOf7QU=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.462874+00 2025-12-17 09:00:00.462879+00 27429 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AXGfphglNUG7FUiThcO0BWe8RdE=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.464488+00 2025-12-17 09:00:00.464494+00 27430 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nma3jnR8V-oa6XTkzxbO_tl7AkM=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.467128+00 2025-12-17 09:00:00.467136+00 27431 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:crjyPfZNytjtyIACIMI8sqsXzl4=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.469147+00 2025-12-17 09:00:00.469152+00 27432 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SLnLZhEtGANmgVdCHOWzP9xZyJw=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.470627+00 2025-12-17 09:00:00.470631+00 27433 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_znlA2uyccAq3eBPX1BwfNNDSZE=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.47208+00 2025-12-17 09:00:00.472085+00 27434 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qQKUfEAXyqWjCl2WW_LY6e_7cck=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.473849+00 2025-12-17 09:00:00.473854+00 27435 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y64BTHOxyNV4uJNLhWBWh7xJuY8=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.475298+00 2025-12-17 09:00:00.475302+00 27436 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dd7EqdzcNpJxiq1IdHVoUcg9duE=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.47674+00 2025-12-17 09:00:00.476745+00 27437 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c382Mm5eRa5YfnJJ9J28TLSdkGc=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.478185+00 2025-12-17 09:00:00.47819+00 27438 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xwEvNNQbl_alosIzOm4MDTcqgLs=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.479634+00 2025-12-17 09:00:00.479638+00 27439 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5pPD8tQV0KBgBHP_8rw6Hiti5wc=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.481091+00 2025-12-17 09:00:00.481096+00 27440 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5D5DmhiVinXRhNyprUmQqHvjbAM=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.482549+00 2025-12-17 09:00:00.482553+00 27441 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mgxe3qdzAyQkkw7HYiWhzC5lH7A=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.483997+00 2025-12-17 09:00:00.484002+00 27442 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j5x2F7FyH3yoBVOd0SRNxzDvlqA=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.485425+00 2025-12-17 09:00:00.48543+00 27443 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A67TCEPveczy0MFOcOhI8JUV0cg=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.486876+00 2025-12-17 09:00:00.48688+00 27444 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qGFJsMQIgUljftoVWm7Rk3EFnug=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.4883+00 2025-12-17 09:00:00.488305+00 27445 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lxPgYPeovDXxahmJunhui_JpyMk=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.4901+00 2025-12-17 09:00:00.49011+00 27446 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_7jgcPGsMpJ9gjuOiuFPlVQ9U0Y=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.491714+00 2025-12-17 09:00:00.491719+00 27447 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tw7iXQccNO1waSd9Z6XipkeMwQI=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.493255+00 2025-12-17 09:00:00.49326+00 27448 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dycICyv-P0gpO7bAuicaqMKul34=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.494727+00 2025-12-17 09:00:00.494731+00 27449 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7QID1cgbXilIPfRTs4LYqQvE8qM=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.496165+00 2025-12-17 09:00:00.496169+00 27450 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oicfw-eeNUVrt29uir3PKiDEEt0=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.503322+00 2025-12-17 09:00:00.503327+00 27455 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BuDZ6LLFWXhTz2eFCiNZzaiyAYM=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.497597+00 2025-12-17 09:00:00.497602+00 27451 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M5SjC6TBApTWR9PHbkzausSl0FU=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.49903+00 2025-12-17 09:00:00.499034+00 27452 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SJQ7l1lMdEBN2wJ_Ks_V-8rTPPs=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.500463+00 2025-12-17 09:00:00.500467+00 27453 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DPjm7nshp8aqXJqzy1JSeiIqXCo=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.501894+00 2025-12-17 09:00:00.501899+00 27454 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E8K7w5doBVlMck0oH7KvXR38ScQ=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.504801+00 2025-12-17 09:00:00.504805+00 27456 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j9OxHVgtebhbooyuW_xkZNk9Qt8=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.506248+00 2025-12-17 09:00:00.506253+00 27457 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NpmJDxUcylporb7ppROrq-jL-H8=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.507832+00 2025-12-17 09:00:00.507837+00 27458 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8bsoa-XTxEV9wvZ-gytIyIPeFP0=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.509687+00 2025-12-17 09:00:00.509692+00 27459 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xnP_Fl-g9Pndgl4bJFkL3lPqRP4=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.511192+00 2025-12-17 09:00:00.511197+00 27460 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J4GT_WJU7nI7KrHChQmIw5nkiv4=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.512654+00 2025-12-17 09:00:00.512658+00 27461 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RREBUqjW8ONqZT5PH5r1x4_8Ev4=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.514085+00 2025-12-17 09:00:00.51409+00 27462 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jT03lWhaNRot9BZRRYUXiV-x4cY=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.515531+00 2025-12-17 09:00:00.515535+00 27463 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PvstZDVnljjvkv_BsxUgzZb-7vU=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.517024+00 2025-12-17 09:00:00.517029+00 27464 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Idi9YvS_Oh0gmfNhTGpiyfYdWYU=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.518515+00 2025-12-17 09:00:00.51852+00 27465 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H_xTdJfNdC67lnwhx5wu-p2zy8I=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.51999+00 2025-12-17 09:00:00.519995+00 27466 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JS3tVgpyuUFhSQ_CLoYv9ynKmDM=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.521439+00 2025-12-17 09:00:00.521443+00 27467 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3EU-WihDO5BdDHwTA4qegWWn2N0=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.522972+00 2025-12-17 09:00:00.522977+00 27468 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PP3WeiTFE5toU6NVF1MBuMVXqj8=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.525159+00 2025-12-17 09:00:00.525163+00 27469 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ZSQA2ob1cY5OBb5Bgf5vlJ4uqk=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.527217+00 2025-12-17 09:00:00.527224+00 27470 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PqeybXb__EG4SWprlaoS3PqJZSE=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.528862+00 2025-12-17 09:00:00.528867+00 27471 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m4zfTtlX07uBU7Hvnrlbrro61r8=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.530438+00 2025-12-17 09:00:00.530442+00 27472 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2hHkoKIqf-mi-9C48yX_VwnH3Jk=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.531951+00 2025-12-17 09:00:00.531956+00 27473 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w16C_uvzqsVi2vq_w84ccC2fcGk=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.533602+00 2025-12-17 09:00:00.533607+00 27474 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:knceTFZN2gTqBR6lsFvcFYWqRw4=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.535101+00 2025-12-17 09:00:00.535106+00 27475 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vdGPK5lNgwjM07y64D0SEIPcUPo=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.536605+00 2025-12-17 09:00:00.53661+00 27476 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:32HBbu4XDVSxWx0xPNcTL1IzGAY=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.53921+00 2025-12-17 09:00:00.539218+00 27477 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KQ_0i9X9JwxZ8fYGbQTwvbIlkkc=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.541332+00 2025-12-17 09:00:00.541337+00 27478 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fhXvl2q2r32UVXkW2i0GZROeCR4=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.542968+00 2025-12-17 09:00:00.542973+00 27479 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7alN2HzVLnMvEWLcoljhGT33EU=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.544511+00 2025-12-17 09:00:00.544515+00 27480 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q6G87J50LdTlJ7cag6mI3Lw4NN4=", "createTime": "2024-08-15 14:45:36"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.546107+00 2025-12-17 09:00:00.546112+00 27481 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=1766048399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HE-OBnpBWAAD0-WhV534Uu8Xmpc=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.927663+00 2025-12-17 09:00:00.927675+00 27482 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6l0pDnFNMd9IMvKS0Ic_2eqx0U0=", "createTime": "2024-08-15 14:45:36"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.930063+00 2025-12-17 09:00:00.930069+00 27483 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VNF2hvjzrVeh32UFP9-0Q6Y1Lis=", "createTime": "2024-08-15 14:45:36"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.932039+00 2025-12-17 09:00:00.932043+00 27484 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CLgCgoA64XQF2PupXkThJvk8Em0=", "createTime": "2024-08-15 14:45:36"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.933525+00 2025-12-17 09:00:00.933529+00 27485 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LKmhFqInJ3AlZiBmOwAPZNutb2Y=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.934973+00 2025-12-17 09:00:00.934977+00 27486 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g74-xUpkZxTjGuNyBWI5nPzziLU=", "createTime": "2024-08-15 14:45:36"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.936394+00 2025-12-17 09:00:00.936398+00 27487 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ejOEvGa8yhB3l6GsGvqNWve-47w=", "createTime": "2024-08-15 14:45:36"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.937871+00 2025-12-17 09:00:00.937876+00 27488 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E-CUoleblUwLhLaC2Iv8TZ0xfeY=", "createTime": "2024-08-15 14:45:36"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.939299+00 2025-12-17 09:00:00.939303+00 27489 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x-GF6VMdrbQxW5fl3urwdMz-QqY=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.940749+00 2025-12-17 09:00:00.940753+00 27490 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jgxACxfABNMw7QMfm_hHnNdaHtA=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.942501+00 2025-12-17 09:00:00.942505+00 27491 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7fGdtmp9zUGOFDRowHsZzpmFv-U=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.943981+00 2025-12-17 09:00:00.943986+00 27492 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dTfM5oJ7p_gXc7oo0Uv0nY7quPk=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.946672+00 2025-12-17 09:00:00.94668+00 27493 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uB4Tu6BwRkiiGKe3Ere9xURdDgw=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.949182+00 2025-12-17 09:00:00.949189+00 27494 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lHXUOh5dj6TnnqNpw0dzlUqm50k=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.951634+00 2025-12-17 09:00:00.951641+00 27495 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cd1fd7L6eKGXXW6wzB6b40-wO2w=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.954121+00 2025-12-17 09:00:00.954128+00 27496 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z5D3RKaWI6taK5Ewr6hiJlywrgg=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.956967+00 2025-12-17 09:00:00.956975+00 27497 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SMi1IoJ_wCcFMu7cJlh6P6e01Ic=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.959424+00 2025-12-17 09:00:00.95943+00 27498 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:keBwlAWpEgRSybRq-kq5-QL38cs=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.961268+00 2025-12-17 09:00:00.961273+00 27499 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RRRJSDahJxFYp4Mw9KVDGYTOTcg=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.963039+00 2025-12-17 09:00:00.963043+00 27500 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P3GqZdwCtWg9feRAGHJWwgJmGYs=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.964775+00 2025-12-17 09:00:00.964779+00 27501 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-iWRbpb0ab_G75WK0YKf64u42hM=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.966518+00 2025-12-17 09:00:00.966523+00 27502 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-7c0Z_1oPdWeVrW9QAQww1yCaVw=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.968272+00 2025-12-17 09:00:00.968277+00 27503 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bv7F60GadGY0SSyXaIrrzlA-aKU=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.969994+00 2025-12-17 09:00:00.969999+00 27504 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fRawhUDdXVKC8BgcW5H15C9PVFA=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.972065+00 2025-12-17 09:00:00.972071+00 27505 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lya0tcZChNDK8FyK560x1VMQ6RY=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.973866+00 2025-12-17 09:00:00.973871+00 27506 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:17nyv3h-HZUvLKVq8T3sVTKFcPw=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.975396+00 2025-12-17 09:00:00.975401+00 27507 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iO4OJ31O8aqn-BBoPQwirGtaxOE=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.976852+00 2025-12-17 09:00:00.976857+00 27508 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:95zsRFfuYkcua39k0dfUEf5mpn0=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.980102+00 2025-12-17 09:00:00.980107+00 27509 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AidjYw1lRVQIAe5C0blrwrKe1DE=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.981787+00 2025-12-17 09:00:00.981791+00 27510 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vFe8cI_uA24nTieTzjgpJbBBC6Y=", "createTime": "2024-08-15 14:45:39"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.983225+00 2025-12-17 09:00:00.98323+00 27511 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YMNs9oY_QLKHHZMdrkQydP0RciA=", "createTime": "2024-08-15 14:45:40"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.984658+00 2025-12-17 09:00:00.984662+00 27512 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oeHYzAnWnkWEvEUbiUrkx6HHS5g=", "createTime": "2024-08-15 14:45:40"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.986183+00 2025-12-17 09:00:00.986189+00 27513 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zxSTxgpSnfd-nDwMDOnqH_yGDK0=", "createTime": "2024-08-15 14:45:40"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.988162+00 2025-12-17 09:00:00.988168+00 27514 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IQSMAwbOsEN3GSgcY7rWb3qwonY=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.989955+00 2025-12-17 09:00:00.98996+00 27515 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ZhixgUbTAPyxFvrAw8M3yxe1ks=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.991556+00 2025-12-17 09:00:00.991561+00 27516 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oJ44sEK4hhQ3bYgtJUHb3sx6mTQ=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.99304+00 2025-12-17 09:00:00.993044+00 27517 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UJy_0OLUovHvVk_WpfYWifYqcYY=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.994488+00 2025-12-17 09:00:00.994492+00 27518 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RhoiJYaPNh408jDx5U_mY0XnreY=", "createTime": "2024-08-15 14:45:40"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.995917+00 2025-12-17 09:00:00.995921+00 27519 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pOBmvrLwuNdKtZIK4QPsIRPn7AM=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.997348+00 2025-12-17 09:00:00.997353+00 27520 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9hDZ2TL-m6HFh5ShaJcnBv6UupE=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:00.998785+00 2025-12-17 09:00:00.998789+00 27521 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XuRuKMHNgaezJTWMWYh_dHe39OA=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.00023+00 2025-12-17 09:00:01.000234+00 27522 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-C3ieZ5Cy6J_nI4U9QDzuRDbQwI=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.001938+00 2025-12-17 09:00:01.001943+00 27523 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m1oKQHbmD9qCnmiaww33-G1S9jY=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.003546+00 2025-12-17 09:00:01.003551+00 27524 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tErEy3DocozcDfITnytGI5A3CXI=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.005426+00 2025-12-17 09:00:01.005432+00 27525 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8aCVsVNvEUFT-DW9LTZOXW74GKA=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.007357+00 2025-12-17 09:00:01.007362+00 27526 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cjkvwkC7SGXKHkUNW_s_8HiSpY8=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.009118+00 2025-12-17 09:00:01.009122+00 27527 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CEjSG0Q05RH1FhzVVUa_SAUcjQM=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.01061+00 2025-12-17 09:00:01.010616+00 27528 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ul35c4iYVnQn5IHZ71TSD8Ekyms=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.012125+00 2025-12-17 09:00:01.01213+00 27529 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N_ilxo0rzLntYvvwYFchZQc7Cuw=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.013577+00 2025-12-17 09:00:01.013582+00 27530 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yHXQl1gPoqOAB0UfpcWEMpgHi4k=", "createTime": "2024-08-15 14:45:40"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.01505+00 2025-12-17 09:00:01.015055+00 27531 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ArQqj8j7-3BKwT_uYep_F6BVRsc=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.016472+00 2025-12-17 09:00:01.016477+00 27532 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K9q26seB_NUspqmJFw95yf0ylEQ=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.017968+00 2025-12-17 09:00:01.017972+00 27533 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pyZzdUNfIn_lh8U5cQjHAsU_bMA=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.019446+00 2025-12-17 09:00:01.019451+00 27534 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6a0ynzo7Uc6KLO5nrxX-yYMaNbA=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.021053+00 2025-12-17 09:00:01.02106+00 27535 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8wx-007MascQjhhZjW3I4Rr8NKc=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.02267+00 2025-12-17 09:00:01.022674+00 27536 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RYDB14w0wnrqdX6uJsga7fBNB5c=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.0242+00 2025-12-17 09:00:01.024205+00 27537 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQM8E3K4v4sZ3x-Q__rSHYJVOUI=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.025741+00 2025-12-17 09:00:01.025746+00 27538 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sEYjBBh0JiksBkhX4Lsu76Ev3WI=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.027208+00 2025-12-17 09:00:01.027212+00 27539 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vvwTP04pryXdsRJiOrYDV3wsv8Y=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.028635+00 2025-12-17 09:00:01.028639+00 27540 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:01kIaee8Xmkq2e9iSjCJlKq8XAE=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.030091+00 2025-12-17 09:00:01.030095+00 27541 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5i0DEOqRBAPVM-3zinQuT0Kkk6c=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.031539+00 2025-12-17 09:00:01.031544+00 27542 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ssJnF15dDsAYZ6wNPAzpGEoGw3M=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.032995+00 2025-12-17 09:00:01.032999+00 27543 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h8FOb9dmpFFZT-qO7sgCk1IEKjQ=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.034424+00 2025-12-17 09:00:01.034428+00 27544 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:feqylXQqhQ_6B03oKRCKWcG_wZI=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.035936+00 2025-12-17 09:00:01.035941+00 27545 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eNZJsQxt2Dxn4krmDgX9_PQeAcg=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.037668+00 2025-12-17 09:00:01.037674+00 27546 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rqW_wVkkibiOqgw_PuLL72AnDQc=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.039479+00 2025-12-17 09:00:01.039484+00 27547 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rZ0f1MaI_kU4ew_RjC6rve4Hk50=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.040981+00 2025-12-17 09:00:01.040986+00 27548 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s0_ubSfYhDst0b4iqd_o7_PNAGc=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.042578+00 2025-12-17 09:00:01.042583+00 27549 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DQUfAZUJfuorpEN4lMYGX-L9Z4Y=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.044269+00 2025-12-17 09:00:01.044273+00 27550 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bvr0mE67Btv4D6QkLV6-eyWChyI=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.045687+00 2025-12-17 09:00:01.045692+00 27551 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z-DeVwNwrbnKEOcb3qpHWpbfTtg=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.047221+00 2025-12-17 09:00:01.047226+00 27552 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3uCIXa51aazWnxvKOiA0N5QZ6Vs=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.048699+00 2025-12-17 09:00:01.048704+00 27553 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IBhDZwQ9nsqv0WSWxS3kgyhargI=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.05015+00 2025-12-17 09:00:01.050154+00 27554 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N81a82IgNzzpVjHutNj9mVz9gXM=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.051602+00 2025-12-17 09:00:01.051607+00 27555 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yHNLupxRqlO17P4CdlMy6EhjhNc=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.053325+00 2025-12-17 09:00:01.05333+00 27556 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3LhkCQj7lZfwy0Zd6Fa7SGG3rnU=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.055238+00 2025-12-17 09:00:01.055244+00 27557 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jqFjOcVNaqcDN1g6W7PU4Noof9s=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.05687+00 2025-12-17 09:00:01.056875+00 27558 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:47UlXmSFiKphvae83NHCslf5D3A=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.058355+00 2025-12-17 09:00:01.05836+00 27559 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BcDem-fUggPoZZ1XXNi7Rnb7GBA=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.061007+00 2025-12-17 09:00:01.061017+00 27560 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D9zKwNW6n4c0_TOulHTH3gkpCeE=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.0635+00 2025-12-17 09:00:01.063507+00 27561 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:firvbbcz8tdMFZT-qzOfiMeJQig=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.065548+00 2025-12-17 09:00:01.065552+00 27562 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-aN4UjaBqwQw6ybybzVHUzHLsKI=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.067058+00 2025-12-17 09:00:01.067062+00 27563 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g4C3VcM2veVTbyDaHxeFh6rYZCE=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.068808+00 2025-12-17 09:00:01.068814+00 27564 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NaJ71Z4aXtkWnfNbd9gY7RWMQjM=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.07095+00 2025-12-17 09:00:01.070956+00 27565 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GM8mKpp3e1ntX_y3CqtRtNu_6aw=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.072775+00 2025-12-17 09:00:01.072779+00 27566 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0LOvTgL18wAe5vaVrn2ByEFbX80=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.074509+00 2025-12-17 09:00:01.074514+00 27567 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AY5kGP8Mp8udMhnSewTQwVDbwjU=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.076205+00 2025-12-17 09:00:01.076209+00 27568 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0f63biKiFwfDV1RKfzC7lc8AyXE=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.077734+00 2025-12-17 09:00:01.077739+00 27569 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2dmtIAH6w8MqtK_z7JauUCs1t5A=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.079199+00 2025-12-17 09:00:01.079203+00 27570 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kx5ZmSPJCcRw0uJRqIgFJE5qnLM=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.080651+00 2025-12-17 09:00:01.080656+00 27571 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M4sjgjJAHwkCupmBygm1l4e6yhM=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.082106+00 2025-12-17 09:00:01.08211+00 27572 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ve4w0_gKBbQ_mzMzMP747l5IYT4=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.083545+00 2025-12-17 09:00:01.083549+00 27573 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bzB__HMoObqDxKjtZI70AH1XL7o=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.085012+00 2025-12-17 09:00:01.085016+00 27574 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j_fMBFjGuiLSQJuitnRgX9uhg18=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.086446+00 2025-12-17 09:00:01.086451+00 27575 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vmttWreH1jYp6xF-IsWeRI-K2Wc=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.088026+00 2025-12-17 09:00:01.088031+00 27576 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sEQf0WB6gwGHMCCF-aZTDQEbynM=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.089775+00 2025-12-17 09:00:01.089779+00 27577 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:luiecq8XLcoeLMmFcJINfruQevs=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.091256+00 2025-12-17 09:00:01.091261+00 27578 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7bbf2lunhHLB3ddi6Ls8Xe87O-k=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.092718+00 2025-12-17 09:00:01.092723+00 27579 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4JeWKKiLFpThw3cRafCgmmhZpJA=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:00:01.094167+00 2025-12-17 09:00:01.094171+00 27580 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=1766048400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O3nmecTvcTJpAkY9mazdgBS2F7U=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.414048+00 2025-12-17 09:10:00.414058+00 27581 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0VYyrmdZmdnRlMhIoXswZMnC-ME=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.417671+00 2025-12-17 09:10:00.417677+00 27582 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XVsbPwhi_xK7Vw8Xj-m1YCN4VXU=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.420089+00 2025-12-17 09:10:00.420095+00 27583 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xi1tSos8uS_x8-DmfQ1kxTRdxN4=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.42199+00 2025-12-17 09:10:00.421995+00 27584 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TmwI1mMl436Sk4ctI345KTYGy0E=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.436229+00 2025-12-17 09:10:00.436234+00 27593 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4GjUEkCf02KbklCHcz8xh5VK1cs=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.423838+00 2025-12-17 09:10:00.423843+00 27585 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:18dOZZiHtb4pLnP7R4SIOxh7Clo=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.425583+00 2025-12-17 09:10:00.425587+00 27586 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AEEB0cRToLzELp2vaMyjVQtYSAY=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.427096+00 2025-12-17 09:10:00.427101+00 27587 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5e3iPW7ELQSE14J5WkiVxBbG2S8=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.428582+00 2025-12-17 09:10:00.428587+00 27588 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bTfvm0ybGbeFHAfUqkAS3Qr2U-s=", "createTime": "2024-08-15 14:45:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.430092+00 2025-12-17 09:10:00.430097+00 27589 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3wbXK2EOTh4fFrslrNeE9uyoBUg=", "createTime": "2024-08-15 14:45:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.43165+00 2025-12-17 09:10:00.431655+00 27590 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nR-24GUaEaaKeCEysV5u_VgDa-o=", "createTime": "2024-08-15 14:45:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.433146+00 2025-12-17 09:10:00.43315+00 27591 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mVMVfIW7C_UtgqIYqqHmk3A0Euo=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.43462+00 2025-12-17 09:10:00.434624+00 27592 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yTEfWotK13hGkuTOp-XaovwZ8EM=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.437743+00 2025-12-17 09:10:00.437748+00 27594 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xYXA3nLI-3OGebZkbmXQSvSgXH4=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.439316+00 2025-12-17 09:10:00.439322+00 27595 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EJ5itwpKb0k33j3E3ETtmZNlAHs=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.440837+00 2025-12-17 09:10:00.440843+00 27596 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZPkYqyg8M0ZvLfqd4EkqtTbFN4E=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.442319+00 2025-12-17 09:10:00.442324+00 27597 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FOvM0S1FXQJKRKi0v5ofyLMO2Bs=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.443799+00 2025-12-17 09:10:00.443804+00 27598 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dfRRs02TuoqZvsfi8LXgcowe--o=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.445311+00 2025-12-17 09:10:00.445316+00 27599 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7vq287vGgZjPtwPiSfM0hZhWqiA=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.446815+00 2025-12-17 09:10:00.44682+00 27600 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JEM0qSTJLUgtp5_7vzoeUBzf_Bo=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.448296+00 2025-12-17 09:10:00.448301+00 27601 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fh5Gr7NH0NxyNN3mwvTt4Tp42F0=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.449756+00 2025-12-17 09:10:00.449761+00 27602 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CrZ-jX00y4NFAliw5z7R_saazYI=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.451309+00 2025-12-17 09:10:00.451314+00 27603 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4MgF-tHTUnex1xNA_RL0KKNSOpc=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.452972+00 2025-12-17 09:10:00.452977+00 27604 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XRPPWb3CcNeYSS9-6L0VMgATt_Y=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.454548+00 2025-12-17 09:10:00.454553+00 27605 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XBInLeslPsvidncwNU-HZ43x6Iw=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.456051+00 2025-12-17 09:10:00.456055+00 27606 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hCrktRj2nmaUi4SBQYIZT8mcDqg=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.457542+00 2025-12-17 09:10:00.457547+00 27607 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hevf8B8dMniRLyQ4RVsq167_IwQ=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.458998+00 2025-12-17 09:10:00.459002+00 27608 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KVhYRXBis07NThpi6gNUo5TmJHo=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.460978+00 2025-12-17 09:10:00.460983+00 27609 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wRpJdq_KDNqa0semZh3OVGsivog=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.462661+00 2025-12-17 09:10:00.462666+00 27610 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KKbTP7-lFhWUbaFYj0czjOIy4W4=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.46417+00 2025-12-17 09:10:00.464174+00 27611 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2DkHM3cwXjgeL-ZSy86Q8Odegxg=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.465889+00 2025-12-17 09:10:00.465894+00 27612 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xHHIqJRmSuWH1PTiQbRffK7Tv2w=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.467356+00 2025-12-17 09:10:00.467361+00 27613 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zp3bz_kAdpyLrpw15eMOLZqxRr0=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.469015+00 2025-12-17 09:10:00.469019+00 27614 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fM6kutVR8jAmlkxYj8M8EROVoaA=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.470727+00 2025-12-17 09:10:00.470732+00 27615 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EgCrKp7OkDpf5uJZRVzfgvWobYA=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.472254+00 2025-12-17 09:10:00.472259+00 27616 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eSLpgE3EX-26uesqbKI-owNxbxM=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.473952+00 2025-12-17 09:10:00.473957+00 27617 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1FiMgPofwAP8Y039s2vTphYhpY0=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.475422+00 2025-12-17 09:10:00.475427+00 27618 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KUMSE30fKvAtLLKeDm4fRUla66A=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.476883+00 2025-12-17 09:10:00.476888+00 27619 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fBHD4uKGySg1Wu0Wb_zkLG5Ga9M=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.478348+00 2025-12-17 09:10:00.478353+00 27620 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:94hWE6U46w3DbVKXQdtJazSfb7c=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.479802+00 2025-12-17 09:10:00.479806+00 27621 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mX5ZHfWsqdpb1rYKwmWwYgqE-WY=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.481258+00 2025-12-17 09:10:00.481262+00 27622 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mhNwWJazMVgB7m1q_vnntBgwG_s=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.482783+00 2025-12-17 09:10:00.482788+00 27623 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:heWOAJz2MY1JOmh-YBIw-SYYVL8=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.484377+00 2025-12-17 09:10:00.484382+00 27624 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8raJkt_gwm_9x4oREMQmO84E3GI=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.486236+00 2025-12-17 09:10:00.486241+00 27625 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JYDFWqxwv3sH2GPVkmUtnPNJ3c4=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.487822+00 2025-12-17 09:10:00.487827+00 27626 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f2OvuIBG_4CebuUMy9tC3xqsinA=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.489354+00 2025-12-17 09:10:00.48936+00 27627 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5oOG5CrO2Ydc4rmQo4SXpnGn27k=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.491203+00 2025-12-17 09:10:00.491208+00 27628 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nrKwKnan097_OU04ZHjXijsIZug=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.492744+00 2025-12-17 09:10:00.492748+00 27629 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SrpGXNekk2jnsjKw4Se1xmgC5pA=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.494395+00 2025-12-17 09:10:00.4944+00 27630 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KhnytuRj9NTnoM1msxcqx1zcKtg=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.496429+00 2025-12-17 09:10:00.496435+00 27631 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XPvSxIPZmhzSbkh2s-j-qXd1ccg=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.498131+00 2025-12-17 09:10:00.498136+00 27632 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FXR1QJVY9gIbCRfDtCAPK1NJ8Rg=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.499648+00 2025-12-17 09:10:00.499653+00 27633 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:649cD4-ILE7zMnVkDMGQPToSsjw=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.501164+00 2025-12-17 09:10:00.501169+00 27634 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qdvfr3CZf7ObTZmm8nsXHa-meus=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.502638+00 2025-12-17 09:10:00.502642+00 27635 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DmUie1Y-MYjiTdj_UH6dnchTu0w=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.504356+00 2025-12-17 09:10:00.504361+00 27636 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cVKx_-O0b-Z-fwQvV-j8LUW4oGU=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.505981+00 2025-12-17 09:10:00.505985+00 27637 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DyMyNsyT9_kFWxGdHsA_jqkrSGY=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.507499+00 2025-12-17 09:10:00.507503+00 27638 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ufr3Jh39ukqm1BAIbBUUF5rl8I4=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.509253+00 2025-12-17 09:10:00.509257+00 27639 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fYR3-1DCep-Z9OAk3Yksw2Vnhyk=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.510723+00 2025-12-17 09:10:00.510727+00 27640 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OvgSaWsS8iZjcFPksihRBr_rbF4=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.512249+00 2025-12-17 09:10:00.512254+00 27641 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aspR8Ubp0QMIpASDb73U6XW209s=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.513874+00 2025-12-17 09:10:00.513879+00 27642 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p_kuxiV6bhz7c2OzcjlNs0Ln20I=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.51534+00 2025-12-17 09:10:00.515344+00 27643 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YFDdc8IGrqd6AmkvFWWysnFHExU=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.516845+00 2025-12-17 09:10:00.516849+00 27644 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KTecIULcfuSdQf-r-Wd1uZ_1KUU=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.518303+00 2025-12-17 09:10:00.518307+00 27645 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W5gOIa3oquHMAJe01IwLiF3eR60=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.519978+00 2025-12-17 09:10:00.519983+00 27646 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eZocj13gKT-GWBjYudemoM0GOpA=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.52153+00 2025-12-17 09:10:00.521534+00 27647 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jZxm8xOI0p4qqNcLAG1WTUpmblE=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.523453+00 2025-12-17 09:10:00.523458+00 27648 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TQbB-YDnFhoSyZO-pqbCV20pQb0=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.524925+00 2025-12-17 09:10:00.524929+00 27649 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gm0WFnKqJGgbawV9ZQJboB3-HqA=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.526393+00 2025-12-17 09:10:00.526397+00 27650 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qNdF5Y-Wcrr7UFzqazjY5qpCgAc=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.527872+00 2025-12-17 09:10:00.527876+00 27651 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pFP9NyI2XUZSAiV1EigYa6CSphY=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.529317+00 2025-12-17 09:10:00.529321+00 27652 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7sQklyIDV6BR4_eLsmZ44QUanok=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.531043+00 2025-12-17 09:10:00.531047+00 27653 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZqfMVfCQVmTVqTUiZSq_WVpQ4fE=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.532594+00 2025-12-17 09:10:00.532599+00 27654 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mzuqF-hLWEG32sKKcdkzXUmjhQE=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.534131+00 2025-12-17 09:10:00.534135+00 27655 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S7QAHF2uOnOnr9ysPzHyALk0fOA=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.535707+00 2025-12-17 09:10:00.535712+00 27656 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cPuuYojGYcXOS1JjC428RVKSNPw=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.537275+00 2025-12-17 09:10:00.53728+00 27657 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R22m351ykofUA8N0EFG9uBplcMo=", "createTime": "2024-08-15 14:45:54"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.538829+00 2025-12-17 09:10:00.538833+00 27658 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SW6UWRgB7KrHP8O8HOjafheu17A=", "createTime": "2024-08-15 14:45:54"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.540516+00 2025-12-17 09:10:00.54052+00 27659 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wyCG1vBYWMZSS4ltHame9cbA0iA=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.541964+00 2025-12-17 09:10:00.541968+00 27660 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T5NqBt-CXzTYO6mydmG34HQPws0=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.543417+00 2025-12-17 09:10:00.543421+00 27661 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jiy6eyQkzBsCE8tqyItZshCc_gU=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.551716+00 2025-12-17 09:10:00.551721+00 27666 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TZAAdhp4WDKDWe2Do9DEWgpJPJU=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.545242+00 2025-12-17 09:10:00.545249+00 27662 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GrOaqWwkXJ4GM8Y8mj6_Gs8zAes=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.546942+00 2025-12-17 09:10:00.546946+00 27663 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MlOW0qMyx3cGtwqMmx8_GVasJIA=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.548683+00 2025-12-17 09:10:00.548687+00 27664 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nA_KuqNN05r8go3KcSEWnCkzo7A=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.550165+00 2025-12-17 09:10:00.55017+00 27665 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1lbuRN-1TvB_PVUpvmaDXXd6s_k=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.554006+00 2025-12-17 09:10:00.554014+00 27667 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ouVFr_1_ETQG42GbyKaaJ5octj0=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.556812+00 2025-12-17 09:10:00.556818+00 27668 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DR16BpnkBT4QLgBlpWUVXwL7kDw=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.558808+00 2025-12-17 09:10:00.558812+00 27669 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ErZqZkcLSlsV8vM0LUKVN52iKXE=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.560309+00 2025-12-17 09:10:00.560314+00 27670 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aONHsnRuuZInneTjzs6AP7lOWtM=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.561833+00 2025-12-17 09:10:00.561838+00 27671 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3lovWXBatyDjCZL9mHgV5gR23ak=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.563364+00 2025-12-17 09:10:00.563369+00 27672 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ItXag_6YnYcVX1GUT0Ed9XiuDk8=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.564825+00 2025-12-17 09:10:00.56483+00 27673 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FFyxjdabMGU9XRj2X_Pd3T1ya18=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.566278+00 2025-12-17 09:10:00.566282+00 27674 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P3pRKHKfTyCg4H5r-KiQrRyzrCQ=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.567758+00 2025-12-17 09:10:00.567763+00 27675 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H03bfkNFMFkhpWeQVJ4XCgJmIVk=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.569262+00 2025-12-17 09:10:00.569267+00 27676 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8jvc4BEN7qXM0aASZqXYEEDEpjg=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.570835+00 2025-12-17 09:10:00.57084+00 27677 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RGugv9gPAzihnPyMqR9DvaRfwHM=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.572328+00 2025-12-17 09:10:00.572333+00 27678 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:53Xu-w4aZShw5fVYX8hpEMf-YD8=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.573857+00 2025-12-17 09:10:00.573862+00 27679 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oVUhm_hrrJG1BD_DDX2CYCf1yyg=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.57543+00 2025-12-17 09:10:00.575436+00 27680 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=1766048999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X531qZiIYReExLVnG6BW9jYhHoU=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.964306+00 2025-12-17 09:10:00.964317+00 27681 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x84XJLt_OE0LzWfLtaw-n_2k7Mk=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.966763+00 2025-12-17 09:10:00.96677+00 27682 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3f3L3_gFzAPNuKxflBKsiall7Zs=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.969375+00 2025-12-17 09:10:00.969383+00 27683 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9lWik6Dpd-beYYwEPsQUepPbdz0=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.971828+00 2025-12-17 09:10:00.971833+00 27684 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aKi8ZF9qoWI7zyTTQZJRmG6erTY=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.973513+00 2025-12-17 09:10:00.973517+00 27685 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kUQsrWIhhgBRbdPIWqyuglF8Xtg=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.975019+00 2025-12-17 09:10:00.975024+00 27686 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1GRFSgGM_eh23Fqv6KNMwv0kvRA=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.976477+00 2025-12-17 09:10:00.976481+00 27687 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yvUl-I-zC-CE1_svmu4A0xK6ouI=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.97795+00 2025-12-17 09:10:00.977954+00 27688 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y_yk7RjmR-G-P2x5I2y_A7co0Ik=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.979404+00 2025-12-17 09:10:00.979408+00 27689 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IGjaDO2sUb__0YcY5_4UMOoOpyQ=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.980885+00 2025-12-17 09:10:00.98089+00 27690 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4eJy5M1EP5AqBc748wjjtkZ1DqI=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.982341+00 2025-12-17 09:10:00.982346+00 27691 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_r0kIPzwWp6y68c60VTjnv8V0Vc=", "createTime": "2024-08-15 14:45:58"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.983982+00 2025-12-17 09:10:00.983987+00 27692 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aSYhsB-23CNDCz5ocBBxTsv7oUE=", "createTime": "2024-08-15 14:45:58"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.985516+00 2025-12-17 09:10:00.98552+00 27693 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:49bgBUL4wD0vLNW2wxCzJboMR-E=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.987127+00 2025-12-17 09:10:00.987132+00 27694 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:62-iHBWG7xEpnlbmt_P93g7vL7c=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.988608+00 2025-12-17 09:10:00.988613+00 27695 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IdEUBc5SHo0FktAdBlF8zvg-SZg=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.990076+00 2025-12-17 09:10:00.99008+00 27696 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z6uC_7mLWROfUlT9V6R0DRYVaxs=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.991521+00 2025-12-17 09:10:00.991525+00 27697 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D49ytgo33Bs-8dPDPQRIWoywk0g=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.993167+00 2025-12-17 09:10:00.993172+00 27698 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OlTGRNvA5JezBk_m9kJ37HyxS3w=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.99495+00 2025-12-17 09:10:00.994955+00 27699 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YMIhaU6VIiQCB6nwD0DcLbMn7Y8=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.996494+00 2025-12-17 09:10:00.996499+00 27700 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tM_6QhtErYVSEURE8C8MaSrfDEM=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:00.997969+00 2025-12-17 09:10:00.997974+00 27701 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A8Mw7MubEBsYcmxtt9_VGNeuWRY=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.000072+00 2025-12-17 09:10:01.000077+00 27702 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7fti9isnBdZXjFn18ujoU5x1XMM=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.001616+00 2025-12-17 09:10:01.00162+00 27703 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PBex2GOPq2oMatPMIyy4fZO20AA=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.003156+00 2025-12-17 09:10:01.003161+00 27704 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OXCV-xGIv6xXqtSJ3DpC6ZOcyQo=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.004625+00 2025-12-17 09:10:01.004629+00 27705 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tAssTV8ec2cUMN5AqgjGYxPC7q0=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.006109+00 2025-12-17 09:10:01.006114+00 27706 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CejWncYp__1NcXK98Zg_ixnILtY=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.007569+00 2025-12-17 09:10:01.007573+00 27707 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZLPekfObjraXrBybdQ8_ShsJpmY=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.009038+00 2025-12-17 09:10:01.009043+00 27708 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZSq7YMv85rl1mC0dzhqPl3ckxz8=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.010558+00 2025-12-17 09:10:01.010563+00 27709 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XXGW1zy4VpCPE1oJxpVZZ4wP6HM=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.012285+00 2025-12-17 09:10:01.01229+00 27710 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Rkp0szQIyw7peI62u2bbqy5YlY=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.013943+00 2025-12-17 09:10:01.013948+00 27711 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p13_BiejZ7GRpCy5Wqzj72UW4uo=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.015598+00 2025-12-17 09:10:01.015603+00 27712 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K4IqpmmaDlzCvRd92I0_W7PP83A=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.017595+00 2025-12-17 09:10:01.0176+00 27713 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zL5iAuACthu3eJpTJY2WzsLfvzo=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.019542+00 2025-12-17 09:10:01.019547+00 27714 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3CIf_U3_dMK3PozYLBwJmkvhLq0=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.021389+00 2025-12-17 09:10:01.021394+00 27715 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H3pgDJKllCZcK-zZXGS2QRq6XrA=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.023048+00 2025-12-17 09:10:01.023052+00 27716 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B-EG_azJ0nmTHCMsbfWhWFGjRxA=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.033774+00 2025-12-17 09:10:01.03378+00 27722 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:40OQVBcmYYMNkWLxGEvo5J946K0=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.024687+00 2025-12-17 09:10:01.024692+00 27717 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:avUNE_V_1ogflnCjPAXuSud_Zog=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.026584+00 2025-12-17 09:10:01.02659+00 27718 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LeSRjssJ9pQiOlVFL6v24G6XQJk=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.028451+00 2025-12-17 09:10:01.028456+00 27719 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w6xZPkMyMjZQXM-GZ01ems33wxo=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.030373+00 2025-12-17 09:10:01.030378+00 27720 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OPCBf7SptMbzQsjTi6dSQ_ahdio=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.032018+00 2025-12-17 09:10:01.032023+00 27721 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zVLLybB5WA1ugPOxHgkGujHuoks=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.035717+00 2025-12-17 09:10:01.035722+00 27723 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sgC44RMINHMgGU6TggP2MqGFv64=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.037629+00 2025-12-17 09:10:01.037634+00 27724 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G0c1SwDdKepX3zM3cQKMgRTk0dA=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.039504+00 2025-12-17 09:10:01.039509+00 27725 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wl6vMIuTlaVmFQk-Wq7RXEuozco=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.041151+00 2025-12-17 09:10:01.041156+00 27726 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qHS2Ma2mb5fCdoRwhsCre3lap40=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.042781+00 2025-12-17 09:10:01.042786+00 27727 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J4Oy_UHHOwXh0Mba-wX63UrN-t0=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.044458+00 2025-12-17 09:10:01.044463+00 27728 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mu_TbjN8D_QvN8hJq5K7EbPFw2g=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.04613+00 2025-12-17 09:10:01.046135+00 27729 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bu69BvcTtqrpXkr7-O9O4L0s3Oo=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.047793+00 2025-12-17 09:10:01.047798+00 27730 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ePEgk6SBnsgt0Mrg_C8VD61C8nw=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.049635+00 2025-12-17 09:10:01.04964+00 27731 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-7aiJEwAz-SkaeNNfezBEuMxC6g=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.051614+00 2025-12-17 09:10:01.051619+00 27732 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ow1ZV12SQ9uSxtCzB5DOlZlJeAg=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.053592+00 2025-12-17 09:10:01.053598+00 27733 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gZFID8DaqvxyakMHvdOdb8a9H2E=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.055248+00 2025-12-17 09:10:01.055253+00 27734 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nLrYMN3Se2ChBMj4WuYqo4nWG80=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.056889+00 2025-12-17 09:10:01.056894+00 27735 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GQXhbe_ifqvXG9FUXp2r5dHUCTA=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.058772+00 2025-12-17 09:10:01.058777+00 27736 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nt8YJzBMdhkzxhRnWGDA2r2ywUM=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.060622+00 2025-12-17 09:10:01.060627+00 27737 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0fcSG1CuzQL936POGy6ilF00MdQ=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.062289+00 2025-12-17 09:10:01.062294+00 27738 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:igE3888Ze0I_TrL-PIPByq2TfrQ=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.063947+00 2025-12-17 09:10:01.063952+00 27739 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ifEeamfZWb22TqPw17lPtvYeMRk=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.06581+00 2025-12-17 09:10:01.065815+00 27740 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JN4xB1I6b1EUM0dWACbqEZfBQUY=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.069126+00 2025-12-17 09:10:01.069135+00 27741 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iu67nQOpvM-wdwX69sz7bVa_j3o=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.07128+00 2025-12-17 09:10:01.071285+00 27742 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HCgbAkL4GSUo8ufDX-ORQk37_BE=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.072806+00 2025-12-17 09:10:01.072811+00 27743 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NXwTwrpZteUcY1RWThpy8K1vcTg=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.074377+00 2025-12-17 09:10:01.074381+00 27744 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c4nxax2X6UxsnxnkGg4ZxSNsK68=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.075914+00 2025-12-17 09:10:01.075919+00 27745 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KR1ZXcm6DtIiiNt63RJ2nHVbCl0=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.077673+00 2025-12-17 09:10:01.077678+00 27746 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dCaEzXebqnRTQ7QxptGYlJSO_9o=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.079181+00 2025-12-17 09:10:01.079186+00 27747 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BVTv4Ddb1Xm5VSiF-dy4Ik-fAxM=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.08071+00 2025-12-17 09:10:01.080715+00 27748 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:84Ra79oQ_mT_MuSGOGJ_39DJh08=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.08296+00 2025-12-17 09:10:01.082967+00 27749 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hHKmf_0MGm2Di59I7VMAhj8zvmQ=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.085554+00 2025-12-17 09:10:01.085559+00 27750 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kEc03NsKK0UIfubindUM9NV59l0=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.087716+00 2025-12-17 09:10:01.087725+00 27751 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Tk6eAQ-zlZQqiy1SLOA8xO4XF4=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.090452+00 2025-12-17 09:10:01.090461+00 27752 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pzNRrGkN78Pud5gZ9VSf1l_-rH0=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.092687+00 2025-12-17 09:10:01.092692+00 27753 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tA_1CSGufK5y5pRxLdpxzeBPUmE=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.094258+00 2025-12-17 09:10:01.094263+00 27754 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U1UlRy8V5cCxRVDz_KnFOm1Gpbs=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.095799+00 2025-12-17 09:10:01.095803+00 27755 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vvZa7jRa39mhfAymrJA6FFTCz2A=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.097282+00 2025-12-17 09:10:01.097286+00 27756 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JdaEMJrt7DiELv7qaY021HuVwdw=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.098753+00 2025-12-17 09:10:01.098757+00 27757 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PesbCj3YOdzDHrkmWQrol1XTJcQ=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.100602+00 2025-12-17 09:10:01.100608+00 27758 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lAVujRirDmvQAJLIJq1ge8XhesQ=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.102381+00 2025-12-17 09:10:01.102386+00 27759 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CzNp7rFyzJXy-U4NScF2iaSYwa0=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.104433+00 2025-12-17 09:10:01.104438+00 27760 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ALbpNSLdig0BqxKTeC00Jc_xi4=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.106384+00 2025-12-17 09:10:01.10639+00 27761 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xqsjnv9C6lSefK3vX2wGmpBbBmU=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.108374+00 2025-12-17 09:10:01.10838+00 27762 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WgTwNhCjrMHvLIB-XvwEVdTxDyk=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.110314+00 2025-12-17 09:10:01.110319+00 27763 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e8tc9Up95bXky9nKfNxEIQ1i5fM=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.112255+00 2025-12-17 09:10:01.112261+00 27764 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6cY6f-WufFhgmXM-9GqgnlucAKk=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.11421+00 2025-12-17 09:10:01.114215+00 27765 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fq4xb6xBEfjeO8QMWgxAmX-W7BI=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.116117+00 2025-12-17 09:10:01.116122+00 27766 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rB-YKCbntAMtNTmC3MdeVqmDG64=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.117794+00 2025-12-17 09:10:01.117799+00 27767 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YE22dl_9UB0CU1moenUob8r9uHU=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.119442+00 2025-12-17 09:10:01.119447+00 27768 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YYttrpez8hgTiVbj46Gmmsq_G6c=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.12111+00 2025-12-17 09:10:01.121115+00 27769 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h_IQ4iyaI58bgmJNT7da07HxhGw=", "createTime": "2024-08-15 14:46:04"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.122761+00 2025-12-17 09:10:01.122766+00 27770 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0k02ITHeO_aPy1NgDeJXn1mJ7uM=", "createTime": "2024-08-15 14:46:04"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.124406+00 2025-12-17 09:10:01.124411+00 27771 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9q4QT4L3jBYEXlfckaEbN1CKlmc=", "createTime": "2024-08-15 14:46:04"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.12628+00 2025-12-17 09:10:01.126285+00 27772 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SfqHyAV_EzG_cV-qS-05uoLYlDU=", "createTime": "2024-08-15 14:46:04"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.128248+00 2025-12-17 09:10:01.128254+00 27773 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zo1bsrN3IYDjEwB_JxOECHuGyF4=", "createTime": "2024-08-15 14:46:05"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.130417+00 2025-12-17 09:10:01.130424+00 27774 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ONhcrO-AKJxzX6SqRcxBB8XDsI=", "createTime": "2024-08-15 14:46:05"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.132441+00 2025-12-17 09:10:01.132447+00 27775 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PdfTnZYb7FuNXz-JRuYBziK-064=", "createTime": "2024-08-15 14:46:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.134531+00 2025-12-17 09:10:01.134539+00 27776 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MA-lPZGqJhJng2wN1_ZcY5hq8_Y=", "createTime": "2024-08-15 14:46:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.136516+00 2025-12-17 09:10:01.136523+00 27777 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sZWxgehsLkra_-RFULKVERyMGzI=", "createTime": "2024-08-15 14:46:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.138652+00 2025-12-17 09:10:01.138657+00 27778 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mCzwx0owTo4-aiHsQ8nhJVoYVLg=", "createTime": "2024-08-15 14:46:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.140777+00 2025-12-17 09:10:01.140781+00 27779 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2CyrTD6aJvROKCSIET4CodbdWNY=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:10:01.142384+00 2025-12-17 09:10:01.142389+00 27780 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=1766049000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8qvGoTgbWDKICw7RvI49sxUyn8E=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.600817+00 2025-12-17 09:20:00.600828+00 27781 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3DwphVYHcRq2BRBWJwUULpfYv80=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.604051+00 2025-12-17 09:20:00.604057+00 27782 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lCcDBthMDlmEtLp-17RF1UP6PE8=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.605802+00 2025-12-17 09:20:00.605807+00 27783 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UusgVT0S-0iYoTZxfV5wTLVDsPY=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.607612+00 2025-12-17 09:20:00.607618+00 27784 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:thTH3ylKbdyNc-auZ6FMcdVLcGc=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.609428+00 2025-12-17 09:20:00.609433+00 27785 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X-7S18wGjOvtTlrnxBWo8NtHDNA=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.610936+00 2025-12-17 09:20:00.610941+00 27786 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:86ws3Bd6AO97bS4JX2rjLIGxPxE=", "createTime": "2024-08-15 14:46:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.612437+00 2025-12-17 09:20:00.612442+00 27787 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pMGhso23QMnKLp2HJirmmSdlej4=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.614005+00 2025-12-17 09:20:00.614009+00 27788 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t4aZgJBd1-2MpB8opHFBGGasFDo=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.615599+00 2025-12-17 09:20:00.615603+00 27789 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GpmNDNFby0CV4PZmzph0XZlRuqs=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.617116+00 2025-12-17 09:20:00.61712+00 27790 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:37A88351pSpJsKrcj-HRm8iX78w=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.618616+00 2025-12-17 09:20:00.618621+00 27791 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1nZWj2P8FpT4RdDXp9PQuY-g12E=", "createTime": "2024-08-15 14:46:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.620096+00 2025-12-17 09:20:00.6201+00 27792 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fwpZFGltdc4rpNjuNTapT7PmPT8=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.6221+00 2025-12-17 09:20:00.62211+00 27793 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UccK6L1MdtbzbLRs3scNTW9q9cY=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.624389+00 2025-12-17 09:20:00.624395+00 27794 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ndDo_3YCnTIhQ9iFUrcBOQYwWU=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.626904+00 2025-12-17 09:20:00.626911+00 27795 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7C7tWOtn79Mx-53O-eRKISaO04g=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.629035+00 2025-12-17 09:20:00.629041+00 27796 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dsDhsZZR_sw4Mf-ximkEg10ukiQ=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.630783+00 2025-12-17 09:20:00.630788+00 27797 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WQj6Qsn5DqgJ8itnCAv7xwqwCaY=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.632309+00 2025-12-17 09:20:00.632314+00 27798 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eojnXkEy0kG5tOnFjQUfAhwzDzU=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.633812+00 2025-12-17 09:20:00.633816+00 27799 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tiYyiAg05V1iYHybMjTnnWBdp-s=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.635392+00 2025-12-17 09:20:00.635399+00 27800 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U7-uj1gODldltK9-2SmX8XEl9T0=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.636946+00 2025-12-17 09:20:00.63695+00 27801 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pqJ7JW72Xm4XIwrSmi7g_rSv6Gk=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.638638+00 2025-12-17 09:20:00.638643+00 27802 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vkhyjX18VRMyn8Pv-S4-N-6z9_w=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.640793+00 2025-12-17 09:20:00.640798+00 27803 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RGwmHUclUfSZAySfDjkx4sEZHck=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.642356+00 2025-12-17 09:20:00.64236+00 27804 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X8pNGf3Aw_F7hK8dSosTcrzU7-U=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.643846+00 2025-12-17 09:20:00.643851+00 27805 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ElQMhluDKDt6olE40Zqy_GeFepk=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.645425+00 2025-12-17 09:20:00.645429+00 27806 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BPXpO_Y0d4bRCseBKDRohuF0xs4=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.647129+00 2025-12-17 09:20:00.647134+00 27807 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1AWEpyX9o9kQ7MWOdViRse10XzU=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.648639+00 2025-12-17 09:20:00.648643+00 27808 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aQB0jQvQhopM0lGHPIHllvjkpVs=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.650095+00 2025-12-17 09:20:00.650099+00 27809 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FHUyC2sGxzrXTRkSYjkxPzekufc=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.651656+00 2025-12-17 09:20:00.651662+00 27810 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Jlo-KmvtePJDV1zC5XC3hs1Aac=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.654122+00 2025-12-17 09:20:00.654128+00 27811 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FFd0BJXC1wxH0n4beoFo060qP9c=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.656032+00 2025-12-17 09:20:00.656036+00 27812 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QTd-NCrcHOxuttCiCtaid-qZDdk=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.657647+00 2025-12-17 09:20:00.657652+00 27813 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0zlGpmJZk1MjVUxw5xkWufFDa_c=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.659421+00 2025-12-17 09:20:00.659426+00 27814 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lr_xryTsw38dlqjffWgsr4pQg_Q=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.660908+00 2025-12-17 09:20:00.660913+00 27815 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lw0ei5PBTFgFdFicKpp2hlUPIeo=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.66249+00 2025-12-17 09:20:00.662495+00 27816 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5DOsudsJiko9YwF2WqxqF5vQ52c=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.664018+00 2025-12-17 09:20:00.664023+00 27817 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y7wTkOC7EKf2gnWW-Wh602cra9w=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.665476+00 2025-12-17 09:20:00.665481+00 27818 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nb7n-JOmQTmffpKeMCKQJvMZmi0=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.666929+00 2025-12-17 09:20:00.666933+00 27819 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PKgGFOcW97JQ5O4-huQQQw11Ijc=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.668705+00 2025-12-17 09:20:00.668712+00 27820 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tZQ_-NLwlataDkrM3vREpdWqLig=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.670573+00 2025-12-17 09:20:00.670578+00 27821 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sen1MvWsh2rMHgvMW2g0-wukByA=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.672077+00 2025-12-17 09:20:00.672082+00 27822 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZVUqnX0rGBHMYIXZQZJML6L1F5I=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.673581+00 2025-12-17 09:20:00.673586+00 27823 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-LqFPPMP52k1z1vMQZKLjlwfckE=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.675129+00 2025-12-17 09:20:00.675135+00 27824 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O9MFENp6F9qdsOkXdY1QYvg9blU=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.676812+00 2025-12-17 09:20:00.676818+00 27825 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dIlXAcOsu3glNszc5oSDbYZniSQ=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.678738+00 2025-12-17 09:20:00.678744+00 27826 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DJVg11OW9Kwh6KgdgnOHgsIznJ0=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.680643+00 2025-12-17 09:20:00.680648+00 27827 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3w8S-AeS1nxQpaqSws1yKVoRWVg=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.682368+00 2025-12-17 09:20:00.682373+00 27828 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:56XMBnCgYsgkavwb0syf0l1Rme4=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.684374+00 2025-12-17 09:20:00.68438+00 27829 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oCUxekA0o4LmMoxVyxKg1dw1tFw=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.686196+00 2025-12-17 09:20:00.686203+00 27830 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P6tz5KAXZYryIPgIfccG3U7txCg=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.687894+00 2025-12-17 09:20:00.687899+00 27831 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IF0oPc2E2YT41e-lKXtKB-Q2awo=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.689763+00 2025-12-17 09:20:00.689768+00 27832 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R7JDno435fkSa4hMKQJZOkOq76o=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.691535+00 2025-12-17 09:20:00.691544+00 27833 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lA8QZWMcJhSehmQnPAwpfs9lCAw=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.693985+00 2025-12-17 09:20:00.69399+00 27834 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aZLYbNpx9gfC10jVG2UNCZsiZ18=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.695848+00 2025-12-17 09:20:00.695853+00 27835 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FOxOxmx0EBmmBHfu2-kNhqQn55w=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.697369+00 2025-12-17 09:20:00.697374+00 27836 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HIJVOJJw0tYO_tVxIpepppSjG-k=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.698912+00 2025-12-17 09:20:00.698916+00 27837 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:asRGfm9SWGVRLJj8SNQoBATMfUk=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.700813+00 2025-12-17 09:20:00.700817+00 27838 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SajUSSDrg7dEkNC85Zx_gMMPhGM=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.702319+00 2025-12-17 09:20:00.702323+00 27839 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O0mJaz6vOC3GsiWAbiYE3IJSn_s=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.703874+00 2025-12-17 09:20:00.703879+00 27840 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p-jHCqOplUNBut_pbA1Gf5SWHq0=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.721548+00 2025-12-17 09:20:00.721553+00 27850 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:414ElD29TBKVP7MbpYEyltuaCt4=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.705518+00 2025-12-17 09:20:00.705524+00 27841 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RhiHTKeWIbg1nIGI0foC5zK6WqM=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.707164+00 2025-12-17 09:20:00.707169+00 27842 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WIvTAMwoZJKFJ_AW8mii1tlxiCw=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.708667+00 2025-12-17 09:20:00.708672+00 27843 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hdfajNcawpSRIG7seTbC7nicKKA=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.710167+00 2025-12-17 09:20:00.710171+00 27844 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V_5yoAJEKHtGrX0Tqq1P0usG224=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.711619+00 2025-12-17 09:20:00.711624+00 27845 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PbQR7HkED-RgJ5yNEIAowWzTm8M=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.713272+00 2025-12-17 09:20:00.713283+00 27846 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Re0fYayOUkkPlqXj8IoEjgjWxAY=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.715651+00 2025-12-17 09:20:00.715657+00 27847 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xRMZP4WRqHDNaOia9AGglT3FBGw=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.718009+00 2025-12-17 09:20:00.718014+00 27848 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o7MjGI4As0fXfFNFx2VeAgH0_kk=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.71997+00 2025-12-17 09:20:00.719974+00 27849 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XJiNJwodwucuGhTmL-TVh5aPuLo=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.723488+00 2025-12-17 09:20:00.723493+00 27851 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D_eSLRLjrsGMb2jhUcp2hk34XK0=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.724989+00 2025-12-17 09:20:00.724993+00 27852 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SqiHzqx4zaevA8V0oiCI8bZ65TM=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.726453+00 2025-12-17 09:20:00.726457+00 27853 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bw2BxDQJrCzIWya9S-XUDy2nG9o=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.727919+00 2025-12-17 09:20:00.727924+00 27854 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_a75js_10uRN8whCjg4A1UcsAso=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.729801+00 2025-12-17 09:20:00.729809+00 27855 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D3i-b97EWkYAaOd34eqJHuKzkQY=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.731628+00 2025-12-17 09:20:00.731633+00 27856 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w_UJhlac0dj0CNoVByMvC6hoBj4=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.733227+00 2025-12-17 09:20:00.733232+00 27857 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UXcBM2f2rvMYa_fu9mrr1UXXglU=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.735056+00 2025-12-17 09:20:00.735061+00 27858 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:phD0klwQ24qchD91B7cS5zzh6nI=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.73673+00 2025-12-17 09:20:00.736735+00 27859 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uWa90VTenRAkEsQbswxsASX2Ev8=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.738259+00 2025-12-17 09:20:00.738263+00 27860 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_cE7WnA40Mv3IQQH_y9BbzR4wFc=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.73996+00 2025-12-17 09:20:00.739965+00 27861 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TOgGyT-mecTmEB3WczsWMTCkxks=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.741436+00 2025-12-17 09:20:00.741441+00 27862 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CLO3iLhMw9WsLeSq8S63iFXfpcU=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.742902+00 2025-12-17 09:20:00.742907+00 27863 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ithMwJ9QRE1fSbpQQgLsCsJWnLI=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.74516+00 2025-12-17 09:20:00.745167+00 27864 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:okb2DJAQjes12XZeTbmfeIw49zc=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.747246+00 2025-12-17 09:20:00.747251+00 27865 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HCwEWAL3jDLI2WzuLWCWn4N31f4=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.74978+00 2025-12-17 09:20:00.749786+00 27866 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AIXiIyvahygA-wG-CLSMZCaZ2ng=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.751738+00 2025-12-17 09:20:00.751743+00 27867 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9pF7A2qx2Opzmrpap_7x04yw-xA=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.753414+00 2025-12-17 09:20:00.753419+00 27868 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fRN31Jgikpm2ga4dCQpOY1GsSgw=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.755181+00 2025-12-17 09:20:00.755185+00 27869 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KN7dgTqHOkPwDHD7t1KqzsjxuZ8=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.756657+00 2025-12-17 09:20:00.756661+00 27870 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-d7_Uacen_cm92clkYCppTF8o-Q=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.758125+00 2025-12-17 09:20:00.75813+00 27871 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RPfC-t8RzKmX8swKc0GhmQ9lLlY=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.759646+00 2025-12-17 09:20:00.75965+00 27872 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8RWnO_2kNgpsdQNhzdQVnmaoUXY=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.761227+00 2025-12-17 09:20:00.761231+00 27873 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SyPFPmc8NdZaqDnuC4p0NVsAILY=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.762868+00 2025-12-17 09:20:00.762873+00 27874 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sLKZb8q-THHK8zvBEmhq97DEnfw=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.772393+00 2025-12-17 09:20:00.772397+00 27879 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OxXILl6AyMAendHAa2Pz4ODpk-U=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.764427+00 2025-12-17 09:20:00.764432+00 27875 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1L4gZRLpanc0yCLPOt51_M_Ilrg=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.766531+00 2025-12-17 09:20:00.766536+00 27876 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l9Cnpsz9p3K07EYk_mClBG9BG_E=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.768562+00 2025-12-17 09:20:00.768577+00 27877 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OcgeY8hOQKmHX8neexpKpuOxtS4=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.770589+00 2025-12-17 09:20:00.770594+00 27878 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IO1BiNGNsdCDBkVPfQboyRaA6JQ=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:00.775217+00 2025-12-17 09:20:00.775224+00 27880 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=1766049599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:98TqhDJJsD9Bcfc25QEqGMzUO2Y=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.220418+00 2025-12-17 09:20:01.220427+00 27881 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gVm9nWlb1VuHbLuMyv6ogMtzqR4=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.223007+00 2025-12-17 09:20:01.223013+00 27882 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5dPORhYoXACG8NzjPLtfS6oy0Q=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.224925+00 2025-12-17 09:20:01.224932+00 27883 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uwgb4bT9riGhboCltTE_potD1h0=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.227018+00 2025-12-17 09:20:01.227025+00 27884 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9XmircXrKRv7E9ZLhg_rlCq99OI=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.228902+00 2025-12-17 09:20:01.228907+00 27885 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:weuXfxVbPfq82YGtlw3DFi4VE_8=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.231225+00 2025-12-17 09:20:01.231237+00 27886 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SE6iIKMHB3jRbBu5G1h2MM1Vd-Q=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.23367+00 2025-12-17 09:20:01.233676+00 27887 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3QCKVOW4cDqdazhbJEwnIM48C1s=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.235618+00 2025-12-17 09:20:01.235624+00 27888 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W_VD2BFhQbLNpolneyzJbkNNzF8=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.238044+00 2025-12-17 09:20:01.238051+00 27889 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HRIW8ExAUrVgpkjgXSeK8-GjGhI=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.240123+00 2025-12-17 09:20:01.240128+00 27890 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:et1cOJZnUlZjpv6hDwQoUFy-pUc=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.241915+00 2025-12-17 09:20:01.24192+00 27891 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E3LiF7JnKg7-DqKvITvlEPXT6r4=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.24358+00 2025-12-17 09:20:01.243585+00 27892 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y-t_Q62cL8D3bfY6guXAZY-SyGI=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.245261+00 2025-12-17 09:20:01.245268+00 27893 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j4T4n0a905gsSFcobL9vmb_Oga0=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.247384+00 2025-12-17 09:20:01.247389+00 27894 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1wFw73kMrNoqwpNR0L-HQsoJFgM=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.249706+00 2025-12-17 09:20:01.249711+00 27895 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5e_Wqd9QIFPYjRVb9XHs0aCqDZ0=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.251466+00 2025-12-17 09:20:01.251473+00 27896 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CeViPhvrCMffn-5Pwx5iMaCSAAc=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.253053+00 2025-12-17 09:20:01.253058+00 27897 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E9JChR7HL_c81oa9kPGOICDl0ks=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.2551+00 2025-12-17 09:20:01.255106+00 27898 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uKDv-ZVREGVFEFwDcgG0nQDqO1I=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.256919+00 2025-12-17 09:20:01.256924+00 27899 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-tSFKoWTBqon8P6UHPyBICSDdYE=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.258524+00 2025-12-17 09:20:01.258528+00 27900 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OYmddHH_chKgptD8J1tWHUHzEpA=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.260179+00 2025-12-17 09:20:01.260185+00 27901 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eqXrAD7n66h_ED5V37fp-wEAPWg=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.262317+00 2025-12-17 09:20:01.262323+00 27902 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EUsGYUwjjVj_pf7Um6l4RbPnm0U=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.264434+00 2025-12-17 09:20:01.264441+00 27903 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vz0Ldiq2066SiOXycx4R_sMTVII=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.26636+00 2025-12-17 09:20:01.266365+00 27904 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rtzZtOhskCAiUzoB19_8xOjqsjk=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.268213+00 2025-12-17 09:20:01.268219+00 27905 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cn4jVuml5n3S-GDoVexD4LKpGsE=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.27007+00 2025-12-17 09:20:01.270075+00 27906 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CvFftJTLPq-AuXiU1wLCwA3fEkw=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.271625+00 2025-12-17 09:20:01.271631+00 27907 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZqO0XFSXsXpdIw-NZOxUsTfLiYk=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.273253+00 2025-12-17 09:20:01.273258+00 27908 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uLX4_XFA5sUBJuisEH6yn4b7jEs=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.275049+00 2025-12-17 09:20:01.275054+00 27909 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cPRpRv4SuS5O9ae4FkwBPKcAJIg=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.276536+00 2025-12-17 09:20:01.27654+00 27910 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JXMjV36Pocy0jJGmtnZx0_3odk0=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.278146+00 2025-12-17 09:20:01.278151+00 27911 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LDR8ueoO5VRiep6UhxD_bzon1zk=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.279754+00 2025-12-17 09:20:01.27976+00 27912 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0suMpgWud4p95NPaa8JfefhyHX4=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.281294+00 2025-12-17 09:20:01.281298+00 27913 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G0F-vDahDwd7YQoXw3HTSOQE-r4=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.282764+00 2025-12-17 09:20:01.282769+00 27914 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:woHmXYxmH6apNXqflphJeJ5OzhQ=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.284256+00 2025-12-17 09:20:01.284261+00 27915 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pg_A7QILu9jYPQwZ5QzSZIGGM0c=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.285758+00 2025-12-17 09:20:01.285763+00 27916 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YRziLX3wqLLgAgwGBU8VR8Xec70=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.287286+00 2025-12-17 09:20:01.287291+00 27917 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FEW-x2WhZ69lA81AdsxgXG-rBms=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.288789+00 2025-12-17 09:20:01.288794+00 27918 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8iP18b6o1DSCJlYB-7lenUusOEc=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.29031+00 2025-12-17 09:20:01.290315+00 27919 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZREy6TUKvZSrIFTf1qjIQ3l0zR0=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.29263+00 2025-12-17 09:20:01.292637+00 27920 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fCaw_CRuw4y6XTrBCaNTdHbMm48=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.294615+00 2025-12-17 09:20:01.29462+00 27921 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cS2gv0JmR89auYC-ypO1V-9-1gw=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.296401+00 2025-12-17 09:20:01.296405+00 27922 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZVKamyFwTVwaObMRiM201bAKLoI=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.298441+00 2025-12-17 09:20:01.298447+00 27923 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4yKjrgxUcF9JIeSYE4GMiGeOkok=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.300304+00 2025-12-17 09:20:01.300308+00 27924 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ybQ1TVoyvcbjIa2PGOwdQuvL5sw=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.301833+00 2025-12-17 09:20:01.301837+00 27925 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FRpyaG8ghe-iqonfa1OZ_-6Q4dA=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.303436+00 2025-12-17 09:20:01.303441+00 27926 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dblQ1CXfO8wDZHMAmmUu4McdZBY=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.304986+00 2025-12-17 09:20:01.30499+00 27927 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VSPvMigOOlQY-NQC3UpXoOCkMoc=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.306481+00 2025-12-17 09:20:01.306486+00 27928 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Z2P4s82rL5YMYlfwBq4OfbsKL4=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.30816+00 2025-12-17 09:20:01.308166+00 27929 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7fVZpiJ2IA_f9NV8RFiF_43lgGg=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.309746+00 2025-12-17 09:20:01.309751+00 27930 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_yjnPKmPfO8Fb6jOO90jFoURTXA=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.311283+00 2025-12-17 09:20:01.311288+00 27931 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hxQycXdXgIrJkscYT_ZndVh4xog=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.312867+00 2025-12-17 09:20:01.312873+00 27932 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RV7v8lZSZRm7EbEh6vP_2LUr70s=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.314478+00 2025-12-17 09:20:01.314482+00 27933 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rbY4U1L47HliTS0x4pCUwVw636E=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.316036+00 2025-12-17 09:20:01.316042+00 27934 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vofTK9qids-QsiQXZwrOcZG35UU=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.317556+00 2025-12-17 09:20:01.317561+00 27935 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ru4y49yYTEcy45TRKASjgcBdwXs=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.319373+00 2025-12-17 09:20:01.319378+00 27936 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:79yaq-KphCz9GS7_NQkzTmVJm9Q=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.320898+00 2025-12-17 09:20:01.320904+00 27937 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9uxpclpmdIpiCbBlDzD17v-RPCA=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.323148+00 2025-12-17 09:20:01.323154+00 27938 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n_9JSTB_ZmvwDCBWUdVo81iQhw0=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.325411+00 2025-12-17 09:20:01.325418+00 27939 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5wwvIcHGm9JBg9shCkJ2w-O12Dg=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.327085+00 2025-12-17 09:20:01.32709+00 27940 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:La3KJOdK0VVcl16fZd7xqxrkKCY=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.329419+00 2025-12-17 09:20:01.329428+00 27941 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uwuu7F6SHWNn_14lF3X47nz9vu8=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.331978+00 2025-12-17 09:20:01.331986+00 27942 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fivtD8dt_PL695hdeK0p5Pw_mxE=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.33439+00 2025-12-17 09:20:01.334397+00 27943 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M9RfHlFOV-4fk-wbRZ1LP-lvHzQ=", "createTime": "2024-08-15 14:46:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.336725+00 2025-12-17 09:20:01.33673+00 27944 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rQ3wqclUoPf2WNqQ2EiNOoXnJmk=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.338922+00 2025-12-17 09:20:01.338927+00 27945 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KNP_OGA_Y9Am-bdpy2NJEv5KKfA=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.340873+00 2025-12-17 09:20:01.340878+00 27946 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CBo6_k6h0ysE9PRVD4sJi8kyQpk=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.342616+00 2025-12-17 09:20:01.34262+00 27947 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ENqDUmtJ4LMx2BxJq94AFDsgM9c=", "createTime": "2024-08-15 14:46:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.344109+00 2025-12-17 09:20:01.344114+00 27948 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rMoLRqDiLtGR0sfQ4nwT-kxAsLU=", "createTime": "2024-08-15 14:46:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.345578+00 2025-12-17 09:20:01.345583+00 27949 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yrWyVZ1Nr-XB-V2Yyej3chFjvwg=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.347063+00 2025-12-17 09:20:01.347068+00 27950 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ymbn0nAwERfPpSq9UxvmdaDfjos=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.348505+00 2025-12-17 09:20:01.348509+00 27951 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fdCDqBYaeeYGVMg0P5t5tysK6wk=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.350149+00 2025-12-17 09:20:01.350154+00 27952 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eOLNM0wpnuX8XCqgZYSxv8bJPh0=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.351667+00 2025-12-17 09:20:01.351673+00 27953 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p1Xm72wVB3ma63L0PJosCcSNEj4=", "createTime": "2024-08-15 14:46:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.353491+00 2025-12-17 09:20:01.353497+00 27954 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l1w7AIewM8KVlKfzvdzsS8aA83c=", "createTime": "2024-08-15 14:46:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.355267+00 2025-12-17 09:20:01.355272+00 27955 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kiRsCf9UUpIjfLFeCW9zH_1Vxh4=", "createTime": "2024-08-15 14:46:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.356877+00 2025-12-17 09:20:01.356882+00 27956 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FKZeJLyqcpqgniiaEuWINz6LMEQ=", "createTime": "2024-08-15 14:46:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.358738+00 2025-12-17 09:20:01.358743+00 27957 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-80dYFTFOjXRoa5LA9LsFYNiPgg=", "createTime": "2024-08-15 14:46:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.360266+00 2025-12-17 09:20:01.36027+00 27958 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pXl22kl4xoTkjBJtCTfVxxdhleo=", "createTime": "2024-08-15 14:46:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.362033+00 2025-12-17 09:20:01.362041+00 27959 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZHNeg7BVMu9Ujqjj3--lTPQQlDw=", "createTime": "2024-08-15 14:46:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.364018+00 2025-12-17 09:20:01.364023+00 27960 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cjZH2X0clCRF_6V34LJoG42VtVg=", "createTime": "2024-08-15 14:46:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.365856+00 2025-12-17 09:20:01.365862+00 27961 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VAuA3LE0XWRDi-JJprD5d01ESlg=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.367436+00 2025-12-17 09:20:01.367441+00 27962 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5EkvSc25kAczMvUUDaHrCBJXIG0=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.369103+00 2025-12-17 09:20:01.369108+00 27963 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e7sQAalQIdk3TdHP66hlUWtH2EQ=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.370927+00 2025-12-17 09:20:01.370932+00 27964 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7BgKf8k4JgzticIXS39QeOodA6s=", "createTime": "2024-08-15 14:46:23"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.37244+00 2025-12-17 09:20:01.372445+00 27965 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vQKcB0XCmDP3yFPTwZsxgBtViFA=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.374038+00 2025-12-17 09:20:01.374043+00 27966 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_imv2-LbeqmeV2XzzhpBpFr8jWs=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.375852+00 2025-12-17 09:20:01.375857+00 27967 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i-NROHZP3SfbLVOmzDi7PnVYbKc=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.37735+00 2025-12-17 09:20:01.377354+00 27968 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wxnERlNvbEhencbc9CRdSBllAvI=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.378821+00 2025-12-17 09:20:01.378825+00 27969 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j0Q_l6OuD7XB-ijAiCwrEWEUK8U=", "createTime": "2024-08-15 14:46:23"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.380377+00 2025-12-17 09:20:01.380383+00 27970 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bJ7ABrfjFE1I19csd8-HPFHGhrY=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.381967+00 2025-12-17 09:20:01.381972+00 27971 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xE7lwPYUaO8OKKXh4DNXYoLu7XY=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.383803+00 2025-12-17 09:20:01.383809+00 27972 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yo7kKNMf2LXKR0O_dsrSsY8d2CM=", "createTime": "2024-08-15 14:46:23"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.38552+00 2025-12-17 09:20:01.385525+00 27973 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8nJMqdhHP_5rN8f5o4vH6CfdRbg=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.387178+00 2025-12-17 09:20:01.387183+00 27974 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wCfiU-DFp1leI_2-XNNyJJSjhag=", "createTime": "2024-08-15 14:46:26"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.38907+00 2025-12-17 09:20:01.389075+00 27975 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w-jfmfYqrz4qPz3-csDZ538LAqw=", "createTime": "2024-08-15 14:46:26"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.390652+00 2025-12-17 09:20:01.390656+00 27976 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QCeJ-ErxgXHwo0FkQZVNdPMyzOE=", "createTime": "2024-08-15 14:46:26"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.392141+00 2025-12-17 09:20:01.392145+00 27977 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HdsHruQQfZ4EoBBHqyhB4wheOxo=", "createTime": "2024-08-15 14:46:26"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.393739+00 2025-12-17 09:20:01.393745+00 27978 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PQOD4qrUywIsaYC3qARTFO_cdB8=", "createTime": "2024-08-15 14:46:26"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.395305+00 2025-12-17 09:20:01.39531+00 27979 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7jM8GqF4DM8Kfn0HvpsMcX-6ydk=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:20:01.397047+00 2025-12-17 09:20:01.397053+00 27980 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=1766049600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y6AaEsx-QRwRGHJU40xPgT9MHGs=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.410969+00 2025-12-17 09:30:00.410979+00 27981 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OR1s4FQLOat9AEkw8ot2Nh7xgnw=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.413292+00 2025-12-17 09:30:00.413297+00 27982 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d5S1Ss2Y3HKdLJ0sEnu_OYg_OyI=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.415209+00 2025-12-17 09:30:00.415216+00 27983 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1xeeqQNz40qE6K59U1bYLns__Lo=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.416817+00 2025-12-17 09:30:00.416822+00 27984 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zORjHVmPn0XTcFwdHzBtf5vonrk=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.418624+00 2025-12-17 09:30:00.418629+00 27985 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t05XPEPCPOzfCiIZPa9WGYrEXig=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.420278+00 2025-12-17 09:30:00.420282+00 27986 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2WpQDRBIYTceLG6pd47S0njK0ag=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.42189+00 2025-12-17 09:30:00.421895+00 27987 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KkFTDx2ZzIBxpNWLwGxbv8-lWiA=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.423379+00 2025-12-17 09:30:00.423384+00 27988 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m0bBmB7jkXwTjQGEpjnP_qti_TU=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.424874+00 2025-12-17 09:30:00.424879+00 27989 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HC06zlfs4TGEYDSmyVnF7YSvKLk=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.432473+00 2025-12-17 09:30:00.432478+00 27994 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4088ApFdsLo3ZjczRYLOmksFG3I=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.426376+00 2025-12-17 09:30:00.42638+00 27990 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:21pFcd0Rgwx78g8fXzcWFInNYHo=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.427935+00 2025-12-17 09:30:00.42794+00 27991 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:enwqvhB8dh0l5tJYjp96omFKuBo=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.429466+00 2025-12-17 09:30:00.42947+00 27992 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:12bBbRa5UbdD7dznalDOFyZPKIs=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.430979+00 2025-12-17 09:30:00.430984+00 27993 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GPn6EupyisaVzMVBX8EYAK_6TQc=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.434155+00 2025-12-17 09:30:00.434162+00 27995 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gdClLVAb1ZExsyZH0MWAVHHp5lA=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.435995+00 2025-12-17 09:30:00.435999+00 27996 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YFmbEIUwAOmEYmfIBN8GTM9tHsQ=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.437543+00 2025-12-17 09:30:00.437549+00 27997 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zkZAcOSMLdUiG7BpBAU03TF4J78=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.439041+00 2025-12-17 09:30:00.439045+00 27998 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QqB4UNUhorXTCvz6l8-5kSqFvn0=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.440537+00 2025-12-17 09:30:00.440541+00 27999 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cjwntVnQRLmv4skVMbgSB8yVCf8=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.442029+00 2025-12-17 09:30:00.442034+00 28000 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:esddjUAlb4okhQyPfulwyrK0Idc=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.443507+00 2025-12-17 09:30:00.443512+00 28001 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sno-rVB9VQA40FyxX1yI2HL7qU8=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.445027+00 2025-12-17 09:30:00.445032+00 28002 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OlPTHEhFvnOsB6-ZCwNmX2UggxQ=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.446501+00 2025-12-17 09:30:00.446506+00 28003 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tNKwdXhxDY1RApFKlJ65_r6j1W8=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.447988+00 2025-12-17 09:30:00.447993+00 28004 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AuEeA6RqazVlqjDIoovqF7k1ti4=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.449619+00 2025-12-17 09:30:00.449624+00 28005 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e6wSIlmNRZouvLqr9nYTjS-j3K4=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.451279+00 2025-12-17 09:30:00.451285+00 28006 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-lBwD0UEMsCL92JYE-QuglJ7Hfk=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.4531+00 2025-12-17 09:30:00.453104+00 28007 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CQziw_Oiii-svd8pPVlD1OWJ_jc=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.454613+00 2025-12-17 09:30:00.454617+00 28008 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lSIBDSNu4aHP5v08fOxAa1KiCU0=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.456077+00 2025-12-17 09:30:00.456081+00 28009 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WfWf_a8xyMRTlcv-nW28NNM1Bx0=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.457581+00 2025-12-17 09:30:00.457585+00 28010 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MDSVDO91nDyyNQm-MbOR1VyuqWE=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.459072+00 2025-12-17 09:30:00.459076+00 28011 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xjFolQxDQAsUvMPS7CJ0JBMbGWk=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.460574+00 2025-12-17 09:30:00.460579+00 28012 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HeMiDVBJf23Oy_s9CRiQe6v7XvI=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.462234+00 2025-12-17 09:30:00.462238+00 28013 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZHK0lbRw9Yoa2kgm3fzIni_hwHE=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.463703+00 2025-12-17 09:30:00.463707+00 28014 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L8piAL4v2fVhO-w0Z_8wSulbA_A=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.465193+00 2025-12-17 09:30:00.465197+00 28015 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l8vRFYgHbPKoXrPr-axxsUeBLTI=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.466755+00 2025-12-17 09:30:00.46676+00 28016 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fLW0U4SAa3dRJBQJO93rXFIpDUc=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.468538+00 2025-12-17 09:30:00.468543+00 28017 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nwEBi6LC_4g1cGmman9Anqnu_PQ=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.470325+00 2025-12-17 09:30:00.470329+00 28018 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VsKi7lkHhxxNliYmhEywFcWwLkI=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.471859+00 2025-12-17 09:30:00.471864+00 28019 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fvgoMNEmGugaj-RqXCv6oEUx6OY=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.47334+00 2025-12-17 09:30:00.473345+00 28020 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:psSsWX2fEZ35IlMOzRsVau2MAt4=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.474827+00 2025-12-17 09:30:00.474831+00 28021 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yVUysAOpyNCDNb4gHLeOsMGX2FI=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.476311+00 2025-12-17 09:30:00.476315+00 28022 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FCHD4xow7PTUjLHu0GHS4e06ZjE=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.47781+00 2025-12-17 09:30:00.477814+00 28023 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xtIy4srS6s_WONSpTA9c6Qcjt9M=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.479277+00 2025-12-17 09:30:00.479282+00 28024 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7qBwqSTxyvC0W4gw_m18epvyklY=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.480768+00 2025-12-17 09:30:00.480773+00 28025 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7nLflPHZgZU34qkqt9rT_QDfbk4=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.482255+00 2025-12-17 09:30:00.48226+00 28026 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6ZW1vLaxZWPL2Xr7L2k-wZ5rN7s=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.483791+00 2025-12-17 09:30:00.483796+00 28027 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R0RFKmFhTpilw1RLIeHD6cw1ISA=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.485369+00 2025-12-17 09:30:00.485374+00 28028 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MORFJ8stJ0pd1UBsNGH4qzKV_AQ=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.486894+00 2025-12-17 09:30:00.486898+00 28029 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EM1gbcZeCTVNGmIO2vbE_bsTYCo=", "createTime": "2024-08-15 14:46:32"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.488675+00 2025-12-17 09:30:00.48868+00 28030 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BuxvSHkLWpvv3Vu7-1cEaryjRv0=", "createTime": "2024-08-15 14:46:32"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.490612+00 2025-12-17 09:30:00.490617+00 28031 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2r1bgKSByz0U-x-cSs-L21eotbY=", "createTime": "2024-08-15 14:46:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.492358+00 2025-12-17 09:30:00.492362+00 28032 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Omun4b6i4rXhwFHCky2un7CzK5E=", "createTime": "2024-08-15 14:46:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.493864+00 2025-12-17 09:30:00.493868+00 28033 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0JI1_yvnl9jqXMxk4zIPMhpQLI0=", "createTime": "2024-08-15 14:46:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.495361+00 2025-12-17 09:30:00.495365+00 28034 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mZUk3-XVZmkoDcOR4bIn0pChaok=", "createTime": "2024-08-15 14:46:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.49682+00 2025-12-17 09:30:00.496824+00 28035 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XufM0Db8v4YT_raeQloCVVeZ4vY=", "createTime": "2024-08-15 14:46:33"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.498285+00 2025-12-17 09:30:00.49829+00 28036 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wFx6ejRvryMICA7wNF4SmK8v7RY=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.499782+00 2025-12-17 09:30:00.499786+00 28037 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZF-c-kV99EsC4bB_2eGdDe8vHEA=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.501308+00 2025-12-17 09:30:00.501313+00 28038 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eJNDkTfU18jvRG8qDlkkLFLnFhE=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.502849+00 2025-12-17 09:30:00.502853+00 28039 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kDl0_b6S_39Q-s8xteiFl7pSePE=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.504338+00 2025-12-17 09:30:00.504342+00 28040 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7rQPowt0t-XmqL8Xt48tXTTtS7o=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.505861+00 2025-12-17 09:30:00.505866+00 28041 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H4J0oLiU1GVjE9gz-Bnq4_WekAU=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.507342+00 2025-12-17 09:30:00.507347+00 28042 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oU7LUfGka6SMCG7fl3_w6IKRidU=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.508832+00 2025-12-17 09:30:00.508837+00 28043 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h07J6FJLlCxXq0Mqou1ObpajpYA=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.510299+00 2025-12-17 09:30:00.510303+00 28044 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WxJ3IKF2-oPetZ0V3Zy6n0Y4oeo=", "createTime": "2024-08-15 14:46:36"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.511808+00 2025-12-17 09:30:00.511813+00 28045 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-p60Qe9fzcAosJX5S6nVO54o_MI=", "createTime": "2024-08-15 14:46:36"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.513571+00 2025-12-17 09:30:00.513575+00 28046 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XABcNc0UqECs2ViNX1M9WK53TEw=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.51507+00 2025-12-17 09:30:00.515074+00 28047 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gL0zwkxZACw6dAU9XElHf02nAqU=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.516554+00 2025-12-17 09:30:00.516559+00 28048 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SNgv5rxGUoSBx_Fkjm_aTSJYv2c=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.518151+00 2025-12-17 09:30:00.518156+00 28049 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x8JEME85ur7Zx-hVOc6qTHEQSh0=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.519811+00 2025-12-17 09:30:00.519817+00 28050 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w7kj6G-08jea2mvQMRm4cYT7r5Y=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.521774+00 2025-12-17 09:30:00.521779+00 28051 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WceUyrC_MFAVWRa4382Ncifuv2M=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.523542+00 2025-12-17 09:30:00.523546+00 28052 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YJwnBZVnuL1UTCFcNe8a4Avwpbw=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.525012+00 2025-12-17 09:30:00.525016+00 28053 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:km4GAREKYzRLpNKkNUdECYOJBPw=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.526512+00 2025-12-17 09:30:00.526518+00 28054 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oz9jhvo-Bw3U_U5PMeGEo4oO6lc=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.528061+00 2025-12-17 09:30:00.528065+00 28055 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XqBP19-pj9q2NSol0Iw0OBVL8v8=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.529536+00 2025-12-17 09:30:00.52954+00 28056 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9kUCv3N3qtwune_E4JVrV0aY3fQ=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.531038+00 2025-12-17 09:30:00.531042+00 28057 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KOSjCeTIQjP3lBgc8gNgvdIuLo8=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.532495+00 2025-12-17 09:30:00.5325+00 28058 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GIqDuuAsRrsz0BEJBpqKBsT76sc=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.534193+00 2025-12-17 09:30:00.534198+00 28059 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bZwTCJR57raiVSRPOBaFwCLCK4o=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.536045+00 2025-12-17 09:30:00.536049+00 28060 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LX217ZPuJGsY0e1wR-DdUGSPccQ=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.537936+00 2025-12-17 09:30:00.537942+00 28061 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2vnpHJ9nZMaS9ZadFxQqTSNqX2A=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.548604+00 2025-12-17 09:30:00.548609+00 28066 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t_hoi3uQVbW7MDfot_AomFrxpvw=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.540189+00 2025-12-17 09:30:00.540195+00 28062 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c8Hln-nWUxImRrEddfn_BEsU39w=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.542095+00 2025-12-17 09:30:00.5421+00 28063 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nungKnlnVimSHd_P7NrsUVHCwjQ=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.543889+00 2025-12-17 09:30:00.543894+00 28064 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o2JMmVGrmCa6QFe4MvuH1NnEa0M=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.546391+00 2025-12-17 09:30:00.546397+00 28065 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JpYSA-gWW4k4kj5KAekJSJkZOm4=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.550665+00 2025-12-17 09:30:00.55067+00 28067 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oP2YJD_b7_qB_BDRIFzux1xwySU=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.552393+00 2025-12-17 09:30:00.552398+00 28068 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PKbs0os-GpyOMY0Wkl9FUFbdnyU=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.553979+00 2025-12-17 09:30:00.553984+00 28069 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mo_XnnqkMcYhNPeDOSpwZIs9J2g=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.555574+00 2025-12-17 09:30:00.55558+00 28070 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aQQIuluwfIXeXofNg4Wvced_EhA=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.557289+00 2025-12-17 09:30:00.557294+00 28071 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CpXSPiDQzZdk7pDfm5MNfMjTGT0=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.559079+00 2025-12-17 09:30:00.559084+00 28072 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-QmUuzDXd9eQxhJlLldHKZgjvcE=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.560764+00 2025-12-17 09:30:00.560768+00 28073 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aSRb59pBQOV2U2Dgh0bwg6dQdSo=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.562266+00 2025-12-17 09:30:00.562271+00 28074 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EYRO165HnF7wTwsKrS8xkeL-fqM=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.563766+00 2025-12-17 09:30:00.56377+00 28075 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xl_kFsGqPCjpsPPYsIURrGU2h1E=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.565357+00 2025-12-17 09:30:00.565362+00 28076 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_RUy5TAnTQXJobdVB6MvGnPrktA=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.566908+00 2025-12-17 09:30:00.566913+00 28077 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QJe-gc2ZN9WwqE-CBLkT1D4enUc=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.568728+00 2025-12-17 09:30:00.568734+00 28078 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X3pp2XzBfP0I_26WNHxLAvfrhI4=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.570314+00 2025-12-17 09:30:00.570318+00 28079 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l91lznfA36k4AdcbJ7BZnlg5VG8=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.571875+00 2025-12-17 09:30:00.57188+00 28080 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=1766050199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Cqts5gvf8MH56hEnwMVkVV0fuY=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.956497+00 2025-12-17 09:30:00.956507+00 28081 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C27Vpp2KtjlbtBm6u1kScG6ioSY=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.95888+00 2025-12-17 09:30:00.958887+00 28082 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SI41qcZLpH33RlI5JKD7lMQW0tI=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.960751+00 2025-12-17 09:30:00.960756+00 28083 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X_6tGu-ale7LsvWEEDZYABPaGRI=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.962398+00 2025-12-17 09:30:00.962406+00 28084 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:24YdGBR2Ko0XXrmvPcyBC3UAvbQ=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.964324+00 2025-12-17 09:30:00.964329+00 28085 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S0rgOoT8Ip6X_kqxxU137kKhpCA=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.965945+00 2025-12-17 09:30:00.96595+00 28086 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RKOgYpMQOKXhhAuYP40LfhUXlUM=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.967943+00 2025-12-17 09:30:00.967952+00 28087 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mclD940YuEhicn9MoAPCshqmckk=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.971218+00 2025-12-17 09:30:00.971226+00 28088 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cPlSGol8mmi0RQL2Wzq0nwoqiM8=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.97375+00 2025-12-17 09:30:00.973755+00 28089 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PTo5edSnxWjH5pHsA5DmkkIygNY=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.975342+00 2025-12-17 09:30:00.975346+00 28090 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ObzCFBC-MR_r28vbLumiE7CJsBs=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.976842+00 2025-12-17 09:30:00.976847+00 28091 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fmiJZJAusKG27BoPWOJ3zW1Hbh8=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.978307+00 2025-12-17 09:30:00.978311+00 28092 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rqgwzFoRlCxEnUiX6V9puNZOZzA=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.979796+00 2025-12-17 09:30:00.9798+00 28093 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RylHmE_qXUcBHUH664Ql6RHB000=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.981386+00 2025-12-17 09:30:00.981392+00 28094 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l-xTOH-Z1kiUmYA9wd8FH6D7b8Y=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.982984+00 2025-12-17 09:30:00.982989+00 28095 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ebwgIIKGkYW9ysGssNt2VjzkhKg=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.984743+00 2025-12-17 09:30:00.984748+00 28096 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_rPq9PUuCCCapsawxvKDwRciJTU=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.986303+00 2025-12-17 09:30:00.986308+00 28097 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N6uNS5xWf61mWf2qSSBXXBmrxJk=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.98786+00 2025-12-17 09:30:00.987865+00 28098 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GYjVqQmhwZzXgW-KVj0pZ3tyyhI=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.989595+00 2025-12-17 09:30:00.9896+00 28099 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LBR-lbqLYnal_OKeKhSavxOb1u4=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.99124+00 2025-12-17 09:30:00.991245+00 28100 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:632h9C1GCIe8oYv76zIh5yWcQr8=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.993003+00 2025-12-17 09:30:00.993007+00 28101 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cCpVml-7_yB5ZuSGCFUxebaxKcs=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.994483+00 2025-12-17 09:30:00.994487+00 28102 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1VEjxF1uLzsEXPFYOT48GQp7HfY=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.995983+00 2025-12-17 09:30:00.995988+00 28103 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WA_3zZ9CE1JPSg0Q-xE5ZNqSfsA=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.997491+00 2025-12-17 09:30:00.997496+00 28104 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zVy_bDbCswUpv61MkAGAQ-HGDAY=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:00.999002+00 2025-12-17 09:30:00.999005+00 28105 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-sR5NS6T5W33xmmquRrji3r-jMI=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.000471+00 2025-12-17 09:30:01.000475+00 28106 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KYPg3om1Mkmda1e8ZIhxCpUjd30=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.001956+00 2025-12-17 09:30:01.00196+00 28107 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EOtbwv6lH-0tsn3bk65mRTXObnQ=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.003457+00 2025-12-17 09:30:01.003461+00 28108 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXo6I5bNdF9vjtZc_0Si1BS1-Ks=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.005021+00 2025-12-17 09:30:01.005027+00 28109 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dmm4OzBoKYcuEXr6IHyCDpQR8yE=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.006656+00 2025-12-17 09:30:01.00666+00 28110 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S_aMNY84gHWUSaQ-1A8M9U-5QW4=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.008203+00 2025-12-17 09:30:01.008208+00 28111 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hUN4lPY9vCMURlFaNV46G7cTSEk=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.009983+00 2025-12-17 09:30:01.009987+00 28112 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Ul1DzKewRTs6BQ8Txlwhb7a_NI=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.011538+00 2025-12-17 09:30:01.011543+00 28113 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:avz4MZ72Tax6jRqdpVTsZvL2DWk=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.013088+00 2025-12-17 09:30:01.013093+00 28114 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6b5yrvT6x5TT0vCQKxlnzov4OQ4=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.014721+00 2025-12-17 09:30:01.014726+00 28115 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mX34cfuDdiAcQg3OSbLS4lavxic=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.016321+00 2025-12-17 09:30:01.016326+00 28116 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:stPR0DD92LzM1lEINCMHgyqdmRQ=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.018105+00 2025-12-17 09:30:01.018109+00 28117 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TGcRNAftdyU0bIqpKmLoXL-yW84=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.019588+00 2025-12-17 09:30:01.019593+00 28118 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fXKoNcefw0-0yNDkDO4E1fBvolM=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.021093+00 2025-12-17 09:30:01.021097+00 28119 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:keszMtD_FpIFSdtxJUeNDMKwnSQ=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.022598+00 2025-12-17 09:30:01.022602+00 28120 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PvfDZJgXlq6FLfkHBN6fh4dhnpw=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.024109+00 2025-12-17 09:30:01.024113+00 28121 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BTyhM_sy8IbAw5QPFD1tpK-LwdA=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.025606+00 2025-12-17 09:30:01.025611+00 28122 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PeM8kxwErbWIt9e6teRFywhUnwM=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.027101+00 2025-12-17 09:30:01.027105+00 28123 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:smGui-6UWa-ckT9s-8rkHcb8vKQ=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.028592+00 2025-12-17 09:30:01.028598+00 28124 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WtGL0SBnhTHDLev3js8j2sYzcVo=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.030288+00 2025-12-17 09:30:01.030292+00 28125 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lKeI838wYOevTmu9JoxtYuU-gbs=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.031991+00 2025-12-17 09:30:01.031996+00 28126 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sItoVoEbWHn9_GWzkzCCrWutfhw=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.033608+00 2025-12-17 09:30:01.033617+00 28127 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XrDeaptiCjQEFp8zPXTL2Gmo0xE=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.035334+00 2025-12-17 09:30:01.035339+00 28128 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MZhl0N17pxLijxLU5Ir33woqajg=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.036892+00 2025-12-17 09:30:01.036897+00 28129 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1snlot5NXTAtajpjEzwgWhkBnXo=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.038391+00 2025-12-17 09:30:01.038395+00 28130 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tYoks1472CmcupTVA0swvo0oB2k=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.040012+00 2025-12-17 09:30:01.040017+00 28131 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jRlluKOY6p4PJjiJPhAekoMCDpc=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.041551+00 2025-12-17 09:30:01.041556+00 28132 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ZjtfOiOMNfE1ey_8wqQQkyRKpA=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.043307+00 2025-12-17 09:30:01.043312+00 28133 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1OxhdrUkEidnVTxTnZwR5te7Xj0=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.044828+00 2025-12-17 09:30:01.044833+00 28134 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mbx2XP1WijnpuBQgJLxqTNc3s7Q=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.046314+00 2025-12-17 09:30:01.046318+00 28135 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XsMAYb0mwMbjIWF8ZO9hned0or0=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.048098+00 2025-12-17 09:30:01.048104+00 28136 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GyfiTca6-89o3eIHp2f_R_BMAWw=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.049716+00 2025-12-17 09:30:01.049721+00 28137 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4zrdC7LMe4WijgbtZqpVi24gJ1Q=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.052329+00 2025-12-17 09:30:01.052338+00 28138 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n40nFPamuJrJRgsYo2RYJ1oCVd8=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.054399+00 2025-12-17 09:30:01.054404+00 28139 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gZ1OilZw-HU1XNwElFh7w3Mbpdw=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.055904+00 2025-12-17 09:30:01.055908+00 28140 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yw5FbE1SJFRriy_SOwOxqrZ3jV0=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.057435+00 2025-12-17 09:30:01.057439+00 28141 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MwnoITzM7KJCfs3F5SBjZa2bt5Y=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.059009+00 2025-12-17 09:30:01.059013+00 28142 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lTg-EEOPDqJFo3IA1CCZ2z7_O48=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.060509+00 2025-12-17 09:30:01.060513+00 28143 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AVOL1cNgpDM-NYuLyYYjPB74MJ4=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.062413+00 2025-12-17 09:30:01.062417+00 28144 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ofE3BvFG4MmuclpfYGhQtNI4unc=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.063976+00 2025-12-17 09:30:01.063981+00 28145 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2kCpeZ9Eq_PguTGRoVeVz-23W5Y=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.065642+00 2025-12-17 09:30:01.065647+00 28146 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g2UcbYI4QgT-wfqyCnkQtzPXSH0=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.068159+00 2025-12-17 09:30:01.068168+00 28147 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QzBkzhF_oOtwC27QOBLG8m5S7Kc=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.070901+00 2025-12-17 09:30:01.070909+00 28148 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WR2FTzLR_YKTjSwKOcaNivxNSQ8=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.07344+00 2025-12-17 09:30:01.073447+00 28149 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fVvNm-65l0dhzjiMNd_-1Zn5agQ=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.075791+00 2025-12-17 09:30:01.075799+00 28150 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kJA5PGr6WynV6lCQ737B7zIMgHA=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.078316+00 2025-12-17 09:30:01.078324+00 28151 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zNA3UXxJct_Q-o1S0d2BgfPaZGg=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.089905+00 2025-12-17 09:30:01.089911+00 28156 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:exa4XA8I3KDWzLC1zJ8MxF7Vwbk=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.08097+00 2025-12-17 09:30:01.080978+00 28152 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d_QoULFetSYdRnTiCAfu9rOvXKE=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.083547+00 2025-12-17 09:30:01.083555+00 28153 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yS6Mpf0c6SFyUPJK8Kx_xhMB1R8=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.086136+00 2025-12-17 09:30:01.086142+00 28154 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R6Q95iL89CqEv5U6S2amvvL-OI4=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.08811+00 2025-12-17 09:30:01.088116+00 28155 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8bAuqT1uoB0vOACuD-Wq8LLjva4=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.091797+00 2025-12-17 09:30:01.091802+00 28157 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:49FCVf6k67Om3FFP8PpY07I9qok=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.09363+00 2025-12-17 09:30:01.093635+00 28158 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9nGfymxpgmr5m--Nh-omrJ_n9Pc=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.095198+00 2025-12-17 09:30:01.095203+00 28159 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ILeFsP8I6jD3AiFP-uq8agHx3qs=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.096733+00 2025-12-17 09:30:01.096738+00 28160 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lS1y4x1f4J2oQjpihrAuNNGIzGE=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.099947+00 2025-12-17 09:30:01.099953+00 28162 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ceAH7Vzso-eZfbMUQsMvJ9al2Qc=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.098241+00 2025-12-17 09:30:01.098246+00 28161 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ATOG0YNc08zEedJjAPUvP0SHHE=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.103962+00 2025-12-17 09:30:01.103968+00 28163 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lkqqUokPZ0XNRFHLoRtGkPyiA9s=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.393007+00 2025-12-17 11:20:00.393015+00 30172 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lmGH7RItMtx_UMRd0eGRzLBoxCo=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.105774+00 2025-12-17 09:30:01.105778+00 28164 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XvCWNXyJqwn99vT4EKYsZB6XNAs=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.107339+00 2025-12-17 09:30:01.107344+00 28165 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VYi5RjMcQJsqMI-JwBcQQsc_Qxk=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.108851+00 2025-12-17 09:30:01.108855+00 28166 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2nR3RgrYxGCzBetttlJEYbqjF90=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.110332+00 2025-12-17 09:30:01.110337+00 28167 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3T3I0XXCKhnuCjZNmPtrbmB_J_A=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.111867+00 2025-12-17 09:30:01.111872+00 28168 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aDT03Li1w4gTxcu1vHrHoaKvEZc=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.113454+00 2025-12-17 09:30:01.11346+00 28169 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:REocW2P8POccZf92GZCULlB1kWU=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.115188+00 2025-12-17 09:30:01.115193+00 28170 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P3HH1cK2SZv6oyJhWjoTRHaRoLY=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.11693+00 2025-12-17 09:30:01.116934+00 28171 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVpsvlXUocYJHWQdGpPeJbz6DzY=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.118443+00 2025-12-17 09:30:01.118448+00 28172 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q3fCnngByXrI8jYS92t_EaBUqbE=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.119979+00 2025-12-17 09:30:01.119984+00 28173 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R8O68O1VWLbnJ_JTe-q8BMkTh8o=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.121474+00 2025-12-17 09:30:01.121479+00 28174 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S3UXDD5xTRNjFh2LxSQ65HgWPI4=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.123022+00 2025-12-17 09:30:01.123026+00 28175 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SewAkkquDQCFxrW0GYvJb5mSulI=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.124825+00 2025-12-17 09:30:01.124829+00 28176 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bD9nwVZeDexZX0EFlv7Ye1APkdE=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.126491+00 2025-12-17 09:30:01.126496+00 28177 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y1fAt9hGHAZ8a3eVXOnVaDXy8JY=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.128072+00 2025-12-17 09:30:01.128076+00 28178 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xAPLyaiT5UyeR4PtDmrssTTDf2Q=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:30:01.129858+00 2025-12-17 09:30:01.129863+00 28179 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=1766050200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vAZH5tR9eRh5JkBPsWQjhywJv6s=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.389896+00 2025-12-17 09:40:00.389907+00 28180 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zesGWRC_znKgs_BGFk2_vyIZrQE=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.393454+00 2025-12-17 09:40:00.39346+00 28181 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QXZryO7aIz6bWrrXF4waX5qLyyU=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.395673+00 2025-12-17 09:40:00.395678+00 28182 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VPBz3Dxb18d0NTwWn4zubP3nt1M=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.397702+00 2025-12-17 09:40:00.397706+00 28183 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5CyU-IRLx1vglN966neXqNh8FKY=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.399268+00 2025-12-17 09:40:00.399273+00 28184 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wQB8o4ed8IA4UyC25AdS8jJFPQA=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.401267+00 2025-12-17 09:40:00.401272+00 28185 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0d4l2YViL6GbqHfN_DCWwvFFfNM=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.403222+00 2025-12-17 09:40:00.403227+00 28186 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vlyBy9Kw2c7bgJ0bfTjnfIhDtr8=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.40508+00 2025-12-17 09:40:00.405085+00 28187 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-NWnO8K9M7W_i3Z7CDCzugChyPc=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.406924+00 2025-12-17 09:40:00.406929+00 28188 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_4WgMGqThWi6zHk2JTVNhrc4mso=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.408553+00 2025-12-17 09:40:00.408558+00 28189 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2551UR0k7n-WufI-deGQwyrwGRM=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.410108+00 2025-12-17 09:40:00.410112+00 28190 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:avbcO-fh_V9NjDF7TkqBl7pOLbU=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.411988+00 2025-12-17 09:40:00.411996+00 28191 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zE68hQfKcoB2JRFLKFe5wGZ0tUg=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.413666+00 2025-12-17 09:40:00.413671+00 28192 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e6ulh0DbiwtldeN66hLBLhwPGLU=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.415233+00 2025-12-17 09:40:00.415238+00 28193 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B5-_tcizhGZUMMr7un_hdC_6KEc=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.41675+00 2025-12-17 09:40:00.416755+00 28194 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P7zx1YzTa0gBRxKHAXQlfAVErd0=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.418228+00 2025-12-17 09:40:00.418232+00 28195 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lkO5QGrEsPjKnpMScv_gs87ROm4=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.421022+00 2025-12-17 09:40:00.421028+00 28196 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3CNdMXbl8mPz0NcGIKsDm-s5qKY=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.422922+00 2025-12-17 09:40:00.422927+00 28197 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TyUF3ZXQW68PKGgOFrOdmTN8Hsg=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.424558+00 2025-12-17 09:40:00.424569+00 28198 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5AJi5AW4hZxYhkAUkCfx2-BWLIU=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.426679+00 2025-12-17 09:40:00.426684+00 28199 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:duuD3RnjngsDiN7VYkxF4R1nwBM=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.428545+00 2025-12-17 09:40:00.428553+00 28200 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UwwA3v7JSuYPcE9x3lzE7NiPC68=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.430479+00 2025-12-17 09:40:00.430484+00 28201 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p0ivbWKX50WV7s03AxtLKjCl3AM=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.432292+00 2025-12-17 09:40:00.432297+00 28202 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:etV7FsLc4kXVaaIWej9KANeuklM=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.433931+00 2025-12-17 09:40:00.433939+00 28203 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EwOaMqJzrnM9-mhe_XoIpCNsk8c=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.435853+00 2025-12-17 09:40:00.43586+00 28204 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ATcwHZfaey5qn3-boo-l-7x-1aU=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.437868+00 2025-12-17 09:40:00.437873+00 28205 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M29PxnjCvK9QyBlBgKQ65LvSKvY=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.439738+00 2025-12-17 09:40:00.439743+00 28206 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ojnhbA5rJJH-EVxZE2W_jfCM1k=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.441718+00 2025-12-17 09:40:00.441722+00 28207 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QkmCS9xjADxLvr0nloozYqNOrz0=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.443631+00 2025-12-17 09:40:00.443638+00 28208 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WaYUhriV6RFSsaBBWe78fuLd5bc=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.445648+00 2025-12-17 09:40:00.445654+00 28209 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RCfubAPLoaVMjKiTTZWH55cJnvw=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.447765+00 2025-12-17 09:40:00.447776+00 28210 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZSZEITbsyIhu2SX0dc9m3aflLNk=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.450899+00 2025-12-17 09:40:00.450908+00 28211 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RrWHkIhdTugMN6ibknsuQmWmGes=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.453846+00 2025-12-17 09:40:00.453853+00 28212 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RsQoA0KuWwn7ZCx0ritRkFvLc-o=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.456067+00 2025-12-17 09:40:00.456074+00 28213 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:00BXXmuUzsifTJQX2sJR6TmmKwk=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.458073+00 2025-12-17 09:40:00.458079+00 28214 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C6LXDMeq4mAd5lsdLDKo8BF4Pw8=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.459956+00 2025-12-17 09:40:00.459961+00 28215 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pKFr1ldGpk1LSde95Hs5smfe8wY=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.461539+00 2025-12-17 09:40:00.461545+00 28216 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KBmWeyxtDrVtlfVpmwh9tRSkcj8=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.463143+00 2025-12-17 09:40:00.463149+00 28217 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZIHGh5QZOnue8N9WE8sL-f5exxk=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.46481+00 2025-12-17 09:40:00.464816+00 28218 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tzFje1iKx6_2jU4PMcobVdPTJuk=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.466595+00 2025-12-17 09:40:00.4666+00 28219 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0HcDPzdfd7g5H7BarNmhbO2i1vU=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.468487+00 2025-12-17 09:40:00.468494+00 28220 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UvVBlSrK_Bwu-3buWcQUxK3eHSw=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.470383+00 2025-12-17 09:40:00.470388+00 28221 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RwJsvBKLjNCJ5ODbkewH9sKkMNo=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.472092+00 2025-12-17 09:40:00.472097+00 28222 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pQ6_rRhOlKCyNZ67Psi2NjhShYA=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.473908+00 2025-12-17 09:40:00.473912+00 28223 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BP96KD_ch7jGmihiLQ2anTo2-pc=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.475636+00 2025-12-17 09:40:00.475643+00 28224 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wE4QmWy-9pn-fFDplDT12wQaOSo=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.477594+00 2025-12-17 09:40:00.477599+00 28225 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7TIm_2Is6RnsELVGVE6sBSAhJsA=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.479379+00 2025-12-17 09:40:00.479384+00 28226 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YZwqOmhV0MhLx6AIhkyQVijBAik=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.48122+00 2025-12-17 09:40:00.481225+00 28227 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N6iTy_vFhTXWiSZoJjzJH7oeaBc=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.483157+00 2025-12-17 09:40:00.483161+00 28228 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1l54i42V0vgynCj4PGQ4U9RPiCA=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.484723+00 2025-12-17 09:40:00.484729+00 28229 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:253BB2UttorLM1ARSnPLz8uEtS4=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.486277+00 2025-12-17 09:40:00.486282+00 28230 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UYg4xQiKxjmZvocLMIX7ohvb6uc=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.488131+00 2025-12-17 09:40:00.488135+00 28231 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z4rWYfNahH36tRgLCa0gX97IdWI=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.489641+00 2025-12-17 09:40:00.489646+00 28232 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:noCseMiDvSFVClXX3caUe4e2Wlk=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.491148+00 2025-12-17 09:40:00.491153+00 28233 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zbkDhvLWU26g7yGWSvdX_UU_ThE=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.492927+00 2025-12-17 09:40:00.492933+00 28234 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vSc_QLEx-H7WgOjP12CJg2AsZuI=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.494845+00 2025-12-17 09:40:00.494849+00 28235 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CI0-9lXHJpOY14k7tYF1NpqBeIc=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.496803+00 2025-12-17 09:40:00.496808+00 28236 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-PbZiF1e4Cd0C9YI5lIzIF4Rld4=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.498441+00 2025-12-17 09:40:00.498446+00 28237 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ikc2HAmCoCBzRshmKngir6LljMw=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.500003+00 2025-12-17 09:40:00.500008+00 28238 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EItekD_eNrt6VUlLFON1lJZpVqo=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.502054+00 2025-12-17 09:40:00.502059+00 28239 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5gkDh3fN_Cl9NlWosl4G6G0LWM4=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.503814+00 2025-12-17 09:40:00.503818+00 28240 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LwnPo6S7vh4bXsLqZKy2U7KOKHg=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.506152+00 2025-12-17 09:40:00.506157+00 28241 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ndvfXcmYCESCZWps6wGc6aERhgs=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.508263+00 2025-12-17 09:40:00.508268+00 28242 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s-BgKbHHJsJxIFtIlLr6TSb-MuY=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.51007+00 2025-12-17 09:40:00.510074+00 28243 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X5mZCcN_E5Mm5uIKsSYvy6bHhZA=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.512389+00 2025-12-17 09:40:00.512396+00 28244 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4gmKtxkFbirpeu4eGp3n_PEsKkM=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.513973+00 2025-12-17 09:40:00.513978+00 28245 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZSxFoIEJkszE0KPc7xzC1cPxQLI=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.515548+00 2025-12-17 09:40:00.515552+00 28246 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8hbxSxmY_ONDl7akz2Y7muv436A=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.517377+00 2025-12-17 09:40:00.517382+00 28247 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SeiWWSG_e7O1z5OHWi8XRglMsUY=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.518923+00 2025-12-17 09:40:00.518927+00 28248 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RjlSLBF-znaNV0zTr5tVZGwU8Qw=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.520462+00 2025-12-17 09:40:00.520467+00 28249 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0wQiAn57_Vt0aD42PIeXShipwHA=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.522071+00 2025-12-17 09:40:00.522076+00 28250 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZG1PVlgRJat-eEnml6mtTTcQ8U=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.52357+00 2025-12-17 09:40:00.523574+00 28251 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OLlutVMCmME7IYl6Fj8UAgClR0Q=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.525516+00 2025-12-17 09:40:00.525521+00 28252 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kyhYuqLJHmv-yF-sFeN6GHhh_A4=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.527273+00 2025-12-17 09:40:00.527278+00 28253 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mNrgdcr0XEgFi0vuKSPZhzYwzao=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.529113+00 2025-12-17 09:40:00.529117+00 28254 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FG8mPaoZXomngitinxF68UB23kw=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.530932+00 2025-12-17 09:40:00.530936+00 28255 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ybdegSQR6HoCs1wRzBP93XLoTjI=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.532633+00 2025-12-17 09:40:00.532639+00 28256 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8MggJUy0dlmwaNbb9IFBZBPQ6fg=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.534396+00 2025-12-17 09:40:00.5344+00 28257 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TKLz2MOZX9ymOpwPxBRpbSm6S1A=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.536195+00 2025-12-17 09:40:00.536199+00 28258 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xkWGIC1T_660HESf5KgoZcc99VQ=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.539059+00 2025-12-17 09:40:00.539067+00 28259 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HYx2ucT24u4vRtsSqNd4WkKMww4=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.541796+00 2025-12-17 09:40:00.541801+00 28260 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y3y1-irVPpdEWskd4uSf3mmMsa8=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.543723+00 2025-12-17 09:40:00.543728+00 28261 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dJNqjdSlk7CxFihn6u-m4W6RMao=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.545593+00 2025-12-17 09:40:00.545599+00 28262 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-vuzIk5M-BPddvyJtqF2zNgwKpk=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.547773+00 2025-12-17 09:40:00.547778+00 28263 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vbhCcEOJOWrMcS1xUBRYdhaeEpk=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.549355+00 2025-12-17 09:40:00.549359+00 28264 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bT2AB5yywv8MelcNstGSvo3WF7E=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.551316+00 2025-12-17 09:40:00.551321+00 28265 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tN6-FP1mTcxX2KdjvdOESlCbZnE=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.552915+00 2025-12-17 09:40:00.55292+00 28266 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pGmM4RIiWjimcc55t-S6OVO-Y-0=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.554616+00 2025-12-17 09:40:00.554621+00 28267 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c9N6SXi15WQnHugVv_1fXiTb4NY=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.55683+00 2025-12-17 09:40:00.556835+00 28268 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HxhWeDqHdJUxdPIJC0EMGzlLUtc=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.558397+00 2025-12-17 09:40:00.558401+00 28269 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ybesIWRlEK5KN9hkzl1Frn1kyos=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.559898+00 2025-12-17 09:40:00.559903+00 28270 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SFSchSHOieT7ntzEYg7T4kjE6W4=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.562135+00 2025-12-17 09:40:00.562141+00 28271 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8muPMdGU836NBNj4aDfi50SJOdM=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.564949+00 2025-12-17 09:40:00.564957+00 28272 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:stwQEcALehaxaZl2NJ-VYycx0EU=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.567462+00 2025-12-17 09:40:00.567466+00 28273 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nojtCM__hbAKR-3l0YZU3SgPUYo=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.56945+00 2025-12-17 09:40:00.569455+00 28274 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dOQUHedXrtrviYSC7IfIWzbA_fY=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.571006+00 2025-12-17 09:40:00.571011+00 28275 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KZiUUTk6Kmm6r7_--TZVKe2MARQ=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.572908+00 2025-12-17 09:40:00.572913+00 28276 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vKI9jDiDNQlqPazi-bROzvhzohY=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.57445+00 2025-12-17 09:40:00.574454+00 28277 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2A-2XOWPH7-L2pRG4YZYRdztOXE=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.575997+00 2025-12-17 09:40:00.576001+00 28278 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dfFaUyYI356ac4NiAw7520U4Clk=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.578081+00 2025-12-17 09:40:00.578087+00 28279 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=1766050799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JS7o2Mb3od-RwcDLkGzfWDD37aE=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.948261+00 2025-12-17 09:40:00.948271+00 28280 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:savQ3pfvVxSPVgHJjyYmyNw43Oc=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.950833+00 2025-12-17 09:40:00.950838+00 28281 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:teOnqvk6dIm0LPWN9btEbSEP8r0=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.952707+00 2025-12-17 09:40:00.952715+00 28282 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bEIF02dLl4HuaQAZ52FgmuDSB0g=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.954365+00 2025-12-17 09:40:00.95437+00 28283 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vT7WuafsRpH7SzdZ7kjSzKsjeSE=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.955901+00 2025-12-17 09:40:00.955908+00 28284 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qqePD8qaEGYvjSyW5XIkpUrfeVE=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.95821+00 2025-12-17 09:40:00.958217+00 28285 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pqz25ubYgVYUbKoJVpCHwNzWSdU=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.960039+00 2025-12-17 09:40:00.960044+00 28286 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sm0l84S6LAc2Cu4nvdn2LipGjzU=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.961711+00 2025-12-17 09:40:00.961716+00 28287 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QEoZsib_e9Wz9s8VmDGXwKrBt5I=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.965457+00 2025-12-17 09:40:00.965461+00 28289 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JP_lHT-A_IBG2LVxdq3ofYcgDYY=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.963808+00 2025-12-17 09:40:00.963813+00 28288 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JoBgnOEGqg0ElWcf5kOenafZO8g=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.969521+00 2025-12-17 09:40:00.969526+00 28290 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7LoQts6Vf7anCpOcFXu3CS7EWWg=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.395365+00 2025-12-17 11:20:00.395371+00 30173 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5bFsEYvAM_yWZvides80vNyKZt8=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.971448+00 2025-12-17 09:40:00.971453+00 28291 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mMWhlEi7d1q9YP7GkoiICVLtYnU=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.97354+00 2025-12-17 09:40:00.973546+00 28292 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KPTNvSjazbGjxIqyJ9meHOpcKeE=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.975644+00 2025-12-17 09:40:00.975649+00 28293 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:phsZfgIqOdtJZImwUlCdwpYb5wI=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.9777+00 2025-12-17 09:40:00.977705+00 28294 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ESQUZVi-cQllB6UD3J9KS38KzcQ=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.979766+00 2025-12-17 09:40:00.97977+00 28295 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ooVT0pUrDdwn3fZS9odkTZ-Agk=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.981616+00 2025-12-17 09:40:00.981621+00 28296 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FKzqV7cUXgF3RWH-Ce6CFiCuYyo=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.983652+00 2025-12-17 09:40:00.983656+00 28297 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NEUfNd88SfA5XCAjsz6hzz_qRT4=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.986009+00 2025-12-17 09:40:00.986015+00 28298 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pVR4h9F5eIyP6SI3VNy3oD4Z2CI=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.988209+00 2025-12-17 09:40:00.988213+00 28299 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bKppobeO9cKmU1amwLdeqVlXDrA=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.990135+00 2025-12-17 09:40:00.990139+00 28300 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GJmp0MpfPD7nxkdBt4M7yDKtKCw=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.991669+00 2025-12-17 09:40:00.991673+00 28301 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3FxzOIGRzF6PyCvW9CjSBtm9Sww=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.99352+00 2025-12-17 09:40:00.993525+00 28302 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4PUyqVwDRizm7mCbugydkiNmbgo=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.995549+00 2025-12-17 09:40:00.995554+00 28303 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lmP0cPojeM78IFrPiG5juhZEGVg=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.997646+00 2025-12-17 09:40:00.997651+00 28304 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hynWgfPe6yPkaptYu_ENV4_U-8U=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:00.999617+00 2025-12-17 09:40:00.999622+00 28305 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ma6mbJS9v2I-ADYFGJpAcamCY38=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.001406+00 2025-12-17 09:40:01.001411+00 28306 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p9oyQ5d9Ru519hJjBSmrfdNum00=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.003108+00 2025-12-17 09:40:01.003112+00 28307 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6GAn9TLz5Ei7UESNGuhZyrP2sn0=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.005255+00 2025-12-17 09:40:01.005261+00 28308 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kg8A3Vf6zlXCl8ZKqEN1gbXNjWk=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.006954+00 2025-12-17 09:40:01.00696+00 28309 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gmLkOhSUyStLC2iZQEqes1545-s=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.008712+00 2025-12-17 09:40:01.008717+00 28310 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lm94p0KMkgQdU8Yp1ntQIeXrFL4=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.010516+00 2025-12-17 09:40:01.01052+00 28311 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bDgC1lV7wOtesPf8k6UAm4wo7AQ=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.012052+00 2025-12-17 09:40:01.012057+00 28312 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-noTFa5UDuxmAHnxwDabJxsb2G4=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.013893+00 2025-12-17 09:40:01.013898+00 28313 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rexZkC6VPXae6r9fVm5QnnNmJTU=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.015885+00 2025-12-17 09:40:01.01589+00 28314 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_20EbvortLQ1PmywmrtINfwetGE=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.01768+00 2025-12-17 09:40:01.017684+00 28315 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cGmcJg1F84wJrs98wCG7UVDCn4g=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.019578+00 2025-12-17 09:40:01.019583+00 28316 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qpp0ak8Kc0COuA4JFrtwO3ndNz8=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.021194+00 2025-12-17 09:40:01.021199+00 28317 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cmJAA5c9CI8uJA2yIUXO4eBaF-E=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.022837+00 2025-12-17 09:40:01.022842+00 28318 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IwOLOD9K3PdCmVf2VP_yFOV08hU=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.024746+00 2025-12-17 09:40:01.024751+00 28319 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g0MhpjPD6TLYvVaLA4CjRFCfHhg=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.026322+00 2025-12-17 09:40:01.026327+00 28320 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4SF1R44d0h-q_wruvviDajQbakI=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.027818+00 2025-12-17 09:40:01.027823+00 28321 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tc59RFXrsAO929PGuJ4GiGj_vm8=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.029309+00 2025-12-17 09:40:01.029313+00 28322 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VcIZikyavRBZ_BZVncHSINXMc-4=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.030811+00 2025-12-17 09:40:01.030816+00 28323 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZHah1nyRz02E4X6t0_beyXqTxwg=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.032626+00 2025-12-17 09:40:01.032631+00 28324 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QZosVO2Ea_AzsA04m5rtG2nM7Pc=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.03433+00 2025-12-17 09:40:01.034335+00 28325 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XrWt183BdwjNRw6PGowIjj8wfAo=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.035912+00 2025-12-17 09:40:01.035917+00 28326 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zgW2WKj-C9n20u7EJUGEgiaxfhE=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.037712+00 2025-12-17 09:40:01.037716+00 28327 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wjPiJRsdV9dR6bP0_uXbvjeqJ0E=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.039395+00 2025-12-17 09:40:01.0394+00 28328 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AU7p4nTq6i0JC4FJNedGGl3u5yE=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.040991+00 2025-12-17 09:40:01.040995+00 28329 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eni-SYrG1_KSdIjKG2JXlKFDW3o=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.04309+00 2025-12-17 09:40:01.043095+00 28330 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rakZ7nyUst_L8RWxQAIY44dMKhg=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.04498+00 2025-12-17 09:40:01.044985+00 28331 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gf_RvajYIo-MOQ6EI6hVcLc88uw=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.047394+00 2025-12-17 09:40:01.047398+00 28332 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BxUtuz_ZzT4VD7ugCHOQOGQ7JM8=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.048961+00 2025-12-17 09:40:01.048966+00 28333 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KXhsi3CiyBxiryb8iUrPoCA4ihQ=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.050555+00 2025-12-17 09:40:01.050561+00 28334 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n3x4l2mJ-Qpf2WdoYDyAScX30BU=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.052562+00 2025-12-17 09:40:01.052571+00 28335 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rg818C6PXPxeSHDclKDo-FJ--Z4=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.054124+00 2025-12-17 09:40:01.054129+00 28336 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IiqotGQPFeHTIDZtbVrIMEuEXl4=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.055939+00 2025-12-17 09:40:01.055944+00 28337 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V8HL-HlNXDw0RjNnsYQE9frUQbI=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.057557+00 2025-12-17 09:40:01.05757+00 28338 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KvUh5txTNFnIOqfN30lwoYpXzpg=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.076041+00 2025-12-17 09:40:01.076048+00 28347 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eJwsDI-b9DsOnufU6hX5gCoofVc=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.059502+00 2025-12-17 09:40:01.059507+00 28339 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:srIug12igJLGGFMlnGhqCmxjMzY=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.062039+00 2025-12-17 09:40:01.062045+00 28340 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b1vHMDj5zbPNkwlVUsuXiev38EA=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.063711+00 2025-12-17 09:40:01.063716+00 28341 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p-DVUk3X1CbJFRG6hHZLu8U62SM=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.06527+00 2025-12-17 09:40:01.065276+00 28342 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-5rwB15xLOTJxmi77KBhy1NpJMU=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.067405+00 2025-12-17 09:40:01.067411+00 28343 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XuLYrrVSZY3DVkEAbsq5lCOJoJI=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.069511+00 2025-12-17 09:40:01.069518+00 28344 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v8wS-2baERPm65sTft9q9dnhwR4=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.072047+00 2025-12-17 09:40:01.072053+00 28345 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HG5d1LwFUkb8ZTbUX1UR8x9-hBU=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.074059+00 2025-12-17 09:40:01.074064+00 28346 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2tYvF8a1u3Zh93TyqilUcHfmqMk=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.078141+00 2025-12-17 09:40:01.078146+00 28348 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:axjGG6SE225VGf5ryd1AdhqgkPE=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.079755+00 2025-12-17 09:40:01.079759+00 28349 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8W9EEl2wIA1qbLYflfEDcqq1b3o=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.081343+00 2025-12-17 09:40:01.081347+00 28350 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pjD7XwAUNqvOTk6jGq7fOg3gzv4=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.083472+00 2025-12-17 09:40:01.083478+00 28351 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FL6WxmD06nH2y323tkGlXd7lAOA=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.085303+00 2025-12-17 09:40:01.085307+00 28352 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QwykdD_CXyg5c7NmJAVBOLbDswA=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.087653+00 2025-12-17 09:40:01.08766+00 28353 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AtOpVnzv-Z5yHNEDr0IzfvK8Cdo=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.089651+00 2025-12-17 09:40:01.089656+00 28354 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:svY6-mDPsuol5UJEWsF7rDwQ1cc=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.091732+00 2025-12-17 09:40:01.091737+00 28355 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MaAggp3VkklZOwVEkPe1qH8_cqc=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.094303+00 2025-12-17 09:40:01.09431+00 28356 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rtTGu17awPV8P1-RJm-glazOXNE=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.097112+00 2025-12-17 09:40:01.097122+00 28357 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YFIrH7vHiWuhwbxZDNaYUY36bS0=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.10017+00 2025-12-17 09:40:01.100176+00 28358 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NVnmYzUuYAdboG7QHOoc-1FK2HM=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.10256+00 2025-12-17 09:40:01.102569+00 28359 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:253ZCqgWFrf6CbGjvFvPuO2cE60=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.104647+00 2025-12-17 09:40:01.104652+00 28360 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OOpd6W3pPpBYfhE0JxCyqUpyzfU=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.106545+00 2025-12-17 09:40:01.106549+00 28361 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sfRvn3n5Tc-AqJ2RYMz5hwqWT90=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.108285+00 2025-12-17 09:40:01.10829+00 28362 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oIOwhXpLoz1ys-1zlggm15Stmds=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.109813+00 2025-12-17 09:40:01.109817+00 28363 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YYO5CcVLrGQh8SYzeGGOaGzWdXo=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.111654+00 2025-12-17 09:40:01.11166+00 28364 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zJlxV7pscmHV612rRb-xKnibjiY=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.113561+00 2025-12-17 09:40:01.113572+00 28365 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kyF3eMOzn7QkNnDa0bhxJ8YwpSw=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.115421+00 2025-12-17 09:40:01.115426+00 28366 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NNk8Z9aJpAF1A3N4GV8NeAwuhiU=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.117324+00 2025-12-17 09:40:01.117328+00 28367 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bbdN9v_cI10c6NpvJQnlnLSuWh4=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.119161+00 2025-12-17 09:40:01.119167+00 28368 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UKyWu8iyIDScQAAUO6l1uiMwA0c=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.120812+00 2025-12-17 09:40:01.120817+00 28369 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7jdlKktZgdj8zEBOFUzSTgf10Gc=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.122402+00 2025-12-17 09:40:01.122407+00 28370 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u2rR1Y0u7bVEoCsVZSrCk4nPABI=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.123926+00 2025-12-17 09:40:01.12393+00 28371 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a1JV3IZ4zvyeifIgnOZSRBES8dM=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.125702+00 2025-12-17 09:40:01.125706+00 28372 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:STQJGEkO2JHyb_RFYBdko16eLbE=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.127607+00 2025-12-17 09:40:01.127613+00 28373 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wbqOM47isHWpLO-YvmEIdKNCf8I=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.129641+00 2025-12-17 09:40:01.129646+00 28374 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ODf04wYlSWR9FUgpDwA8s5JDMEA=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.131845+00 2025-12-17 09:40:01.13185+00 28375 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ry_j_mMtMa6J4RtTwQ89SLEvlFg=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.133649+00 2025-12-17 09:40:01.133654+00 28376 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mpTOi4xonBDsqdrDRP2DEtt71Nc=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.135184+00 2025-12-17 09:40:01.135189+00 28377 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rLKxXkUba3QcfPIzGavLW8pKN44=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N +2025-12-17 09:40:01.136851+00 2025-12-17 09:40:01.136856+00 28378 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=1766050800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wJq8B0Q3IFXoNrBW-UF-zX0tinA=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.615016+00 2025-12-17 09:50:00.615027+00 28379 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z0YsUp-y5ZH9Y6_LLMXqZiNSNjY=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.618605+00 2025-12-17 09:50:00.618611+00 28380 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ljfN0tmioPDVmmMVV32NFH6qVj4=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.620323+00 2025-12-17 09:50:00.620327+00 28381 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TzC3lpC8alufdH1NWgqDb1vfL8E=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.622215+00 2025-12-17 09:50:00.62222+00 28382 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HuY1zQYdZztROXUEN5J9o3fmDWY=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.623822+00 2025-12-17 09:50:00.623827+00 28383 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IUvwUtO-i2T7-7gFE64tz07qVCk=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.626318+00 2025-12-17 09:50:00.626323+00 28384 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xKDk18j5pPxbJgtAc-CCkEJFiGs=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.627986+00 2025-12-17 09:50:00.627991+00 28385 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RkTHuwdGfWvWhm_IUGlAu8rwbPQ=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.629751+00 2025-12-17 09:50:00.629755+00 28386 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2GRJF4uYnSlcvSFg35GQ-zqVbBY=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.631555+00 2025-12-17 09:50:00.631559+00 28387 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sbdzoUlcYb33SZBnYRvD9wwcg70=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.633019+00 2025-12-17 09:50:00.633023+00 28388 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:im7OuNde3k0q29wloacpS5scgcw=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.6345+00 2025-12-17 09:50:00.634504+00 28389 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eN4RHDuLn-yr_efS9Cfx7bGXFH0=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.635992+00 2025-12-17 09:50:00.635997+00 28390 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y2IUgq0C53Nn4cGyxIq-7mByzFs=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.63768+00 2025-12-17 09:50:00.637684+00 28391 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I0qKc3TCzm7SYLvfFzY8XrqPyOc=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.639406+00 2025-12-17 09:50:00.63941+00 28392 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z5KcWF82Fq30n7fFRgWHy0kDdNs=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.640881+00 2025-12-17 09:50:00.640886+00 28393 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0iNv3iA0Jb-An_ITzlhNhRvbDyE=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.642344+00 2025-12-17 09:50:00.642349+00 28394 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NovJ_qWnshEHa8t8gGpSGPXq7d4=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.644162+00 2025-12-17 09:50:00.644167+00 28395 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RwJKKlWOb3SuDQq7Lj81forcMpE=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.64564+00 2025-12-17 09:50:00.645644+00 28396 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4TUOO8uYW282xU1ktVVa-W3Q-wU=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.647116+00 2025-12-17 09:50:00.64712+00 28397 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6vMQOOgPCbkPGIA38QzE5VxsKFg=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.648587+00 2025-12-17 09:50:00.648592+00 28398 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qpUsYEmS6LctQtV-WXzpLr69ri0=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.650183+00 2025-12-17 09:50:00.650189+00 28399 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TolgD-0e4-Yk6uXx6TlGu1Ri1Tg=", "createTime": "2024-08-15 14:47:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.652469+00 2025-12-17 09:50:00.652474+00 28400 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yk8eyx1vZvPqCXk8IM3rzbqp9QI=", "createTime": "2024-08-15 14:47:08"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.654034+00 2025-12-17 09:50:00.654038+00 28401 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Jp9Q3YEQjf4rd77J5F7GJOnIX0=", "createTime": "2024-08-15 14:47:09"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.655562+00 2025-12-17 09:50:00.655569+00 28402 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nLCXBRR2kmeKttlWO-EiIOCpGPQ=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.657349+00 2025-12-17 09:50:00.657354+00 28403 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kRA2Dh_cWEQDOap429Qn4JoSjXI=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.659093+00 2025-12-17 09:50:00.659098+00 28404 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:60KG4urrRHfHSU_OnXKhZbby3r0=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.661216+00 2025-12-17 09:50:00.661221+00 28405 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u2wrhqrI0o7k3liRqxLrGNlIAyY=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.663024+00 2025-12-17 09:50:00.663029+00 28406 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RrzLn9iRtnfLZF40BfvsEv0mymA=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.664576+00 2025-12-17 09:50:00.66458+00 28407 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p7ryMcSavRIaJdtY5gTgt0zRgg0=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.666394+00 2025-12-17 09:50:00.666399+00 28408 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0bvplJ5VK3BmJFwRsTSSp8ly7Gc=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.667928+00 2025-12-17 09:50:00.667932+00 28409 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pu0SSmlHFNXCww-hkUCovJodKL0=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.669425+00 2025-12-17 09:50:00.66943+00 28410 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:awLfMn5-qiq_HxAXIZbHbjQu_qQ=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.671242+00 2025-12-17 09:50:00.671247+00 28411 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXchHPjCFezOObdXkHG_X9j1BBs=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.673007+00 2025-12-17 09:50:00.673011+00 28412 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NhbAgsgKdjaRZHs74vgIm4y3hRw=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.674698+00 2025-12-17 09:50:00.674703+00 28413 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8zRXXfH307fJ7CAv3DanBIvrXcw=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.676448+00 2025-12-17 09:50:00.676455+00 28414 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bYh8Ej30YtGAhbrIkXidlQxTGrg=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.678629+00 2025-12-17 09:50:00.678633+00 28415 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yzaKsJQDZEt2sGtRn8XDeRntoGc=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.680593+00 2025-12-17 09:50:00.680599+00 28416 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6AFN6jE6y5-U2KMoKVD0aVGmpmQ=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.683393+00 2025-12-17 09:50:00.683397+00 28417 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6U2hUx2kkwA9h6Wo0FM1JWhoVZw=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.685657+00 2025-12-17 09:50:00.685662+00 28418 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fvZYzx_Pqfdr95n13X0Qs5PfwPc=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.687589+00 2025-12-17 09:50:00.687595+00 28419 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PIMguaFyWdob1qI3slXMkGR1bpE=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.689466+00 2025-12-17 09:50:00.689471+00 28420 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YoHbABQtnzGK1l9w64j6Fc1iid4=", "createTime": "2024-08-15 14:47:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.691638+00 2025-12-17 09:50:00.691644+00 28421 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:epMvcMuY00v1TExvHQCSk_Vp8fM=", "createTime": "2024-08-15 14:47:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.693568+00 2025-12-17 09:50:00.693572+00 28422 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o4W6S1NqRplQnBl3l4FIWFTqNlI=", "createTime": "2024-08-15 14:47:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.695402+00 2025-12-17 09:50:00.695407+00 28423 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2RJ46-HaSJIBQkS9nW3KEpW_8kc=", "createTime": "2024-08-15 14:47:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.697454+00 2025-12-17 09:50:00.697459+00 28424 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qxpldQmExU2iUQ9dRGuIbE9i2YI=", "createTime": "2024-08-15 14:47:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.699133+00 2025-12-17 09:50:00.699138+00 28425 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3B7w3UwKdRWVXNGgWvPwRhMiFoQ=", "createTime": "2024-08-15 14:47:11"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.700649+00 2025-12-17 09:50:00.700654+00 28426 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qhqvc74Jvx_0v_0IbaDcvxZ-QDo=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.702414+00 2025-12-17 09:50:00.702418+00 28427 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ztYWvcpKaJAf2LKin4aixq5BoUg=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.703931+00 2025-12-17 09:50:00.703935+00 28428 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dqQOVb963VdHau_DDDhnY7DZQYk=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.705463+00 2025-12-17 09:50:00.705468+00 28429 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LQNhmGhdkKYrw4EiURcdIYRZyW0=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.707026+00 2025-12-17 09:50:00.70703+00 28430 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ks359guA82iDdiuNd3srV-IXZrU=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.708669+00 2025-12-17 09:50:00.708674+00 28431 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FORn6hqIsyv6as3_zoBkIJnhWbc=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.71097+00 2025-12-17 09:50:00.710976+00 28432 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dtcioahU50Dvd7SB30Ysg95LDk4=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.712848+00 2025-12-17 09:50:00.712853+00 28433 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:etvs80Qmau7rq7mBVjidBIjiP9Y=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.714705+00 2025-12-17 09:50:00.714709+00 28434 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJpF7I-ZKWCPhuOrhFHkboJ39tY=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.716745+00 2025-12-17 09:50:00.71675+00 28435 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EvmvdZJwe1M1a_jzn83hMpcPNAM=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.718347+00 2025-12-17 09:50:00.718352+00 28436 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Jn3uvyK9IywaGYVAsdH3qyVaxc=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.719972+00 2025-12-17 09:50:00.719976+00 28437 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fd6JpFi5CT2bDo3DiLOgF6h0Ki8=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.721516+00 2025-12-17 09:50:00.72152+00 28438 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3OThseO8szwv1Avw7aREACC1XrQ=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.723039+00 2025-12-17 09:50:00.723043+00 28439 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0JyYo8oHGzOcTCS7ht46it-99EU=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.724836+00 2025-12-17 09:50:00.724841+00 28440 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z10KcOHLzoyd2WBHMNFuUmLzJGI=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.72636+00 2025-12-17 09:50:00.726365+00 28441 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SmXmBwkAAmo2pdEPJoRAGh8URdM=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.728077+00 2025-12-17 09:50:00.728081+00 28442 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AyNz4EkypXb-XkCvoyUYwFyX4Fc=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.729947+00 2025-12-17 09:50:00.729952+00 28443 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m1jYTQz1VrujI-2ljaCZcVDxYbY=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.731582+00 2025-12-17 09:50:00.731586+00 28444 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5f5fR1xIh_6RjvJjKdXeiuwUPnY=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.733142+00 2025-12-17 09:50:00.733147+00 28445 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h9jE7bQcydl370JB1q_hXb3tdfc=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.734662+00 2025-12-17 09:50:00.734667+00 28446 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OKDWGBFcmQmlXcinRDLzS0LfIxc=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.73616+00 2025-12-17 09:50:00.736164+00 28447 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s7-39J2gglUsAry2qcIQ9b9zDr8=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.737948+00 2025-12-17 09:50:00.737952+00 28448 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B6o1SQFzZt1T28efVlRQk4KebFM=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.739516+00 2025-12-17 09:50:00.739521+00 28449 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FhhdU5ScYcjDxLoG8tzWvsgE2OU=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.741042+00 2025-12-17 09:50:00.741046+00 28450 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oKMC6cP5br6Sd8XzcuVQizkiMNk=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.742825+00 2025-12-17 09:50:00.74283+00 28451 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SODwcttfvUrvFE-n3ByFD2NnfLw=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.744641+00 2025-12-17 09:50:00.744646+00 28452 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xi6tFqT88yGcpDWTgFB0-7F_z90=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.746226+00 2025-12-17 09:50:00.746231+00 28453 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CX0N2Ky370susW9PP13e53HUeO8=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.747826+00 2025-12-17 09:50:00.747831+00 28454 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:liWo3j1isVZlUe0uyjYpmKPSNpo=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.749639+00 2025-12-17 09:50:00.749643+00 28455 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hzsVJRDN5yHJ-1gcZYDYU9LnlHI=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.751672+00 2025-12-17 09:50:00.751676+00 28456 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xmHy1SxBciYBxnTAY6jBtn6-5vY=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.753193+00 2025-12-17 09:50:00.753197+00 28457 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hIDezX71WJhh_m6m528zG-7rAY4=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.754703+00 2025-12-17 09:50:00.754708+00 28458 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MKxMuEKNNGsVTYCi34CEpbeuz98=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.756493+00 2025-12-17 09:50:00.756498+00 28459 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ufDHBfcwe4RwOkPeqbA8truuGpg=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.758012+00 2025-12-17 09:50:00.758016+00 28460 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RWgzP00p7Zi0gXD9S4RcUzkH_gY=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.759529+00 2025-12-17 09:50:00.759533+00 28461 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nWgvDmoR707q3M8V7NmRD6tB7dE=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.761186+00 2025-12-17 09:50:00.761191+00 28462 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ozd6OxmVD-LYoEzY61n1LaOMVZo=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.762977+00 2025-12-17 09:50:00.762983+00 28463 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zmst86A7qfZz4uZp_KyI4dC7Ijc=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.76505+00 2025-12-17 09:50:00.765055+00 28464 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kaLbaVrVnJTutvxCIpuwGrr4EhE=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.766654+00 2025-12-17 09:50:00.766661+00 28465 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v2elK4_9AHYWlbBxBBE0F55Yvrs=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.768257+00 2025-12-17 09:50:00.768262+00 28466 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rE6nvkJYMFJC8afS2SMevU1FAVk=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.770065+00 2025-12-17 09:50:00.77007+00 28467 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2wsi80jOHuAa9JCPal0xE1J5GHs=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.771641+00 2025-12-17 09:50:00.771647+00 28468 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dZ89Jl9kCQ0gmSeV6jNCXBJ0UyQ=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.773264+00 2025-12-17 09:50:00.773269+00 28469 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fwKUnhmgUPYcGHGfw_xOg3cD3Ng=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.774818+00 2025-12-17 09:50:00.774823+00 28470 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UMlQbrCtgT8uTGxPFpn8IxWEC0g=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.776361+00 2025-12-17 09:50:00.776367+00 28471 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xyKBNbPEvUu8IHX6nxEGWgDTQ08=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.77836+00 2025-12-17 09:50:00.778365+00 28472 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YmvGn94OlADZm0EWvOd23pYLZjY=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.780138+00 2025-12-17 09:50:00.780144+00 28473 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LIIDiuDbYn2u2_4DqBpiXceD-nI=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.78215+00 2025-12-17 09:50:00.782154+00 28474 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rr7uM8dj7vXNPImM9Zn9c3ldACQ=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.784162+00 2025-12-17 09:50:00.784166+00 28475 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6nFV-wx9caiPMa4jN8zvyNYGBoE=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.785706+00 2025-12-17 09:50:00.78571+00 28476 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0QQuiUd3-Cj5DypAOS7fQMcrbgg=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:00.787223+00 2025-12-17 09:50:00.787227+00 28477 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=1766051399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CzoeSMgGYNhKjr2FvzzZwRrLmzI=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.184952+00 2025-12-17 09:50:01.184962+00 28478 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kj-Bqcwr6kkSSLRwYkuE6nFmPXU=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.187407+00 2025-12-17 09:50:01.187414+00 28479 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:79scKRMFDE9FAmxKRHu6vKzI9Z4=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.189568+00 2025-12-17 09:50:01.189573+00 28480 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XPvst6eZAYePcxaZ1nW8nth86zg=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.191692+00 2025-12-17 09:50:01.191701+00 28481 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-lXHDEcUZkcJSjEbJEKdWbcuFY0=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.19461+00 2025-12-17 09:50:01.194618+00 28482 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:apBwZSK00Fr4KlpcrC9nhBv9IuY=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.197625+00 2025-12-17 09:50:01.197631+00 28483 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3BVtH07ooH-gzOGU4rZtyM-Jg0E=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.19943+00 2025-12-17 09:50:01.199435+00 28484 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W3Od6Ib9fjoP9816UWaATlN9H2k=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.200967+00 2025-12-17 09:50:01.200972+00 28485 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KGA8eaiARg0ACfsdn6lJ_yPssEI=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.202457+00 2025-12-17 09:50:01.202462+00 28486 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KROhCZeru1GirOLuNwGfVPkODJ0=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.203961+00 2025-12-17 09:50:01.203965+00 28487 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3qdHlZANXWrxWedrtNjbVbcSUn0=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.205712+00 2025-12-17 09:50:01.205717+00 28488 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RumM41EU94DoPF08gBAKZI3mYlk=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.207209+00 2025-12-17 09:50:01.207213+00 28489 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:giaIlPGZ7zWm0GOYeJezl4qYdsg=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.208994+00 2025-12-17 09:50:01.208998+00 28490 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8uD7NtCCMv22WxDgXLsHlq60TPs=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.210877+00 2025-12-17 09:50:01.210883+00 28491 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UoAcCfOYseOlBCa_z5SGQk8CtmQ=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.212773+00 2025-12-17 09:50:01.212778+00 28492 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wHXDEIOWnYl-C-DAwLyJF7xzM-0=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.214319+00 2025-12-17 09:50:01.214324+00 28493 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XYO6jSFhOicmaw4UqmgSMRZVR7M=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.216062+00 2025-12-17 09:50:01.216066+00 28494 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AXgI6u51fhvNdqEBM1UYQBCtTOM=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.21758+00 2025-12-17 09:50:01.217585+00 28495 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y2q_mMuXjB8ybYjfWdhTAXeNJsI=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.219349+00 2025-12-17 09:50:01.219354+00 28496 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WbTBH0oyphXnSWk6XUoP0C_hC0Y=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.221093+00 2025-12-17 09:50:01.221098+00 28497 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YGf_9i0HBqZRnmUvm3oZYjI_zyA=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.222594+00 2025-12-17 09:50:01.222598+00 28498 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KfLvr0SQzgQJ8OEVgNL6PdKlQGc=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.224356+00 2025-12-17 09:50:01.224361+00 28499 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J98RjnQbeWfve-vRFEDQetuS1Os=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.226097+00 2025-12-17 09:50:01.226101+00 28500 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IFyhf3JwhXlD72TE0FbX-wLWHyQ=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.227649+00 2025-12-17 09:50:01.227653+00 28501 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mD1kizwVIXPVI0R4UMhXGXPUo6A=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.229147+00 2025-12-17 09:50:01.229152+00 28502 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e5ugHULBKtcyzy5DfBMkMOLRiAg=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.230629+00 2025-12-17 09:50:01.230633+00 28503 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UU-g0kTiybBsix7g9fDUkXPamHY=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.232396+00 2025-12-17 09:50:01.232401+00 28504 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b5qFW1QYSm3rQw1yo2-Y83tfNzI=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.234178+00 2025-12-17 09:50:01.234183+00 28505 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TA0695XtB8HPeAWDclg47ewDIIY=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.235667+00 2025-12-17 09:50:01.235671+00 28506 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c82cSIPjvax_6mgv-7lmb7OxAl0=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.237445+00 2025-12-17 09:50:01.237449+00 28507 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Db2YuuSZNexkyBbEgIEWFIlR9V0=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.239137+00 2025-12-17 09:50:01.239141+00 28508 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bkvw_kBWll8DJtzXVhdZ0gakrN0=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.240619+00 2025-12-17 09:50:01.240624+00 28509 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eJAHOB2T3CFl46Q428XsW_qOvGE=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.242094+00 2025-12-17 09:50:01.242098+00 28510 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z0LdDiLWeDVMLYpYoosIHsqLaX4=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.24365+00 2025-12-17 09:50:01.243655+00 28511 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5SNduhQDMsw6DMl9JGXbn6JsMjQ=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.245454+00 2025-12-17 09:50:01.245458+00 28512 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4HcAwKi4tBEUgB4UULjeBCANJXk=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.246988+00 2025-12-17 09:50:01.246992+00 28513 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cFGw_tJKWhjTDp9Jxi9wn-37MYM=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.248459+00 2025-12-17 09:50:01.248464+00 28514 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W7aiLJQlU744GrDSeDolqkNOoS4=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.250746+00 2025-12-17 09:50:01.250751+00 28515 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QRDbg3sTN0I-QAzmgUfhLKrw3Ss=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.252555+00 2025-12-17 09:50:01.252561+00 28516 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rktP5vV7IOpNbuTiElvoDMgBBbM=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.254313+00 2025-12-17 09:50:01.254318+00 28517 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ioDABZUp1wakaOmWe0scCxkClX8=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.255834+00 2025-12-17 09:50:01.255839+00 28518 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kO_sygRgdm58EAxZnBQ0IinSax4=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.257387+00 2025-12-17 09:50:01.257391+00 28519 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MnwwzxXgVYKpb1QBOfhdXOoC0Y4=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.259258+00 2025-12-17 09:50:01.259262+00 28520 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hplt-eVO8o5ECEa655pbB-RVGX4=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.261016+00 2025-12-17 09:50:01.26102+00 28521 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:83uaRznr6HxwI7qVf0jHKn2ExKw=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.262676+00 2025-12-17 09:50:01.262682+00 28522 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i7Sp1oUdKeMozHzgsQS_Gy77xLI=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.264777+00 2025-12-17 09:50:01.264783+00 28523 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WRTl2qeM6ClD-Z5pF1RIRJLUn9c=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.266321+00 2025-12-17 09:50:01.266325+00 28524 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wXQeZLPHKbpr9jid_Lp8Vep1L-w=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.267869+00 2025-12-17 09:50:01.267874+00 28525 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WTKel68AiT2ijwWolbUBBLCLMQQ=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.269384+00 2025-12-17 09:50:01.269389+00 28526 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uvzi6EplLsSoOmUnwcYxjd6zJBc=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.270962+00 2025-12-17 09:50:01.270966+00 28527 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4B_pMCfZhoMm2_E8ZYRWhlLs0_U=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.272776+00 2025-12-17 09:50:01.272781+00 28528 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iO8lgFsgSgF0IQOlyl7z9JyaYhI=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.274509+00 2025-12-17 09:50:01.274513+00 28529 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hnk6fY-id1EH62Mmvsy0Jnzz75Q=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.276056+00 2025-12-17 09:50:01.27606+00 28530 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9syvk2NhMUsK-nI4AMWfJZmjI1A=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.278107+00 2025-12-17 09:50:01.278112+00 28531 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ut2pKZR2F7YC0RFziughqs2WW7k=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.279717+00 2025-12-17 09:50:01.279722+00 28532 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4TM6Jnc8vQp7XiOW1hP2nJWPTM4=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.281266+00 2025-12-17 09:50:01.281271+00 28533 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mxsazu9ASWhfDFTFopJn15aW_RU=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.282791+00 2025-12-17 09:50:01.282795+00 28534 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4L3p2ypWCS-XKZfG5B-V618MQ80=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.284583+00 2025-12-17 09:50:01.284588+00 28535 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L9fAPMuokxfotuybOk7fBYa7eiM=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.286406+00 2025-12-17 09:50:01.28641+00 28536 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W210vdEHToLIQDBOX2WLD_bY-ig=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.287934+00 2025-12-17 09:50:01.287939+00 28537 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KlyC3MJzQXEOEPLSSeoYexEO3Lg=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.28947+00 2025-12-17 09:50:01.289474+00 28538 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7siHzotIhJZoUqHhJI_mACnJTXY=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.291358+00 2025-12-17 09:50:01.291362+00 28539 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L_fRolRnvdOCq8iMf4HL2_D97Bw=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.292932+00 2025-12-17 09:50:01.292937+00 28540 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rpk6w_1qQtQDJv1piFptiKez-hQ=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.295099+00 2025-12-17 09:50:01.295104+00 28541 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xPLXfvXN6J4GVEM4h0YzCkalFZg=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.29693+00 2025-12-17 09:50:01.296935+00 28542 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-wSyqKQyCVfefsYxuiizafRE_Bs=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.298702+00 2025-12-17 09:50:01.298707+00 28543 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vWzoUwN_4xwmjBqzbt5AduwuvYA=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.300514+00 2025-12-17 09:50:01.300519+00 28544 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fdzIuL79Kf2TBzFbF4WXv869ZyI=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.302308+00 2025-12-17 09:50:01.302312+00 28545 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rm5ez8bAGfCHlI1S9lJ3fly6TcA=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.304121+00 2025-12-17 09:50:01.304125+00 28546 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KO1wydEhjUhLXacoVGBQmlRZTDo=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.305957+00 2025-12-17 09:50:01.305962+00 28547 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gNouRUMSfy3iP1iIdzVxms1NhzY=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.30806+00 2025-12-17 09:50:01.308064+00 28548 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YjHCW5HcnVzjgnrcWCGWqQKJ9t0=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.310295+00 2025-12-17 09:50:01.3103+00 28549 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RjXrRfDdgPcR3B5RDE39HlujC0I=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.312437+00 2025-12-17 09:50:01.312441+00 28550 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZXYsyX5lMQ8XPZHtgZiiiDRlxXY=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.314311+00 2025-12-17 09:50:01.314316+00 28551 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AKap4TA0vYT0sOQs_bwjKAffY1E=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.316145+00 2025-12-17 09:50:01.31615+00 28552 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oHwI5UWbO7Eo4OUr6uybMLMyuoE=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.31788+00 2025-12-17 09:50:01.317884+00 28553 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0FfB8areXr0C6s3rBkUlXfWEtBs=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.319416+00 2025-12-17 09:50:01.31942+00 28554 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lsILLodlIc1G5UGFgPkGgDTUAXs=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.321233+00 2025-12-17 09:50:01.321238+00 28555 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f49ZIHakPNco1qvRizG1t-wJw64=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.322817+00 2025-12-17 09:50:01.322821+00 28556 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bCuxuqV3ctJGK1rjvdq1QujvcSM=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.324337+00 2025-12-17 09:50:01.324341+00 28557 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O2eBJbmT3Fde8HZzI0ajod6q85M=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.325862+00 2025-12-17 09:50:01.325866+00 28558 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S0NfQQ97x8CcTu5zLi1GqZQNabA=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.327918+00 2025-12-17 09:50:01.327924+00 28559 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kQwsJ3aWlL4ymA2UWW-kDk4bmo8=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.329983+00 2025-12-17 09:50:01.329988+00 28560 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aYSaPZ3OzRZQ9gtxzHqE3iwm6HA=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.331597+00 2025-12-17 09:50:01.331603+00 28561 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Juhtm2ndRfK-Khw3A2I_QumvVg=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.333221+00 2025-12-17 09:50:01.333227+00 28562 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dRCVA7s3M5MNxvLmCiaygZRrXLs=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.335292+00 2025-12-17 09:50:01.335297+00 28563 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:69wAd6u4GjCODeL6u2Jh_BmMyHI=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.337073+00 2025-12-17 09:50:01.337078+00 28564 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WGbg5sqFSQx3Zvtu_iWM1n0c9FA=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.338663+00 2025-12-17 09:50:01.338667+00 28565 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MoysGwWI42XEMd6rzbXa-_sB9O4=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.340193+00 2025-12-17 09:50:01.340197+00 28566 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:18LS5gXcZjJ9clN78H_LCFkaIkY=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.341734+00 2025-12-17 09:50:01.341739+00 28567 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OXcZ0f0DSog4ToMinqAi1aZG1h4=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.344061+00 2025-12-17 09:50:01.344066+00 28568 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:irOOTtnPtMP7MSz_ixAlIR2ZimU=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.345727+00 2025-12-17 09:50:01.345731+00 28569 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1JPynHZQ6E5OQ22xGo1lT1BpmKQ=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.3474+00 2025-12-17 09:50:01.347406+00 28570 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wl57TT5eik3QEkj1Wb2iHrKVCKo=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.34951+00 2025-12-17 09:50:01.349515+00 28571 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fq3AiOxpOEjylR33PZIUHFScyOY=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.352169+00 2025-12-17 09:50:01.352178+00 28572 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hCDKJ9zzNndr79OpZFvLnP-Lae4=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.354855+00 2025-12-17 09:50:01.354862+00 28573 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:naUzypf_19rL1bV53d2O018X30s=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.357146+00 2025-12-17 09:50:01.357151+00 28574 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J33_CiZIPWo4BaMqUUrcW9iyFL8=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.358803+00 2025-12-17 09:50:01.358809+00 28575 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MTFyoLIU2ZxXS52Z_jr1w68jJAU=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.360688+00 2025-12-17 09:50:01.360692+00 28576 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XIycx4Djg0_VYMIWuf74ABLYNas=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N +2025-12-17 09:50:01.362203+00 2025-12-17 09:50:01.362207+00 28577 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=1766051400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:89I_ICXPj6UMaErVtBzFzebh0JE=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.477715+00 2025-12-17 10:00:00.477726+00 28578 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uzWlaRv22Rng2ivoEcD0GhModqs=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.480396+00 2025-12-17 10:00:00.480401+00 28579 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCsR9i28FiK49JqLYvVppRa0suY=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.482473+00 2025-12-17 10:00:00.482477+00 28580 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gJiSPMDhu4MTMRn7LZIr43d-4gU=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.484139+00 2025-12-17 10:00:00.484144+00 28581 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:38mqHbniojz2-iCHFtzTZprgcYE=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.485724+00 2025-12-17 10:00:00.485729+00 28582 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P1l_IbM3D8IIUXZIHu7bc6NZ3KQ=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.487838+00 2025-12-17 10:00:00.487843+00 28583 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cePMyWugD7FYGZnzmNlIOGZsrvY=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.489747+00 2025-12-17 10:00:00.489753+00 28584 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q2z2jjPDkK9TcpTCtqfyGYkW190=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.491622+00 2025-12-17 10:00:00.491627+00 28585 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:65r4Qo90KfA0DSNdfAznFViC6nM=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.49317+00 2025-12-17 10:00:00.493174+00 28586 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jeJAvafQxh6CnUxPsOCyZTWduD8=", "createTime": "2024-08-15 14:47:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.494736+00 2025-12-17 10:00:00.49474+00 28587 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7eanJGz9THkeETnTpEUnEAiqgI=", "createTime": "2024-08-15 14:47:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.496294+00 2025-12-17 10:00:00.496299+00 28588 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_VV9yVHhdu9lhII1Z6fugOp6GDk=", "createTime": "2024-08-15 14:47:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.49789+00 2025-12-17 10:00:00.497895+00 28589 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Izsyy5h-Hxr-Cv-iN-1jgY2MYOA=", "createTime": "2024-08-15 14:47:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.500286+00 2025-12-17 10:00:00.500292+00 28590 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MLcRCMqu9f49fKD7efsexNlpQYY=", "createTime": "2024-08-15 14:47:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.50239+00 2025-12-17 10:00:00.502398+00 28591 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5wyQEBOFnZ37UxDoK77p5j7fDgE=", "createTime": "2024-08-15 14:47:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.504125+00 2025-12-17 10:00:00.50413+00 28592 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rGI_vUJkTutWfPpAUqUqAoggrGY=", "createTime": "2024-08-15 14:47:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.506184+00 2025-12-17 10:00:00.506189+00 28593 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:idf-B0-w01igkz7hOWDenDkT7i0=", "createTime": "2024-08-15 14:47:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.507859+00 2025-12-17 10:00:00.507864+00 28594 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Oue7Vb9jnXJN6bHPZB1x1BRd0w=", "createTime": "2024-08-15 14:47:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.509464+00 2025-12-17 10:00:00.509469+00 28595 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_wcJGYOmjAer0x9lyaQ_1G_d71Y=", "createTime": "2024-08-15 14:47:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.511057+00 2025-12-17 10:00:00.511061+00 28596 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Acq2UL_uP-v6E-JHEvldI5zHVNw=", "createTime": "2024-08-15 14:47:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.512838+00 2025-12-17 10:00:00.512843+00 28597 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X_iqaVMFXcvpgLJnAGf1taYh2IU=", "createTime": "2024-08-15 14:47:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.514375+00 2025-12-17 10:00:00.514379+00 28598 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qs3EWbd9a5raBjMOutk9s7Pjb_U=", "createTime": "2024-08-15 14:47:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.515917+00 2025-12-17 10:00:00.515921+00 28599 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mCJr0ztZid5OvHLw3lQCaOVpx8E=", "createTime": "2024-08-15 14:47:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.517484+00 2025-12-17 10:00:00.517488+00 28600 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e3zYupGo4Xm0FoZ6lgYNLaPTRQY=", "createTime": "2024-08-15 14:47:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.519622+00 2025-12-17 10:00:00.519629+00 28601 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mezp-k7fgwfNXiOO1Bd8x6qvgYY=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.521387+00 2025-12-17 10:00:00.521392+00 28602 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oTNE5PfQ5jfdjCaLUlMDnOC3mbU=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.522994+00 2025-12-17 10:00:00.522999+00 28603 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8fZV97Ihvri6fslQa11rUDCLfdA=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.524797+00 2025-12-17 10:00:00.524802+00 28604 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DGJtA_idG1xwdtctwxzJFdLc2q0=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.526404+00 2025-12-17 10:00:00.526408+00 28605 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mn6HQooEpks89S9_n5KdWUo1UaY=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.527974+00 2025-12-17 10:00:00.527978+00 28606 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QwAZ-zAbsnc_5I3EkJH_qWL1CYU=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.529521+00 2025-12-17 10:00:00.529525+00 28607 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mEThhLcPLy4f3jTmXPRGRnJJ0tE=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.531115+00 2025-12-17 10:00:00.531119+00 28608 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2cVNeX-_BYSXrjrTo_0_naTBCwQ=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.533959+00 2025-12-17 10:00:00.533967+00 28609 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F-EjSSgydISdpWFYD-DNGiBTtUY=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.536926+00 2025-12-17 10:00:00.536934+00 28610 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GA1rmRb70Ln8frHKK4r5mP6vk7o=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.539676+00 2025-12-17 10:00:00.539683+00 28611 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nBzVq9tA3ByTAquJyS9QL-vq8x0=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.542266+00 2025-12-17 10:00:00.542273+00 28612 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t7FJVCx8jA_YFOBfTiEdDDFk9JI=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.54484+00 2025-12-17 10:00:00.544847+00 28613 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:buJfrYJ_nrpPPnhf755g9L9tIHE=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.547208+00 2025-12-17 10:00:00.547214+00 28614 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GpycU0d_8DSrWcwp18TdgTUnUqY=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.548945+00 2025-12-17 10:00:00.54895+00 28615 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nfTR8p5p8tnqlP32Pllm3Zwn4vY=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.550536+00 2025-12-17 10:00:00.550541+00 28616 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8J1TCldxgXSUn_pUvBkTrAE_0zA=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.552467+00 2025-12-17 10:00:00.552473+00 28617 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fHIX_H-g9qhE85A7Y_k-2X1AUv0=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.554269+00 2025-12-17 10:00:00.554274+00 28618 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CfgZ5mswjlL1ASLEBHpAJNzGmHg=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.55584+00 2025-12-17 10:00:00.555845+00 28619 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WMaHqgUPJF-Xy35Fl6MXHIL3Rac=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.557519+00 2025-12-17 10:00:00.557524+00 28620 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GFmrrWKGCb7j8tcnIUAcxfjyNrM=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.559326+00 2025-12-17 10:00:00.55933+00 28621 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8vuBQOC81CbWrNbArMGxHyuMZQw=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.560907+00 2025-12-17 10:00:00.560911+00 28622 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1iAt0wDxivbKa3oi1wbPWfF0Z0E=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.562456+00 2025-12-17 10:00:00.56246+00 28623 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:49WmH-8Z2foskW_8CIjHIS1J_4M=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.564254+00 2025-12-17 10:00:00.564258+00 28624 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j5xDzTs3D5kIVI68-P1siKlCGZI=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.566099+00 2025-12-17 10:00:00.566104+00 28625 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S_UTE7nY4vgcyNSBtZm5oKlLdoE=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.567653+00 2025-12-17 10:00:00.567658+00 28626 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1lrHlY0G0n6ncxFR3x8Ly0Xhekc=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.569217+00 2025-12-17 10:00:00.569222+00 28627 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QrsUtlevZzoKmGRM18MPwrarMvI=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.570894+00 2025-12-17 10:00:00.570899+00 28628 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cHXr0Hb2wjx-063yVlmwOqmugNQ=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.57255+00 2025-12-17 10:00:00.572555+00 28629 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6cwphlXBHhuRTHKAq1NYzSFU1ks=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.574299+00 2025-12-17 10:00:00.574304+00 28630 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QLh5TDMrqu7QHOIPTnEFec1XuVU=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.575856+00 2025-12-17 10:00:00.575861+00 28631 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bXU8koKjLT_PDEH_POqZu3zCJFc=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.577535+00 2025-12-17 10:00:00.57754+00 28632 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C6BwaAqJ3YerO65YxgncOIpQ3ro=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.579623+00 2025-12-17 10:00:00.579627+00 28633 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nfy0yU_RuoR-NzOJgpm-2Kdffo8=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.581508+00 2025-12-17 10:00:00.581513+00 28634 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JTpBNNuo3asLeRZ64Gih6PX8Gko=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.583397+00 2025-12-17 10:00:00.583402+00 28635 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y0tCkzXxxjHAD4tekM7Hx5kenQc=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.584971+00 2025-12-17 10:00:00.584975+00 28636 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZRufiNjvXC8dauPo63VPqwAetd4=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.586762+00 2025-12-17 10:00:00.586767+00 28637 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yEJ7-0bTAUMv2wqttk2JnZmMTPc=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.588811+00 2025-12-17 10:00:00.588816+00 28638 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fw_Nqumvg4gTF-Qgy8J0V0_u-MM=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.590603+00 2025-12-17 10:00:00.590608+00 28639 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Pog0V2_YkdGV76isXq4plLbT0w=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.592198+00 2025-12-17 10:00:00.592203+00 28640 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aRFn1N-Y2pZQ0q0dn5ke2g58Y2s=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.594085+00 2025-12-17 10:00:00.594089+00 28641 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eWXX5bagq1mbmjn8ANkh3AlZuNQ=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.595716+00 2025-12-17 10:00:00.595721+00 28642 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZCtRBF9H8N8FSk8Gu3FjDFEymXs=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.597484+00 2025-12-17 10:00:00.597489+00 28643 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pANsqpew0eLU59HDOqF0y8PFlQo=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.599054+00 2025-12-17 10:00:00.599059+00 28644 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v402XLeGG2JmRP9Nk0wrTgUpX24=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.600643+00 2025-12-17 10:00:00.600648+00 28645 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nsGNCvUngHOBJt2uqkT3_zLN9a8=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.60251+00 2025-12-17 10:00:00.602515+00 28646 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1jvy45vZuDZFfj5bFoAR-mBQ8SA=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.604364+00 2025-12-17 10:00:00.60437+00 28647 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HpVst_fXkWeWBzcDHQgIrd-QqUk=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.606381+00 2025-12-17 10:00:00.606386+00 28648 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TGYf-dXnvYk2LjofJNzx3z63qXY=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.608422+00 2025-12-17 10:00:00.608427+00 28649 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lAgWqQkn9kpvbOCxZz38rKbTH24=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.609996+00 2025-12-17 10:00:00.61+00 28650 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_eDdipqTKHi_AS5IZL6ARC-Ht1s=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.611545+00 2025-12-17 10:00:00.61155+00 28651 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lOwEmdtvEYK-nBEAFM3Ue-Ry324=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.613078+00 2025-12-17 10:00:00.613082+00 28652 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rwfd6KCnE7h68mbFznC1jOYUHvg=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.614621+00 2025-12-17 10:00:00.614626+00 28653 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wKKvBFJlTg30TbU9crtCXiyjiMw=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.616163+00 2025-12-17 10:00:00.616168+00 28654 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:45z5YTFpJT6L4h8OW5zPBtQW_M4=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.617713+00 2025-12-17 10:00:00.617717+00 28655 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1NEOY4e2nss1QV2uzfuRR22dVfk=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.619223+00 2025-12-17 10:00:00.619227+00 28656 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1TMqFEkrUJLUX48_rga300Z-C7g=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.62123+00 2025-12-17 10:00:00.621235+00 28657 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kisoIPIbwNFsdKIJRky63jR7TA8=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.622881+00 2025-12-17 10:00:00.622886+00 28658 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vHYBA5AqZWXRltXiG_Y8x5aVTT0=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.624674+00 2025-12-17 10:00:00.624679+00 28659 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yd31l6lvqq6R3SAhzSFAFha1q0s=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.626211+00 2025-12-17 10:00:00.626215+00 28660 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Us51r4bcERMD-S5rHWFS4hJuWw=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.627743+00 2025-12-17 10:00:00.627747+00 28661 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BdxuEsxY0dGsZZWzY4mRxz5KX4Q=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.629303+00 2025-12-17 10:00:00.629308+00 28662 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GVs1IizJkoxCCHxVMGrnQz5WPr8=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.630827+00 2025-12-17 10:00:00.630831+00 28663 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:efeKIoCu63aeXQtD_Nl1A0Oo_h4=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.63245+00 2025-12-17 10:00:00.632456+00 28664 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uRXbVwUBKMjp8JvOMrMI2T8Lvkc=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.634332+00 2025-12-17 10:00:00.634337+00 28665 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I7Tvsxg_9HDkvA4jWmhVWSxaYrY=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.635905+00 2025-12-17 10:00:00.63591+00 28666 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:USRGdtZ4yJkvrUtQ35Hxa5Qcpds=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.637892+00 2025-12-17 10:00:00.637896+00 28667 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YcGq-wVUMeHw8AgBsxMMP1dt0Pc=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.639463+00 2025-12-17 10:00:00.639468+00 28668 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Njp40BSN9-GtEEKWT3MirZx2s4=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.641064+00 2025-12-17 10:00:00.64107+00 28669 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uFlYEws92tUfbpqbIqfbMJab_14=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.642905+00 2025-12-17 10:00:00.64291+00 28670 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YcXnvd1rIq_KEoBZK2zafydm6Qo=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.644451+00 2025-12-17 10:00:00.644455+00 28671 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qh5TgyaLtdCfphAFyW_cpvtafqQ=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.645982+00 2025-12-17 10:00:00.645987+00 28672 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sRCxrl4u22p2KSD4EIZ_-yQWcxU=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.647802+00 2025-12-17 10:00:00.647806+00 28673 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RiGnTsYSOSAOgG9ZLgDn7HX7Szg=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.649395+00 2025-12-17 10:00:00.649399+00 28674 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xNwgDDpOW4d0WSveTXLmNvLtEk4=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.650979+00 2025-12-17 10:00:00.650984+00 28675 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9lU_nVarNEaS8VmffoIM011H-CQ=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.652604+00 2025-12-17 10:00:00.652612+00 28676 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0HXSERXybhH16A3tRA267ZoMkec=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:00.654588+00 2025-12-17 10:00:00.654593+00 28677 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=1766051999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ihWvZ-IpZsKcoKqMnSFIoGp2t68=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.024294+00 2025-12-17 10:00:01.024306+00 28678 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rutQ4n7FOLX9bb2w1rMESe7EIeU=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.027145+00 2025-12-17 10:00:01.027151+00 28679 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8dApclhLcO6Q8Mpa8I1EHUzUAgo=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.029238+00 2025-12-17 10:00:01.029247+00 28680 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NZz5B2ollc34qCKylpJBzER-1-w=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.031312+00 2025-12-17 10:00:01.031318+00 28681 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IHfO2i4X89fFHqueGoCbKxuy-Bw=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.032944+00 2025-12-17 10:00:01.032949+00 28682 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JQpN4Hz8CgFE7A05Gzny4MM6ozw=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.034965+00 2025-12-17 10:00:01.034971+00 28683 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V_dBBRCPM5KCcGyeeXxX1RlN9I4=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.03697+00 2025-12-17 10:00:01.036975+00 28684 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k7oEUnYw1pzHxMPItaQmu2mpJHs=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.038887+00 2025-12-17 10:00:01.038891+00 28685 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UNXeAISLBBS2px8YkqXjhCfKMQk=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.040483+00 2025-12-17 10:00:01.040489+00 28686 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sRygy-7uu88N6xUFjN_gHh98nr8=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.042437+00 2025-12-17 10:00:01.042442+00 28687 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tWhWRlxx82YQIVwfWbnhJYdmX54=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.043997+00 2025-12-17 10:00:01.044001+00 28688 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0o5dlSIzxx02rAw3yM68emQe3As=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.045542+00 2025-12-17 10:00:01.045547+00 28689 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e8BVMRVVJ1-4kqHw2pcIEB95VL4=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.047094+00 2025-12-17 10:00:01.047098+00 28690 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rdhh0qovDo0tBsuXYgdt1fuWeVQ=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.048924+00 2025-12-17 10:00:01.048929+00 28691 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s3MA4m4N0rFs3x14B7xPM5cPCj8=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.050474+00 2025-12-17 10:00:01.050479+00 28692 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1MOK81oPprrSyH931JL-xiLtd6g=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.052023+00 2025-12-17 10:00:01.052028+00 28693 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gb3Ta9dkl5B7FcCNjTzINJDF3yY=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.053731+00 2025-12-17 10:00:01.053736+00 28694 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FPKax5XUPapZhuqmxDMlYSrYeFU=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.055631+00 2025-12-17 10:00:01.055636+00 28695 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lS0rB9sN1OroCYihKhFUYse64UY=", "createTime": "2024-08-15 14:47:37"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.05718+00 2025-12-17 10:00:01.057185+00 28696 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dSYdfNIX-co6TYLis3Rs723E_3I=", "createTime": "2024-08-15 14:47:38"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.058965+00 2025-12-17 10:00:01.05897+00 28697 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UGftxxVVUV65HXEFCETewT3USXI=", "createTime": "2024-08-15 14:47:38"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.060628+00 2025-12-17 10:00:01.060635+00 28698 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:agVxuz4FCIcBeHI2YKonWw6Esm8=", "createTime": "2024-08-15 14:47:38"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.062302+00 2025-12-17 10:00:01.062306+00 28699 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ZwjUElwPZ1A_vHPAVCSHeO-ONs=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.064119+00 2025-12-17 10:00:01.064123+00 28700 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kt1fPWPId_ovFFcAU24L246rTvM=", "createTime": "2024-08-15 14:47:38"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.065667+00 2025-12-17 10:00:01.065671+00 28701 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v3znP8LY9nUttZCuxpg7bPpUvOI=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.067272+00 2025-12-17 10:00:01.067277+00 28702 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N-H2cLVczbCPPXwxJGa9Ynmz9V0=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.069676+00 2025-12-17 10:00:01.069682+00 28703 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pz8tLahUJKdE-K441BJOEi4Hxkg=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.071667+00 2025-12-17 10:00:01.071674+00 28704 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jH1P3RkNtm4GO_vZj2jlQcXz66k=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.073345+00 2025-12-17 10:00:01.073351+00 28705 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VXK-vih6nO-7kJkCd6P-bzMOPaU=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.075178+00 2025-12-17 10:00:01.075182+00 28706 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TyzqYx4b1VK8vSi9_-Cam0w1z00=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.076734+00 2025-12-17 10:00:01.076738+00 28707 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h4hNN3iTFfrnmYjeGxGS9T-7R0g=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.078316+00 2025-12-17 10:00:01.078321+00 28708 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qzoed4O5rXaC3D_g6wBm1dUFzLA=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.080104+00 2025-12-17 10:00:01.080109+00 28709 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T18bZtCA5q2OOh7B6n6z2sQ17ek=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.081645+00 2025-12-17 10:00:01.081649+00 28710 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PzjecQr6VGJcQ1oa5_KaQDIScRw=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.083477+00 2025-12-17 10:00:01.083482+00 28711 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TcK8etjokDOkLzjnuaogKEbSBzw=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.085144+00 2025-12-17 10:00:01.08515+00 28712 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6d7_R3tl3IVPgKoxT5c3a_Gkqsc=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.087018+00 2025-12-17 10:00:01.087023+00 28713 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4kxZFGg-IeKPfWGOAuY9-DrFRj0=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.088698+00 2025-12-17 10:00:01.088702+00 28714 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PErtdFlloF22RgA3cxzRFueOBAE=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.09029+00 2025-12-17 10:00:01.090294+00 28715 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VLfh1DAOaI5kWl1YYy0wpWZNw8I=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.091861+00 2025-12-17 10:00:01.091866+00 28716 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JQe2fCteYc5ishmaRhqZQmrC-Hs=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.093417+00 2025-12-17 10:00:01.093421+00 28717 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oG6w4QtBSiniRxQ_n2HYq2cddb8=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.095265+00 2025-12-17 10:00:01.095271+00 28718 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S4JiSRpVxtOoWT48nc_vPZWOSDY=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.097104+00 2025-12-17 10:00:01.097109+00 28719 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XhkQU4q-azDM5n0xId80EQ9hNcA=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.098657+00 2025-12-17 10:00:01.098662+00 28720 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kR8eS9QLa0xnb2KOVbA8hQyC98s=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.100217+00 2025-12-17 10:00:01.100221+00 28721 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:boyU-mJabAwgMKAtsRIjE1j1cGc=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.101761+00 2025-12-17 10:00:01.101766+00 28722 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RmytvYHESvjCyEZ2MxwicRyN6pc=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.119804+00 2025-12-17 10:00:01.119811+00 28732 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rUaVlSl37gA75Eq_F17vdFLW4KI=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.103821+00 2025-12-17 10:00:01.103828+00 28723 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PsvWYkFdamRkUhh9evkXEF5lr80=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.105846+00 2025-12-17 10:00:01.105851+00 28724 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wud3DE-DkcymE7hNwcnDKsePcjY=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.107448+00 2025-12-17 10:00:01.107453+00 28725 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1vti2lxMLpBuiaSL4Kel20nom6Y=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.109494+00 2025-12-17 10:00:01.109499+00 28726 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vifT4g9e9CFG82IqAe5K5mKtLN0=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.111602+00 2025-12-17 10:00:01.111608+00 28727 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h7ww8wI7yge7yCGHiLT-eD5GZbM=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.113387+00 2025-12-17 10:00:01.113391+00 28728 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_WmI7Q7OcjnlL6Dz9xPaUJhuHIE=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.115+00 2025-12-17 10:00:01.115005+00 28729 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y2ViaCHZSpyv7BFIkB5pavRWk4o=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.116533+00 2025-12-17 10:00:01.116538+00 28730 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:llDZdWs2UDUyEjp_hlZ9NDEjr18=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.118113+00 2025-12-17 10:00:01.118118+00 28731 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZT3osIMKWObqj1vl9K235j3g2Z4=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.121752+00 2025-12-17 10:00:01.121757+00 28733 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3OfaO776lvuLci8n2NNMSv5k8gk=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.1236+00 2025-12-17 10:00:01.123604+00 28734 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c4yoxImvpkaLG9KVgCpjvLDmABo=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.125517+00 2025-12-17 10:00:01.125522+00 28735 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QrtUmzJlPpU5za2Wa48OCSiDc0A=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.127209+00 2025-12-17 10:00:01.127214+00 28736 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XHu1MAKaiJHTRnAka0jrf3A-Bn8=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.128829+00 2025-12-17 10:00:01.128833+00 28737 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b3RjSyC9--7ZDrcyOi4HQHMlgAs=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.130386+00 2025-12-17 10:00:01.130391+00 28738 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M_IbVkaQzZitgM0i5TCXdo2zBgk=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.131923+00 2025-12-17 10:00:01.131927+00 28739 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DGeJ4LwyNSi0yp4jGCN3q7o0FW8=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.133438+00 2025-12-17 10:00:01.133442+00 28740 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6fIp53LtOdl8RZc7yXOuZLTuxFg=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.135013+00 2025-12-17 10:00:01.135017+00 28741 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4NOqx05h1WPSubkfrujMUzNp4A4=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.136804+00 2025-12-17 10:00:01.13681+00 28742 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uaw3OgT8utyCKEajIuSaUia4ELM=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.138975+00 2025-12-17 10:00:01.13898+00 28743 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:00iUvoDtr9aQx-2cdbnJcYx9x0Q=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.140537+00 2025-12-17 10:00:01.140542+00 28744 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hrBwSC6QrnL3hpSrYQu8iB5nkeU=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.142096+00 2025-12-17 10:00:01.142101+00 28745 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Te681v3x9xoK4S_EM5NR8MdhZcY=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.143627+00 2025-12-17 10:00:01.143631+00 28746 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m3d5H-iaxq9HK23o9DtwG7bYVt4=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.145183+00 2025-12-17 10:00:01.145188+00 28747 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1JpcFWgjucymKt3c3gpk6D5e2qM=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.146707+00 2025-12-17 10:00:01.146711+00 28748 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N4Q64yrgaPypd54a0D3d84rh57A=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.148312+00 2025-12-17 10:00:01.148316+00 28749 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IRxiXLy1hUEWi0jY6q658Qrjvo0=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.149878+00 2025-12-17 10:00:01.149882+00 28750 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xWSwGnRQAoR1363JNk1ImpwkgV8=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.151901+00 2025-12-17 10:00:01.151906+00 28751 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ARKL_TdxfHrd-2ydlEzxXTfCGP4=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.153871+00 2025-12-17 10:00:01.153876+00 28752 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xqBuewKProcPiWiQDUmu2phYsqM=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.155769+00 2025-12-17 10:00:01.155774+00 28753 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IBL4MMeF6NlGkEKP8uuTx8c7JQ8=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.157541+00 2025-12-17 10:00:01.157546+00 28754 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qEGCMnG2xnrILKkpoS53UzI-6rA=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.159243+00 2025-12-17 10:00:01.159248+00 28755 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dxdLsXGobFnBATVl4ucI3jjKM2U=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.160813+00 2025-12-17 10:00:01.160818+00 28756 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1YfNRBtaSnrdCgHeotfJVoFSIQs=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.162372+00 2025-12-17 10:00:01.162376+00 28757 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FqEFDUzBiVZ9FLGE-Qp_0LkwynM=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.164253+00 2025-12-17 10:00:01.164259+00 28758 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DFMDhhH7nBHLF74qHxEDXRgGtqs=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.1665+00 2025-12-17 10:00:01.166505+00 28759 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TVLVXJAVVb7usx4XG3VCWW4q8HA=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.168118+00 2025-12-17 10:00:01.168123+00 28760 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q96NybfnkWD9khbS-TfA4vuNf4w=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.170178+00 2025-12-17 10:00:01.170184+00 28761 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8TzaZhi5JoD1Ldgzs5i-T5LGoR4=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.171987+00 2025-12-17 10:00:01.171991+00 28762 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tb96KwPNX1a5sqOJyl8QDVSdcpw=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.173848+00 2025-12-17 10:00:01.173853+00 28763 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FKyOfYQKURcoL1VLmOP_ZWss4Vs=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.175414+00 2025-12-17 10:00:01.175418+00 28764 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-BnQ2ihUsLCSMe7XmHhV1vzbyw=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.177049+00 2025-12-17 10:00:01.177054+00 28765 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ReXOK9o4xlzMYskcUmxXl1VyFw=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.178933+00 2025-12-17 10:00:01.178937+00 28766 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gtc0RR2JduZhGIlODNdUJbxfN8Q=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.180773+00 2025-12-17 10:00:01.180778+00 28767 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ctIpi9Uf8fk9rwFNQiWRlX-rBEQ=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.182624+00 2025-12-17 10:00:01.182629+00 28768 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xoxqanGr0WRGNWcuVCOSrhev5rc=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.184442+00 2025-12-17 10:00:01.184446+00 28769 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qVM1YNDLs8WqozvUE-GjwJdYBFo=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.186315+00 2025-12-17 10:00:01.186322+00 28770 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LqzhktDCGoqn8ZmTZ4BeZ8IZnfI=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.188474+00 2025-12-17 10:00:01.188479+00 28771 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RnTU0SWJYOx_rC5riG0ksrCLvWs=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.190443+00 2025-12-17 10:00:01.190447+00 28772 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gq2ni80BqPA7TTLgzMwQELN4mjg=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.192333+00 2025-12-17 10:00:01.192337+00 28773 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gnw_-nUGe9vrnatjA4bZceSBQeE=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.194204+00 2025-12-17 10:00:01.194208+00 28774 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E0ypivwqLasQKAi56uiU9gSFiE8=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.196301+00 2025-12-17 10:00:01.196306+00 28775 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ouGr5a78U6hQHOEZFGXfhAvp0nw=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.197985+00 2025-12-17 10:00:01.197989+00 28776 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2bFr7CewBldvoE1EqTY58_-BjGg=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N +2025-12-17 10:00:01.199615+00 2025-12-17 10:00:01.199621+00 28777 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=1766052000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VFDgXFZvSAdluGoV2Sj2uoNFRxU=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.451379+00 2025-12-17 10:10:00.451389+00 28778 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zKjKmmp_LwV14O0m1cf5YZSxEBg=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.454659+00 2025-12-17 10:10:00.454666+00 28779 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wt_ZS9ZU_4jdP259FA4LLwfdgIA=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.45763+00 2025-12-17 10:10:00.457639+00 28780 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yiwioR4TCvGpPGtlCXmv5ZXLh0k=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.459685+00 2025-12-17 10:10:00.45969+00 28781 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UOB_ec6np5w3F5Y5URN1bhppCvs=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.461639+00 2025-12-17 10:10:00.461644+00 28782 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d6ADkhf3jfSxKhqrIoTzr92K12Y=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.463603+00 2025-12-17 10:10:00.463609+00 28783 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kj8T7zbDGQ4FogQG_2TBWCkytoA=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.465329+00 2025-12-17 10:10:00.465334+00 28784 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NAqOC9UIjf8NZAogWWMU9-EOzC8=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.467173+00 2025-12-17 10:10:00.467177+00 28785 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MCAzGVcSzhqWqlh5KB5BwIjuQco=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.468728+00 2025-12-17 10:10:00.468732+00 28786 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SGRiSiQnpiw7wWksvmCwdhLamiY=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.470262+00 2025-12-17 10:10:00.470266+00 28787 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8CYmO1eYfmg5hw7ilhN2qkl42tk=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.471813+00 2025-12-17 10:10:00.471817+00 28788 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gZTGG2_pUvyRgGCXOQWcF1Pjkzk=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.473395+00 2025-12-17 10:10:00.4734+00 28789 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:52zIoK8dvK-iRzIk9_4IeSbChGc=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.475472+00 2025-12-17 10:10:00.475477+00 28790 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BqYjZTny11GUcHOl3adZzu6OSeo=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.477567+00 2025-12-17 10:10:00.477571+00 28791 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PqPunXUpTfL7vZ9JHPgOnjbnVIk=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.479156+00 2025-12-17 10:10:00.479161+00 28792 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eibaLgPuxFokUYVYqv2n787jAmI=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.480786+00 2025-12-17 10:10:00.480793+00 28793 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bm5IApOzy2wxTUXFCDVFqJRvcYM=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.482602+00 2025-12-17 10:10:00.482608+00 28794 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rfL_7kiFPPhxV5lRtxa1iWnr5II=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.484464+00 2025-12-17 10:10:00.484468+00 28795 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YN21Xo45TU26TphVP1g7WQFOChU=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.486302+00 2025-12-17 10:10:00.486306+00 28796 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RVBbtSqdzvhQGvvhUkA9gN0xUSU=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.487902+00 2025-12-17 10:10:00.487906+00 28797 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t6oIw3U0Ywc2oVWD0hrtMxE8G0I=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.489473+00 2025-12-17 10:10:00.489478+00 28798 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hch2nuVO9ON7bZDrHCbOPaS-HQc=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.49157+00 2025-12-17 10:10:00.491574+00 28799 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ESQLBmh9wGz6Gu2A5E-Hl22B9rc=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.49324+00 2025-12-17 10:10:00.493245+00 28800 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RDCHfbtV9RgiA0RBUKsPrIwzvDw=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.494828+00 2025-12-17 10:10:00.494832+00 28801 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tj5h1-OwJfRoOfRNoeRxP8zQjQM=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.496458+00 2025-12-17 10:10:00.496462+00 28802 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ch1WpzrUEvkXC89sxHOGtFd4C14=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.49868+00 2025-12-17 10:10:00.498686+00 28803 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w2cMXiRXK0WZIQ_FY-va52dPFUE=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.500647+00 2025-12-17 10:10:00.500651+00 28804 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o1nQF3qGSRODASchy0zrxdhbGcw=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.502511+00 2025-12-17 10:10:00.502516+00 28805 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-_KFKwwwTdiC1IMphFAN8j7fE28=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.504381+00 2025-12-17 10:10:00.504386+00 28806 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t-yaZPVQVbMGDJ_UpufwPdLg2lU=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.506233+00 2025-12-17 10:10:00.506237+00 28807 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cf5vRmo3IeayKIv_JuT72l9Qlxg=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.507809+00 2025-12-17 10:10:00.507813+00 28808 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y9uroBuyeaB_lzUwk-ZowQ5GRsE=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.509403+00 2025-12-17 10:10:00.509408+00 28809 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7skspeToqMU7mMEMkF0Bwq7J-nA=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.510972+00 2025-12-17 10:10:00.510977+00 28810 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l8_l3X7C40PBWZto5DTOpuSPqRY=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.51254+00 2025-12-17 10:10:00.512545+00 28811 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EtRbF3Lqn1nZpDeViymZxyZF4aU=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.514515+00 2025-12-17 10:10:00.514522+00 28812 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mtdtuKNlE4IyxwnmAFR2Gj0fMVw=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.516822+00 2025-12-17 10:10:00.516828+00 28813 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NE3FmPqTm_8aUGIzkQqaVLBpcRY=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.518735+00 2025-12-17 10:10:00.51874+00 28814 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QR8094IIYMR1NBEDaLJoaUAePeI=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.520916+00 2025-12-17 10:10:00.520922+00 28815 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MGRuFCwQRqlKHUNFEXWcV3BVoow=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.522574+00 2025-12-17 10:10:00.522579+00 28816 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OtgW6ocrNa2OnvJTHUVEBHElYqQ=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.524535+00 2025-12-17 10:10:00.52454+00 28817 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0gQ59rM0PoPTO2Mapj3bnDjVusg=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.526123+00 2025-12-17 10:10:00.526127+00 28818 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hPJFixx63IMQby-yPf1zuVONOyk=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.527686+00 2025-12-17 10:10:00.527691+00 28819 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ku5cPtjxqoR2Pd1bU-dBC4Sux3Y=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.529934+00 2025-12-17 10:10:00.52994+00 28820 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bTck5zenEusdgFd9ugQB9f23JBI=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.532217+00 2025-12-17 10:10:00.532224+00 28821 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bVfHW3NMXHF3WH4yFWP6ZMkNPwI=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.53438+00 2025-12-17 10:10:00.534385+00 28822 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rvkQxFpuvWPJqqK8cyk3p4smkH8=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.536021+00 2025-12-17 10:10:00.536026+00 28823 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3uk_axs6anaHS9oE2Z8sfdMGANw=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.537704+00 2025-12-17 10:10:00.53771+00 28824 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l3ZDZQudFkpxivE8-m6dtgB8V4E=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.539372+00 2025-12-17 10:10:00.539377+00 28825 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HdHRk9dTuMLN4gzeuduFDNH_wug=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.54099+00 2025-12-17 10:10:00.540995+00 28826 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xKylwwRTDpcPJDMAj5zud8GzgDw=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.542602+00 2025-12-17 10:10:00.542606+00 28827 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vXWOjN1fjfiVkpuC69S5XSBavCU=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.544392+00 2025-12-17 10:10:00.544399+00 28828 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j-Wxei-hAqdx7Pq8tU12V2rFEv0=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.547671+00 2025-12-17 10:10:00.547681+00 28829 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ndvuGiLQUhPkfWIZPiGF01Q5yPc=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.550448+00 2025-12-17 10:10:00.550456+00 28830 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mlA0DNlPw2wUZWIMQrfvTmWzS60=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.553166+00 2025-12-17 10:10:00.553173+00 28831 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lYmplBD6V2pD8Itw5MSnL555g6Y=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.555785+00 2025-12-17 10:10:00.555792+00 28832 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WdReV8wfwUt-SLpFIKesshcwtxM=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.558371+00 2025-12-17 10:10:00.558378+00 28833 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V4lKSQKIw-fsldta91nRHRnzSLc=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.560874+00 2025-12-17 10:10:00.56088+00 28834 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l-b423gxIWi51cHLn_4ttjt8-Zk=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.562884+00 2025-12-17 10:10:00.562889+00 28835 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kskL183OnEiubhoAtE-YUUFHdUU=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.565006+00 2025-12-17 10:10:00.565012+00 28836 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p3MV7_C9YPUWwFHqNMF3tRNA_2M=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.567252+00 2025-12-17 10:10:00.567257+00 28837 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oo_hdnzElN7cJrOL-SRIw63HSnw=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.568852+00 2025-12-17 10:10:00.568857+00 28838 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6tettfu4meANZxc4630zTaa9puk=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.570432+00 2025-12-17 10:10:00.570436+00 28839 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q8j8MvYaA5OTQc_Ec6pmY-BKWmo=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.572007+00 2025-12-17 10:10:00.572012+00 28840 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q3ELxmE3fY5XcJX41DTdoLJcMj8=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.57387+00 2025-12-17 10:10:00.573875+00 28841 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KUW4_OMc_7w8JOlcwqI5jKFRJKs=", "createTime": "2024-08-15 14:47:51"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.575465+00 2025-12-17 10:10:00.575469+00 28842 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FtjncC_LR_BtVTl4vhTpjZ4fDGU=", "createTime": "2024-08-15 14:47:51"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.577082+00 2025-12-17 10:10:00.577087+00 28843 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_xezHa-EFyoQLdGt7UxPcXsbDQ8=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.578908+00 2025-12-17 10:10:00.578912+00 28844 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_TlJS3MgjMofEg_1AfsVO5s0stU=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.580768+00 2025-12-17 10:10:00.580773+00 28845 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XdVvZiK-yDNgjrZw3iq0KoIYOZo=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.582612+00 2025-12-17 10:10:00.582617+00 28846 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZAbroLWX_T-sbYIIS-y_W4fySHk=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.584347+00 2025-12-17 10:10:00.584353+00 28847 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HadhePiqYpSP093-w00Q0kAz_W8=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.586264+00 2025-12-17 10:10:00.586269+00 28848 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mwanQbwHyLJJPt7ThwX9wSQau_c=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.588092+00 2025-12-17 10:10:00.588096+00 28849 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9-plsvpnAYzVpOn1Xkh395TmPU8=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.589965+00 2025-12-17 10:10:00.58997+00 28850 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g0IpFyJhPgSCvMpzDvDbdF4JCHQ=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.59153+00 2025-12-17 10:10:00.591535+00 28851 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NWKmhvf0kSIag2sSgF9Od4X5Rgw=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.593106+00 2025-12-17 10:10:00.593111+00 28852 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zk8X7AMRDt8iRJ1qJcFvNGsnW88=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.594938+00 2025-12-17 10:10:00.594943+00 28853 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qfSJ9Euw2OXPpesd8ZurvP04aPs=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.596503+00 2025-12-17 10:10:00.596508+00 28854 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LJaSO1bJx6L2FW-x24Y8XeLb0Hk=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.598395+00 2025-12-17 10:10:00.5984+00 28855 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9g-EUFaoUrZF0epVbs7lbo9IhA8=", "createTime": "2024-08-15 14:47:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.600308+00 2025-12-17 10:10:00.600313+00 28856 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gp2BtOdf-0EJFDaEGPye1VowHTs=", "createTime": "2024-08-15 14:47:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.60233+00 2025-12-17 10:10:00.602335+00 28857 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yqM-YBXrD5yBHClXpT28F1czgro=", "createTime": "2024-08-15 14:47:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.604148+00 2025-12-17 10:10:00.604153+00 28858 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:drbDTq56OEcmUYQuYWg09oyX0EU=", "createTime": "2024-08-15 14:47:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.605705+00 2025-12-17 10:10:00.605709+00 28859 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hL65R2qLq81JXkyenHiuKs8ikig=", "createTime": "2024-08-15 14:47:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.607287+00 2025-12-17 10:10:00.607292+00 28860 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xIvi5fO8rBfDrZRadG6hsn8cBHI=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.609382+00 2025-12-17 10:10:00.609386+00 28861 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4glQTm4yQZ7u8hemLWP1oOw0-0A=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.611084+00 2025-12-17 10:10:00.611088+00 28862 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yCvnv6G2LStWcyg5M1kgw1VzKBw=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.612652+00 2025-12-17 10:10:00.612657+00 28863 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_PwbMfIFtP2RQa1io7PJc6_py_w=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.614423+00 2025-12-17 10:10:00.614428+00 28864 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mdstRfVb8xyix9VZVJt5suQk3J4=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.616361+00 2025-12-17 10:10:00.616366+00 28865 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uocKzFFYpDSrhSCsmE_Smu7kFIs=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.618273+00 2025-12-17 10:10:00.618278+00 28866 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WBSb4rMWsBrJPf5KrGdkaofZDLg=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.620166+00 2025-12-17 10:10:00.62017+00 28867 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_shGUYA94IsSQE_c8UzQ0Gcmt7o=", "createTime": "2024-08-15 14:47:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.621759+00 2025-12-17 10:10:00.621763+00 28868 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oEAQfd-A74zl-Vd7P7Kn2ilBBgc=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.623638+00 2025-12-17 10:10:00.623643+00 28869 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:elAJNqt9qLhWVm-Cyint-PVkd7c=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.625233+00 2025-12-17 10:10:00.625237+00 28870 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FW64Fzxc_Xk9Gt2yR-tEFcSepFw=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.626787+00 2025-12-17 10:10:00.626792+00 28871 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YYOHYf2ObZu2A12PO9-ERYCIHoE=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.628366+00 2025-12-17 10:10:00.628371+00 28872 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JBuYpS2PyAVCtf8B2ujSDD_z6UI=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.630261+00 2025-12-17 10:10:00.630266+00 28873 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iZokjgWQWm2JflaQVzP2NXTZR5Y=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.632106+00 2025-12-17 10:10:00.632112+00 28874 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YNwgP7veiKFwI9rYJDfBgFc9a50=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.633808+00 2025-12-17 10:10:00.633814+00 28875 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5hMrIDtGvoahaIU3hiNFgGOq9Es=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.635438+00 2025-12-17 10:10:00.635443+00 28876 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:udlE5tSHQOfKlyV1fEXcToLdGSM=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:00.63756+00 2025-12-17 10:10:00.637569+00 28877 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=1766052599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_d8snabHacg0TacwynCrOd51KTQ=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.018069+00 2025-12-17 10:10:01.018079+00 28878 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2220vHuaevR3SQNZPt1lI3HBewM=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.020972+00 2025-12-17 10:10:01.020977+00 28879 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XjgdNV4nEmfYvl4ilq7zrJSef_w=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.022937+00 2025-12-17 10:10:01.022942+00 28880 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_yHfqUBQSTAFawGrm2iaaXG5Og4=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.024704+00 2025-12-17 10:10:01.024709+00 28881 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V4vVX9IwB-ChqP5qvhH7_GsZvEA=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.026468+00 2025-12-17 10:10:01.026473+00 28882 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g7-Qec35Abx79yVRW6gXDW-JbmI=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.028627+00 2025-12-17 10:10:01.028632+00 28883 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:75v9Xr5IT5R5hn0TWN3qTqUlTOw=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.030642+00 2025-12-17 10:10:01.030648+00 28884 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uq98FoOlo763Izz02zXEA2ctO4M=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.032645+00 2025-12-17 10:10:01.03265+00 28885 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xAz41iKU1Qa2tHR0u7MhUBVl7bs=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.034757+00 2025-12-17 10:10:01.034763+00 28886 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G57nyKlCLWu1IU2Pa9wuhwg7FLs=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.036603+00 2025-12-17 10:10:01.03661+00 28887 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3PI1BBOXIP-abjf_1cPYz-yFPwE=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.038665+00 2025-12-17 10:10:01.03867+00 28888 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ezu378y4DLOy04oRkWyg9ampGQ4=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.040993+00 2025-12-17 10:10:01.040998+00 28889 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MkPWcUmlppEYJL718B8h-V8SQno=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.043353+00 2025-12-17 10:10:01.043358+00 28890 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:621xhK_Ikt-cMUJwMx1j6xkxRbE=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.045416+00 2025-12-17 10:10:01.045421+00 28891 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dBIUoxjy8CrxBvdEjD8lRsL1D64=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.047179+00 2025-12-17 10:10:01.047184+00 28892 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uLjOQlarI3ukZSlYDG6cV7uvcMQ=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.055734+00 2025-12-17 10:10:01.05574+00 28897 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VHKGFhifLXeKzz5RVHqXH5wuCDA=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.048828+00 2025-12-17 10:10:01.048833+00 28893 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-fx8Lh9qwziBbF91QtilWInLV9I=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.050485+00 2025-12-17 10:10:01.050492+00 28894 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tX5TW0vNAqa4064FegWsWJXD-DI=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.052423+00 2025-12-17 10:10:01.052428+00 28895 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LfcUjDGS3EPpEAHVBqXNLyTPcls=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.054085+00 2025-12-17 10:10:01.054091+00 28896 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xKIUPB7USForbVCHhfw-AhlUb2k=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.057622+00 2025-12-17 10:10:01.057626+00 28898 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v8DMmLXI6Ienx2HFB5srtFHKh8g=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.059762+00 2025-12-17 10:10:01.059767+00 28899 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XoC6_1n3jlI7aNUgqSOmaCrebRM=", "createTime": "2024-08-15 14:47:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.061824+00 2025-12-17 10:10:01.061828+00 28900 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vviwKYZS4x0z6u4hlleAJGfUD90=", "createTime": "2024-08-15 14:47:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.06369+00 2025-12-17 10:10:01.063694+00 28901 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zzo14TKDxP64ssz8r55jfYBoDXY=", "createTime": "2024-08-15 14:47:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.065803+00 2025-12-17 10:10:01.065808+00 28902 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MmRwcV6_1l6PdbCuWbRrcYwKeQ4=", "createTime": "2024-08-15 14:47:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.067898+00 2025-12-17 10:10:01.067903+00 28903 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7xfJCADzpr9CB4faGzB0j9rVrK0=", "createTime": "2024-08-15 14:47:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.069785+00 2025-12-17 10:10:01.069789+00 28904 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kaZDgvqbxsWhSjOhjCtFk4BXoYM=", "createTime": "2024-08-15 14:47:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.071906+00 2025-12-17 10:10:01.071911+00 28905 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JD_8ZdKxQtSccSkRuH1rHVnNb0c=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.073829+00 2025-12-17 10:10:01.073834+00 28906 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lued49FCROdez4Xr_HaZtv4JvaA=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.075947+00 2025-12-17 10:10:01.075951+00 28907 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t380FBIlOoVpufQ6oSBvL8-rQwo=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.077507+00 2025-12-17 10:10:01.077511+00 28908 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BVgkomVKTha4AXk8QB70xCWbMOE=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.079083+00 2025-12-17 10:10:01.079087+00 28909 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:td8Hhu1dW2k7f3oSxSLt20Z0pVY=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.080619+00 2025-12-17 10:10:01.080624+00 28910 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:88Youq2sZGdiDTIRdq2QdrAqibk=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.082384+00 2025-12-17 10:10:01.082388+00 28911 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nZaTrSlICwt68m_GS_dOpq9fnMo=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.084089+00 2025-12-17 10:10:01.084094+00 28912 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XS6dRdwEtzC75bN8spIOQ6UKC48=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.085681+00 2025-12-17 10:10:01.085686+00 28913 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DDoAtbIoopFp6IeKAgdGxskdGzw=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.087227+00 2025-12-17 10:10:01.087231+00 28914 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z6qm-Frnup6B2xFY1jlT3GRFB9M=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.08908+00 2025-12-17 10:10:01.089085+00 28915 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lp-5rJ-278HYC8mA5yhavYQa5TQ=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.090632+00 2025-12-17 10:10:01.090637+00 28916 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hofc9n45ZBfrVBIHrLsvjTGgu2g=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.092267+00 2025-12-17 10:10:01.092272+00 28917 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fsb6QOfAZH9C5cuvzjiThiGmhYs=", "createTime": "2024-08-15 14:48:01"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.093859+00 2025-12-17 10:10:01.093864+00 28918 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UA41aPDV9cLKswyaQdY4znUGxos=", "createTime": "2024-08-15 14:48:01"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.095686+00 2025-12-17 10:10:01.09569+00 28919 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uqGDEm4QSJBR6_tvhl48e5koWbg=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.104373+00 2025-12-17 10:10:01.104379+00 28924 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r2nr1_N0XaPkJYKezbdO-xGriT0=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.097258+00 2025-12-17 10:10:01.097263+00 28920 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nAuhXmZrDEmB5Ye_eiia9JdtIbM=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.098947+00 2025-12-17 10:10:01.098953+00 28921 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o9C8YjHkkVwcLQqSLcCfkYFD7Gg=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.100842+00 2025-12-17 10:10:01.100847+00 28922 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j7I8lKUAd5mvaFy2myM1lPE47rw=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.102755+00 2025-12-17 10:10:01.102761+00 28923 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BLah9lcYRecBp9nCplx1y4o-aDA=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.105965+00 2025-12-17 10:10:01.105969+00 28925 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YXyk5hpRh_lFeRCKkfxRLhmje5Y=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.107781+00 2025-12-17 10:10:01.107786+00 28926 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k8qEiHoBQaQhL7s5QefQR17WuZE=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.109328+00 2025-12-17 10:10:01.109333+00 28927 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3iAVhbc31NtxgnbGbIWQwnCCyuI=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.110901+00 2025-12-17 10:10:01.110906+00 28928 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZEAiUSBn3HTe_z18bF80jjp0loE=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.112455+00 2025-12-17 10:10:01.11246+00 28929 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BIpr4-p9PB98udjXvxOqS1yVnQA=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.114057+00 2025-12-17 10:10:01.114061+00 28930 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m30kCEqQW5NSGpyEtzdrvYb1aGo=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.116399+00 2025-12-17 10:10:01.116405+00 28931 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XFSRNAPiw4QExw4VqHtBGxoYpRg=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.118085+00 2025-12-17 10:10:01.11809+00 28932 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V_mAgLNrhGK9t-zgwBLdukM4_dc=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.126497+00 2025-12-17 10:10:01.126502+00 28937 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tTDd9ZUdRdpzrdGnKpOCdsCA6G4=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.119954+00 2025-12-17 10:10:01.119959+00 28933 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ngDZYWlrsKa411Sk_FYYZnLEf9Q=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.121541+00 2025-12-17 10:10:01.121546+00 28934 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xk5FqmgUkMCC1aCmavbJmiV2k5g=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.123092+00 2025-12-17 10:10:01.123096+00 28935 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wUtuKxsSW593I79jt3CTNBP9KB8=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.124907+00 2025-12-17 10:10:01.124911+00 28936 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yqTb6ru5KuMIMYAuy-NA5Pe0elk=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.128074+00 2025-12-17 10:10:01.128079+00 28938 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:llAu523EyzZycX9zGwCootec4w0=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.130253+00 2025-12-17 10:10:01.130258+00 28939 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Alq7dv3Gwb0ZXaf5u9cnbKQPrU=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.132203+00 2025-12-17 10:10:01.132208+00 28940 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJ8KvlDtY6vfEGoiqIEb4zJ4IZ4=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.134105+00 2025-12-17 10:10:01.134109+00 28941 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4FSXtpiyR3gWLjgZ2zIy6hmaMlk=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.135673+00 2025-12-17 10:10:01.135678+00 28942 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z1fN70477OD2U1qA-RiAr7MkIuc=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.13725+00 2025-12-17 10:10:01.137255+00 28943 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tGs5neDu5UiSEl4d2tam12ONHuA=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.139053+00 2025-12-17 10:10:01.139057+00 28944 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hetl8aFuAyZedXZqnlEG2Fc1eSQ=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.140603+00 2025-12-17 10:10:01.140608+00 28945 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kHbBIemVQJmQMwIEnlaph5HKeSc=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.142153+00 2025-12-17 10:10:01.142157+00 28946 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h9sqtfnwxfzCprU0u4Pgy9jUzM8=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.143973+00 2025-12-17 10:10:01.143978+00 28947 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MwJagF9cqoveVD2MM06feSUicK8=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.145539+00 2025-12-17 10:10:01.145543+00 28948 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eh04Yax-FBEyYRHdDpqUbNn7Juk=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.147099+00 2025-12-17 10:10:01.147104+00 28949 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:umCphsVfk6kx751y4uaooNkI8Lc=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.148748+00 2025-12-17 10:10:01.148754+00 28950 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FffOXCF8X9Xmc40-naUA8mQ1G4M=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.150469+00 2025-12-17 10:10:01.150474+00 28951 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fOQNPHAXS7lnB0y5xcihE9t3oKg=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.152356+00 2025-12-17 10:10:01.152361+00 28952 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fn-D4fB-bTUY3Hz-deDqnmPc-lo=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.154316+00 2025-12-17 10:10:01.154321+00 28953 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:37VZqzQgsFvs71_zVIDaKR3VKy4=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.156346+00 2025-12-17 10:10:01.156351+00 28954 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rmRLnBZp0wHs5JAfvBUbVBiKaT0=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.158457+00 2025-12-17 10:10:01.158462+00 28955 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JoKChljp4WlNdPyaTl3o_Dk6cro=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.160246+00 2025-12-17 10:10:01.160251+00 28956 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:786UV7KwIvQAggidIfmV3BoedlM=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.161856+00 2025-12-17 10:10:01.16186+00 28957 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bqQu1U7r15QPgKEw1BGgufNBuWg=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.163512+00 2025-12-17 10:10:01.163516+00 28958 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wYGsxBrP9gqkhAs_1vNXtwjeDrc=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.165515+00 2025-12-17 10:10:01.165521+00 28959 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gFc2RrUtsW5HIGsIgoRM-4jzvpk=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.167406+00 2025-12-17 10:10:01.167411+00 28960 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bla_f6ARWGNc2mYXN1RzV5JKl_Y=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.169296+00 2025-12-17 10:10:01.169301+00 28961 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:btXEQYHzIif2PaHKugiQiBTWH44=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.170927+00 2025-12-17 10:10:01.170932+00 28962 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z3J5zOC8zANd_YmyR2QCU_XPCL0=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.172797+00 2025-12-17 10:10:01.172802+00 28963 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Po8jyByubbJDRfzQg6SXq5rp_Ks=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.174355+00 2025-12-17 10:10:01.174359+00 28964 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d-vrwlgD9u-oE5dn46fnmQbsbA4=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.175934+00 2025-12-17 10:10:01.175938+00 28965 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5khp145rhmp_ARe51eVY13Q684M=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.177664+00 2025-12-17 10:10:01.17767+00 28966 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UPE93Iq2GpoQ1g-g18UB52CVELk=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.179726+00 2025-12-17 10:10:01.179731+00 28967 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KzuYBYH2pmeCp-u6_3GfHPDY_sY=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.181861+00 2025-12-17 10:10:01.181867+00 28968 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FMBqyesBGRsmPWfRd-ZcqAFf7ek=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.183919+00 2025-12-17 10:10:01.183924+00 28969 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pHd0JZnlyHPoFcVE4B6VsTo7QFI=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.185732+00 2025-12-17 10:10:01.185738+00 28970 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vtuw0wKd3xVSbOP5LqHPV2CZwU0=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.188121+00 2025-12-17 10:10:01.188126+00 28971 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MFdNz9LWCYAJgX4wCDCP85bFd-M=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.189954+00 2025-12-17 10:10:01.189959+00 28972 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xqKlVFAiMENnxd_LmNpNOLIAzDE=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.191761+00 2025-12-17 10:10:01.191766+00 28973 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X7vPkkfTnmAdMDRbwTT-lNlJlcw=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.193525+00 2025-12-17 10:10:01.193529+00 28974 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4T-Mghmtor5B71oxROc0ea9gUxI=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.195175+00 2025-12-17 10:10:01.19518+00 28975 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MeyJtk2xuznOXei1KF1gojXoGcI=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.196806+00 2025-12-17 10:10:01.196811+00 28976 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IrPgSEYd9jKDR01fts3Yz-HqmWE=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:10:01.198555+00 2025-12-17 10:10:01.198561+00 28977 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=1766052600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qUJyZeyuJfey8AN51MKm9MOy6TI=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.368027+00 2025-12-17 10:20:00.368038+00 28978 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3A834fpsn3zSW9X9K7dMdNNWhxU=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.371087+00 2025-12-17 10:20:00.371093+00 28979 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OX_iH_osePoBiCwD2aw4B3cYqRM=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.373384+00 2025-12-17 10:20:00.373391+00 28980 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wIehy_7gi_ZeGDWVO89lpGY5VvU=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.375256+00 2025-12-17 10:20:00.37526+00 28981 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:woOeookBkoGOy9AcoOjOEVuHrd0=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.377017+00 2025-12-17 10:20:00.377022+00 28982 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ewvcofSaCHpprnCtxlNPyRqePc=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.378745+00 2025-12-17 10:20:00.378749+00 28983 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y9VrNJMpl9E5vAc7IRZZxq-ne_4=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.380874+00 2025-12-17 10:20:00.380878+00 28984 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uz0B-x-bdTV1HlsGfQp2gM8kERw=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.382464+00 2025-12-17 10:20:00.382469+00 28985 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XQJakDXVw8WHmkqZUCbk9UZDU6M=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.384381+00 2025-12-17 10:20:00.384386+00 28986 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7fMrEeMEjkToXg3VEi0QWcHIIIQ=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.386006+00 2025-12-17 10:20:00.386011+00 28987 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dFGWNfXWitvYL2I_n-T2RyZxPR8=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.387588+00 2025-12-17 10:20:00.387592+00 28988 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HjGwtDnGFKfY2duv1Kl4PR_SonA=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.389217+00 2025-12-17 10:20:00.389221+00 28989 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IUGzk1RQG31Cefs6CTPEPretthc=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.390981+00 2025-12-17 10:20:00.390987+00 28990 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CSqqOJAVANs3zf7U7iImxlcQogs=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.392862+00 2025-12-17 10:20:00.392867+00 28991 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dtdx7yvcPe-wIigf5BmjQ9IvMeE=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.394986+00 2025-12-17 10:20:00.394991+00 28992 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uJZM_eVCdYrvtbxVnF-GTqIlDW0=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.396621+00 2025-12-17 10:20:00.396625+00 28993 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ezXwPzqlILJ-YJEpQLl9iqwbXc=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.398208+00 2025-12-17 10:20:00.398212+00 28994 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jJ2RcjXDH2rfoJ8l8pBUkotmxVI=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.399881+00 2025-12-17 10:20:00.399887+00 28995 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MtYbuZJ78gqMcSJc-aVgiVuQ4wQ=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.401885+00 2025-12-17 10:20:00.40189+00 28996 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AchRZqle8D3tu9jhjq8_RbS8Tt4=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.403762+00 2025-12-17 10:20:00.403767+00 28997 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nkweHDiPaXbhWCX1AHCmnQED7MM=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.405388+00 2025-12-17 10:20:00.405392+00 28998 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kvz96T0INblnyK13XmlQnd-MzqU=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.407093+00 2025-12-17 10:20:00.4071+00 28999 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VAaHJ6ruwA_VMSip0LfnNnR0SiY=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.409477+00 2025-12-17 10:20:00.409482+00 29000 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TfwXdWjOMdNAy5Tu6gvVDL_0B7k=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.411232+00 2025-12-17 10:20:00.411237+00 29001 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f2WjbjPg52bH9YL5xsl-02eA9uY=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.412871+00 2025-12-17 10:20:00.412875+00 29002 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:stN3p0gDXvKIqEXssb6ON3A3eOM=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.41446+00 2025-12-17 10:20:00.414464+00 29003 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:huWcFMhWOtY9Y-v8j6kiIsf_k3k=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.416055+00 2025-12-17 10:20:00.416059+00 29004 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PMp_ecszGLq5Dkio8q64wcCLGww=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.417952+00 2025-12-17 10:20:00.417956+00 29005 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JwFBwmokxA2w5bBIBCPnGt2H8lY=", "createTime": "2024-08-15 14:48:09"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.419873+00 2025-12-17 10:20:00.419878+00 29006 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CQHsPpcUURfjapGhh4g3VZYAshI=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.421465+00 2025-12-17 10:20:00.421469+00 29007 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zKmwU3xxZBFNlba2B-UHZIojOX4=", "createTime": "2024-08-15 14:48:09"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.423403+00 2025-12-17 10:20:00.42341+00 29008 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9o3LpCLWIDvTmwdvyKkxYpp0a60=", "createTime": "2024-08-15 14:48:09"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.425483+00 2025-12-17 10:20:00.425489+00 29009 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TktvoZPJoMduhFiVrxYVTSXABcE=", "createTime": "2024-08-15 14:48:09"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.427492+00 2025-12-17 10:20:00.427497+00 29010 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RurtELEeeCO4Il38rXqOhvbnEn0=", "createTime": "2024-08-15 14:48:09"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.429121+00 2025-12-17 10:20:00.429126+00 29011 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uM0rcR_E6mhHoyhHmBlbJl5J-ks=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.431097+00 2025-12-17 10:20:00.431102+00 29012 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YtJe-kK2HkF6Jl2a0j5J_191Rhw=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.432939+00 2025-12-17 10:20:00.432943+00 29013 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:djnK1VZdMQ3Vth8H276OY5acOME=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.434534+00 2025-12-17 10:20:00.434539+00 29014 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SlMjcqY3zHnpH8a3v6GKn3-nRig=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.436143+00 2025-12-17 10:20:00.436147+00 29015 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yG2UdtH-_yRSzki4J_H7qEXqYeg=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.438242+00 2025-12-17 10:20:00.438246+00 29016 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nk1PbmNgfbALWI6bRafL_hQr5AA=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.454232+00 2025-12-17 10:20:00.454236+00 29025 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KOXICtnKM1FCyOE1-FRkyJsd5JY=", "createTime": "2024-08-15 14:48:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.439891+00 2025-12-17 10:20:00.439898+00 29017 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mu7dwOpBazLdgGkepMa_SnEfDqs=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.441631+00 2025-12-17 10:20:00.441635+00 29018 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cu-7w8XdgQm2w0THMookckKfYLI=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.443246+00 2025-12-17 10:20:00.44325+00 29019 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L61C07yyjY-2BLVIeUPKFfq_oeY=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.445079+00 2025-12-17 10:20:00.445085+00 29020 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xIpEQ1iP9Op6_IiDHcs6kqgIDho=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.447006+00 2025-12-17 10:20:00.447011+00 29021 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HRPkasginuXb99P84Gq49pcwg1s=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.448662+00 2025-12-17 10:20:00.448667+00 29022 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lobmkmVDsoZqnzrldZWet6RUMXI=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.450333+00 2025-12-17 10:20:00.450339+00 29023 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7958U1sNBACYeD39Dx1oItBXzV4=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.452631+00 2025-12-17 10:20:00.452636+00 29024 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J4QD-vZaqmcLdZE_MJ6vHEREUb4=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.456141+00 2025-12-17 10:20:00.456147+00 29026 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HSEt5WYlqrIzm_2lEaa8upbTDTA=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.458347+00 2025-12-17 10:20:00.458352+00 29027 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1D6ggsiQY3FWzBofRuWfrdWavcw=", "createTime": "2024-08-15 14:48:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.460305+00 2025-12-17 10:20:00.46031+00 29028 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Gx1ETu6nYUWFwZOSFmvTwTCy2w=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.462166+00 2025-12-17 10:20:00.462171+00 29029 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pKehJ4OLZxM94BW5H0oLU-3yiLc=", "createTime": "2024-08-15 14:48:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.463772+00 2025-12-17 10:20:00.463777+00 29030 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TGueg6-dkGd-tjkDTlFA5Yx4sGY=", "createTime": "2024-08-15 14:48:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.465375+00 2025-12-17 10:20:00.46538+00 29031 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RAY1T2dMeqNn4c3C-tZcW1iV8-0=", "createTime": "2024-08-15 14:48:13"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.467503+00 2025-12-17 10:20:00.467508+00 29032 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w7Jo_2gOqisi75YvYQF2b4mpoHI=", "createTime": "2024-08-15 14:48:13"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.469098+00 2025-12-17 10:20:00.469103+00 29033 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1hAzBObaiAFeJDmolqqXHEbRK_I=", "createTime": "2024-08-15 14:48:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.470673+00 2025-12-17 10:20:00.470677+00 29034 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MT5AgfP2OP-J34gwZMcGDcP_nrk=", "createTime": "2024-08-15 14:48:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.47226+00 2025-12-17 10:20:00.472265+00 29035 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TsDHOuzxVONfSRQfVpnraVM5PBI=", "createTime": "2024-08-15 14:48:13"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.474012+00 2025-12-17 10:20:00.474018+00 29036 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kESMUkorVDKpUf84nB-iJKngOWc=", "createTime": "2024-08-15 14:48:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.475724+00 2025-12-17 10:20:00.475729+00 29037 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VOsnrwVZ0Au-lPb4uVF1k0UZ_XE=", "createTime": "2024-08-15 14:48:13"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.477376+00 2025-12-17 10:20:00.47738+00 29038 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:61K5BY1MHj2q13aYwu1xFnQTdoQ=", "createTime": "2024-08-15 14:48:13"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.479312+00 2025-12-17 10:20:00.479317+00 29039 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ezjjQHtuGKy9sOuDR7sOBpZAXFM=", "createTime": "2024-08-15 14:48:15"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.481627+00 2025-12-17 10:20:00.481632+00 29040 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RS5Qv3CCKt2DrQ3SwOCnQmtZ8Lc=", "createTime": "2024-08-15 14:48:16"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.483493+00 2025-12-17 10:20:00.483498+00 29041 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x4KYqKdceHPywQn9IHyd4dle-EI=", "createTime": "2024-08-15 14:48:16"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.485341+00 2025-12-17 10:20:00.485345+00 29042 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_trYkpNrSYO_wR6-bWAGdptHl1k=", "createTime": "2024-08-15 14:48:16"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.487025+00 2025-12-17 10:20:00.487031+00 29043 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sm5Mi__2kuezkKpoyJiAi4Y3RTs=", "createTime": "2024-08-15 14:48:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.488813+00 2025-12-17 10:20:00.488818+00 29044 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YHfh37bhRTJhTnscWgDZGp3RWNA=", "createTime": "2024-08-15 14:48:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.490682+00 2025-12-17 10:20:00.490689+00 29045 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ahwQtdiiTx_konQUHnrVILg8eM=", "createTime": "2024-08-15 14:48:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.492652+00 2025-12-17 10:20:00.492657+00 29046 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HUpMF4PJHUKVAOeQO8qOuLf1780=", "createTime": "2024-08-15 14:48:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.494523+00 2025-12-17 10:20:00.494528+00 29047 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xw16ksxEYU92xA4ObzWtWw7UAMA=", "createTime": "2024-08-15 14:48:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.496646+00 2025-12-17 10:20:00.496651+00 29048 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:svi3HDTze3Nfi1Wcw1VN6vXfXYM=", "createTime": "2024-08-15 14:48:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.498501+00 2025-12-17 10:20:00.498507+00 29049 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C8Ebz5ZmYeE5f74bef_FFLeNUF4=", "createTime": "2024-08-15 14:48:18"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.50039+00 2025-12-17 10:20:00.500395+00 29050 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-LwdW5EkqU7ibjetZhY0MufczkI=", "createTime": "2024-08-15 14:48:18"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.502018+00 2025-12-17 10:20:00.502023+00 29051 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FEnFV4KESNZUUaczKYrf2cIub54=", "createTime": "2024-08-15 14:48:18"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.503619+00 2025-12-17 10:20:00.503624+00 29052 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vZjite_8GtGlNlUub9wKh215BCA=", "createTime": "2024-08-15 14:48:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.505425+00 2025-12-17 10:20:00.50543+00 29053 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oirI3nUlCoFcJWrDQ57JaexPf3A=", "createTime": "2024-08-15 14:48:18"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.50707+00 2025-12-17 10:20:00.507076+00 29054 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_OD1YGruoXRZXhkT3pJRV9v3FlY=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.508889+00 2025-12-17 10:20:00.508894+00 29055 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j1NfkeKs88pY2jTOYtsKZED_-C8=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.51109+00 2025-12-17 10:20:00.511095+00 29056 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z8NIE6hz3fJQvhCyUWZe5hiGW94=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.513015+00 2025-12-17 10:20:00.51302+00 29057 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X8GH_BHEXe_yY3E1GjkdsvRbt_Y=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.514905+00 2025-12-17 10:20:00.51491+00 29058 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:miScrlo9EUwG6Iyy_A-JG5S11t4=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.516836+00 2025-12-17 10:20:00.516841+00 29059 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1v1sajJza7B8crF5WRsFEzRNq-c=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.519074+00 2025-12-17 10:20:00.519079+00 29060 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kVAuOKpz4Qj8U1sYKHEIcOQddCM=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.521237+00 2025-12-17 10:20:00.521242+00 29061 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Embqg1gXaAOorYMqZwjml9B1SU=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.523246+00 2025-12-17 10:20:00.523251+00 29062 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6bu0far8QA0o2eXRY65D8PiDJnE=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.525541+00 2025-12-17 10:20:00.525546+00 29063 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Ay3SRQP41bytqoEabzDCC815xs=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.527607+00 2025-12-17 10:20:00.527611+00 29064 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YTAOJOgag2pBElhPkgLWBfiDcJc=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.529269+00 2025-12-17 10:20:00.529274+00 29065 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T1dmA8IbMn5fcBCXBeNkGzSlRgk=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.53086+00 2025-12-17 10:20:00.530864+00 29066 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wTGvHlGh-EXmQ3eNHZyodOwtnhU=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.532686+00 2025-12-17 10:20:00.53269+00 29067 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oTRLIGIZmywGXcpx5ISQRR9v0EE=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.534247+00 2025-12-17 10:20:00.534251+00 29068 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UImDznh8phvA3dfcFmQnlO2fjjg=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.535919+00 2025-12-17 10:20:00.535925+00 29069 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ylftg62oWejWnox8yJOCV4knEZw=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.537979+00 2025-12-17 10:20:00.537984+00 29070 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_LOBbdUxVXb48wd4JnwKUFdPyOE=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.539919+00 2025-12-17 10:20:00.539926+00 29071 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cH6fgLACIySU6MYe7pX6CXHvCz4=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.542147+00 2025-12-17 10:20:00.542152+00 29072 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u8RZQueHPPpzohnGrBwcq3c9Bg8=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.543803+00 2025-12-17 10:20:00.543808+00 29073 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k_uTVmZvEOUM0XqPj3kxsPNosy0=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.546404+00 2025-12-17 10:20:00.546409+00 29074 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NjwV_G9t7EQ-bZQlbW-Wb9z8f70=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.548963+00 2025-12-17 10:20:00.548968+00 29075 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fxRdtm2bBnY9jXgEYCUi61bBfVo=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.551394+00 2025-12-17 10:20:00.5514+00 29076 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=1766053199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kYp66N3MNoaGxFfIr8fIwni3XNQ=", "createTime": "2024-08-15 14:48:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.944869+00 2025-12-17 10:20:00.944882+00 29077 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zAz-NzD1j89m17-5WVKqxS6GRmM=", "createTime": "2024-08-15 14:48:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.94787+00 2025-12-17 10:20:00.947878+00 29078 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FmHfn-lBlI0EElZ4fxNx6sGPsoo=", "createTime": "2024-08-15 14:48:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.950541+00 2025-12-17 10:20:00.950548+00 29079 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7C3pSFY6YBrwuKGeDK-9XKvu7Xc=", "createTime": "2024-08-15 14:48:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.953189+00 2025-12-17 10:20:00.953195+00 29080 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RyW_I7i1EGxMZgrgrnIUcXFY_lI=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.955148+00 2025-12-17 10:20:00.955153+00 29081 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1vXTQQJNT6QBG8MCBS-Pnr7hjgM=", "createTime": "2024-08-15 14:48:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.956733+00 2025-12-17 10:20:00.956737+00 29082 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q_LjSeFG2PhzcTeZJ1u7Q0v-Ew0=", "createTime": "2024-08-15 14:48:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.958408+00 2025-12-17 10:20:00.958414+00 29083 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JrISP101w1hp1qGPrzs9OdL9UoE=", "createTime": "2024-08-15 14:48:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.960127+00 2025-12-17 10:20:00.960132+00 29084 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CMvCOrdHyNQ7kussjbLFeFbG5RM=", "createTime": "2024-08-15 14:48:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.961683+00 2025-12-17 10:20:00.961688+00 29085 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rrq8JkvHqZ6uqmR1ja2YhHTKL4A=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.963296+00 2025-12-17 10:20:00.963301+00 29086 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BcZ_-dYVFQuEEh3omOIOHT6SbZo=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.964899+00 2025-12-17 10:20:00.964904+00 29087 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f-3avwrqvM9eQpRg2NbVZxyaGEQ=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.967059+00 2025-12-17 10:20:00.967063+00 29088 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6o0wpq4n4vbVY59imeEYuhX9S3M=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.968878+00 2025-12-17 10:20:00.968882+00 29089 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IxnoMSmU81pwf192KJq8-CXh8qA=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.970521+00 2025-12-17 10:20:00.970527+00 29090 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:37hGYm2eH9D6FNfbFmpVAEidwtU=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.972245+00 2025-12-17 10:20:00.97225+00 29091 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-w5JFkEv3KiSwD-tpAf4icOTOS8=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.974277+00 2025-12-17 10:20:00.974283+00 29092 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UJYyBtPozLYgG7pfkq_xU6J1M5I=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.976268+00 2025-12-17 10:20:00.976272+00 29093 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tDN3aEbcnsbHinDbZow6nb7nkWU=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.977961+00 2025-12-17 10:20:00.977965+00 29094 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JF-YU3pWzPvXpJyQvCG7Ly8KsXo=", "createTime": "2024-08-15 14:48:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.979791+00 2025-12-17 10:20:00.979796+00 29095 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WSwha5kcXo5EJRuzk_7PmRk8XIo=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.98135+00 2025-12-17 10:20:00.981355+00 29096 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZI4hN4EAP_PhxZfcP8bn2L36eHc=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.982915+00 2025-12-17 10:20:00.98292+00 29097 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OtMb-_7Jf0mYAmC9TlSJw0_Hz4M=", "createTime": "2024-08-15 14:48:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.984451+00 2025-12-17 10:20:00.984455+00 29098 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YgsBHWdzbDGXmlZ5mMLA12iwRPg=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.985995+00 2025-12-17 10:20:00.985999+00 29099 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZgyqADy_XdUjhPO0zbNiN4TjJcE=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.987516+00 2025-12-17 10:20:00.98752+00 29100 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r8G4416tflkCM4hje2nFWh39hR0=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.98914+00 2025-12-17 10:20:00.989144+00 29101 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fo_DgpAvwfObj23bbdiOCCF4S1g=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.991192+00 2025-12-17 10:20:00.991198+00 29102 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6bnNuw9K-vZHndErd971RScRM5M=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.993532+00 2025-12-17 10:20:00.993537+00 29103 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rc-9OjauAgjUgrMpZv7LhavYeiU=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.995236+00 2025-12-17 10:20:00.995241+00 29104 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OiLXNoXo5w_wyKCxj0KFvm_6lfA=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.997071+00 2025-12-17 10:20:00.997076+00 29105 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ykaPcXUwEwlC2kUbDxTXOCU-yRM=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:00.998669+00 2025-12-17 10:20:00.998674+00 29106 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ynGlh4_RgWXKHiSlp30couab7ZY=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.000321+00 2025-12-17 10:20:01.000326+00 29107 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UUYAQbMcRJ4aR0P7HH1LVzBXnJQ=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.002186+00 2025-12-17 10:20:01.00219+00 29108 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cWpRt-LmXZLqMG8F06-ch2XCp3Y=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.004083+00 2025-12-17 10:20:01.004087+00 29109 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vs09fq1qCDP2Kyz2OiV1USUXHrQ=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.005693+00 2025-12-17 10:20:01.005698+00 29110 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nf6n7uVg732RAz4WeuZQ0O5IFjw=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.007728+00 2025-12-17 10:20:01.007734+00 29111 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7rE_oaSehykLcTKJXL6Xp3UyKC8=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.009506+00 2025-12-17 10:20:01.00951+00 29112 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:um2UKP41BAkVzYM9tdLLW8LPf1E=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.01116+00 2025-12-17 10:20:01.011164+00 29113 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bKkZsVjBNuOYIpOPRVNtxrkx59g=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.012761+00 2025-12-17 10:20:01.012765+00 29114 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tCjoAiEu_8zJ4RE2pnLkdbCFxto=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.01473+00 2025-12-17 10:20:01.014735+00 29115 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4s6LxXhT1Hex997rk0df-aioLw0=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.016339+00 2025-12-17 10:20:01.016343+00 29116 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_86F-pxTWwC3H-IEVwB1E1wA5D8=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.018243+00 2025-12-17 10:20:01.01825+00 29117 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_H7ViU_nh2v6j2aCzalaL9a1Ivo=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.020442+00 2025-12-17 10:20:01.020448+00 29118 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RGYCfSCJ4uq210Xx-95KIcxD18M=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.022307+00 2025-12-17 10:20:01.022312+00 29119 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4gTQ1FgQj8rkIilp_k9DSUY4v-U=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.02459+00 2025-12-17 10:20:01.024595+00 29120 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qtxu6bd4gdvgHhHiLSMNPSTJ_iw=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.026441+00 2025-12-17 10:20:01.026446+00 29121 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ioLOOQ9V4DRGn9YiO3-Zeoiipbg=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.028305+00 2025-12-17 10:20:01.02831+00 29122 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0RlTN_Fq3fLDcjIftXeU8N-1xAI=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.030218+00 2025-12-17 10:20:01.030222+00 29123 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RBRm-OMAF5jNNCjshJRAcgRU0QE=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.031923+00 2025-12-17 10:20:01.031928+00 29124 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LMb1Uy5swsIv6up61ywmi6M57_o=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.033555+00 2025-12-17 10:20:01.033559+00 29125 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lbF1y3jBqBkY3uBoEjCPizVZLsk=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.035294+00 2025-12-17 10:20:01.035299+00 29126 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LJMKwFBlQzNY76SzHJwjUx0R0Jc=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.036902+00 2025-12-17 10:20:01.036907+00 29127 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4V8_wTL_2fMdVK8Xd5HyLca44OI=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.038798+00 2025-12-17 10:20:01.038802+00 29128 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hJ-xqtxujkPbzvETfiEO9oxjM_Q=", "createTime": "2024-08-15 14:48:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.040421+00 2025-12-17 10:20:01.040426+00 29129 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iyrTVdjtwSgRLZdPaoWXK24yTzU=", "createTime": "2024-08-15 14:48:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.042478+00 2025-12-17 10:20:01.042483+00 29130 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3VmzPRg_Helq3acHG5Sh5kYUu98=", "createTime": "2024-08-15 14:48:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.044396+00 2025-12-17 10:20:01.044401+00 29131 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HHSB38j7TH7ebtfp5Oq0RQ-w4eI=", "createTime": "2024-08-15 14:48:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.04631+00 2025-12-17 10:20:01.046314+00 29132 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n4PaNIxukyDnfkerSOUHgWTqoXY=", "createTime": "2024-08-15 14:48:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.047928+00 2025-12-17 10:20:01.047933+00 29133 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vypOHSxyj6Y8VPf_pwpLfLSPVtc=", "createTime": "2024-08-15 14:48:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.049525+00 2025-12-17 10:20:01.049529+00 29134 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QuQ47SOBwdrrnLf1JRXk6tJhzz4=", "createTime": "2024-08-15 14:48:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.051362+00 2025-12-17 10:20:01.051367+00 29135 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2wI_ZEKUpgbhDX42f4BkiKvVNPc=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.05323+00 2025-12-17 10:20:01.053235+00 29136 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UDp_odNLMtwB3RE1jii3FxEPlH4=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.054892+00 2025-12-17 10:20:01.054897+00 29137 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vxQPBiOnN5NmKpsmpw5XCTDmid0=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.056529+00 2025-12-17 10:20:01.056534+00 29138 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CqfFr944SMDsnGQYPdvfWJi2IKc=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.058957+00 2025-12-17 10:20:01.058964+00 29139 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a5hd7sFDjiA9Z5ISiPT6lHxfZTM=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.061099+00 2025-12-17 10:20:01.061105+00 29140 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JOW5oGH7_Umod0xPdl7UnqbSB7E=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.06294+00 2025-12-17 10:20:01.062945+00 29141 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:INFLVcu-5f2RhEyeY4HFYkAZ7Zk=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.064669+00 2025-12-17 10:20:01.064674+00 29142 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:37_y-qFCZG4OnqPzeJH7ViVPS7Q=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.066697+00 2025-12-17 10:20:01.066702+00 29143 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pg3RIHU89hmyQdeR0hwnrKccZr8=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.069461+00 2025-12-17 10:20:01.069467+00 29144 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x86McMMnovHUdcYy8jnI5d6ueCI=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.07154+00 2025-12-17 10:20:01.071544+00 29145 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r45GPI1e9gkPjfNsi8tCDzbMYeA=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.07377+00 2025-12-17 10:20:01.073779+00 29146 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KDG-Y3GLEHEBPtGHSJCO_X7zVJM=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.075938+00 2025-12-17 10:20:01.075944+00 29147 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-120Y6y58gjZeGAbQ9qUpdloJ78=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.077882+00 2025-12-17 10:20:01.077886+00 29148 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0IZIaFZ6k52z-Px1Dbg-dizKunI=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.079859+00 2025-12-17 10:20:01.079865+00 29149 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9i91fLXJiWq3lII5ZZc5y1Jx_Qs=", "createTime": "2024-08-15 14:48:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.081811+00 2025-12-17 10:20:01.081816+00 29150 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:icz0YUYk8rmUQHkO4ff2wG5I1Bc=", "createTime": "2024-08-15 14:48:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.08374+00 2025-12-17 10:20:01.083744+00 29151 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dCShNKINn5EbS_zLLvrLZ1mZGVU=", "createTime": "2024-08-15 14:48:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.086314+00 2025-12-17 10:20:01.086324+00 29152 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L1KvJ2W-mm1fmnnefbYuYEjQp5o=", "createTime": "2024-08-15 14:48:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.089339+00 2025-12-17 10:20:01.089347+00 29153 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sWlX56xN4LoumWk88HNpYAfvSa4=", "createTime": "2024-08-15 14:48:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.092543+00 2025-12-17 10:20:01.092553+00 29154 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m-omcp-OHyKgMc_XFruDjTU6P_o=", "createTime": "2024-08-15 14:48:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.095568+00 2025-12-17 10:20:01.095576+00 29155 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wwblIDa2Cqxp8DSjG0rZRVG8bmA=", "createTime": "2024-08-15 14:48:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.098273+00 2025-12-17 10:20:01.098281+00 29156 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PdOIKRiH6L7mP6H7FadvtCCaZ94=", "createTime": "2024-08-15 14:48:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.100448+00 2025-12-17 10:20:01.100454+00 29157 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LVDmiSB_SiFjQV4r_wsFsUN8qrQ=", "createTime": "2024-08-15 14:48:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.109603+00 2025-12-17 10:20:01.109609+00 29162 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uzDh_jEcOOWSLXVkZ5d1KmcQU2k=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.102098+00 2025-12-17 10:20:01.102103+00 29158 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eHF-y1vS5XKjXxenIhNfy-dvYBk=", "createTime": "2024-08-15 14:48:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.103708+00 2025-12-17 10:20:01.103713+00 29159 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tkoMzAn4szWQTSWxmhNMqE5V57Y=", "createTime": "2024-08-15 14:48:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.106044+00 2025-12-17 10:20:01.106049+00 29160 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H6wKjms7b6B4SMuYgMKZMAmOYFs=", "createTime": "2024-08-15 14:48:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.107587+00 2025-12-17 10:20:01.107592+00 29161 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iEDT0k1Sqj5R3XHMgI7yQHfE8Us=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.111349+00 2025-12-17 10:20:01.111355+00 29163 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aUVCRc1MIkcDRpOl8GRp3YXzsWU=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.113005+00 2025-12-17 10:20:01.113009+00 29164 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b5XRiXRy7Ii-LmB-Ilts74vjuHw=", "createTime": "2024-08-15 14:48:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.114825+00 2025-12-17 10:20:01.11483+00 29165 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B5v8XC90p_BICnhfluUf520LhYE=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.116489+00 2025-12-17 10:20:01.116494+00 29166 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:csEdK7CSzExjikjouCP05JRARjM=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.118095+00 2025-12-17 10:20:01.118099+00 29167 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bl93ioIh5GsCqWcV0S-lmHLgF1U=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.120143+00 2025-12-17 10:20:01.120148+00 29168 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4aR9-4wNOqTMQu7ftKOPqcfba-4=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.121708+00 2025-12-17 10:20:01.121713+00 29169 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S4Lx5U_3PhKjkxbXaNwzrFOv9eI=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.123301+00 2025-12-17 10:20:01.123306+00 29170 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mqx6vSjJFykI56ynfHVdXlmxErs=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.12514+00 2025-12-17 10:20:01.125145+00 29171 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OhDtj9rqFBHffW4magoRhSlEj7Q=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.127263+00 2025-12-17 10:20:01.127268+00 29172 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LB2tHjLvwirWQQNahNZOIehonHc=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.129113+00 2025-12-17 10:20:01.129118+00 29173 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:41KrOH5YZDYyMmElEJ_neNL9Xfk=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.130955+00 2025-12-17 10:20:01.130959+00 29174 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xd7ZXwvz6UPw9OxN4uNgIeXB_OQ=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.132549+00 2025-12-17 10:20:01.132554+00 29175 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ogK6Xk4LswHnxn2Ujj7_4N9QFKg=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:20:01.134425+00 2025-12-17 10:20:01.13443+00 29176 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=1766053200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W_bNXPLy7TWD_EoWpFubhZ5hddE=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.605021+00 2025-12-17 10:30:00.60503+00 29177 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YzVkOClO8tH3K5RbgJl1xcyYR-I=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.608162+00 2025-12-17 10:30:00.608169+00 29178 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:znTNA81rTMqHvypOtGXSFbZ2_Wc=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.61044+00 2025-12-17 10:30:00.610445+00 29179 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H2vWNkBoAE8GJZ8P72njzxARjfU=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.613036+00 2025-12-17 10:30:00.61304+00 29180 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YFoRU-hmwQ9ortsxQ2Rs6pCfd-A=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.614966+00 2025-12-17 10:30:00.614971+00 29181 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ErRWlZnl3WuRDzfIkhD_TErXrQo=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.616588+00 2025-12-17 10:30:00.616592+00 29182 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IwdIfDkzE6GTXKMyUsNUzlS-jHk=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.61827+00 2025-12-17 10:30:00.618275+00 29183 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rCSyhmztwsooml0a5HnIHANtxJ8=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.619964+00 2025-12-17 10:30:00.619968+00 29184 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C6JD73QFjAFSs18-Qk_IQyHWjbk=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.621578+00 2025-12-17 10:30:00.621582+00 29185 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hknq5b_LvR7o1KzTSicZBtLTJ30=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.623279+00 2025-12-17 10:30:00.623284+00 29186 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IUBvjvCng1ZkGWf0f1aB8etz1Bk=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.625058+00 2025-12-17 10:30:00.625063+00 29187 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m5wV8Q908z_csjcumADyIv5IXlA=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.62692+00 2025-12-17 10:30:00.626925+00 29188 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HvlsOPa4R5Y2FbTVrQAeJvAHPhc=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.628743+00 2025-12-17 10:30:00.628748+00 29189 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yo0KSg7CITmUJBMlJpe5CViRuz8=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.630317+00 2025-12-17 10:30:00.630322+00 29190 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YFaG7hS-Ae6BhboZOTo4mUJ6Sbk=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.631898+00 2025-12-17 10:30:00.631903+00 29191 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V7qCESO-7FJ_6w9u5njlGPmhgpU=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.633714+00 2025-12-17 10:30:00.633718+00 29192 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2T_lAH89Pi7FCTrnG8hmMKdgyPY=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.63535+00 2025-12-17 10:30:00.635355+00 29193 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xtrjZiNsHl0tIX0ydK8mQcSVJQo=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.637069+00 2025-12-17 10:30:00.637074+00 29194 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RRgnDgCRYYbBAgUUHjubuX36rKA=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.638905+00 2025-12-17 10:30:00.638909+00 29195 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IwaWDhC58hFz5tgFl8_Phnv2lWE=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.640947+00 2025-12-17 10:30:00.640953+00 29196 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w61YaRsizb2u8adet3Ed1snDCcg=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.642891+00 2025-12-17 10:30:00.642898+00 29197 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nS535EhNFo2918tG29w4YcsaaFc=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.644785+00 2025-12-17 10:30:00.644789+00 29198 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:chvGWSTMvz4SnyAkQmO7IkVQHME=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.646367+00 2025-12-17 10:30:00.646372+00 29199 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h77HbLjS1Fea9DGQwZRCey44tYc=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.647966+00 2025-12-17 10:30:00.64797+00 29200 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7rRxFf_awa8l5VhYUiaLUAfAcss=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.649804+00 2025-12-17 10:30:00.649808+00 29201 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8C2NRvkdzQ7UMNd6lMjwbimwJws=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.651363+00 2025-12-17 10:30:00.651368+00 29202 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TuT4iR2Nn81AwRBI-LOImvtAOCk=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.652947+00 2025-12-17 10:30:00.652951+00 29203 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2LnmevnyiqDEGktKBSoI87MQUdk=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.654506+00 2025-12-17 10:30:00.65451+00 29204 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:REb7bmv1VITtmcLCGa_UpD6fy08=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.656181+00 2025-12-17 10:30:00.656187+00 29205 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9RidNqUjROi1mQIM1hW2AhxPr8Q=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.658149+00 2025-12-17 10:30:00.658154+00 29206 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rvru5Y0Zq8XqwsFBFfOxtRgnlaM=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.660019+00 2025-12-17 10:30:00.660023+00 29207 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bKkLCn7gmmuv1QGoEgl6PiWqblo=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.661588+00 2025-12-17 10:30:00.661592+00 29208 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dUL9oKflY4vAvYFHQPY9DWqk6Pc=", "createTime": "2024-08-15 14:48:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.663166+00 2025-12-17 10:30:00.663171+00 29209 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FRJfyH1qgKzgWgwSQqRhJy5TmsY=", "createTime": "2024-08-15 14:48:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.664938+00 2025-12-17 10:30:00.664942+00 29210 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fj3OMR6gAX-oZhnVDqZEf83mOhw=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.66652+00 2025-12-17 10:30:00.666524+00 29211 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xP9I445kwrNJiaecY6hDOfvlIjQ=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.668072+00 2025-12-17 10:30:00.668076+00 29212 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jw85JSkMcfWbRTNVyriUTQ2leI4=", "createTime": "2024-08-15 14:48:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.670013+00 2025-12-17 10:30:00.670017+00 29213 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V5Z3TYGWTFENuyOiXqzxYW_MoqY=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.671571+00 2025-12-17 10:30:00.671575+00 29214 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sd_wtYUBzt5MsgrgDxoAbn1nO8Y=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.673189+00 2025-12-17 10:30:00.673194+00 29215 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ldI0ZGwYa_x20-TgFs_CUQe7ZxQ=", "createTime": "2024-08-15 14:48:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.675311+00 2025-12-17 10:30:00.675316+00 29216 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jtbvVRQDWB2VX7OsmdSul9tHo_8=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.677402+00 2025-12-17 10:30:00.677407+00 29217 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MCdYQerGHksZJarofSldF5r3omo=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.679296+00 2025-12-17 10:30:00.679301+00 29218 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m_rb7VMGH176fnh4envegp3gVWc=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.68116+00 2025-12-17 10:30:00.681165+00 29219 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q7iooMW0u5zkBPbA_FvNR2hYHs0=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.682936+00 2025-12-17 10:30:00.682942+00 29220 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GA0N389XF8V28Ppbpk34v2MYtSE=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.684598+00 2025-12-17 10:30:00.684602+00 29221 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xBLf7TN_pXx1fTqGLtJQs37XhrU=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.686199+00 2025-12-17 10:30:00.686203+00 29222 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6U77RW_26JEMECHzmx0coKTuu4E=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.687868+00 2025-12-17 10:30:00.687873+00 29223 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lc8713cGQW0defjVEa9emF7hqqs=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.689481+00 2025-12-17 10:30:00.689486+00 29224 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IwLW01TkhPeuDVSjUz92upnjqgU=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.691313+00 2025-12-17 10:30:00.691318+00 29225 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ihiUsy1xbyDGCYM3mWao-N6GCXA=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.69333+00 2025-12-17 10:30:00.693334+00 29226 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:srh_bVAbGd1TZBoNzORib8tttkc=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.695392+00 2025-12-17 10:30:00.695397+00 29227 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z34OAXZSF1Ry4Ttes1EP6suvwPY=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.697249+00 2025-12-17 10:30:00.697253+00 29228 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eox0Qubcy75IBW1Xp91G6zoUcdg=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.69886+00 2025-12-17 10:30:00.698864+00 29229 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9kgy-Shj7ozdmpcsjxsAnfQzsio=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.700419+00 2025-12-17 10:30:00.700424+00 29230 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1DHSPECx5gKcDtvmni9o3GypEWQ=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.70223+00 2025-12-17 10:30:00.702234+00 29231 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MjKD5aF5b_jstueS4IHnJqj9Nac=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.703816+00 2025-12-17 10:30:00.703821+00 29232 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H32zTMReP2CnDu8hhUP-KTEUpgg=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.705372+00 2025-12-17 10:30:00.705377+00 29233 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mk_ZSKHdh7eI_thdaBS4I6NpN8Y=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.707425+00 2025-12-17 10:30:00.70743+00 29234 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p-lgB20SBXPi0qTHgNI4WJnirvA=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.709357+00 2025-12-17 10:30:00.709362+00 29235 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5oSSHjAiYwWuOc5K8f7mvnIWt0A=", "createTime": "2024-08-15 14:48:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.710985+00 2025-12-17 10:30:00.710989+00 29236 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A0Pwyf06A6GolTExkQfqifEmgwE=", "createTime": "2024-08-15 14:48:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.713148+00 2025-12-17 10:30:00.713152+00 29237 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o_jCXrC1wZHBHxVIqhgcGq3Kxns=", "createTime": "2024-08-15 14:48:36"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.714779+00 2025-12-17 10:30:00.714783+00 29238 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B5daJgu_plF4jsjJkY514RtRO5k=", "createTime": "2024-08-15 14:48:38"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.7164+00 2025-12-17 10:30:00.716405+00 29239 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r0wQnglms3O3ceC_jkgNJtVzh68=", "createTime": "2024-08-15 14:48:38"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.718025+00 2025-12-17 10:30:00.71803+00 29240 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VdAY3SSuoeIW6CqByQ68INsKoBs=", "createTime": "2024-08-15 14:48:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.719654+00 2025-12-17 10:30:00.719658+00 29241 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2sFMqLUktrZFH9vECYUI7Z5xhLo=", "createTime": "2024-08-15 14:48:38"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.721464+00 2025-12-17 10:30:00.721469+00 29242 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UEOZwh4FbJCpAraORIL-w1vGbQg=", "createTime": "2024-08-15 14:48:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.723531+00 2025-12-17 10:30:00.723536+00 29243 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g1ziLScR0I1QnQqco2Gf37CCXbI=", "createTime": "2024-08-15 14:48:38"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.725496+00 2025-12-17 10:30:00.725501+00 29244 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oXAHYPKzGWwc5TzYEeQ_-fIDPMI=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.727503+00 2025-12-17 10:30:00.727508+00 29245 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4I5fEtEMyYGNTlKrdZbmlfm_jbk=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.729474+00 2025-12-17 10:30:00.729479+00 29246 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ezQs773QwvwIO5EKtBgf4FfBMQ=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.731148+00 2025-12-17 10:30:00.731153+00 29247 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nj5nWjd2n70V5Vaoow0wxsUc0DE=", "createTime": "2024-08-15 14:48:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.732748+00 2025-12-17 10:30:00.732753+00 29248 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G2gBbldXLmLKODkDvShI8KdsFt4=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.734325+00 2025-12-17 10:30:00.734329+00 29249 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W9Drhg64NgSK5QlgoHtxcQETpR8=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.735914+00 2025-12-17 10:30:00.735918+00 29250 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xzEnSyjkTG5KN0U_mNlUczlQNu4=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.737494+00 2025-12-17 10:30:00.737499+00 29251 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tInVxmHLdZKVxPwxkvlLJ_bJsC0=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.739067+00 2025-12-17 10:30:00.739071+00 29252 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gt0tciufDrAMaAtUuZtSlTXxtek=", "createTime": "2024-08-15 14:48:39"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.741372+00 2025-12-17 10:30:00.741377+00 29253 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cEBIvt6jyA1s4NKFZjARipPuEis=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.743493+00 2025-12-17 10:30:00.743498+00 29254 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r-S-w9Ez-tA91q_ME5me4H6K2Ww=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.745301+00 2025-12-17 10:30:00.745306+00 29255 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IxF9lvkCEuHxd5xZJBievwY4N2w=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.747599+00 2025-12-17 10:30:00.747604+00 29256 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y30nkDadrOWR0bdMavoP-7MxHww=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.749845+00 2025-12-17 10:30:00.749851+00 29257 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tnIWn7oqZTprKw4C696Buw6NY2k=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.751764+00 2025-12-17 10:30:00.751768+00 29258 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V__O99kO7mVRXoNAsK-2nb34lX4=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.753615+00 2025-12-17 10:30:00.75362+00 29259 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SOnHYRQviJCGflnTHN96Cqzai84=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.755259+00 2025-12-17 10:30:00.755264+00 29260 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AsmwZWocGdYAzSPiIzOEgeg7tSE=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.757165+00 2025-12-17 10:30:00.75717+00 29261 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gkHnvijm8QXjL0ByKxkQZGabqng=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.75909+00 2025-12-17 10:30:00.759095+00 29262 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nhS-UB8--QhvmTdEsEx-zLkH45U=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.760747+00 2025-12-17 10:30:00.760752+00 29263 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s5AS-5t5AXIHOnMGHejxH1Zx_Aw=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.762619+00 2025-12-17 10:30:00.762624+00 29264 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sknr961f017oEpwUz1FVHDYCne0=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.764242+00 2025-12-17 10:30:00.764247+00 29265 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PB04pTocS8yGNNLjWmbF_ZW-ZXs=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.76591+00 2025-12-17 10:30:00.765915+00 29266 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6hBMTzf6q3T1TRLnqvj8NQvbloY=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.767712+00 2025-12-17 10:30:00.767716+00 29267 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FlTjS_JiqffF6oJD3v41tAklnRg=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.769775+00 2025-12-17 10:30:00.76978+00 29268 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0XzLaoH4Vmw9oSQLIFc_PoDtvCs=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.771735+00 2025-12-17 10:30:00.771741+00 29269 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:17Uuc2fN8IAFG73F31-7EElkeFc=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.773582+00 2025-12-17 10:30:00.773587+00 29270 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cinHPDdsl-XBGnUwU1FeT4D8lzU=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.775364+00 2025-12-17 10:30:00.775368+00 29271 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-z_JE1qp_TY0tl7KPNqHTgIj5TE=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.777059+00 2025-12-17 10:30:00.777063+00 29272 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zFvhuJRsA0RT55JRkR0Qolh8AqQ=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.778983+00 2025-12-17 10:30:00.778989+00 29273 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SzGMtoUXBW2j6OrXf0DGFzzVnxs=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.781039+00 2025-12-17 10:30:00.781044+00 29274 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Amkr0yUs3zx8d-yUUxoF20fmkrw=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.783104+00 2025-12-17 10:30:00.78311+00 29275 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:32defomn0mUMFJ9dB4aP_08iHPU=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:00.785019+00 2025-12-17 10:30:00.785023+00 29276 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=1766053799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4b-xctZ1M9K0DSm-EeAvbVOKhu0=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.158139+00 2025-12-17 10:30:01.158147+00 29277 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PdF0JcECz_6rzcZ2Wf8tac3WPuM=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.160577+00 2025-12-17 10:30:01.160584+00 29278 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3y9Reuo9HuXo_ursqMK6HbgNLkE=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.162477+00 2025-12-17 10:30:01.162483+00 29279 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8OOJEM8vBszH3Gn99oZgZmG3Bpw=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.164205+00 2025-12-17 10:30:01.16421+00 29280 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MQKveossBxW4WZyZGnZIwalt10U=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.16584+00 2025-12-17 10:30:01.165845+00 29281 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J0XEVNuwqKnciNNM1AGE4KMCSNM=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.167663+00 2025-12-17 10:30:01.167667+00 29282 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WYuHqDOn1UjUlRXwRioap3lWSPY=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.169256+00 2025-12-17 10:30:01.16926+00 29283 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wvj_FVc4t0_C63RXVasun5JbdeQ=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.170863+00 2025-12-17 10:30:01.170868+00 29284 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k7eu7_Ym7ZQ-7v-uobTPMaGa-_8=", "createTime": "2024-08-15 14:48:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.172766+00 2025-12-17 10:30:01.17277+00 29285 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SKb_sVjPWamjK_dIkxq80O_ZznQ=", "createTime": "2024-08-15 14:48:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.174417+00 2025-12-17 10:30:01.174422+00 29286 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R-wwCVXE_hWCZrKXttHO2HgX3oE=", "createTime": "2024-08-15 14:48:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.176044+00 2025-12-17 10:30:01.176048+00 29287 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c6cqJaOsexTxh879HMbLfpXwavA=", "createTime": "2024-08-15 14:48:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.177895+00 2025-12-17 10:30:01.177899+00 29288 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dlAZ40RqPi9gzwLvefuaG6TDnBE=", "createTime": "2024-08-15 14:48:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.179717+00 2025-12-17 10:30:01.179722+00 29289 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oFT0ksaROLmrkRqgZfX-kSAGayA=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.181291+00 2025-12-17 10:30:01.181295+00 29290 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JxHZWHHUgYdUain-YUMicMls17c=", "createTime": "2024-08-15 14:48:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.182872+00 2025-12-17 10:30:01.182876+00 29291 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a3lRkdWs277OIhV9iv_BEGo4JPY=", "createTime": "2024-08-15 14:48:44"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.184431+00 2025-12-17 10:30:01.184436+00 29292 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3tRqx-pJ2xQPR_7IQ3O9K4W5zWU=", "createTime": "2024-08-15 14:48:45"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.186+00 2025-12-17 10:30:01.186004+00 29293 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sHUoM-YPZyJxiY_kG0GU7MPCLE8=", "createTime": "2024-08-15 14:48:45"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.187804+00 2025-12-17 10:30:01.187808+00 29294 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9m_c7TTPaw8MgdDk9_wPS9Jl3jM=", "createTime": "2024-08-15 14:48:45"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.189356+00 2025-12-17 10:30:01.18936+00 29295 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SAiz8dQDpwcixSHQ76plMCFMYJ8=", "createTime": "2024-08-15 14:48:45"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.190998+00 2025-12-17 10:30:01.191002+00 29296 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cFMcLusrdHPIBDavq1AH7VVNSJw=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.192883+00 2025-12-17 10:30:01.192887+00 29297 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bwqdyKiDd7godI8OPg19X-nlhqQ=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.194473+00 2025-12-17 10:30:01.194478+00 29298 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KCD-3W2GOKduKQQQwMkRu-39Fxc=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.196061+00 2025-12-17 10:30:01.196065+00 29299 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pfVJp-AHiaxaW8ZzRE9-uIpF7eU=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.197922+00 2025-12-17 10:30:01.197927+00 29300 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-6_sLIeOvXQNZaXp3t1KVS-heaw=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.199584+00 2025-12-17 10:30:01.199589+00 29301 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gez3ZneUcUxD3n0_XbDZFEcoMRw=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.201496+00 2025-12-17 10:30:01.2015+00 29302 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RT1hYpPQVQyJByROgkQTMYXdv5E=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.203378+00 2025-12-17 10:30:01.203382+00 29303 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H2uE8YE0vRfof8vd8cJeOpamBbI=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.205281+00 2025-12-17 10:30:01.205286+00 29304 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rDpeg3i-iqgRMWaAzd7K2o6iLng=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.207208+00 2025-12-17 10:30:01.207213+00 29305 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yG-c4v9l0rMJMwAs186AgUXXW_4=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.209478+00 2025-12-17 10:30:01.209483+00 29306 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K-GcSisYFGHeP6ALeCEakxduBKo=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.211391+00 2025-12-17 10:30:01.211395+00 29307 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KDWpcQI-p40Vl9PT3vZrrQeYTJw=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.213285+00 2025-12-17 10:30:01.213289+00 29308 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rXlXrxFQ6UHJ3kg_FzosCNfx4rM=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.215499+00 2025-12-17 10:30:01.215504+00 29309 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:44bgFfQx_2mE7-FNgS80G4Qin_0=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.217208+00 2025-12-17 10:30:01.217212+00 29310 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XP_uQfoOqRaejbAOxnLHaP8Uk3g=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.219081+00 2025-12-17 10:30:01.219086+00 29311 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kobGUhJoIhYYnyzJoYzPhaTi81I=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.220674+00 2025-12-17 10:30:01.220679+00 29312 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ISyGLk1XzqbK1O1WlCZa0LgzDQ=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.222265+00 2025-12-17 10:30:01.22227+00 29313 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Lq4v5qu7wdBKkSd7GqVhshn0Jc=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.224227+00 2025-12-17 10:30:01.224232+00 29314 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mL6jUnHFAkyPfvZQQqR617G6GQw=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.226233+00 2025-12-17 10:30:01.226238+00 29315 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CvsAl5EAkd7w4DyQI0Gp2w6t98c=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.228171+00 2025-12-17 10:30:01.228176+00 29316 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U7Xwfcj1NO3fY5CAHwxpyEytnQ4=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.230128+00 2025-12-17 10:30:01.230134+00 29317 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OMncFWFjUWgx8iq8tpNay77GP3E=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.231912+00 2025-12-17 10:30:01.231917+00 29318 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WeegWFa6YitGqvuiq6DYz7qQ4mo=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.233499+00 2025-12-17 10:30:01.233503+00 29319 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wxKjY1p0Jj6JtmK-DZb9tBo4Izo=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.235092+00 2025-12-17 10:30:01.235096+00 29320 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6BQQdEo0AJF-ywq7OpvWtg0eNxQ=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.236696+00 2025-12-17 10:30:01.236701+00 29321 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fvH5rAWXhaElfgxdEnCWYQJQ1rk=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.23828+00 2025-12-17 10:30:01.238284+00 29322 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y9ZubvJHYPLkEkFiqQiBVq5byMU=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.239851+00 2025-12-17 10:30:01.239856+00 29323 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6HgQI4BK40pM8FtTA9KoTRAhLTU=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.241678+00 2025-12-17 10:30:01.241683+00 29324 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PITOH4_EMna9OR8UHkLoP83ijMM=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.24359+00 2025-12-17 10:30:01.243595+00 29325 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IH-NzXNsBZRxkltilYZpj0Ftlco=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.245202+00 2025-12-17 10:30:01.245206+00 29326 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5v_7c7BIeDjrEKCvdVe1c_pg3_0=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.246789+00 2025-12-17 10:30:01.246793+00 29327 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rVaTKvRTf75nzaEmu4SHADM5PlY=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.248371+00 2025-12-17 10:30:01.248376+00 29328 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TGJXMZw7Q9lE9LKuY-kySC88_00=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.256869+00 2025-12-17 10:30:01.256875+00 29333 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ktu9DOoDuqx0xTODscsMFtGJm0=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.249932+00 2025-12-17 10:30:01.249936+00 29329 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6z5bPisJm8PBRv2m36eajUbdCbU=", "createTime": "2024-08-15 14:48:48"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.251521+00 2025-12-17 10:30:01.251526+00 29330 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WP5InlCbsjg9q6tSX8n5mCKBSFA=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.25335+00 2025-12-17 10:30:01.253355+00 29331 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bM3ShAlfmmEsGUugbB3IFI93Rbo=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.254927+00 2025-12-17 10:30:01.254932+00 29332 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hfnHrcFBngUNYFEWKNDOWePGBIg=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.25867+00 2025-12-17 10:30:01.258675+00 29334 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Wv5E2HW3k_XAi1ujkmMlnc0WxU=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.260615+00 2025-12-17 10:30:01.260619+00 29335 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4z4Ro_3CsS6IQq2nh6qadV83_aY=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.262425+00 2025-12-17 10:30:01.26243+00 29336 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3sbuVgR4ka9e07WLSQPXimAmT-c=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.263977+00 2025-12-17 10:30:01.263982+00 29337 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CkDQmc2iZbvXtRQnZadQ4NgO9tY=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.265559+00 2025-12-17 10:30:01.265566+00 29338 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4CMjiDe4YQlHoM1NDiOnDuI6928=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.267391+00 2025-12-17 10:30:01.267395+00 29339 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MLkr1nCkh4reNoakMvfphDJuhuE=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.268966+00 2025-12-17 10:30:01.268971+00 29340 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nzDc83A_yBxMatzoc5XrVZoHAIw=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.270521+00 2025-12-17 10:30:01.270526+00 29341 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DInXKhcxBcoqQSBSrlXr1F35bmc=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.279628+00 2025-12-17 10:30:01.279632+00 29346 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-eDA3RNWuFnWovSm7lyrxLnz85w=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.272078+00 2025-12-17 10:30:01.272082+00 29342 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PDPWoWH8gz1PCtGYU4RHu3JXmek=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.273673+00 2025-12-17 10:30:01.273678+00 29343 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r6vZaGz-Wa-kk3GdlHjHaBMHAvU=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.275855+00 2025-12-17 10:30:01.27586+00 29344 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mUYTwuH5BKpSOr9akoVe0dqsHjk=", "createTime": "2024-08-15 14:48:49"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.277804+00 2025-12-17 10:30:01.277809+00 29345 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7TIs3gXd3LMmVkLca4zjiEqPMys=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.281197+00 2025-12-17 10:30:01.281201+00 29347 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VFDAN75TDsGcPBMjOsXPpgXPkpA=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.282774+00 2025-12-17 10:30:01.282778+00 29348 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sOMbsObKaR-FCbijncoYw3-qYYI=", "createTime": "2024-08-15 14:48:51"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.284651+00 2025-12-17 10:30:01.284655+00 29349 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OQhOZXR9vkJGP0HOw5JW39KggH0=", "createTime": "2024-08-15 14:48:51"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.286483+00 2025-12-17 10:30:01.286488+00 29350 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TViYHwe2TG7w2j-e02UtJOuygdo=", "createTime": "2024-08-15 14:48:51"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.288076+00 2025-12-17 10:30:01.288081+00 29351 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8RqsVkALLsAr5sYTUU5G27VM8eM=", "createTime": "2024-08-15 14:48:51"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.289658+00 2025-12-17 10:30:01.289662+00 29352 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rUBfFovZQ7Fv2QYjaxgtTz51vsk=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.291339+00 2025-12-17 10:30:01.291344+00 29353 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AGmQL-Z1GTcGspfNRSmrldPBJMQ=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.293028+00 2025-12-17 10:30:01.293032+00 29354 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-KWY_pVYtFDAiKyMUVf2BsWXr_8=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.29466+00 2025-12-17 10:30:01.294665+00 29355 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HCagbKhe2dBtg8p9rDbBNPnEFHI=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.296659+00 2025-12-17 10:30:01.296663+00 29356 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q9nqabpuK9CMLWReK4zqEzELtxY=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.298671+00 2025-12-17 10:30:01.298675+00 29357 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FzOJPOE79VEgvw5W_lBVhdDXK2A=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.300246+00 2025-12-17 10:30:01.30025+00 29358 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oILJrOrARANmMmXLlQXlUAycBrk=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.301846+00 2025-12-17 10:30:01.30185+00 29359 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z5WXPfbTVEsU8Mf-wVWOJcCQgkw=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.303674+00 2025-12-17 10:30:01.303679+00 29360 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JpVUrABpsMTfqnl5jOKpBEsgQK0=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.305248+00 2025-12-17 10:30:01.305252+00 29361 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w-8Mbikaj8Cnea0PnegWIPZSGgk=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.306838+00 2025-12-17 10:30:01.306844+00 29362 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PG-JYsMWif5zYTbf0w9MH7YpPgo=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.309075+00 2025-12-17 10:30:01.309081+00 29363 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pa8xf5gk3jZpiTJ2uCCY0WhUBGo=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.311014+00 2025-12-17 10:30:01.311018+00 29364 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EkAqR1-EwmnQZ10Phv3TVCjo1Qc=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.312864+00 2025-12-17 10:30:01.312868+00 29365 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hy2mcxV0_QIG1jye1VW0y4ysNpo=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.314728+00 2025-12-17 10:30:01.314732+00 29366 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mi4wi5nUk0I706ymDOttY01z-6g=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.316319+00 2025-12-17 10:30:01.316323+00 29367 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AgQckzeOxPi0YpKtJ2fFlwGEliY=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.317897+00 2025-12-17 10:30:01.317902+00 29368 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_iNDPgzoMPNEYbYGlcj2UDKQ9Zg=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.319724+00 2025-12-17 10:30:01.319729+00 29369 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-DChl1SvC3FxuXm3uOy2WIYp0Qg=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.321371+00 2025-12-17 10:30:01.321375+00 29370 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5bJ9ll6p8IBelsERGdUIm_eLKS0=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.323013+00 2025-12-17 10:30:01.323019+00 29371 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1iUcreODq_RZpWl3bK-VLEAMR-Y=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.325248+00 2025-12-17 10:30:01.325254+00 29372 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z64pyWo-FsZgnjjG58imvk6Lez8=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.327381+00 2025-12-17 10:30:01.327386+00 29373 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3j0p5quBekZXVm3kDbATmVHoejI=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.329019+00 2025-12-17 10:30:01.329023+00 29374 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FYjEWQS87DDKtP_nkIi927yeY7o=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.330988+00 2025-12-17 10:30:01.330993+00 29375 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FAnfmNyjhR6l9F31ENPJQr6xNnA=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:30:01.333127+00 2025-12-17 10:30:01.333132+00 29376 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=1766053800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5qHj989Js-ufimOTCVe0CaCSBNU=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.454306+00 2025-12-17 10:40:00.454315+00 29377 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ParmkGaVek6YWjatjaPnC0ZcSHU=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.457286+00 2025-12-17 10:40:00.457292+00 29378 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CqeSG6DcVrVsaS_m7s9NkyW0ZYk=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.459295+00 2025-12-17 10:40:00.4593+00 29379 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DRz_9ge9Ry9I7tYLRRCKgVJrduY=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.461089+00 2025-12-17 10:40:00.461093+00 29380 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ON-52r15q5Y4m0DcB4xT0W67iO8=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.462811+00 2025-12-17 10:40:00.462815+00 29381 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fiKcvmN4fA464SaNht9dNUvkwOc=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.46503+00 2025-12-17 10:40:00.465034+00 29382 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nz9LqdlMxOj0mLEQSaJjnraZUXE=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.467021+00 2025-12-17 10:40:00.467026+00 29383 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DCcKJPjRVwTIsDG8X0_n_X8R-Ow=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.468935+00 2025-12-17 10:40:00.468939+00 29384 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g2OK3TboU3Mh_lPXim0b3QJ8HPg=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.487756+00 2025-12-17 10:40:00.487761+00 29392 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ow1pi2uCRyrM-5fHlWrtZEVAZZw=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.470901+00 2025-12-17 10:40:00.470906+00 29385 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zcJhjlGVCjjWhNM_HjnwM9J3usc=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.474964+00 2025-12-17 10:40:00.474969+00 29387 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6qKgYZ8DvsoUzag9xMcriO8bL2U=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.47307+00 2025-12-17 10:40:00.473074+00 29386 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XL_S6jCgcyw5t8dv5nVOCBWogNU=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.47685+00 2025-12-17 10:40:00.476854+00 29388 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:81ud-ZoBgJ9vTPa6QCYzlXdnHNE=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.481076+00 2025-12-17 10:40:00.481081+00 29389 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PlcTlfLPHifcad-16HR4v25PDOs=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.482692+00 2025-12-17 10:40:00.482697+00 29390 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LKcbVGMMLKKywhBnz9rBSjxwwqw=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.486033+00 2025-12-17 10:40:00.486038+00 29391 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6fhQsilxvPT30Q7kemrzefq1U_Y=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.489452+00 2025-12-17 10:40:00.489457+00 29393 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:djLOdHNxf68n8pii59jqqa67GkE=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.491066+00 2025-12-17 10:40:00.49107+00 29394 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vyfaUKYfvpdgL1CxP06Mke6ArzM=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.492718+00 2025-12-17 10:40:00.492722+00 29395 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uRItOs7kk528NxAwWFkhQq3AkTE=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.494276+00 2025-12-17 10:40:00.49428+00 29396 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OfYXrA9c67gkx_xJ4cd-iWzMcKM=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.495876+00 2025-12-17 10:40:00.49588+00 29397 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r6LLB2Tx0idSH4lvUJX7JdoBZDw=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.497797+00 2025-12-17 10:40:00.497801+00 29398 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Shk0lcwvQ91LpUXNnBzRuZbZdFE=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.499379+00 2025-12-17 10:40:00.499383+00 29399 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L_3Ba2kHN6Vcvx8BEipcZpeXuOk=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.500974+00 2025-12-17 10:40:00.500979+00 29400 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDF6disg7-Vl5PG_7C_rb2yOS-s=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.502842+00 2025-12-17 10:40:00.502847+00 29401 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:30NLsiIgCOJRkJAqv-8XF60HGNA=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.50472+00 2025-12-17 10:40:00.504725+00 29402 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AgGA9ksxH0m0nDCY3wjIoLWar5s=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.506429+00 2025-12-17 10:40:00.506434+00 29403 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gup_1jzgsAwWlVwPLDMs_N40juw=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.508057+00 2025-12-17 10:40:00.508061+00 29404 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3kSMkAM1c2DYbTBdCFZq8VLx6NU=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.509859+00 2025-12-17 10:40:00.509863+00 29405 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1rpG4DsXP_wVkipdLznrkj-MOz8=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.511458+00 2025-12-17 10:40:00.511463+00 29406 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OxC2AFbmB1O-kI-8XWd_PNToqMY=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.513095+00 2025-12-17 10:40:00.5131+00 29407 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FqKsZ0-Alurai1uu5Iw0_kxufqo=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.514954+00 2025-12-17 10:40:00.514958+00 29408 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fECesP8rVESfh31ry4FQzWGJ9ZI=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.51653+00 2025-12-17 10:40:00.516534+00 29409 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s4RM1rLGxJVmc__loIxKtbra5DA=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.518146+00 2025-12-17 10:40:00.518151+00 29410 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HchpCoqvQ1k_7zrYQI54BPB20Zk=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.520053+00 2025-12-17 10:40:00.520058+00 29411 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6UiIqzKSrcO74QrGCH_KCRFkpRQ=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.522123+00 2025-12-17 10:40:00.522129+00 29412 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yTuXecWqUKbCrL3XSVltGpQU4Go=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.52405+00 2025-12-17 10:40:00.524055+00 29413 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6b9IQx9mcGM8hGqPk2jhv3xIpUg=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.525701+00 2025-12-17 10:40:00.525705+00 29414 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tDmxSRokZzmH7wexK82l5bwLx98=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.527303+00 2025-12-17 10:40:00.527307+00 29415 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DCUqGCM1FbL1FFFAX4ZWN1xoMGc=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.529121+00 2025-12-17 10:40:00.529126+00 29416 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G4o0F9Bj7qOV9WH04IEYJStkGco=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.531065+00 2025-12-17 10:40:00.53107+00 29417 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YwWoG56CrytDZRViyjioREdhe4U=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.532698+00 2025-12-17 10:40:00.532703+00 29418 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JlAMS2myQCGRRcOamapmbUNcZfk=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.534288+00 2025-12-17 10:40:00.534293+00 29419 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXk2A90b47BZk38wYMvc8Qp_UU8=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.536124+00 2025-12-17 10:40:00.536129+00 29420 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jdAyW3jz5BS2i_M_zsw5uFZc_rs=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.537934+00 2025-12-17 10:40:00.537939+00 29421 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UCAVybETH6lwhDQcvlrl3lhXEvY=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.539619+00 2025-12-17 10:40:00.539624+00 29422 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DOLnvfnKIlhbSRb_lSIjnKT0PtY=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.541242+00 2025-12-17 10:40:00.541246+00 29423 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7IbK9x-IQmSg_pdLLFgnr2yEz8=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.543139+00 2025-12-17 10:40:00.543144+00 29424 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KojHD1oQxrf1QacNCKW0esP0yUU=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.544836+00 2025-12-17 10:40:00.54484+00 29425 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o_IfJHimBfbEJ9vVrHICTmfzj0Q=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.546889+00 2025-12-17 10:40:00.546895+00 29426 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CX5WgT2G2HvbeIIADMJgDCYaPbg=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.54876+00 2025-12-17 10:40:00.548764+00 29427 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GLK9Csm7L5pK23AfYdR8wAPKUAA=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.55041+00 2025-12-17 10:40:00.550416+00 29428 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jvPNbEJ_-mAIdaNJNnTPKPu1-SI=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.552381+00 2025-12-17 10:40:00.552385+00 29429 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:191NYaFhHrFdJyWoqiEZByZ5M6Q=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.554221+00 2025-12-17 10:40:00.554225+00 29430 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IKp7ty-iTiI36koXiHzuqF_r15U=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.555919+00 2025-12-17 10:40:00.555923+00 29431 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZDViqUpuCNSPNgOznZutibqmcsw=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.557524+00 2025-12-17 10:40:00.557529+00 29432 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z4t51tVtGdv1S3Q_8X296icRcmI=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.559116+00 2025-12-17 10:40:00.55912+00 29433 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:utj8UdaOcusmg38jNa2T2cCHv8Q=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.560728+00 2025-12-17 10:40:00.560732+00 29434 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D8NpAm7F3OY6dgFMy5gS5n6so4Q=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.562804+00 2025-12-17 10:40:00.562809+00 29435 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pnhjTXmBVx-QSIP-6Df-3x1DgT0=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.564504+00 2025-12-17 10:40:00.564508+00 29436 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZTRVJSvI9lEjsvqsFkYfRUec5FY=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.566388+00 2025-12-17 10:40:00.566394+00 29437 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wp-S3wvSqzdBjiH64JkQmqvud14=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.568345+00 2025-12-17 10:40:00.56835+00 29438 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ugIyGcWOvf10slwaJvCsYIBNVfE=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.570401+00 2025-12-17 10:40:00.570406+00 29439 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lav-Ei-34zxpJQFV5l1MFQUPOQE=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.572433+00 2025-12-17 10:40:00.572438+00 29440 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zPeiXf5-xSeB9C89oNWLqV3XCoU=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.574452+00 2025-12-17 10:40:00.574457+00 29441 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GuPIS9IGjaXK4gQ7KG1B5wtTwIY=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.576481+00 2025-12-17 10:40:00.576486+00 29442 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nGngbDPkzzY3vtT9emX65RmKXqE=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.578611+00 2025-12-17 10:40:00.578616+00 29443 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o1UXUEPyVmhr8np0T1bv-x_h0Rg=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.580582+00 2025-12-17 10:40:00.580586+00 29444 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VeyeB0TSFUrARXiBtO_1SQfEVoc=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.582441+00 2025-12-17 10:40:00.582446+00 29445 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aYzhMkdhaFvRzDhXd93N45N17Yc=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.584448+00 2025-12-17 10:40:00.584453+00 29446 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ik4HAJP1qwylXSzH_El1NJ1pbsw=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.586118+00 2025-12-17 10:40:00.586122+00 29447 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U-bc7tLwOOTTQlVyk6vRYQW85g0=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.587768+00 2025-12-17 10:40:00.587772+00 29448 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pa3D2yDjOZCwUTV8FL1F0n1X8BE=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.589361+00 2025-12-17 10:40:00.589365+00 29449 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cf2vzqW17TMBcTBsO8oS1_xXy1w=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.591117+00 2025-12-17 10:40:00.591122+00 29450 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ERgrm-B4xabGHKM2lv6vhDbtKBc=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.592901+00 2025-12-17 10:40:00.592906+00 29451 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BvXt9Cgxe-_iDhWMJYZpCk4BHqM=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.594679+00 2025-12-17 10:40:00.594684+00 29452 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uA1vnI04VVlnjCzlr43wxRIxEW0=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.596787+00 2025-12-17 10:40:00.596793+00 29453 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ujadG9hUQO8delsiEG9uIhxOIY0=", "createTime": "2024-08-15 14:49:01"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.598825+00 2025-12-17 10:40:00.59883+00 29454 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PWm48mjNN1jt9zKRH05G3kWhVEc=", "createTime": "2024-08-15 14:49:01"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.600831+00 2025-12-17 10:40:00.600836+00 29455 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wKw9VWSr42UGbpCg_p94Xi7XwkA=", "createTime": "2024-08-15 14:49:01"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.602855+00 2025-12-17 10:40:00.60286+00 29456 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UKyzwSjaLB5A-gc1IgnsS8AEG-w=", "createTime": "2024-08-15 14:49:01"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.604925+00 2025-12-17 10:40:00.60493+00 29457 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PQFJdMymfmnFCd69pnCb2DWLNS4=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.607152+00 2025-12-17 10:40:00.607159+00 29458 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JLn8OrHgUJL_ORllbxJoMN-jAn0=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.609638+00 2025-12-17 10:40:00.609644+00 29459 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ObnFuFC3hxbk9QBohMLGGOCt__o=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.611754+00 2025-12-17 10:40:00.61176+00 29460 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7qJpCklETf1oUhBRh9TBJm6y_so=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.613827+00 2025-12-17 10:40:00.613832+00 29461 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NdouN6nGpq0X-Tlfzfj-pEGoix0=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.615878+00 2025-12-17 10:40:00.615883+00 29462 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HHI6N4JKQXNRmrV6UNb3rQfjE1A=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.617856+00 2025-12-17 10:40:00.617861+00 29463 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T4ENkmn56Al-ulKwhb336VespKw=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.619919+00 2025-12-17 10:40:00.619924+00 29464 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pQF8Oziaa9H2p6OSsW8NqzLdhNA=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.622038+00 2025-12-17 10:40:00.622043+00 29465 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SnZn9AD-oWZ-7AcowMh8VZwmZFo=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.62417+00 2025-12-17 10:40:00.624176+00 29466 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rl-jZjWzojX3ypvrY5H1ChdVvhY=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.626337+00 2025-12-17 10:40:00.626343+00 29467 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dtmaCX-Ia5aHFz7wt3Omwug_VJ0=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.629103+00 2025-12-17 10:40:00.629109+00 29468 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3HQqBCy4BZx0u9trJ6zUXQ0n6yM=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.63135+00 2025-12-17 10:40:00.631355+00 29469 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:06PBEO89NAD_4BfiqfEVSoeZgxI=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.633375+00 2025-12-17 10:40:00.633379+00 29470 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bn5qPpnGlts3UTnGA8loaeJaZRw=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.635109+00 2025-12-17 10:40:00.635113+00 29471 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qUXENJ4d4ayOpoRIYoHsvo7-NJA=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.637095+00 2025-12-17 10:40:00.637099+00 29472 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zjA6ssc9pUJ7PLeCDsRK_HMOUks=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.639047+00 2025-12-17 10:40:00.639051+00 29473 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TNXde7UObE7hi2lm237Rcttrs4c=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:00.640978+00 2025-12-17 10:40:00.640982+00 29474 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=1766054399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:czE1-szYD7Ou8YnopImAkygLsEo=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.068894+00 2025-12-17 10:40:01.068906+00 29475 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:teMLJiuc4vp2rGMVLPQfJJuym5I=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.071391+00 2025-12-17 10:40:01.071396+00 29476 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0barSqBBQsl9jdzym8vIPyhYR00=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.073382+00 2025-12-17 10:40:01.073386+00 29477 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y0m2qjxecA9Wyp8ZRaNQNUvSCFI=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.075074+00 2025-12-17 10:40:01.075079+00 29478 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CMe7EY6nA1xxomEF0uIHF_QsLeM=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.076996+00 2025-12-17 10:40:01.077001+00 29479 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yT6VAY7dq91UHlFVxAJ0sV7N5rM=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.079063+00 2025-12-17 10:40:01.079068+00 29480 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a3gULrWXmCgAEQGxq6YTWVKpuDo=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.081032+00 2025-12-17 10:40:01.081037+00 29481 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xNU_EKlMMqcJeNnJBrQy7Za_qCM=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.082951+00 2025-12-17 10:40:01.082955+00 29482 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ahDwJ8mIF0znxFLNmv9LJtXS2SQ=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.085005+00 2025-12-17 10:40:01.08501+00 29483 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVxRzyD3orushOC4sTt2yFDUwzI=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.086898+00 2025-12-17 10:40:01.086903+00 29484 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gwaoGhe6qjmkX9GPCXHqQBSLQ5U=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.088598+00 2025-12-17 10:40:01.088603+00 29485 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SzKgASIbKs473WKRYZRbaQL840Y=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.090298+00 2025-12-17 10:40:01.090303+00 29486 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H3nh6mzLRw4btkdV-4xBjl9C1HA=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.092094+00 2025-12-17 10:40:01.092099+00 29487 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uaPbeKtRL3BtmhF7oJ8hpIQbV4w=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.093982+00 2025-12-17 10:40:01.093986+00 29488 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T_n_I8ahaLV-2xG-j2Y66oppwBc=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.09566+00 2025-12-17 10:40:01.095665+00 29489 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7sAQIQSEI1VThoJGwIal7kCL1gU=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.097356+00 2025-12-17 10:40:01.09736+00 29490 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u-mR3wOu5xxmpY-2e8rfM_CAVPA=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.098986+00 2025-12-17 10:40:01.09899+00 29491 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-NfhPj9Z04v3jz4TOwxsEEG-3MI=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.100615+00 2025-12-17 10:40:01.100619+00 29492 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OVyb9TxpPtD7hJQ1z-2V1hK8lLs=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.102187+00 2025-12-17 10:40:01.102192+00 29493 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GaO1DbbtBLAecxLq3MTo9QBOXtA=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.118356+00 2025-12-17 10:40:01.11836+00 29502 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YYdbL1RAKBKnS3YbGNQIkmqUNBs=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.104166+00 2025-12-17 10:40:01.104171+00 29494 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:61dOmzxm7DlD_gwVjWKAYbu0MZI=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.10606+00 2025-12-17 10:40:01.106065+00 29495 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:By-uSrc3UUlcLHooiKFKQeycha0=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.107895+00 2025-12-17 10:40:01.1079+00 29496 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sX24odo9LjyWFm-oXu9gC6SL8HQ=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.109605+00 2025-12-17 10:40:01.109609+00 29497 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8doMKsKDO50zBVR9WSsAjjqKXpk=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.111279+00 2025-12-17 10:40:01.111285+00 29498 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RdBBlvZywF1rE7NPZvwcKQV0-sQ=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.113276+00 2025-12-17 10:40:01.113281+00 29499 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fbgCVI1W_ngBhjQ9iAnrF2NUh1A=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.115164+00 2025-12-17 10:40:01.115169+00 29500 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rPAa8UrZggjrXML3bCeYJAL-YFU=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.116779+00 2025-12-17 10:40:01.116783+00 29501 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5kSuTfGEq0rraMT6e1IBiRV-ArU=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.120329+00 2025-12-17 10:40:01.120335+00 29503 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JppK1lWpin5sVl_thduYiT9pYH0=", "createTime": "2024-08-15 14:49:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.1222+00 2025-12-17 10:40:01.122204+00 29504 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OVOZtcUNS02RyKpl1-xMKMn_I-8=", "createTime": "2024-08-15 14:49:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.123821+00 2025-12-17 10:40:01.123825+00 29505 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JjlKNvhq5Hd_EDXhT_k6DrEqJtw=", "createTime": "2024-08-15 14:49:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.125429+00 2025-12-17 10:40:01.125433+00 29506 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ATpwvCWYJQ1DGHyLIm4b-3Yufw4=", "createTime": "2024-08-15 14:49:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.127729+00 2025-12-17 10:40:01.127734+00 29507 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H0T2z7wN1WmyVxFV0uaGvq14GTc=", "createTime": "2024-08-15 14:49:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.12936+00 2025-12-17 10:40:01.129365+00 29508 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hXhvtYaz07DGp6nTZITGVdhzfvM=", "createTime": "2024-08-15 14:49:06"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.131251+00 2025-12-17 10:40:01.131256+00 29509 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NEFDGL9CwXqGQ7YUY2d4MYQbMMI=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.132844+00 2025-12-17 10:40:01.132848+00 29510 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZANNxnsB-_yRRN5r2Z_O8bNLH20=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.13441+00 2025-12-17 10:40:01.134415+00 29511 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:up5Vs3DymQYc3fWCv_gZEoB5muc=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.136268+00 2025-12-17 10:40:01.136272+00 29512 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8uMSg9SlpZ18VR5AmtJptb_yakM=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.137924+00 2025-12-17 10:40:01.137929+00 29513 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:abh_bQTlwhShMruht88PrIuf-e4=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.139727+00 2025-12-17 10:40:01.139732+00 29514 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8V22gC2K2B05lJ1kL6zCqpYjENU=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.141631+00 2025-12-17 10:40:01.141636+00 29515 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l17xXiyGNNe2yJrq7Od72SVvLTI=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.143477+00 2025-12-17 10:40:01.143482+00 29516 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5P3CxbEF3dYUonGrBW111g_guRY=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.14544+00 2025-12-17 10:40:01.145444+00 29517 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YhZ5psejj04ZMacYWkUz8-ykCDc=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.147105+00 2025-12-17 10:40:01.147109+00 29518 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tw9Y2HczWA93Htb_Mk5BCdavq34=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.148733+00 2025-12-17 10:40:01.148737+00 29519 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4HUxqzTKF-hqzGQTnVXLwfJ4vdA=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.150323+00 2025-12-17 10:40:01.150328+00 29520 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xavd4ydLK7P2Kqj-KD-BIrTnPQI=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.151992+00 2025-12-17 10:40:01.151998+00 29521 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DcahyK0WxkuxN80UMXBeYQSmPVI=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.153634+00 2025-12-17 10:40:01.153639+00 29522 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jCkaJ4bICN6-oe3YI0-fhNKem3Y=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.155559+00 2025-12-17 10:40:01.155569+00 29523 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rfs0mzdgK9RTpq6SUH0EcjRc3PU=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.157453+00 2025-12-17 10:40:01.157457+00 29524 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LQNSNMyDTfXLtfakrtLZhwhox58=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.159077+00 2025-12-17 10:40:01.159081+00 29525 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3KhDu1gbQOKv4ezC8CQBeC6zCGw=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.160701+00 2025-12-17 10:40:01.160705+00 29526 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZaTV0Mb5siZHjSnW7_JqQefq_-4=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.162585+00 2025-12-17 10:40:01.162589+00 29527 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vzSxrfK_pPrvGtAu0tIWMT6MQOI=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.164461+00 2025-12-17 10:40:01.164465+00 29528 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CsTlbnZsEVVfQdZiYJHaG9Vn8EU=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.166106+00 2025-12-17 10:40:01.166111+00 29529 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ei1r3y521UY36kVTdhKWRQ_iFAo=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.167711+00 2025-12-17 10:40:01.167715+00 29530 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9NPuo34Dh96pkrlRS1JRMJ9UdZo=", "createTime": "2024-08-15 14:49:09"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.169518+00 2025-12-17 10:40:01.169523+00 29531 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mqr8yEUf2pqYAUzi75faGzMWUvY=", "createTime": "2024-08-15 14:49:09"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.171387+00 2025-12-17 10:40:01.171392+00 29532 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ykrikahNjBKcO15mb4smWR3JTmc=", "createTime": "2024-08-15 14:49:10"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.173116+00 2025-12-17 10:40:01.173121+00 29533 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lFbtSV-V7r7iuuVTqnNmnJmoQyQ=", "createTime": "2024-08-15 14:49:10"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.174761+00 2025-12-17 10:40:01.174766+00 29534 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6prLncE92ev9YpaAu4-AVB63Idc=", "createTime": "2024-08-15 14:49:10"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.176598+00 2025-12-17 10:40:01.176602+00 29535 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MDgw5x8-_Gxp_rw6jCci6frUaCY=", "createTime": "2024-08-15 14:49:10"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.178232+00 2025-12-17 10:40:01.178236+00 29536 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ODc81AWB9zTHSiUpIOSqOYdYocg=", "createTime": "2024-08-15 14:49:10"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.18005+00 2025-12-17 10:40:01.180055+00 29537 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4WFEsAASobMa-bENuV07rt6iEvE=", "createTime": "2024-08-15 14:49:10"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.181935+00 2025-12-17 10:40:01.181939+00 29538 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xN0lbvOblQAmUU-XTB7mi_M2x9M=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.183742+00 2025-12-17 10:40:01.183746+00 29539 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p8RPmonQLVziDn8yJXXhPjhGkwI=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.185319+00 2025-12-17 10:40:01.185323+00 29540 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q5ppyu2VSDS1ibivJ3nM2-eG2H0=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.18704+00 2025-12-17 10:40:01.187046+00 29541 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l0hC3i3S5iKEdUdhO9HZSj3_EAc=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.188956+00 2025-12-17 10:40:01.188961+00 29542 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wVLeaV-a8CcdHNQ8_XAIIAxSeDQ=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.191328+00 2025-12-17 10:40:01.191333+00 29543 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pZH9EdIetUx8A0Vkgt5MczC45qU=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.193404+00 2025-12-17 10:40:01.193409+00 29544 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HK4Tj8F5KCyDGa8xaK-dkh73XtI=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.195224+00 2025-12-17 10:40:01.195229+00 29545 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q6j3NB8QDv0d_ccYDKWt4eOhYgA=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.197171+00 2025-12-17 10:40:01.197176+00 29546 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-BKd3KtlLy0qNYPHYPMXnpBLY7k=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.199165+00 2025-12-17 10:40:01.199169+00 29547 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hYNAKenzYYJMl0zv4cO6tEFcQqM=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.2008+00 2025-12-17 10:40:01.200804+00 29548 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jxAld5Cg1zcZkTaOXHkgugV0-oI=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.20255+00 2025-12-17 10:40:01.202555+00 29549 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UEvN08HpEG0TsOep7N39V4b-FxY=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.204406+00 2025-12-17 10:40:01.204411+00 29550 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mAvmcmDCAPffPS86VpqWege97rk=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.206213+00 2025-12-17 10:40:01.206218+00 29551 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j-nD9rk1GwblFiT9JfwPI-zrdAY=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.208014+00 2025-12-17 10:40:01.208019+00 29552 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8SeJ50-Q-Mlddy1tNd0k2gv7YY0=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.210015+00 2025-12-17 10:40:01.21002+00 29553 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vSrdIwaDciMD0rd0P0RPCaevhd0=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.212046+00 2025-12-17 10:40:01.212051+00 29554 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l5Pf77AZOr1eE0SpRyZB7ahSKLE=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.214124+00 2025-12-17 10:40:01.21413+00 29555 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qfaA7VwsQxaod00pseTbTcO7AsI=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.216151+00 2025-12-17 10:40:01.216156+00 29556 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wp0maZJCcc2OoHSgez2nSMtWRPs=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.218176+00 2025-12-17 10:40:01.218181+00 29557 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ndb2yTSt2oMEsiUORewPEMMhJUQ=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.220222+00 2025-12-17 10:40:01.220227+00 29558 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Af6siujyKaQ5jlKVL4HsuoSwKpU=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.222277+00 2025-12-17 10:40:01.222282+00 29559 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iGtwBSoVETuuTW-1ui8RGQh8PtY=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.224321+00 2025-12-17 10:40:01.224325+00 29560 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VhXy1iaGDkFgn2ZIcq4UJdyDMiY=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.226341+00 2025-12-17 10:40:01.226346+00 29561 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:izkhBmkZRym4oiUisWRG49ERtQM=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.228377+00 2025-12-17 10:40:01.228382+00 29562 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C_D3w8bu5ln6sGGxrNMpD5YlzdI=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.230644+00 2025-12-17 10:40:01.230649+00 29563 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vTiBOqYAzbHlMUJsCr6Y_YYm7mI=", "createTime": "2024-08-15 14:49:14"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.232307+00 2025-12-17 10:40:01.232312+00 29564 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0MWEUHK8m3p9p94coYQuCkx85Is=", "createTime": "2024-08-15 14:49:14"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.234135+00 2025-12-17 10:40:01.234139+00 29565 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FnScfffd9XPceH02N_jGeW6jY6A=", "createTime": "2024-08-15 14:49:14"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.235983+00 2025-12-17 10:40:01.235988+00 29566 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MBhYAwpBRH-sdjgQi081E6mXvME=", "createTime": "2024-08-15 14:49:14"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.237667+00 2025-12-17 10:40:01.237672+00 29567 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Erc122QFiFHGyzbI0gd6hGUNAM4=", "createTime": "2024-08-15 14:49:14"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.239409+00 2025-12-17 10:40:01.239414+00 29568 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yPOBLvSe1GAcFZGX1QbtilD-9WI=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.241031+00 2025-12-17 10:40:01.241035+00 29569 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SWoOgVDRmz5T4GMBRXYLjhsqrC0=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.242654+00 2025-12-17 10:40:01.242659+00 29570 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7n8eDv28EB6tLvWKGRkQ7DZlj6A=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.244736+00 2025-12-17 10:40:01.24474+00 29571 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zA7RKHBGbM8An9bDntpcmNycIcE=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.246363+00 2025-12-17 10:40:01.246368+00 29572 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eg1Ew9iUUbAH-xZu91UXRGI2574=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.248213+00 2025-12-17 10:40:01.248217+00 29573 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ZV6g_C4fdLS_gpACeUIL9RDrb0=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N +2025-12-17 10:40:01.249803+00 2025-12-17 10:40:01.249807+00 29574 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=1766054400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_40biZq36mK6Rme7akxsNpxkkbY=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.492178+00 2025-12-17 10:50:00.492186+00 29575 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WBDleYf0wM91KwQiLtGdZywUMpc=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.495675+00 2025-12-17 10:50:00.495681+00 29576 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1WYbJ6B1SLsJXpDLRmBiEZzJpfU=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.497741+00 2025-12-17 10:50:00.497746+00 29577 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TCaLbj5Zo6DuvHjVifOSvSFKpSs=", "createTime": "2024-08-15 14:49:14"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.499562+00 2025-12-17 10:50:00.499571+00 29578 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U2HfoQ96gcdF4gX0E0zSN1DFPBs=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.501641+00 2025-12-17 10:50:00.501646+00 29579 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DEDEUuDpcAj8X0kck9RyjeqRAVU=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.503651+00 2025-12-17 10:50:00.503656+00 29580 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gtJO762QWzB9bmBbI0YgjWxOB_A=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.505427+00 2025-12-17 10:50:00.505432+00 29581 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JTrbqF1-s9AuP9ShxdDQYVu2jzQ=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.507365+00 2025-12-17 10:50:00.50737+00 29582 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DKGJN6khF6vhwyu_ZObo1LvxrmI=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.509303+00 2025-12-17 10:50:00.509308+00 29583 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g6ZJsqOgTA75pnBQTMzse0PEKtI=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.511268+00 2025-12-17 10:50:00.511272+00 29584 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rWwX68Y8FTYHPWJP7MyXKB4NMQ0=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.51306+00 2025-12-17 10:50:00.513066+00 29585 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:04R1_6Y96ddpR58VW92XVAl0V3E=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.514828+00 2025-12-17 10:50:00.514833+00 29586 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_2nEZGnBIcNWTtHBySddhJRvkhg=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.516518+00 2025-12-17 10:50:00.516523+00 29587 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:55HTSmD3IrVyrZNq-ys5tFnxAbU=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.518562+00 2025-12-17 10:50:00.51857+00 29588 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MaM2snFxd62mkaMP86fJaWJ-9Xk=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.520495+00 2025-12-17 10:50:00.520499+00 29589 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ysxWdKgxlKyZR_v6n7CCCUlivN4=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.522456+00 2025-12-17 10:50:00.522461+00 29590 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VBvXkzDDpRrErDkHfI2iOKx3hnE=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.524482+00 2025-12-17 10:50:00.524486+00 29591 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4YRdM2b_uDASZ1TUl_HEG-xl9t8=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.526386+00 2025-12-17 10:50:00.52639+00 29592 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LGbckQfxQqjw2G3gwWQ7bHTVtfE=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.528041+00 2025-12-17 10:50:00.528046+00 29593 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NmdqIhnhKOoxFWtjp8vSnkltQLs=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.529676+00 2025-12-17 10:50:00.52968+00 29594 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SVYeF7yJNZt44IpuK-ecMFCSLs4=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.531554+00 2025-12-17 10:50:00.531558+00 29595 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DmNroVvb4Y5gq7FdcyhvizjF0vc=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.53355+00 2025-12-17 10:50:00.533556+00 29596 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cmH1KDc2wK6eRW3nFyU7mduHKk8=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.535685+00 2025-12-17 10:50:00.535691+00 29597 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SOL5t3ClqK6qJ3hxttjWwcK0W14=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.53767+00 2025-12-17 10:50:00.537674+00 29598 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H6NACVT4s5IoWOKSUiPTbrdWOu8=", "createTime": "2024-08-15 14:49:20"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.539492+00 2025-12-17 10:50:00.539496+00 29599 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M_G4Y2HU1k7c6enmq7M52C1gFic=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.541367+00 2025-12-17 10:50:00.541372+00 29600 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ti08s92rEDeDQgq2QhNUqT9CsBE=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.542992+00 2025-12-17 10:50:00.542996+00 29601 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VorKkr3fstQ3EYsHGLx4uZAC2mQ=", "createTime": "2024-08-15 14:49:20"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.54462+00 2025-12-17 10:50:00.544625+00 29602 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kk9pGur-OT4cfgbaIsZqwOJdL5M=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.546687+00 2025-12-17 10:50:00.546692+00 29603 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iIBKgfu1quKy4fbFkR9oNY4RwW8=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.548617+00 2025-12-17 10:50:00.548621+00 29604 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p4wfte5l1lVT2ZsgsEz4vIDbEIA=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.551107+00 2025-12-17 10:50:00.551114+00 29605 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5aLsO1lpXL17odOuu8lacsPi8Yo=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.553429+00 2025-12-17 10:50:00.553435+00 29606 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GRRVA1nek0ulWk27bAgdK6buV88=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.555446+00 2025-12-17 10:50:00.555452+00 29607 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hPI5_vYExns391gv5NlpbWm7Rjc=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.557271+00 2025-12-17 10:50:00.557276+00 29608 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:slE1Ub00hOGg0APKWGDnypnNbmo=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.559087+00 2025-12-17 10:50:00.559092+00 29609 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TuMeUuKTGvMBbNlpCZCYKP64BdQ=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.560934+00 2025-12-17 10:50:00.560939+00 29610 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r6AItn3-4t3_UaGS9FnXL7xOhQY=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.562954+00 2025-12-17 10:50:00.562959+00 29611 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SfPW8un0iVX27-0VintvMpePoC4=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.564983+00 2025-12-17 10:50:00.564988+00 29612 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GUiNDoJ792wX7YxTc1UfaR7-EZk=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.567307+00 2025-12-17 10:50:00.567314+00 29613 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xfHocTYm7CHbwPJN7detfEDa17w=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.569379+00 2025-12-17 10:50:00.569384+00 29614 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hxjq5Q1OM1PiKRZCPL0bmnKKNOw=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.571064+00 2025-12-17 10:50:00.571068+00 29615 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:puFpiZrvJqS5vbSqac0oWfbi9cs=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.572694+00 2025-12-17 10:50:00.572699+00 29616 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qVFfv5_igT8ejBj58Fsln9YmAW0=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.574301+00 2025-12-17 10:50:00.574305+00 29617 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_gAirSNpOO8KrghhrTxaDlyjsfU=", "createTime": "2024-08-15 14:49:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.575979+00 2025-12-17 10:50:00.575984+00 29618 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Exg2Pi54An5dphE-QczcbmJVwsc=", "createTime": "2024-08-15 14:49:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.577868+00 2025-12-17 10:50:00.577872+00 29619 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jJC_HcYTnY46B03JVDuCT16tEfI=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.579765+00 2025-12-17 10:50:00.579769+00 29620 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UvL8fBAgwrsllqSNe-vRJdfc4Ag=", "createTime": "2024-08-15 14:49:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.597092+00 2025-12-17 10:50:00.597097+00 29629 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4NEEKaStmc8Ps3mIeYw0iUsr99w=", "createTime": "2024-08-15 14:49:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.581373+00 2025-12-17 10:50:00.581378+00 29621 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cKISU4JUXwk5Zd44nm9U5oAfqfM=", "createTime": "2024-08-15 14:49:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.583036+00 2025-12-17 10:50:00.583041+00 29622 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DXDPcw1x1Pj4cf-EzrSqHUif2ro=", "createTime": "2024-08-15 14:49:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.5851+00 2025-12-17 10:50:00.585105+00 29623 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w800Dhvnde7-FiYo5s71y3mkIbo=", "createTime": "2024-08-15 14:49:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.587593+00 2025-12-17 10:50:00.587598+00 29624 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oCxHuUC96xer-3QWgHqFjbvsupI=", "createTime": "2024-08-15 14:49:22"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.58945+00 2025-12-17 10:50:00.589455+00 29625 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FHn0-OScj1Ucr2v8T3AmZcOx6WE=", "createTime": "2024-08-15 14:49:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.5913+00 2025-12-17 10:50:00.591305+00 29626 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7chrjzrfHCOKKojFWE47Dt47dyo=", "createTime": "2024-08-15 14:49:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.593102+00 2025-12-17 10:50:00.593107+00 29627 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Equdnn0oAa6POwEq8sK120cGTcI=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.595128+00 2025-12-17 10:50:00.595134+00 29628 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tq15hOcZfS6Wy964ky8A-6Rbdxs=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.599108+00 2025-12-17 10:50:00.599113+00 29630 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Fb_hdQJloVUETMZy-2nT-u91lc=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.601249+00 2025-12-17 10:50:00.601254+00 29631 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4mv4zOA2t50rVSayjVsBwsACC5M=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.60335+00 2025-12-17 10:50:00.603355+00 29632 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eCB_R-eeOA3c-mr5B71D2K5BU5g=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.397295+00 2025-12-17 11:20:00.397301+00 30174 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Y-KQW2i0WQm-5aICgmfSzZ810U=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.608074+00 2025-12-17 10:50:00.60808+00 29633 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iwGqTGi6kwkFjWuaRvyhX7TomCQ=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.610406+00 2025-12-17 10:50:00.610411+00 29634 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pd8qRr9c5wYXijo423SYeTH6ueQ=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.612478+00 2025-12-17 10:50:00.612483+00 29635 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDLKPe_tzewCRdkWqaeU5JBZq5w=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.614573+00 2025-12-17 10:50:00.614578+00 29636 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K7U2KXCudNSF6qRMd6tzpCE3jPY=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.616747+00 2025-12-17 10:50:00.616753+00 29637 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0xvVwFR3tkQbKhOeZHKKT0odNKc=", "createTime": "2024-08-15 14:49:23"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.618976+00 2025-12-17 10:50:00.618981+00 29638 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DIHXyo1LRbLwMhUfOLBYKTVb3MU=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.621152+00 2025-12-17 10:50:00.621157+00 29639 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M5djkuvXczsMjOY7Yu6elPNUCVE=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.623181+00 2025-12-17 10:50:00.623185+00 29640 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ylU4WwfSO7OWqnZAtiLHy-2FvdI=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.625122+00 2025-12-17 10:50:00.625126+00 29641 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ydBYgadEdIpFFuSfDhhRBHWTfyM=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.626767+00 2025-12-17 10:50:00.626771+00 29642 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jAWtwIFXBZiE57vtn_jj8_T7nlU=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.629427+00 2025-12-17 10:50:00.629436+00 29643 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BA6-_lHttWvuhwiIIHb65qIlnxg=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.632097+00 2025-12-17 10:50:00.632101+00 29644 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YWuJYrPU5bn8HRk1L7OZ-La6Q-w=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.634017+00 2025-12-17 10:50:00.634022+00 29645 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YbarCjXxV5hPocSoq1Qw92A-iBM=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.635824+00 2025-12-17 10:50:00.635829+00 29646 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gWZ49iWVBhcv-QNjxHxpyBPymhs=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.637523+00 2025-12-17 10:50:00.637528+00 29647 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RD_ynl7g3m5tdMuJqRnKMK_w5rY=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.639387+00 2025-12-17 10:50:00.639392+00 29648 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BuPWpYtwasGHP2QUWPUSLua91P4=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.641266+00 2025-12-17 10:50:00.64127+00 29649 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:03yLKmXumCPSfKgQb5GzPBSRleQ=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.642907+00 2025-12-17 10:50:00.642911+00 29650 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OqLWqa_hXr08eEDPaJ5FfM16PpI=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.644516+00 2025-12-17 10:50:00.644521+00 29651 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-2rR8LXpbIwxXp3E3NiEqSMGnD0=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.646541+00 2025-12-17 10:50:00.646546+00 29652 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LNCH1QMAjVcWVw9dvKL_9HhG4cY=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.649154+00 2025-12-17 10:50:00.64916+00 29653 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_XeNsD7Q4NvTK2OkLBcfw-nc9a0=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.651316+00 2025-12-17 10:50:00.651321+00 29654 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MaDE9olp6ZR4k8VBE2oksyWXCcs=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.65312+00 2025-12-17 10:50:00.653125+00 29655 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OZwU7CqfMZj5yFwBP1aju62Zhf4=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.654784+00 2025-12-17 10:50:00.654789+00 29656 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pvw7EL7RQAuQEVBr5iuoVKmS_FU=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.656456+00 2025-12-17 10:50:00.656461+00 29657 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5FeTrkG52ZvMKt-U5iNgw5atYvU=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.658308+00 2025-12-17 10:50:00.658312+00 29658 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1YZLL77C7yZQjD-Cnj812DDIl6A=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.666707+00 2025-12-17 10:50:00.666712+00 29663 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gkgcMmPXE-J4NeQYrN52AOJXCUE=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.659921+00 2025-12-17 10:50:00.659926+00 29659 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SQVGWvlgALaAV_LL33XQk3G00Cc=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.661555+00 2025-12-17 10:50:00.661559+00 29660 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g6fTvFte1EHcE3mJozoPS4pZZQs=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.66343+00 2025-12-17 10:50:00.663434+00 29661 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jyyoMNAFyYnJMczsc1us35bnI30=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.665094+00 2025-12-17 10:50:00.665098+00 29662 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mcBsC4QShGLKGFycxhKZLQQWgDU=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.668629+00 2025-12-17 10:50:00.668634+00 29664 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UFGbNNsneS6R7sQcwdLh9Q6eMfU=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.67052+00 2025-12-17 10:50:00.670524+00 29665 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tpw2Ghj8pvvVsPSX9Vi19-WAJIg=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.672191+00 2025-12-17 10:50:00.672196+00 29666 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PvMFgMxLmxJAC2mhFei6s07cRp8=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.67402+00 2025-12-17 10:50:00.674025+00 29667 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oWuvNtkzl5atp5iily7lyTi1EVw=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.675909+00 2025-12-17 10:50:00.675915+00 29668 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CVhl4zg5vhhGUkAaXonIZmjVNE4=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.678072+00 2025-12-17 10:50:00.678077+00 29669 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9XcWbqpvY7I2YhjlU-mCJtnZDIg=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.67994+00 2025-12-17 10:50:00.679945+00 29670 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hmeICtdpeeHAvTZD6OteKrmzq2s=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.682473+00 2025-12-17 10:50:00.682479+00 29671 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ogO0jR00v1uOxsDSLDDJmYBenIE=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.684581+00 2025-12-17 10:50:00.684588+00 29672 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CYyOzvLnrEXI-dKhYTGtBVFlkhM=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:00.686878+00 2025-12-17 10:50:00.686884+00 29673 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=1766054999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pjslE3jWLtvlPyeMbYK7TxPma50=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.03835+00 2025-12-17 10:50:01.038361+00 29674 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rNdiX6_SezsMSnow3aPptoeEI3s=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.040933+00 2025-12-17 10:50:01.04094+00 29675 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gHM2Xpl6a6DfmEEF4Kar90y_QBA=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.042983+00 2025-12-17 10:50:01.042989+00 29676 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p1SwRE0WxfIWproZJTefcA-Nxok=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.044628+00 2025-12-17 10:50:01.044632+00 29677 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e1WqxT1csd2QcL60KeYAcpvYkP4=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.046272+00 2025-12-17 10:50:01.046276+00 29678 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IKawrHoMXt6ct5NeVlOj8ooOs70=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.047862+00 2025-12-17 10:50:01.047866+00 29679 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J-Dps2ZTo7QifGE5aQv7JvXA4L8=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.049448+00 2025-12-17 10:50:01.049452+00 29680 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o9fIa9cEVs_gQQyz-GCyXPTuvAU=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.051138+00 2025-12-17 10:50:01.051143+00 29681 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AznxvyJ36wG64HET0-YT5AlBOcU=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.05297+00 2025-12-17 10:50:01.052976+00 29682 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w1VBq4bGHtThYeEYCsVVMXO1WiQ=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.05501+00 2025-12-17 10:50:01.055016+00 29683 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZnKG6rsCXwDcVNuktnwiikf4vso=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.05806+00 2025-12-17 10:50:01.058068+00 29684 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r28SlBzUzrVGq0yGicN6iLZXV-I=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.060285+00 2025-12-17 10:50:01.06029+00 29685 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hVd5SDLkleFQYCfidAH9JILvtBY=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.06199+00 2025-12-17 10:50:01.061995+00 29686 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k-HWo359wpeRYl4Cth1j3XgwiGk=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.06381+00 2025-12-17 10:50:01.063819+00 29687 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2zO-ncu7wNAH7S3Gtgp0_vXeDPo=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.066671+00 2025-12-17 10:50:01.066678+00 29688 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CVSD2FN_9jVr3THb5JlAqQihpY8=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.069456+00 2025-12-17 10:50:01.069463+00 29689 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gYkd1kK5P0NsFx2-MSpVA7D7GJY=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.071819+00 2025-12-17 10:50:01.071825+00 29690 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lPP5CREke_83d1Opdht7ob2d_qc=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.073819+00 2025-12-17 10:50:01.073824+00 29691 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1a6nS6OMoaGXuB4cfLPNVmmqaYI=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.075741+00 2025-12-17 10:50:01.075746+00 29692 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s_u_tnuUve2NGtuj5tZLdmZssBQ=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.077922+00 2025-12-17 10:50:01.077926+00 29693 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c78kXTk4T6-TsO08oGzfIV2sW14=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.079543+00 2025-12-17 10:50:01.079548+00 29694 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HqgmhS8ECzNQACgM-jhDMyY-IHs=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.081166+00 2025-12-17 10:50:01.08117+00 29695 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XtESKofbZ7wg1NWDDV_vfHSQkTU=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.082782+00 2025-12-17 10:50:01.082787+00 29696 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PRSWvzW60-X1oOizWMAWmFJcKIc=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.08498+00 2025-12-17 10:50:01.084985+00 29697 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-0TH6lVBrVFpZZTSExfP7pMrWEo=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.087181+00 2025-12-17 10:50:01.087186+00 29698 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a6go6EZlopMFvycYF0scrDrIflw=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.089124+00 2025-12-17 10:50:01.089129+00 29699 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gKaWIviOdyWlcDu1MMmxGvBZckc=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.090908+00 2025-12-17 10:50:01.090913+00 29700 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XDM4669JBvibzf6u85K0nMWtvd4=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.092932+00 2025-12-17 10:50:01.092937+00 29701 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hR5IxrOOSt0IYMWkqtctCFmOaIw=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.094959+00 2025-12-17 10:50:01.094965+00 29702 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:igvhDcRVEWPKP343bTUxSDdz7Zw=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.096982+00 2025-12-17 10:50:01.096986+00 29703 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FTYHsW7ydy0Macu_XZE0dDNMwtk=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.099019+00 2025-12-17 10:50:01.099024+00 29704 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9qW3NA2cAdqc1XUNAVj7ftIPrvU=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.101068+00 2025-12-17 10:50:01.101073+00 29705 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-K0kIV6i1XuPCeE-4_G0BS_owU8=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.103217+00 2025-12-17 10:50:01.103223+00 29706 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:smghv00eWMlrWMGeB-oO7UGlD10=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.105258+00 2025-12-17 10:50:01.105263+00 29707 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J9KPmBuRLmi8pIbFk7Pz5x9DTT4=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.107092+00 2025-12-17 10:50:01.107097+00 29708 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:924xtnN2xsBfN3OntJQQK4OykaU=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.109137+00 2025-12-17 10:50:01.109142+00 29709 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L3ZxdjD3VEE8hUyL_BQZHw-QMsI=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.111166+00 2025-12-17 10:50:01.111171+00 29710 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B0MiuDG4JT3dzZ870h85GdfcjkQ=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.113207+00 2025-12-17 10:50:01.113212+00 29711 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZQoz0piaPkdNYzkXk_dFVjd-JkQ=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.115244+00 2025-12-17 10:50:01.115249+00 29712 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3h2vBRWqL-VzTLJ2jx5pry9A0yg=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.117316+00 2025-12-17 10:50:01.117321+00 29713 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jdPM001DAaBoOcNGwpfwdPRZhh4=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.119238+00 2025-12-17 10:50:01.119243+00 29714 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:USipwTqyDGYQi-9_P9f7g0Fqmvk=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.121333+00 2025-12-17 10:50:01.121338+00 29715 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VfcKiD8HvBf2Wkv9Dpuo46MRkXo=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.123412+00 2025-12-17 10:50:01.123417+00 29716 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oqKKXol77OC58oaDEl5k2PvmFeY=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.125312+00 2025-12-17 10:50:01.125317+00 29717 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5LBEuZxKS4LnClD7psqFJSVGfUI=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.127343+00 2025-12-17 10:50:01.127348+00 29718 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_fwY0MsxeXcuwqZZq6iFErMwdrk=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.129165+00 2025-12-17 10:50:01.12917+00 29719 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x0C4NHVFcOjj0uy5h9BJ7--863o=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.131212+00 2025-12-17 10:50:01.131217+00 29720 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fqUCnl3MDmuAYiJlSDLFd30Uf5w=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.133245+00 2025-12-17 10:50:01.13325+00 29721 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hso2MQCMCJe8pmSKFYUnJSR3R5Y=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.135378+00 2025-12-17 10:50:01.135384+00 29722 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l16Jaw_9px3ZzoaVCFoprWzlqTM=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.137504+00 2025-12-17 10:50:01.137509+00 29723 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bT9UvBvuT7UNRu1NEHzuY8UuSU4=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.139337+00 2025-12-17 10:50:01.139342+00 29724 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LdKw5j29diUFfKf-p5DmiFzOIFI=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.141369+00 2025-12-17 10:50:01.141374+00 29725 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SczMl0VxEGwsFmqPgHisn3BRk2Q=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.143408+00 2025-12-17 10:50:01.143413+00 29726 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KRfPAuUDBhZ6oA3zwFvD9oyfteA=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.145439+00 2025-12-17 10:50:01.145444+00 29727 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ylQP77oWxmdAxR11iWqTsCCVozE=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.147714+00 2025-12-17 10:50:01.147721+00 29728 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQMlUafD_HsHQk0EgT-UAxJPIPo=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.149931+00 2025-12-17 10:50:01.149936+00 29729 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mHAdVcVcU6VucsJRxeURLN7AeAY=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.151905+00 2025-12-17 10:50:01.151911+00 29730 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cqf_9dMpB34ldDiFpJpVUF49EBw=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.153814+00 2025-12-17 10:50:01.15382+00 29731 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UCUFw80duOnxNb4RWZ4QZymC65c=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.155635+00 2025-12-17 10:50:01.15564+00 29732 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wawaH_D3g6maExs9FJw7Yrno-Ac=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.157474+00 2025-12-17 10:50:01.15748+00 29733 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BNrCxfrVtMr9gPQJh8CdaQy9Ssg=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.159538+00 2025-12-17 10:50:01.159543+00 29734 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o0hbMCNEyM9jSUzgtzqyz2nCTf4=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.16159+00 2025-12-17 10:50:01.161595+00 29735 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4AHWwmrUVVI-_OXTqP9v_fDaBUA=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.16364+00 2025-12-17 10:50:01.163645+00 29736 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MNS4YVtKB0HrOD2oDpS2eOjyM8I=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.165696+00 2025-12-17 10:50:01.165701+00 29737 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ib-E6RxjxrnYL9dVyGA1XPMfFTg=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.167558+00 2025-12-17 10:50:01.167568+00 29738 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1JZAl8LokC9qr4azslPNGL2fX9Y=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.169661+00 2025-12-17 10:50:01.169666+00 29739 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xcc-pPI4mQFQwyQudvWofTWE5jk=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.171742+00 2025-12-17 10:50:01.171747+00 29740 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hy7ysxKpRQHiZKPsamFVla7BbdQ=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.173688+00 2025-12-17 10:50:01.173693+00 29741 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XbU_JKWaD_N57GZsWCDEUn6PcvA=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.175776+00 2025-12-17 10:50:01.175781+00 29742 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i-MAeasRbiqaDjTSo5cpN_c-_VQ=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.177602+00 2025-12-17 10:50:01.177607+00 29743 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3y4vkIDD17OMpjtJ_isGcJ68TPE=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.179646+00 2025-12-17 10:50:01.179651+00 29744 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jcUGhtzvWgV2zcH5zRtiYquwVOM=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.181691+00 2025-12-17 10:50:01.181696+00 29745 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gd9cqx54L1QVgFHVS_mB7roY3S0=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.183772+00 2025-12-17 10:50:01.183777+00 29746 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:edNsLkZEqkV-Mbp2vXOG0mRYXow=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.185926+00 2025-12-17 10:50:01.185932+00 29747 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w6LRgyKYq81bOMD4S_i1q0Y9EMA=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.18779+00 2025-12-17 10:50:01.187795+00 29748 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:owwKuN9F0fmWwUkG9S-JADJsrZo=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.189851+00 2025-12-17 10:50:01.189856+00 29749 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4nbAfqNKUtV2f5zu1DVejpNg_98=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.191696+00 2025-12-17 10:50:01.191701+00 29750 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ks0aPrPVsWhOTflNoCAr4nJkz5M=", "createTime": "2024-08-15 14:49:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.193741+00 2025-12-17 10:50:01.193746+00 29751 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xLWnetUijsnOLRJt3nKJGnI3P5I=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.195857+00 2025-12-17 10:50:01.195862+00 29752 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kNoWotASyb0hTjzC_a-NpjUVFwo=", "createTime": "2024-08-15 14:49:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.1979+00 2025-12-17 10:50:01.197905+00 29753 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ftu4RMRIutdTJkeaQ4RH9pjReG0=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.199775+00 2025-12-17 10:50:01.19978+00 29754 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sMzcNHSmVX8_VNDzeM_cFiJ6EhM=", "createTime": "2024-08-15 14:49:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.202015+00 2025-12-17 10:50:01.202021+00 29755 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nrzv2ar3op47Z1EVzHDIKj4rRsk=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.20422+00 2025-12-17 10:50:01.204225+00 29756 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2WpP_tdmjnXHzASSGms5V8fxE0g=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.206075+00 2025-12-17 10:50:01.20608+00 29757 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5TFuDxvmdJURGPj7WgSYA0miBA=", "createTime": "2024-08-15 14:49:32"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.208212+00 2025-12-17 10:50:01.208218+00 29758 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VjXRPTIqXUlelkFNHX2EdFsudp4=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.210345+00 2025-12-17 10:50:01.210351+00 29759 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sWImgsxJ-QAIhZA0uAodXvQNghQ=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.212464+00 2025-12-17 10:50:01.212469+00 29760 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u-np1tOOjQlUbI1vpmJzaLus6_E=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.21458+00 2025-12-17 10:50:01.214586+00 29761 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f5DZCLki8zp0dHX6owxyWlFmn3g=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.216777+00 2025-12-17 10:50:01.216781+00 29762 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pexa-snEV1SjjRyIZUL2JxIvNgc=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.219206+00 2025-12-17 10:50:01.219211+00 29763 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gQwZMRqAKjULTY2ik-eSxBri3qQ=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.221389+00 2025-12-17 10:50:01.221394+00 29764 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AY4W-t_jO1eS4ofkLB7Vk8WPBIc=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.223593+00 2025-12-17 10:50:01.223598+00 29765 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ICKGNWKDnY2fDLFutdCRmAnk6nU=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.225442+00 2025-12-17 10:50:01.225447+00 29766 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2QsyBYijdPSCnbPyMsh94WUmtiQ=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.227294+00 2025-12-17 10:50:01.227299+00 29767 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EH4WZGIdfaEXlBElsnD_7A3Op8Y=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.229115+00 2025-12-17 10:50:01.229119+00 29768 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Si7fLS5kdKDaLXHfQhpnDhVybQM=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.231173+00 2025-12-17 10:50:01.231178+00 29769 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KVvJWOsGT9vbid_QRtQz2vtrjBw=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.232996+00 2025-12-17 10:50:01.233001+00 29770 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:65Cb7ajrioQ5RHLRMvdmfJsxjdA=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.235325+00 2025-12-17 10:50:01.235331+00 29771 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gukRWRrHtlQW4GoBtuIA8kaJ8rU=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.237591+00 2025-12-17 10:50:01.237596+00 29772 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FFL87mAgmv8nzxwIVIS5igSCKYg=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N +2025-12-17 10:50:01.239454+00 2025-12-17 10:50:01.239459+00 29773 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=1766055000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nSWmdwNDFQsQnNgJVPyADAx7BR4=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.379717+00 2025-12-17 11:00:00.379725+00 29774 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uT7Qr4BYB5ltSmJn9dyKSrCHQH0=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.38247+00 2025-12-17 11:00:00.382477+00 29775 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lk5gKKrGPssTw2rvFa0l5SRyrsw=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.384401+00 2025-12-17 11:00:00.384408+00 29776 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DK0mP82HyHuwthGkSJbLU2j2xkI=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.386299+00 2025-12-17 11:00:00.386305+00 29777 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yan2qcHIrjay54zsYoXtJV8Zh8Q=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.38801+00 2025-12-17 11:00:00.388015+00 29778 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EvlfKVc3_XcTaTHxdhJ60u1xJ1s=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.389718+00 2025-12-17 11:00:00.389723+00 29779 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xghk-lJMEtcW46na7zy026j7Sno=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.39161+00 2025-12-17 11:00:00.391615+00 29780 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n1Ya5xKmVKy5jbNHNKcgcfUvd2M=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.393253+00 2025-12-17 11:00:00.393257+00 29781 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CoIR0BNWppIXbrIgGPxAkq4gsaU=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.394857+00 2025-12-17 11:00:00.394861+00 29782 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BX9k5YD6RAzHB7G9oLsQP3lX0uM=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.396748+00 2025-12-17 11:00:00.396752+00 29783 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hmJ_3ZoSOy6Mo6oiFzlFhWGYdm4=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.398705+00 2025-12-17 11:00:00.39871+00 29784 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hi25sQ9DP_O97X17nxhk7bNAtSQ=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.40068+00 2025-12-17 11:00:00.400684+00 29785 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UmamUglPhtKm8Mtv-WquSl39r94=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.402328+00 2025-12-17 11:00:00.402332+00 29786 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P1PjnbmoCFNLLQ64Y1vII5os-50=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.403951+00 2025-12-17 11:00:00.403956+00 29787 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Sphe8M-xedhkJAukP8eeJjLHI8=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.405879+00 2025-12-17 11:00:00.405883+00 29788 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yuk2McpYOYyOvkKdW-ZK029j8F4=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.407692+00 2025-12-17 11:00:00.407696+00 29789 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xF3spwcZL-embg5mBM_sBibJwaI=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.409298+00 2025-12-17 11:00:00.409303+00 29790 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5DgTCtCCoNkBpQxxjS1ZYQw_sWs=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.410897+00 2025-12-17 11:00:00.410902+00 29791 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kOvXkf8U155lO0TbpxeJwb-wCsU=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.412757+00 2025-12-17 11:00:00.412762+00 29792 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gVz8vV3WDN0BkKaweXjDw-IhMus=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.414388+00 2025-12-17 11:00:00.414392+00 29793 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_SQxmTU7X09EQjwOnU5ITHvN2kk=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.415989+00 2025-12-17 11:00:00.415993+00 29794 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ej4hZ-J8fr_4mzOhFB7QiiZVLrc=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.417836+00 2025-12-17 11:00:00.41784+00 29795 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-nQDPHB5zg7Qb-oPGQ_imeFB5II=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.41947+00 2025-12-17 11:00:00.419474+00 29796 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Aykc9itxMAzsBv3j67L6VvO_BfA=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.421092+00 2025-12-17 11:00:00.421097+00 29797 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7HzFj7RP3V1CrQZ4T918nK1uO4w=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.422974+00 2025-12-17 11:00:00.422979+00 29798 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_3dHZ8y2xLh7sR85elg5nhJQDGc=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.424887+00 2025-12-17 11:00:00.424892+00 29799 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NN1BRuZvf_kKksGxIpqevMJgqe8=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.426663+00 2025-12-17 11:00:00.426668+00 29800 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YF0sVySSH9z6QyYoa-GmBFET3LQ=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.428382+00 2025-12-17 11:00:00.428386+00 29801 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m4TevhFbUoPaJka5yi6e6e3lxRk=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.430325+00 2025-12-17 11:00:00.430331+00 29802 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rmEqZwzrM_dNJru1eeAf9iiC9yo=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.432382+00 2025-12-17 11:00:00.432387+00 29803 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qk25GclI8QvZMz4laXytW3-WcCM=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.434397+00 2025-12-17 11:00:00.434402+00 29804 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6MsbknwCNDwHf-oyLFfJJMj3uTw=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.436073+00 2025-12-17 11:00:00.436077+00 29805 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I5_lAVO-sSClXP40H2-cDg8N75g=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.437986+00 2025-12-17 11:00:00.43799+00 29806 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:42PyD4jzqAYN4rbjFvotV4cflMs=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.439665+00 2025-12-17 11:00:00.43967+00 29807 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eSAyM5cDeSnP0Ag0fkh1qj50OBU=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.441336+00 2025-12-17 11:00:00.44134+00 29808 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a8yd5_eCbAQOfuDt5kD4b6lecEc=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.442956+00 2025-12-17 11:00:00.44296+00 29809 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mnht_IunstNBN58TWdjDyUVt17g=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.444557+00 2025-12-17 11:00:00.444561+00 29810 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BO7uSXqc0ZCK7DcjWfW2exmLV_A=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.446248+00 2025-12-17 11:00:00.446254+00 29811 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0jbpNtJuPArfykXX_lmL0ZHNiDc=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.448329+00 2025-12-17 11:00:00.448336+00 29812 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CWnE9ynMU0YPieBIslhBqd3T0fM=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.450405+00 2025-12-17 11:00:00.450411+00 29813 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6PTQeRYOpkEBmgxzpUrzf07CfFs=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.452529+00 2025-12-17 11:00:00.452537+00 29814 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jCvZH3KrJq_v9GdR4mAVvrHkUcg=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.454703+00 2025-12-17 11:00:00.45471+00 29815 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W7UPTprz4XnblEcFJFap2U3Wnkg=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.45678+00 2025-12-17 11:00:00.456785+00 29816 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QLHIxlCaDmRfxtU-GdOItrZbeeE=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.458757+00 2025-12-17 11:00:00.458762+00 29817 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PR1uMNkAhawOoPiUYjGqd-QxeU8=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.460467+00 2025-12-17 11:00:00.460471+00 29818 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P1_XoJ3eVMaDtFxbF_gHHHrG0cU=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.462392+00 2025-12-17 11:00:00.462397+00 29819 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aHxzXv2539vyLM2Fk-7tUIVjMqU=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.464828+00 2025-12-17 11:00:00.464833+00 29820 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:39jHre2pG52BxocOL4ZE1QSHoWk=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.467138+00 2025-12-17 11:00:00.467143+00 29821 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FVKNPCKrPp0ruJwPDp-NSE-O43A=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.469198+00 2025-12-17 11:00:00.469204+00 29822 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E_TUH-lV3aLDf8WwLvpZn9GLikg=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.471263+00 2025-12-17 11:00:00.471267+00 29823 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QdWW3G11t7olK4Nmn5X0F5VG-dU=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.473415+00 2025-12-17 11:00:00.473421+00 29824 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_fdbV-iDmqMMaqZc7Gos8EHESeU=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.475401+00 2025-12-17 11:00:00.475406+00 29825 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:goFGb8m8VJs1s8BMIcUgY3nHm74=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.47727+00 2025-12-17 11:00:00.477275+00 29826 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XrlElymfsTisg0yflgnT0HNm3e0=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.478901+00 2025-12-17 11:00:00.478905+00 29827 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eVuYZHbSdVsp2dXT6tjujjcgY_o=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.480645+00 2025-12-17 11:00:00.48065+00 29828 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VClciSSNjrzjGE2v9YxRTYUxObQ=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.482551+00 2025-12-17 11:00:00.482555+00 29829 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:688x3QbfjqfWW2ZAtz54y_-q-jw=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.48443+00 2025-12-17 11:00:00.484434+00 29830 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F9QbPUIgcnZfs5p8Zr-za_cNJ4k=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.486327+00 2025-12-17 11:00:00.486332+00 29831 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gkOyzCFfRRvNJBiKkjZlnjNVixY=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.487971+00 2025-12-17 11:00:00.487975+00 29832 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vmtiu5P99FBx5lD2ZY2fxDxkW00=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.489655+00 2025-12-17 11:00:00.489661+00 29833 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2v5vtouJSt-3QY9MxC37NwK0ePA=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.49199+00 2025-12-17 11:00:00.491995+00 29834 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:39IaqKqKzOLMBSfZRge-8X-X4U4=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.494217+00 2025-12-17 11:00:00.494222+00 29835 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k0TYpPeY44mx_mR-Mfk_CqJPYvI=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.496495+00 2025-12-17 11:00:00.496505+00 29836 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FGixNOWGr2TXIZISS9QREBwi5So=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.498846+00 2025-12-17 11:00:00.498854+00 29837 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48NAG14B3MqHdaG7jVaRAvWerB4=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.50103+00 2025-12-17 11:00:00.501037+00 29838 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ouiLCec4i9sjieuCH_VNwWtFdgw=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.502976+00 2025-12-17 11:00:00.502984+00 29839 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tyrGukAGkmaYNjhu3L2tBdXCy2M=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.505101+00 2025-12-17 11:00:00.505107+00 29840 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-cQwlQ1hObwpUWrijpP6ev7WW_8=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.507139+00 2025-12-17 11:00:00.507145+00 29841 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RJQSs5aNlIK8WcE6r_BFrmGlOko=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.509354+00 2025-12-17 11:00:00.509361+00 29842 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ra3RXd1u0PM4IaVKGWlAQjGOypo=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.511365+00 2025-12-17 11:00:00.511371+00 29843 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sI__FFMF-CyNaFGJBkpz_bQiTEA=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.513703+00 2025-12-17 11:00:00.51371+00 29844 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VamLEKkwb7JpdGN3DacW7XcXAA0=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.516036+00 2025-12-17 11:00:00.516044+00 29845 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fGwnvkguBVEgo-JrKIFtPrQu7BQ=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.518116+00 2025-12-17 11:00:00.518124+00 29846 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:09diuNJQO1TszDJ8FE9vgMca9NE=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.520323+00 2025-12-17 11:00:00.52033+00 29847 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:418jTkXvQO7t3DqzCy3Bm3S3uuA=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.522289+00 2025-12-17 11:00:00.522295+00 29848 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dc9pABJ7EqdMz5ktQtqE9AnHecM=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.524493+00 2025-12-17 11:00:00.524499+00 29849 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zHAN7RNVCOia45cJuEGZa105jU4=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.526459+00 2025-12-17 11:00:00.526466+00 29850 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KyqSpgbowjgstWFi3jrrhMJbw5k=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.528358+00 2025-12-17 11:00:00.528365+00 29851 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4vmVedGHPvluQClBdy-zz2LmKsA=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.530331+00 2025-12-17 11:00:00.530338+00 29852 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b-fyVWA3S2dGsQq4SEv3wSb3_ak=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.532292+00 2025-12-17 11:00:00.532298+00 29853 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sftM2F04WerPxqKZY_geRqtBfT0=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.534233+00 2025-12-17 11:00:00.53424+00 29854 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q5MzDHobls_8eh4sfLsUWqPDhOA=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.536381+00 2025-12-17 11:00:00.536389+00 29855 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6m-IK_UhFIOSzSedoEZ0bhRMUBs=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.538279+00 2025-12-17 11:00:00.538286+00 29856 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KMWJqExQ3Eb7IJAJQELdxQ00RZc=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.540651+00 2025-12-17 11:00:00.540656+00 29857 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-OCdv3wra_rH1eWbQFwjzWqv3yY=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.543197+00 2025-12-17 11:00:00.543203+00 29858 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O_KlvtodzcvCOWv5xnA25YUzS0s=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.545591+00 2025-12-17 11:00:00.545598+00 29859 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eTLOCyjzWlajt9adI6QGhlBqQ60=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.547682+00 2025-12-17 11:00:00.547688+00 29860 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uSchvovhQ8Dmh7l9KiKezuB6-Uo=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.549474+00 2025-12-17 11:00:00.54948+00 29861 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ytnIJD-l33xIoezT-68B8pTdLvk=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.55124+00 2025-12-17 11:00:00.551245+00 29862 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TZB4FkYp7vKd4S9AFVGW9nzzlHc=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.553284+00 2025-12-17 11:00:00.553289+00 29863 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lc7TKuvMf0CDVJYseLJJJKDHKK8=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.555006+00 2025-12-17 11:00:00.555012+00 29864 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TQspb5r3Z4L3INEBOTlZpd3-64E=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.557388+00 2025-12-17 11:00:00.557392+00 29865 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Du_mmOwp-28C2GNzcmQIq0750k=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.559682+00 2025-12-17 11:00:00.559687+00 29866 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bwkNWp2OcmkcTwQWWNmYB5c1pd8=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.561757+00 2025-12-17 11:00:00.561762+00 29867 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_g4RSEn-ZwYZ7ufUNT6PgKooU6o=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.563762+00 2025-12-17 11:00:00.563767+00 29868 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ec0FrJLUz4M6Ywl6O5hQjUa37Ys=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.565543+00 2025-12-17 11:00:00.565547+00 29869 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CkT9ctl6a7ryYOkPP5RTFgF3f_Y=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.567379+00 2025-12-17 11:00:00.567387+00 29870 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6VBw5lk-czMSviA-ZUHPSKjnuJ0=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.569562+00 2025-12-17 11:00:00.56957+00 29871 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dg-Vou5ITQSV_2NZ1RHxu-E6sBU=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.571776+00 2025-12-17 11:00:00.571786+00 29872 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9jtk1sDEmwsz1LmiD_fK57ZL10g=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.574219+00 2025-12-17 11:00:00.574224+00 29873 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=1766055599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N4p-7HxtD-gKKY6B3c2Oqp36QrQ=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.995696+00 2025-12-17 11:00:00.995704+00 29874 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:shL49SijNCmUdCuqVkJis8YLBPE=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:00.998366+00 2025-12-17 11:00:00.998372+00 29875 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5v4TbPtXiyxlhiVFeF0f7G4Lxa8=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.000873+00 2025-12-17 11:00:01.000879+00 29876 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g-Sxra2tpFcW_tMk7G0Fs88BQfo=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.002567+00 2025-12-17 11:00:01.002572+00 29877 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dh719jjK2i1B7bgmGDvNySsGpfQ=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.006339+00 2025-12-17 11:00:01.006343+00 29879 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n4NcoPqvysnfFA5UXd-JnDy6dvY=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.004485+00 2025-12-17 11:00:01.004489+00 29878 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WlhnjLkEjr16jz5kEQEcxtIJh6k=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.011398+00 2025-12-17 11:00:01.011404+00 29880 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i-JhlUNiTUgIrLBtqDGigCoLiGM=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.013712+00 2025-12-17 11:00:01.013717+00 29881 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ewWKyn8JmfoWRzeawtWRC1dobZU=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.016245+00 2025-12-17 11:00:01.016249+00 29882 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mk7ry-hw-ojuIP2vGzSN9MPP7m0=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.017967+00 2025-12-17 11:00:01.017972+00 29883 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2L6hAStGx5sIRZnIMhlXah17fyI=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.019586+00 2025-12-17 11:00:01.01959+00 29884 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OGs66SGN4KPgZS3d-5_0UAIo6ow=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.021427+00 2025-12-17 11:00:01.021432+00 29885 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SbpQaZqSBO9dh6fiwJJA1cPEKII=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.023124+00 2025-12-17 11:00:01.023129+00 29886 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3usKyP_Ve4lPC7T1zCWYjx-SY08=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.024957+00 2025-12-17 11:00:01.024963+00 29887 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JYUtv5_mZ-x5HbGvyRnd6z1Luoo=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.027752+00 2025-12-17 11:00:01.027757+00 29888 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qN13ucN8C7M1_4n1jTysR_wXGYw=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.029789+00 2025-12-17 11:00:01.029794+00 29889 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D_xiYcv6RX-_XApyF2qm5Q-u-IU=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.031713+00 2025-12-17 11:00:01.031717+00 29890 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lEFRQ3hfFWKfSbj_wpRHgskrb1Y=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.033599+00 2025-12-17 11:00:01.033603+00 29891 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aIdg7OAwLBPQKFO5oXJInaK1HGI=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.035499+00 2025-12-17 11:00:01.035504+00 29892 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cJU9vcd4J7rY_vFbB4KgJQegnBA=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.037113+00 2025-12-17 11:00:01.037118+00 29893 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iei0_ysn6qFRtv9LqU21g6qj_Sc=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.038728+00 2025-12-17 11:00:01.038732+00 29894 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_rtA6rf7U3uhBgLLOPywwsl2tqA=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.040675+00 2025-12-17 11:00:01.040681+00 29895 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zsioLaDpuVLB1qjjsbXMAKbI1pA=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.042635+00 2025-12-17 11:00:01.04264+00 29896 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9fgpGu1wgHHKRDbo0P9SDCmv0cY=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.044273+00 2025-12-17 11:00:01.044277+00 29897 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J4okjj1DUz8aYaQL8qPQEatQjRc=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.04593+00 2025-12-17 11:00:01.045935+00 29898 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4XnmEdkVVjebFEZHis7JvBuB_0g=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.04796+00 2025-12-17 11:00:01.047966+00 29899 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sBv36sIBh2rowTIYZew1JL7I0VM=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.050151+00 2025-12-17 11:00:01.050156+00 29900 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6aM4YUG5mWTGAru0af1OiQ--Zqk=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.052227+00 2025-12-17 11:00:01.052232+00 29901 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0MNgj7zxjFVpaKtUwoR2fUKzuyc=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.053854+00 2025-12-17 11:00:01.053859+00 29902 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hRGfPCYqBVD7ZGXCWX8SlwtGaYo=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.05569+00 2025-12-17 11:00:01.055694+00 29903 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GHY34qomBYWaLzfbJUTbSzBPvXw=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.057359+00 2025-12-17 11:00:01.057364+00 29904 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kzqbHlOl3ciihmOsDTogM13WJ-Y=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.059002+00 2025-12-17 11:00:01.059006+00 29905 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hVoYCRXhMdl12Pxu9eMqZzZ69no=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.060816+00 2025-12-17 11:00:01.06082+00 29906 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RHy3B_KaMuxmFoqQFzpCoG_0fBk=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.062427+00 2025-12-17 11:00:01.062432+00 29907 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:boaW0aYT0c2Q3qZCXua6PDikptE=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.064122+00 2025-12-17 11:00:01.064126+00 29908 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RlYSEn6j5TWi2SCCB5S8djjMTcw=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.066046+00 2025-12-17 11:00:01.066051+00 29909 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ec75rWl5612oHAB8bAz6wwaovUk=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.067937+00 2025-12-17 11:00:01.067941+00 29910 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8dUBT8XqekM1hz3zlzIwy2xiJ1s=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.069802+00 2025-12-17 11:00:01.069806+00 29911 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wfypK6vPTwLSogqgQz4vhKohdGI=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.071436+00 2025-12-17 11:00:01.071441+00 29912 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CiwB6a7nIjTXh928smr4uzbehWg=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.073092+00 2025-12-17 11:00:01.073097+00 29913 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ysYtBYF629-ViMXhwkRpWfsObgI=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.075032+00 2025-12-17 11:00:01.075036+00 29914 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bvgbYg1wsss2CyURBei7jn5LWXE=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.076836+00 2025-12-17 11:00:01.07684+00 29915 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LwT7KTBxFlaV2VMOE1s3risVecI=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.078454+00 2025-12-17 11:00:01.078459+00 29916 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UzLLpECwKST_NXTGaIM_qAzv6mU=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.080084+00 2025-12-17 11:00:01.080088+00 29917 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VG6brIuMG_ouXeJgMyj-ixuIb_E=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.081927+00 2025-12-17 11:00:01.081931+00 29918 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jhTQ0ubdGCzdS2XV7e3o4A3mjrY=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.083521+00 2025-12-17 11:00:01.083525+00 29919 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hJ2jzE6AXV3wMQ5E_mC4OfZmVx4=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.085111+00 2025-12-17 11:00:01.085115+00 29920 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PmqWqBwrojJLtp3Uc4rg0e9CG9M=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.086939+00 2025-12-17 11:00:01.086944+00 29921 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0WTZkJGQr7jHURnmpshBCIsA4CM=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.088555+00 2025-12-17 11:00:01.088559+00 29922 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5f9dheYXAukZj0AZtSwLzhAb6A0=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.090208+00 2025-12-17 11:00:01.090213+00 29923 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DhHFK_iRd_VtdUdN7LO1pGunuB8=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.092048+00 2025-12-17 11:00:01.092053+00 29924 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uoGlbcis2dJ21MYGtiCeNJgNKe0=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.093655+00 2025-12-17 11:00:01.093659+00 29925 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tyv3oricOfqjCc9LPmPK_DHJoGQ=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.095271+00 2025-12-17 11:00:01.095276+00 29926 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MQxQLLUmSGa_Nymi9yQ3pfetfYM=", "createTime": "2024-08-15 14:49:48"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.09713+00 2025-12-17 11:00:01.097134+00 29927 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i3tlPtKn8lBEyxj2t5sJfVpOxGg=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.099039+00 2025-12-17 11:00:01.099044+00 29928 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l1kEV2V1w0-2FoEafx_9JuA8BmY=", "createTime": "2024-08-15 14:49:48"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.100668+00 2025-12-17 11:00:01.100673+00 29929 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vIiqLhGV5ul0Xu-_vBWlyWOkZYw=", "createTime": "2024-08-15 14:49:48"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.102297+00 2025-12-17 11:00:01.102301+00 29930 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:euTZBhhga2Wi9jnyQrTZxsDEsPM=", "createTime": "2024-08-15 14:49:48"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.10414+00 2025-12-17 11:00:01.104144+00 29931 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A2Z8EQzaAVVcXV10RahnWZVnyDU=", "createTime": "2024-08-15 14:49:48"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.105743+00 2025-12-17 11:00:01.105748+00 29932 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:am31s4Wz3FvrzibXN1I2mU93Tpk=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.107448+00 2025-12-17 11:00:01.107452+00 29933 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Qsg8qr9_92J5-DK4rltUxrHdbg=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.109128+00 2025-12-17 11:00:01.109133+00 29934 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IPCH_Ze1t5TRDHoF9B7CBhrkF30=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.110746+00 2025-12-17 11:00:01.11075+00 29935 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MjenvANQl7e3GOY7Mz9kvhWC5eQ=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.112369+00 2025-12-17 11:00:01.112373+00 29936 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hJLLUnVQOhTa7cWt7IyfO_7ocyY=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.114261+00 2025-12-17 11:00:01.114266+00 29937 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZKstuCJ3Gw398tE6Ouhd_ci4mS4=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.116096+00 2025-12-17 11:00:01.1161+00 29938 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tU2vxG6ommYCCPOnqokTRvugDYE=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.117749+00 2025-12-17 11:00:01.117754+00 29939 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fH_d5Ko5YG0_vhDMBZspFjLD61E=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.119362+00 2025-12-17 11:00:01.119366+00 29940 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JcoJSzkpXOHM5AV76oSE4ijplO8=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.121231+00 2025-12-17 11:00:01.121235+00 29941 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yf-RIVuRjWQzKUFHo1Z0K2U2kLU=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.122854+00 2025-12-17 11:00:01.122859+00 29942 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2nyqcwNf_ZhOJFTCPZqE2zbivqs=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.124503+00 2025-12-17 11:00:01.124508+00 29943 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SZ_PsKyGV8RTmWBuqTy5ix20DM0=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.126364+00 2025-12-17 11:00:01.126369+00 29944 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-_h9pfb7p8y64CWGGwaQ95ZhBHo=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.128222+00 2025-12-17 11:00:01.128226+00 29945 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pd-8_dGS0xfEW4Noj3-SpL-St6E=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.129868+00 2025-12-17 11:00:01.129873+00 29946 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ukBBYM1tl2fcORmikqOBssK3wVw=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.13152+00 2025-12-17 11:00:01.131523+00 29947 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VP9P1tUUxNIqLQ7OHi4WvU-waOk=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.133349+00 2025-12-17 11:00:01.133353+00 29948 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d8keh5uJ6EDTNKNRJn9ohBZqOIU=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.13495+00 2025-12-17 11:00:01.134954+00 29949 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GXib76MY1WTL-OOhSozLn9Pmi5I=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.136671+00 2025-12-17 11:00:01.136675+00 29950 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rZpdXFEyvlXdK2OJ4Vsy8zI-yr0=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.138278+00 2025-12-17 11:00:01.138283+00 29951 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7sLpc0cx2sLdfSR6PhvNV_3jLE8=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.139935+00 2025-12-17 11:00:01.139939+00 29952 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dXDaGgGFo85UVD7ZGgPJknzxBfI=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.155499+00 2025-12-17 11:00:01.155503+00 29961 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oquMyfOtQtzsNT51vVENKoMMuHw=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.141594+00 2025-12-17 11:00:01.141599+00 29953 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3bLHo1FZ00Z4EIuhVvsBlqqsQr4=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.143464+00 2025-12-17 11:00:01.143468+00 29954 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OoZVuQJop25SQsFXnAjpsvgF3vs=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.145382+00 2025-12-17 11:00:01.145387+00 29955 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JkO9r6F0tY8HRvJjUXKnVIuTxf8=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.147076+00 2025-12-17 11:00:01.14708+00 29956 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iKNSEEix6u68KmVeyqTXOeCbaHw=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.148767+00 2025-12-17 11:00:01.148772+00 29957 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bVP5hmVhg8OKf2Bh3Jh0owJmLS4=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.150436+00 2025-12-17 11:00:01.15044+00 29958 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yZgtRO3UCGkmllorbyvUh1-cDqE=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.152061+00 2025-12-17 11:00:01.152066+00 29959 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZlFbpk6GI2T4wGOS6UNW0aqWpgQ=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.153669+00 2025-12-17 11:00:01.153673+00 29960 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JiqQ7ENtUsGvRthFp-F2DjebX9E=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.157115+00 2025-12-17 11:00:01.157119+00 29962 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KPncasM_KEx3Jcce7ycj2d2GQcg=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.158779+00 2025-12-17 11:00:01.158783+00 29963 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6-47-463kZTr_25FxjV1zANzITc=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.160618+00 2025-12-17 11:00:01.160622+00 29964 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:swizboYlduhzwdhBU-m4YI5CrXI=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.162538+00 2025-12-17 11:00:01.162543+00 29965 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xPR0OsD22zHQobJqipu0ATLZ0Fg=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.164357+00 2025-12-17 11:00:01.164361+00 29966 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XcgEmGl1ebKumXnph9nfJGcrNs8=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.166063+00 2025-12-17 11:00:01.166068+00 29967 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eX94m03nWvnXCAm66EuO8-Ah5mI=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.167696+00 2025-12-17 11:00:01.167701+00 29968 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:huKCYfTXq_ETHPnyIs8OoeCGI4I=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.169548+00 2025-12-17 11:00:01.169552+00 29969 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0DUSJck8biK6__tSOQhv-TRXSnA=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.171186+00 2025-12-17 11:00:01.17119+00 29970 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FtfN6-C-6QndGNmb99JQDBZhdgE=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.172818+00 2025-12-17 11:00:01.172823+00 29971 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7joGfITL6qBx9sAqQNxDjMIa17U=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:00:01.174695+00 2025-12-17 11:00:01.1747+00 29972 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=1766055600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ajuXr5nMkhB7XaluARk3pZ_LN_Q=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.695406+00 2025-12-17 11:10:00.695419+00 29973 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gDx2PuJ8pjeSzPm1-WDVk4jd8Wk=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.699001+00 2025-12-17 11:10:00.699008+00 29974 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IVGvTOUD2CCbwhbHx5KTOM1e8pQ=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.701906+00 2025-12-17 11:10:00.701913+00 29975 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ty-HANHo_PaBrws_V5MMBahUsrY=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.704995+00 2025-12-17 11:10:00.705002+00 29976 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-sIQU4sQVugPz4W7WxXkIhjaviI=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.707782+00 2025-12-17 11:10:00.707789+00 29977 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bYIk8PP4dQ1HIkSdgyFB68vTaYI=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.710579+00 2025-12-17 11:10:00.710586+00 29978 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zAG6-CD1cOsvojNCkPYlvJT2CPI=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.713417+00 2025-12-17 11:10:00.713424+00 29979 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SKE6bzfVUgm8QWWEylgWC6GQypg=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.716149+00 2025-12-17 11:10:00.716156+00 29980 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y31LPSOWkhRjLjU9Fi2-kOY1XiQ=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.718874+00 2025-12-17 11:10:00.718881+00 29981 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SFWcaKh0U5xfJrtQS3Rug_xYaAY=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.721613+00 2025-12-17 11:10:00.72162+00 29982 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y8pdotEGr27VV_AVln8eAeFdawU=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.724399+00 2025-12-17 11:10:00.724406+00 29983 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PD_lBzLqRT81BACj7Mzg-VhbnFg=", "createTime": "2024-08-15 14:49:53"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.727414+00 2025-12-17 11:10:00.727421+00 29984 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cTaaRarJQeUxKTtig4vyzXlhjyQ=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.730178+00 2025-12-17 11:10:00.730185+00 29985 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ARKVpVWjaApFt30SgQjLz7qZsY=", "createTime": "2024-08-15 14:49:53"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.733099+00 2025-12-17 11:10:00.733105+00 29986 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:38Q6XdjoVcpKq8F4zRaLfDn3FaU=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.735147+00 2025-12-17 11:10:00.735152+00 29987 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c_sinBjTwjwXfKwV5FRm1prRGOY=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.737148+00 2025-12-17 11:10:00.737153+00 29988 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:66r9Lxz6f79sRtXNd24HsGNUVac=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.738804+00 2025-12-17 11:10:00.738808+00 29989 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kY1Hshg_58q0hpWAswFpFCGeMyI=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.74047+00 2025-12-17 11:10:00.740475+00 29990 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w9OvZcIxjHE3iDeCBTKaKFZFBkE=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.742537+00 2025-12-17 11:10:00.742542+00 29991 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iMqLNLEoRgYJreiAZOjzrY2OM4U=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.744949+00 2025-12-17 11:10:00.744953+00 29992 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4O4lkQwyLXqibT6AElSOq1Faw6c=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.746618+00 2025-12-17 11:10:00.746623+00 29993 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BrYY06AwIMOQobiUYRxOXSsmuyU=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.74823+00 2025-12-17 11:10:00.748234+00 29994 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OM2OqDSZ331OES_jai1OiRxlMhA=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.749879+00 2025-12-17 11:10:00.749884+00 29995 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r7mcfVVBgkuajRGqF8FE5h3qvAs=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.751502+00 2025-12-17 11:10:00.751506+00 29996 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:upYSibyOdiZ5AuA9VJ30NORGUEA=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.75336+00 2025-12-17 11:10:00.753365+00 29997 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k7zEntyAz22wTUInMXxVFr8--y8=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.755217+00 2025-12-17 11:10:00.755222+00 29998 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dGyk4oTqEDlE8dqA0mlkmJ1SViE=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.756872+00 2025-12-17 11:10:00.756877+00 29999 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:spA19NaXTolPUsiUzn7EwIP7csU=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.758817+00 2025-12-17 11:10:00.758822+00 30000 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VAlRhEuMfaK-rGLLWudxk7HoM34=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.760563+00 2025-12-17 11:10:00.760572+00 30001 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m1G58sJjF8ttcvjKDt6PbITm2RA=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.762556+00 2025-12-17 11:10:00.762561+00 30002 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J2YZg1pv5zXDM2yX4aUmPn49yw8=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.764464+00 2025-12-17 11:10:00.764469+00 30003 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:30NF_q0nHp4A4fqJba2aVMcBizI=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.766335+00 2025-12-17 11:10:00.766339+00 30004 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WGrG6iJ0gKZ3aVevjiUoQx3CvR8=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.768078+00 2025-12-17 11:10:00.768084+00 30005 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yfD9LlYymZsa5LS7xv1nM9ByRHQ=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.769757+00 2025-12-17 11:10:00.769762+00 30006 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ar-CoRnqkaGdz8v_tO1AEBUbYHY=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.771398+00 2025-12-17 11:10:00.771402+00 30007 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2OxvJjKoFf9SAaVAUtT64BGi8QY=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.773341+00 2025-12-17 11:10:00.773346+00 30008 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iY-879HlxXSQj4zU7hd84vPa9uY=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.774982+00 2025-12-17 11:10:00.774987+00 30009 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XaD9pXDfCk3muykL__F5UTlS5_o=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.777604+00 2025-12-17 11:10:00.777608+00 30010 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cxb4JL0J-mV4bgTTfZCildCZJqY=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.779912+00 2025-12-17 11:10:00.779917+00 30011 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6ctfdwmXTAXiD2csQnGMOtIsNGU=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.781899+00 2025-12-17 11:10:00.781903+00 30012 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r5XDn_TYE1J0c9WEzcrv7Yazxa8=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.783835+00 2025-12-17 11:10:00.783839+00 30013 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fuUGcimoF5bhyCWTLxudOosaaUg=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.785733+00 2025-12-17 11:10:00.785738+00 30014 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eB9EPxDeyMeSuj2CCVA5u1vdcUc=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.795695+00 2025-12-17 11:10:00.7957+00 30019 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hOmgYlUJ4vfLHLLbgqoT0FcIFRw=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.787867+00 2025-12-17 11:10:00.787871+00 30015 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N-oEgELJaJahiuM8kdfi4R4w4I0=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.789804+00 2025-12-17 11:10:00.789809+00 30016 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0F_VbD38zIP55g35OlA7Or-b5DY=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.791715+00 2025-12-17 11:10:00.79172+00 30017 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F8vi6c6RaIb2xhWO2gafwQnvu6M=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.793706+00 2025-12-17 11:10:00.79371+00 30018 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LgNMK5oUa4zlu-Gc5U5gruiaH5I=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.797501+00 2025-12-17 11:10:00.797506+00 30020 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SbJKuja74SLVUtYen3B0GzAUBqo=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.799174+00 2025-12-17 11:10:00.799179+00 30021 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:idjcCpAAzwyYSRpIuAlD-rDFSVo=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.800851+00 2025-12-17 11:10:00.800856+00 30022 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tRt8yeRKzk2xifBXiHnTdZLDpIA=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.802718+00 2025-12-17 11:10:00.802722+00 30023 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cWKKWTxZbXEXY2QvPfqyZhdnDFc=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.804873+00 2025-12-17 11:10:00.804877+00 30024 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NXhs9b0AefBTUDyyt_z_OjzcuVU=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.806732+00 2025-12-17 11:10:00.806737+00 30025 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:utdI55daJV-20Ve3ahNQ9YYxb0c=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.808637+00 2025-12-17 11:10:00.808642+00 30026 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K6bcCn_KL71lYjaTfnL0GI2PVPg=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.810708+00 2025-12-17 11:10:00.810713+00 30027 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7-H8peu__L-p1hnVGJCxsabQWQ4=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.812783+00 2025-12-17 11:10:00.812787+00 30028 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vYgArnwYwvrMknlUOraKrdHJlLw=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.814724+00 2025-12-17 11:10:00.814728+00 30029 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vX2XsEoQndSu-4m2Blvs7r35bdc=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.816655+00 2025-12-17 11:10:00.816659+00 30030 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IeTZpxGHE8kHhSlugtN7CSm-yVA=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.818277+00 2025-12-17 11:10:00.818281+00 30031 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FrmlmY54U8tSm7R-3bxcaRnfQyk=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.820192+00 2025-12-17 11:10:00.820196+00 30032 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3afBcNExWFofEwlatxdyDcj2rBc=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.821841+00 2025-12-17 11:10:00.821845+00 30033 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mYRnESeMu78By2kpif8c3duY7Hw=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.823714+00 2025-12-17 11:10:00.823719+00 30034 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:78wUz4BMDFb-9RpQ0zXpvc_ZXok=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.825383+00 2025-12-17 11:10:00.825388+00 30035 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ODN0RuIpqUS56K9JghR56cX0dbk=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.841858+00 2025-12-17 11:10:00.841863+00 30044 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dXPmxva_fKBxhEOAsyjUxVsZrek=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.827172+00 2025-12-17 11:10:00.827176+00 30036 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DCxXEQgKEbZwyybcywiXj4FETow=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.829007+00 2025-12-17 11:10:00.829012+00 30037 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N9t3tTSVPU6Z6vJxLrTzikzuKJA=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.830921+00 2025-12-17 11:10:00.830926+00 30038 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VFBIg6XyL_Eq-mF08qOo3BPbSqA=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.832727+00 2025-12-17 11:10:00.832732+00 30039 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wnUk4tuwv52Wy7Tf2wMgHDH6KJU=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.834653+00 2025-12-17 11:10:00.834657+00 30040 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_kMAPy6NVJgV0CNE7QLnXWLQUZo=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.836414+00 2025-12-17 11:10:00.836419+00 30041 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:knN_zmsifWQTcjOoiY4Hdf-PKcI=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.838175+00 2025-12-17 11:10:00.83818+00 30042 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tOvn0ZZrgn92pgX819KB3deRTmo=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.840041+00 2025-12-17 11:10:00.840046+00 30043 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bCE0WOfBDz-6EVYMc2MqJwUpbBo=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.843673+00 2025-12-17 11:10:00.843678+00 30045 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oO0b3HUVzvYOPh1Geje6PSIcMXI=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.845478+00 2025-12-17 11:10:00.845482+00 30046 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:diqJW-lHB21Z3RzAb1IMNEFMFIQ=", "createTime": "2024-08-15 14:49:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.847267+00 2025-12-17 11:10:00.847271+00 30047 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cUoVYZ3xiPFL6otnP4LvaAbDl10=", "createTime": "2024-08-15 14:49:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.849464+00 2025-12-17 11:10:00.849469+00 30048 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rru3DniSca2sAFiQvghk8q1eKow=", "createTime": "2024-08-15 14:49:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.851099+00 2025-12-17 11:10:00.851104+00 30049 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IfZ4Fhf3M6BaUnBPVvAZhAPIcjs=", "createTime": "2024-08-15 14:49:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.853021+00 2025-12-17 11:10:00.853025+00 30050 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GTToqeAAVvPKgD3OEc4k8Emea3g=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.854907+00 2025-12-17 11:10:00.854911+00 30051 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DN2arAZz9AoAHH5HaHWFVxi5Ys8=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.856528+00 2025-12-17 11:10:00.856533+00 30052 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hyFMfQzFRsKOMK8Ew7niohAeCac=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.858172+00 2025-12-17 11:10:00.858176+00 30053 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nwftQ9ZpZel5dLXr0ttw9cCI1I4=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.86016+00 2025-12-17 11:10:00.860165+00 30054 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GnMCYJMqqwSaULVBJEcJPZiLh_A=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.862157+00 2025-12-17 11:10:00.862162+00 30055 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NteTmHmrY_FkH9hZv_efdU12adI=", "createTime": "2024-08-15 14:49:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.86444+00 2025-12-17 11:10:00.864445+00 30056 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L7bBMjfqEnbuY2FRs53X4jSkEB4=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.86633+00 2025-12-17 11:10:00.866335+00 30057 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z60wvakbgZL3eMuAyS0oedJEWCc=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.868405+00 2025-12-17 11:10:00.86841+00 30058 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:axOZVg2yLZxvXGfdcoALGwXMiD8=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.870491+00 2025-12-17 11:10:00.870496+00 30059 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U3VL1EWRkOvZQlKiLRQSqjTESjc=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.872346+00 2025-12-17 11:10:00.872351+00 30060 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EerdB1ytzuL4kiB-IFTT6iqIomo=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.874377+00 2025-12-17 11:10:00.874381+00 30061 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FzOq0FfaI9A19xLZwuxuCLCWJak=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.876735+00 2025-12-17 11:10:00.87674+00 30062 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mwsvCxkdETBwYeyvNswfU67F3Xw=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.87879+00 2025-12-17 11:10:00.878795+00 30063 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nthsn2-NjKEol1VAnAjOwV--msI=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.880801+00 2025-12-17 11:10:00.880806+00 30064 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wcHd28WBnY9vY953UEymeN4351A=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.882971+00 2025-12-17 11:10:00.882976+00 30065 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TY8XAx6V13FLv7CRqAv2r4ub3EU=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.885249+00 2025-12-17 11:10:00.885254+00 30066 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rXq1Y_irPe0etFADOUoosMgd5Uw=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.887449+00 2025-12-17 11:10:00.887455+00 30067 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GYOfQZ04yYsXOGp1S15HZiRpNvg=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.889294+00 2025-12-17 11:10:00.889299+00 30068 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RJ7dqQMsBZokT-tslCvT08euEkQ=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.891208+00 2025-12-17 11:10:00.891213+00 30069 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:onvsJF6IPdXRBJwuUF1-_FTDJE8=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.893265+00 2025-12-17 11:10:00.893269+00 30070 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cSHP_8Qp0f_-mwbMMBeH8IaMzbk=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.895489+00 2025-12-17 11:10:00.895495+00 30071 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:APorBz8ZRDeTQufoIP-5h0kuTiw=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:00.897429+00 2025-12-17 11:10:00.897433+00 30072 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=1766056199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RTd5ha8Ly-7cTjgGNCNl4z5FZ30=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.271857+00 2025-12-17 11:10:01.271865+00 30073 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tD3sKFjtRaczUgVH-LKksnA87f8=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.275418+00 2025-12-17 11:10:01.275425+00 30074 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SN-aHdpiVHZKmcFh26L95HsRmy0=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.278036+00 2025-12-17 11:10:01.278042+00 30075 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dJAiGdyqKte5l28DHRnEF7TJ1FA=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.280164+00 2025-12-17 11:10:01.28017+00 30076 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q0z9xnIYwAQQW-zHvzT8K5D-6q8=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.282285+00 2025-12-17 11:10:01.28229+00 30077 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wDcaqPEKfJR-n7iZMdMywCZveSE=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.28473+00 2025-12-17 11:10:01.284735+00 30078 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S6q2fMd7uYtki48nznBU_B0t-Yo=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.286623+00 2025-12-17 11:10:01.286628+00 30079 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TF7KaThifydpDWPXAC4nzXvI7bY=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.288481+00 2025-12-17 11:10:01.288486+00 30080 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f2Xy1L8w54jtzRi1trzmARDm63I=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.290343+00 2025-12-17 11:10:01.290348+00 30081 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7dLcD8VJwxyH027m9guPUS6bBg=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.292378+00 2025-12-17 11:10:01.292383+00 30082 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vwtTuWqyynf5iMhE33WVqo-7g7o=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.294398+00 2025-12-17 11:10:01.294403+00 30083 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QnU3KHtBT2C_I7wTx3bYYhJZu6Y=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.296544+00 2025-12-17 11:10:01.296549+00 30084 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tnCHNZazKka565QdM3wE4iQaERU=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.298438+00 2025-12-17 11:10:01.298443+00 30085 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DsyIO4Mg6Vk3eeP5WidC9Z5JFiM=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.30084+00 2025-12-17 11:10:01.300845+00 30086 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5R53OdWl9-7vH0-hABoPiTJdwXM=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.302732+00 2025-12-17 11:10:01.302737+00 30087 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rSMfC0oL9_jcNnTAFxtwy2xwRZ4=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.304583+00 2025-12-17 11:10:01.304588+00 30088 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gCPB1cFx9FZBpAzrNPQgxKVueaA=", "createTime": "2024-08-15 14:50:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.306432+00 2025-12-17 11:10:01.306438+00 30089 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h-aKBOzxlkzrtmxWRVoQN1eUg88=", "createTime": "2024-08-15 14:50:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.3085+00 2025-12-17 11:10:01.308505+00 30090 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8KIhN-BoHqJePJV96JwwmWraing=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.310423+00 2025-12-17 11:10:01.310428+00 30091 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8hIZyi-QA0QATcZGB7mHiMjsErA=", "createTime": "2024-08-15 14:50:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.312562+00 2025-12-17 11:10:01.312571+00 30092 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a1tyuwyaJBCGEFxOzaQ2hfOMjGo=", "createTime": "2024-08-15 14:50:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.314587+00 2025-12-17 11:10:01.314592+00 30093 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CJs9UmUbtQ40F6yppoMBYGBSzyg=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.316879+00 2025-12-17 11:10:01.316884+00 30094 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OpLkJgwe8BMrcEmQG61knPRGgyc=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.319198+00 2025-12-17 11:10:01.319203+00 30095 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uaPwx6pEoL9LwEEuAjZuoC05RSo=", "createTime": "2024-08-15 14:50:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.321284+00 2025-12-17 11:10:01.321289+00 30096 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:66Hh2C2LBaT84MRAIbmwE3WMWes=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.323361+00 2025-12-17 11:10:01.323366+00 30097 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:deiPogZsEz3TiNUGI7eGGIlkhsc=", "createTime": "2024-08-15 14:50:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.325438+00 2025-12-17 11:10:01.325443+00 30098 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dS-yTZt6Suxd_rllmesXgKjkgB8=", "createTime": "2024-08-15 14:50:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.327922+00 2025-12-17 11:10:01.327928+00 30099 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4VTVUo_PSNuy5LRKckK2-0NV02s=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.330385+00 2025-12-17 11:10:01.330391+00 30100 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qri6fEqEhTc8kWb8ZvJeVvglV-c=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.333087+00 2025-12-17 11:10:01.333093+00 30101 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GWf6zdLZGoncAaxAhZahaiZOnlM=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.335697+00 2025-12-17 11:10:01.335703+00 30102 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PIW9sr4w8bKYD-mt1fFN5OcxzxI=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.337856+00 2025-12-17 11:10:01.337861+00 30103 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MeM7IXkg4DBMM_JOH2Qq6XLthWc=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.339964+00 2025-12-17 11:10:01.339969+00 30104 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wsAQ3OiJ1gESwDhhr7YEH47PxkM=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.341707+00 2025-12-17 11:10:01.341712+00 30105 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NWiu5x_s5uqK4fotnF3etqrV6GY=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.34343+00 2025-12-17 11:10:01.343435+00 30106 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XU7CngUeOi-j1RG_O686IieeQxQ=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.345493+00 2025-12-17 11:10:01.345498+00 30107 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PY0oacXOZptB8ILHytQP3egvlUI=", "createTime": "2024-08-15 14:50:05"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.347587+00 2025-12-17 11:10:01.347593+00 30108 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I4TQkAT6ENcnFeh-9xbjgDKU_CY=", "createTime": "2024-08-15 14:50:05"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.349857+00 2025-12-17 11:10:01.349861+00 30109 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jft0v9dJXPGJwhARvi7rP4KUqdg=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.352279+00 2025-12-17 11:10:01.352284+00 30110 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I6To2Pij8bMoW7r2sWe4CdQ5V0w=", "createTime": "2024-08-15 14:50:05"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.354546+00 2025-12-17 11:10:01.354555+00 30111 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GObT07pXTFH_B2q0CIvviR3ArTo=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.356975+00 2025-12-17 11:10:01.35698+00 30112 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2BzNhZ3r8AagErvS7YRbSN7zyD4=", "createTime": "2024-08-15 14:50:05"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.359112+00 2025-12-17 11:10:01.359117+00 30113 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FI4Dl3rpt9ypvEHocyO4EvYC9oA=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.360901+00 2025-12-17 11:10:01.360905+00 30114 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tbd4bqy_5EWeT5lxeKYInxSdjsc=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.362699+00 2025-12-17 11:10:01.362704+00 30115 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fwcFnoxliA1jwYhr1540RlulMZM=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.364634+00 2025-12-17 11:10:01.364638+00 30116 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IbEBiN-TVn2R8U4htt_faenj6LM=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.36665+00 2025-12-17 11:10:01.366655+00 30117 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lk7yZ6VyjvKEvdfU13IeK0dOxZA=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.368792+00 2025-12-17 11:10:01.368797+00 30118 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Qz7t9jjC5IfDsJ2HtDiCpqtt7I=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.371063+00 2025-12-17 11:10:01.371068+00 30119 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IcV4CC0a5-yR8M_HqBa5BHr844c=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.372747+00 2025-12-17 11:10:01.372751+00 30120 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:quoQgKKiJw8ch9cWW5YvXW-_DII=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.37481+00 2025-12-17 11:10:01.374815+00 30121 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zHiklyl9bn36ynk7KBKfVvX3xvo=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.377198+00 2025-12-17 11:10:01.377203+00 30122 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PPtcjqUFCkpC74So2t3Jae4DvA8=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.379424+00 2025-12-17 11:10:01.379429+00 30123 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FS7aG7xgIW09Qryt_BPG6lLN968=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.381373+00 2025-12-17 11:10:01.381378+00 30124 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w30ISaaStzlcKHUWtkx6QSHaGsk=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.383264+00 2025-12-17 11:10:01.383269+00 30125 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-JtIxxyhduXniBNqQ7pZrYFC9A=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.385311+00 2025-12-17 11:10:01.385316+00 30126 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4n-U0dnIO268vy1sdtMk43reQdI=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.387139+00 2025-12-17 11:10:01.387144+00 30127 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2YQCFg03DzHtXywrnUQUlClvYhM=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.388982+00 2025-12-17 11:10:01.388988+00 30128 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UcJ0_96xXMItMWYn2pzrndAEwho=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.391057+00 2025-12-17 11:10:01.391062+00 30129 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1TeeLU5_G4RKJHVI1g0uMLy2034=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.393089+00 2025-12-17 11:10:01.393094+00 30130 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PhWoraFJj8gZAXGxkG0ohIIbb1A=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.395241+00 2025-12-17 11:10:01.395246+00 30131 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2kSe48-clnTvmXj3cS2mwF1UaXw=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.397049+00 2025-12-17 11:10:01.397054+00 30132 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZpmzi0P9PVs4IhgeswUEBywYuM=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.398986+00 2025-12-17 11:10:01.398991+00 30133 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LAbbHUWE91DiysVhtcuDq1ekdRw=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.401166+00 2025-12-17 11:10:01.40117+00 30134 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gruA_85eC4JwwCbQ2rmBUAFNf94=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.403147+00 2025-12-17 11:10:01.403153+00 30135 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IN6iIL5hl7t_szhKkXvbumDWrDU=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.405667+00 2025-12-17 11:10:01.405672+00 30136 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kn6FkzqcxRHMpm8lg2GV8kPbKOY=", "createTime": "2024-08-15 14:50:08"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.407741+00 2025-12-17 11:10:01.407745+00 30137 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:weq0ck868AMHnGuvdUv8A50xgzc=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.40977+00 2025-12-17 11:10:01.409776+00 30138 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oK1fQ2CTFYhXgH8YsKqGKjjf33s=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.411765+00 2025-12-17 11:10:01.41177+00 30139 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FmhtU8mYUjpAHGYZl_-vZr_NKrI=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.413832+00 2025-12-17 11:10:01.413836+00 30140 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Y9N6yckPOlJGyUn7taPAlFsNgU=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.415818+00 2025-12-17 11:10:01.415823+00 30141 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kHPagBiSlt5WUr6VNXsj6Xf0r1w=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.417773+00 2025-12-17 11:10:01.417778+00 30142 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f1PPeyS5_5EEy746HqihMy0HvAo=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.420519+00 2025-12-17 11:10:01.420523+00 30143 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IGPfXNWImpzDHqnCfPWB9g435Bc=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.422289+00 2025-12-17 11:10:01.422293+00 30144 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uqv8igYV3qsaAu-XlVOj-oh2bg4=", "createTime": "2024-08-15 14:50:08"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.42395+00 2025-12-17 11:10:01.423954+00 30145 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WHfolAYxf5iqyTxtkMfODTvEY80=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.425603+00 2025-12-17 11:10:01.425608+00 30146 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lYDdZ3jJJkRBS1DkWg_EChc1wqY=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.427425+00 2025-12-17 11:10:01.427431+00 30147 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OKtnULz5izEkDiu4-5vbDkkyrX4=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.42922+00 2025-12-17 11:10:01.429225+00 30148 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zJy1tzFlTBKfex0XCpWaKbnwveg=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.431225+00 2025-12-17 11:10:01.43123+00 30149 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3biat1vVBEX4RRPd2-pNPcfebTo=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.433589+00 2025-12-17 11:10:01.433594+00 30150 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZWeD89lZcLfwQVdeNsUkwCsXFAs=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.43535+00 2025-12-17 11:10:01.435355+00 30151 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PfRbyv4ZVJi671LpYfuOLVMoSmg=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.437233+00 2025-12-17 11:10:01.437237+00 30152 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7zN1eTwHv8DGZbdXMFPv5QVqJOc=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.439122+00 2025-12-17 11:10:01.439127+00 30153 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xH990jtInPH8F_Mbo399YhBT4EM=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.440998+00 2025-12-17 11:10:01.441002+00 30154 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FzQcGb8hS-WOOYHNmKdYFSPjyuw=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.442721+00 2025-12-17 11:10:01.442726+00 30155 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GvbKd25M8Pqoqt_61iFuIGtW8xQ=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.44446+00 2025-12-17 11:10:01.444465+00 30156 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rXwBd2hrOEhNh7tEAWvNX8XNpQU=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.446209+00 2025-12-17 11:10:01.446215+00 30157 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5OSxqPcb_7IClM1217T6KvZ7h1A=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.448471+00 2025-12-17 11:10:01.448476+00 30158 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bv3XqfmXHbiBECsANleqBvDdBSU=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.450177+00 2025-12-17 11:10:01.450181+00 30159 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:REUWz_Kbe3CoDHfGNJgWCF2ZqUg=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.452093+00 2025-12-17 11:10:01.452097+00 30160 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UqIG6c5-VKO_zsZTzH1wammLJ_g=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.453798+00 2025-12-17 11:10:01.453803+00 30161 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lUMu0w1JVQlgr_WS3qzuU0v5CeM=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.455554+00 2025-12-17 11:10:01.455559+00 30162 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uJZvZmsmbUo7HY5XaAjg1ffyzeg=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.457248+00 2025-12-17 11:10:01.457252+00 30163 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HzCjIT4Gg580xNgJNgpmZONuYbo=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.46121+00 2025-12-17 11:10:01.461215+00 30165 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5rUfoMuHUA77blBg_wFOELq_qg8=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.463559+00 2025-12-17 11:10:01.463568+00 30166 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HOc6SQl4vfW-3xE9BquuWAcbPHg=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.465515+00 2025-12-17 11:10:01.465519+00 30167 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wPRM_L7QGC89fqlTf97omuKPb34=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.467407+00 2025-12-17 11:10:01.467411+00 30168 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6kFdoWssf5LsUhto_YR5GhR4kaI=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.459193+00 2025-12-17 11:10:01.459198+00 30164 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vc4oQsFhuz9Oy4IcI0peRLT2Irw=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.471755+00 2025-12-17 11:10:01.471761+00 30169 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QwU6B7UgUsQqIqf4AIwE4NVZdDs=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.474001+00 2025-12-17 11:10:01.474006+00 30170 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CJd3bqUcRtdPNQ4kq7Q6t-yFkvA=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:10:01.475774+00 2025-12-17 11:10:01.475779+00 30171 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=1766056200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WUNEwPt8AgSFI5uuLjZ7VTBOJUY=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.399386+00 2025-12-17 11:20:00.399392+00 30175 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s61-EAo4tyv9v_cMISaiiybQuZw=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.401533+00 2025-12-17 11:20:00.401538+00 30176 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UXjvDLxF9k3ZO3b2zvoD2dqpy-M=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.403616+00 2025-12-17 11:20:00.403621+00 30177 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nYr1RYtwTqgO2pXFk2182hsNdTk=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.405453+00 2025-12-17 11:20:00.405459+00 30178 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ofU7EWyEUkNDwB-A0G8wtVuXJSY=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.407479+00 2025-12-17 11:20:00.407484+00 30179 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:47j8uRj4Wv-mHSE26YXrsxoz5Cg=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.409445+00 2025-12-17 11:20:00.409449+00 30180 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_outoYjWHnY3lS8E_h1IJ2vrrXM=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.411349+00 2025-12-17 11:20:00.411353+00 30181 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I1bA60v7o827zlYBA2lKQmhepAo=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.413212+00 2025-12-17 11:20:00.413217+00 30182 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T9HSV1BSUypmLJq0AD_KCUuIlcI=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.414856+00 2025-12-17 11:20:00.41486+00 30183 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mIOhbuUDvYhRPNFGK-Xr9d7bI6c=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.416521+00 2025-12-17 11:20:00.416526+00 30184 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AqsF_WaHsoHggeev6Relu4J0idg=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.418469+00 2025-12-17 11:20:00.418474+00 30185 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k_S-DfgTvPeQ8gKGGS-AUZyBA8w=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.420362+00 2025-12-17 11:20:00.420366+00 30186 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kFdqkyLIiqWGUfI7RwTZK2fE_VY=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.422659+00 2025-12-17 11:20:00.422665+00 30187 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O6FxuKODvpxlfd_LeYsAPHZks3w=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.424698+00 2025-12-17 11:20:00.424703+00 30188 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:haSHmLSYdUiyosuSMPMHE3ieH2c=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.426795+00 2025-12-17 11:20:00.426801+00 30189 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7kibxcEI2y5J8_bg3OKns9vX3R0=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.428928+00 2025-12-17 11:20:00.428933+00 30190 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OJ3HquR2-V_JWRL0kdkol50onxM=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.430627+00 2025-12-17 11:20:00.430631+00 30191 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i-Tc3qUU9BtCWfAJmY9U9kTPEOM=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.432506+00 2025-12-17 11:20:00.43251+00 30192 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hkDcRLO2MvFM271woC-OyBa-knw=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.434505+00 2025-12-17 11:20:00.43451+00 30193 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LY0M7rfK9s-fGw0NlVOFY8COEwY=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.436432+00 2025-12-17 11:20:00.436436+00 30194 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7WS2Qsr_CEHhUa-JM1Vq50xP_o8=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.438508+00 2025-12-17 11:20:00.438513+00 30195 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fWYtfB1Jrq2_irkB2JeErUX8KgA=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.440499+00 2025-12-17 11:20:00.440503+00 30196 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_AANQndx3EuCanUfFTnSifVTE4o=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.442545+00 2025-12-17 11:20:00.442549+00 30197 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AJPoaquhhaqvkLPELaNDdbsHuAM=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.444449+00 2025-12-17 11:20:00.444454+00 30198 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C1-i9HSc4foqhb1LV5LQ_qtZGlI=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.446105+00 2025-12-17 11:20:00.446109+00 30199 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9fhE7GE2Wgu925H3sG2jeRzSl00=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.447731+00 2025-12-17 11:20:00.447735+00 30200 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4yJDbrCTbCzuPNO8fm2Kkjn-ocE=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.449616+00 2025-12-17 11:20:00.449621+00 30201 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gqzty258jX360eMW_EAKaiLEYbs=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.451557+00 2025-12-17 11:20:00.451562+00 30202 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bwaATrhG5fbCXghpv0wHWn4u55U=", "createTime": "2024-08-15 14:50:14"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.453303+00 2025-12-17 11:20:00.453308+00 30203 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HRPT0DoC1Z9kFDFOYjFEGdqU27E=", "createTime": "2024-08-15 14:50:14"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.455272+00 2025-12-17 11:20:00.455277+00 30204 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b1BDQ5ju5XeOxmP5gMSutSVkge0=", "createTime": "2024-08-15 14:50:14"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.457283+00 2025-12-17 11:20:00.457289+00 30205 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F06ZYRDzWQKzQcThmplJ89l8sV4=", "createTime": "2024-08-15 14:50:14"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.459295+00 2025-12-17 11:20:00.4593+00 30206 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4IZwsp8bkaMKoqKoh3IhhlHigm4=", "createTime": "2024-08-15 14:50:14"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.461266+00 2025-12-17 11:20:00.461271+00 30207 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wLTzYIUvwEiHzE8CQQk8u4MfIeo=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.463152+00 2025-12-17 11:20:00.463157+00 30208 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nHLWmVUpVEgkkAjxRTzvHUVZ5l4=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.465019+00 2025-12-17 11:20:00.465024+00 30209 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:my3MrzomRVbyUJK88LK4Trqvuo4=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.467151+00 2025-12-17 11:20:00.467157+00 30210 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y8hYG8vzNK5h1K5PvmT6bhuPZxw=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.469034+00 2025-12-17 11:20:00.469039+00 30211 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KIzK8JVmvMrtS2acaRW2EP0kovw=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.471143+00 2025-12-17 11:20:00.471148+00 30212 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-5ah_bXDO-9_FGdP9Krgu0M3ip8=", "createTime": "2024-08-15 14:50:14"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.473043+00 2025-12-17 11:20:00.473048+00 30213 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jLoMx7bxOxmEmblO-4RQW8LjFtI=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.475157+00 2025-12-17 11:20:00.475162+00 30214 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hupRyfma6FjXkWvLqfqtvOhebog=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.476906+00 2025-12-17 11:20:00.476911+00 30215 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:afVltT3k_gQujGnhlUtLOpeTUAI=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.47879+00 2025-12-17 11:20:00.478794+00 30216 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a9jMj-XwAJiTe0hBcMBxIWdnqBA=", "createTime": "2024-08-15 14:50:14"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.480728+00 2025-12-17 11:20:00.480733+00 30217 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rHbp330kp5LoNMlGOOhWMAKuW7A=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.482477+00 2025-12-17 11:20:00.482484+00 30218 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iV2y17gSigKbPPMSZBAT3FLN5ck=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.484503+00 2025-12-17 11:20:00.484507+00 30219 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cKT-Qea3Glr0TTcx5rZWy64GUnA=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.486321+00 2025-12-17 11:20:00.486325+00 30220 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y_LICW3XSHZOgl7rNvKtd3VgZ3I=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.488178+00 2025-12-17 11:20:00.488183+00 30221 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GoXSdRlD_ZCVbVk1OETJqV46t54=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.489888+00 2025-12-17 11:20:00.489893+00 30222 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bVNmxshKanXzAPUW1VLb2OjRnyE=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.491781+00 2025-12-17 11:20:00.491785+00 30223 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:namUL2G27TPQ27p_Vpx_wEDOepE=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.49343+00 2025-12-17 11:20:00.493434+00 30224 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X189cp5VHELA5FHjUQ3C4Ns6_fA=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.495087+00 2025-12-17 11:20:00.495091+00 30225 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tJdyJ7G2g4lNT8Orsnv8gjjfYaE=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.496942+00 2025-12-17 11:20:00.496946+00 30226 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lhu00uz8nkRcMDiBFramCD3Yei4=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.498834+00 2025-12-17 11:20:00.498838+00 30227 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G3_he_MADKLksIEIr5Kmyqe1jGA=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.500514+00 2025-12-17 11:20:00.500519+00 30228 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QgUCDlgXhtBEn6CQ54t41P-4N3I=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.502222+00 2025-12-17 11:20:00.502226+00 30229 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YrcPJC_QBqAu--WN5QBB_7hwtb0=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.504086+00 2025-12-17 11:20:00.504091+00 30230 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9bppCy1Zfc8AtturzVsLPU0KSqg=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.506201+00 2025-12-17 11:20:00.506207+00 30231 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PdPcJQYokQgf4zHueVO2BJ6oZlk=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.508179+00 2025-12-17 11:20:00.508184+00 30232 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ijvB4mvEryhb7glmJugv9soy6-s=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.51008+00 2025-12-17 11:20:00.510085+00 30233 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8dvUydITkepv9qhhqvI_d35lkYg=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.511975+00 2025-12-17 11:20:00.511979+00 30234 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iUjrY_Kec6E3gvWtQlW1KuLtSKw=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.514011+00 2025-12-17 11:20:00.514016+00 30235 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r4t4aFwdz9V5xE1z6mBpRxQCxFE=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.515662+00 2025-12-17 11:20:00.515667+00 30236 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TrKYKF6MbDMY1JNeivbq--hlSeo=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.517315+00 2025-12-17 11:20:00.517319+00 30237 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cdvtSJjCNmG3rsoZXQCPWBOKyNY=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.519038+00 2025-12-17 11:20:00.519042+00 30238 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yWdQtsicWumzfLvNfGu1oAK4eSY=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.520708+00 2025-12-17 11:20:00.520712+00 30239 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BmXQPNgeE5hbwq1kP7qmpYVw3No=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.522483+00 2025-12-17 11:20:00.522488+00 30240 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H0TGD6OFKMgBr5qvfVs7ocyjZ8Y=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.53122+00 2025-12-17 11:20:00.531224+00 30245 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kX9FtiDX22wpJdcArDcEGrkuhmc=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.524143+00 2025-12-17 11:20:00.524147+00 30241 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gV--XBb-9ZxPmL6id4eALScNUhU=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.526066+00 2025-12-17 11:20:00.52607+00 30242 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:64stuYNwsMux4XIYODWI-1AIy34=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.527834+00 2025-12-17 11:20:00.527839+00 30243 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e8iX5UlacnnGBzw5Yw438LUUj5Y=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.533391+00 2025-12-17 11:20:00.533395+00 30246 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ilJblV6XV4er-U0h3BMIGgEqB6A=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.535653+00 2025-12-17 11:20:00.535658+00 30247 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AYMYWWbHZ_SGdaEgCe0YDAeyHqA=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.537697+00 2025-12-17 11:20:00.537702+00 30248 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C8dmKfeG3RG5Cne0Yq5cluj5lWM=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.53978+00 2025-12-17 11:20:00.539786+00 30249 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2FNE87VAk9jInS5pQfxvYXF7E1k=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.529536+00 2025-12-17 11:20:00.52954+00 30244 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B4CVTEeKM3dxMaAKSGe76Me6cCw=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.544183+00 2025-12-17 11:20:00.544188+00 30250 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t_CuMMTq7Mj6cvGbob9hQr55Dzo=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.546806+00 2025-12-17 11:20:00.546811+00 30251 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LTVQ6LE3G_p6Pg91cGL-FJpIaG8=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.549093+00 2025-12-17 11:20:00.549099+00 30252 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QANQcWk6INQmXHDd7DWDwiPAH1U=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.550842+00 2025-12-17 11:20:00.550847+00 30253 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W7bd6v8n_glcXDhuRZxeF3smdCo=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.552787+00 2025-12-17 11:20:00.552792+00 30254 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:51TL3Y_hVtxQ47wUEn9qpKpXo68=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.554572+00 2025-12-17 11:20:00.554577+00 30255 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fJKe0YDNnrdaMnWAjLuWRtkfDeU=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.556574+00 2025-12-17 11:20:00.556578+00 30256 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FsiZtljDSdT9kc9TBQKYHHvxcaE=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.558502+00 2025-12-17 11:20:00.558507+00 30257 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FZdD5dph4oten_ClXmnoMIVWoPM=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.560439+00 2025-12-17 11:20:00.560444+00 30258 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6vnq9Oa1q_R2tQ7zy_GSd7Hh1Pg=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.562377+00 2025-12-17 11:20:00.562382+00 30259 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tX672JGwyi_qyRD1EnHePN_wBsw=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.564362+00 2025-12-17 11:20:00.564367+00 30260 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zTIE0cxodXp_mEn-7QS4MpopIjM=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.566026+00 2025-12-17 11:20:00.566031+00 30261 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7yyMo5xb-v8_OgQ4xEc7UTsEKqo=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.567836+00 2025-12-17 11:20:00.567841+00 30262 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IMf-rGVsHBtUN50t6Bdu6UFDSbM=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.569544+00 2025-12-17 11:20:00.569549+00 30263 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PM4QtLXYyjHAiJmM37sSyQ3-En0=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.57147+00 2025-12-17 11:20:00.571475+00 30264 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nYoc_KqI_UDXm-rmy3PiRBrD3lA=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.573569+00 2025-12-17 11:20:00.573574+00 30265 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XBm0vFm2vNiyDujmUCTfy2KLJm8=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.575582+00 2025-12-17 11:20:00.575586+00 30266 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OnbtueYTjbgb3yXnSkONA3qeRmI=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.577511+00 2025-12-17 11:20:00.577516+00 30267 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lysdi1wIihgug8zZ6KHL7fHunSU=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.579836+00 2025-12-17 11:20:00.57984+00 30268 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4m7NHxIDxI0NVnlNOpbl4OYxPgQ=", "createTime": "2024-08-15 14:50:20"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.581489+00 2025-12-17 11:20:00.581493+00 30269 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rf3s7d9VbPbZ_KbqeZSQ2Q84s7w=", "createTime": "2024-08-15 14:50:20"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.583148+00 2025-12-17 11:20:00.583153+00 30270 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=1766056799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KNdC3nN6Hqj29tReyVBIdhS6gH0=", "createTime": "2024-08-15 14:50:20"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:00.99836+00 2025-12-17 11:20:00.998373+00 30271 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ojoXDvSVwjVE-M8N-HL_hpShW6A=", "createTime": "2024-08-15 14:50:20"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.000841+00 2025-12-17 11:20:01.000846+00 30272 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fmArIzhfUfD459d3vRocvJL4d90=", "createTime": "2024-08-15 14:50:20"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.003073+00 2025-12-17 11:20:01.003078+00 30273 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1JAIhZbOGjcNK2803Ij_TOndaGo=", "createTime": "2024-08-15 14:50:20"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.005244+00 2025-12-17 11:20:01.005249+00 30274 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mNgKqycSQ53h1r1ZDNkXkY8d438=", "createTime": "2024-08-15 14:50:21"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.007196+00 2025-12-17 11:20:01.007201+00 30275 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7EyGDq03KnDCaiMyJGHQvF_7ihk=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.008905+00 2025-12-17 11:20:01.008909+00 30276 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:du7HJHo6N2WjwoJaWH32IgYkGko=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.010808+00 2025-12-17 11:20:01.010813+00 30277 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DhJxrjCujzYFYULnX7Ho6JKsWuU=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.012678+00 2025-12-17 11:20:01.012683+00 30278 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5XKwzFdh3fL8euBOU1YvhmmoOYc=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.014362+00 2025-12-17 11:20:01.014367+00 30279 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ciGDih3_x5uuzjNAM08rTMJIHYw=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.016044+00 2025-12-17 11:20:01.016048+00 30280 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:azQ7VnV0NuaC4fjEMkP6RchoYgc=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.01777+00 2025-12-17 11:20:01.017775+00 30281 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vwjf3GEDT3ZDLLSdfvSaeRJAj8Q=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.019737+00 2025-12-17 11:20:01.019741+00 30282 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0F8DVVsZNlvlylWV4w8Y8ADPzec=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.02146+00 2025-12-17 11:20:01.021464+00 30283 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:05z3WCBdpq_YJ6FCS-idRsSuJxA=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.023305+00 2025-12-17 11:20:01.02331+00 30284 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rc23IwDRDq-YS2VcUNnbqowouPU=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.025038+00 2025-12-17 11:20:01.025043+00 30285 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1h8d3oXzcP5JXGeFlxrKK-jv3hA=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.02732+00 2025-12-17 11:20:01.027326+00 30286 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wr0ZF_3MfwBzddbYlxnUBL6MIEQ=", "createTime": "2024-08-15 14:50:23"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.029599+00 2025-12-17 11:20:01.029605+00 30287 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7PYNHr6QHxES31s2z88Ms2eZ4CI=", "createTime": "2024-08-15 14:50:23"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.03149+00 2025-12-17 11:20:01.031495+00 30288 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Hpz0ew553gHRBJPZIGmxgR51CI=", "createTime": "2024-08-15 14:50:23"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.033352+00 2025-12-17 11:20:01.033357+00 30289 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RK9EKxIh2QmFEHiI2eNV7fzA41k=", "createTime": "2024-08-15 14:50:23"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.03549+00 2025-12-17 11:20:01.035495+00 30290 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uXgVc4qN_eiTikJZcQqhA9UrOjM=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.037411+00 2025-12-17 11:20:01.037416+00 30291 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5wvKhrSTfjWPoW_F8TosWyHzKMk=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.039651+00 2025-12-17 11:20:01.039656+00 30292 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pUqW8mQE63cY-gKdOwJv-SyRG-k=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.042034+00 2025-12-17 11:20:01.042039+00 30293 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZGC728H7qzdKwhxsfWlx44T68jY=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.044342+00 2025-12-17 11:20:01.044347+00 30294 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vCd3lZczdYNlA4ByT5CaDevfD0M=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.046698+00 2025-12-17 11:20:01.046702+00 30295 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pv2cDeRkdLyx8FkB2sARPCi6L6w=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.048806+00 2025-12-17 11:20:01.048811+00 30296 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3aGkXwkFBbTsE3Y7K9YtVm-Wm1U=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.050903+00 2025-12-17 11:20:01.050908+00 30297 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mpufJgKpI8NlJXWXJF-q_DImQkw=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.05306+00 2025-12-17 11:20:01.053065+00 30298 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JD2-nUa18RYKLvwUYSyP15soyYw=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.055412+00 2025-12-17 11:20:01.055417+00 30299 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1yGhxgK1z30mxOMAbg3X0SIL1zI=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.057898+00 2025-12-17 11:20:01.057903+00 30300 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:agewNj2OznJtxojmaWt7O8QoKhU=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.060004+00 2025-12-17 11:20:01.060008+00 30301 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ynQzc6VcDd8YmFqTRrj5YiDI3o=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.062105+00 2025-12-17 11:20:01.062112+00 30302 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8nPcllS6fvE0w8USBMhShPh2QtU=", "createTime": "2024-08-15 14:50:23"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.064439+00 2025-12-17 11:20:01.064443+00 30303 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:08EpCW1CLq26A5zg3-aSBBUQov0=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.066721+00 2025-12-17 11:20:01.066728+00 30304 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:37OWVSB_PUboo7fSVbCsGgPOMGc=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.0692+00 2025-12-17 11:20:01.069204+00 30305 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pmLPS3hx8ijLW8q9eA0QV_AE-v0=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.071424+00 2025-12-17 11:20:01.071431+00 30306 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NIqUBmraV3Czp3juG7uiTOyOyzY=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.073497+00 2025-12-17 11:20:01.073502+00 30307 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ueorguo3xb2qAQovXUfY1e7XLlM=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.075363+00 2025-12-17 11:20:01.075368+00 30308 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PxNMXZLs3t-ejeKUvH-2W3uDg2E=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.07721+00 2025-12-17 11:20:01.077214+00 30309 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QgTZK0S3960cvhxkqZilx4PArcU=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.079133+00 2025-12-17 11:20:01.079138+00 30310 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h3p9AilZ2Ui0TcEC9DAoumuuKgg=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.080768+00 2025-12-17 11:20:01.080772+00 30311 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LQg1mVdbKL2_m2y8Vn7Nx4nltRw=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.082445+00 2025-12-17 11:20:01.082449+00 30312 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r1z0H5gsRKmE0YPza3UnYqRu3FI=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.084273+00 2025-12-17 11:20:01.084278+00 30313 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z9AVse9rOtyXtZHnSDDwER_3jHs=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.086185+00 2025-12-17 11:20:01.08619+00 30314 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Luwd7oYmwwXSf9AuDyYjr0cle5Y=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.087825+00 2025-12-17 11:20:01.087829+00 30315 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WpCckHoSVhYVWSRDjGnMg47nY_E=", "createTime": "2024-08-15 14:50:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.08962+00 2025-12-17 11:20:01.089625+00 30316 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:niZk6mPg2iplsZufMNgdBFopb_w=", "createTime": "2024-08-15 14:50:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.091273+00 2025-12-17 11:20:01.091277+00 30317 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1caGuEPwejS_0Yhi8x3V0N3a7f8=", "createTime": "2024-08-15 14:50:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.092919+00 2025-12-17 11:20:01.092923+00 30318 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A71HJuhR3zLe66WMxsDaOXsnxxc=", "createTime": "2024-08-15 14:50:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.094549+00 2025-12-17 11:20:01.094553+00 30319 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6GH9poZ3BLhsDq-aU3KhEPrwAEA=", "createTime": "2024-08-15 14:50:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.096456+00 2025-12-17 11:20:01.096462+00 30320 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ayji2JsN6MFNq7CYkQvyexxOS4c=", "createTime": "2024-08-15 14:50:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.098369+00 2025-12-17 11:20:01.098374+00 30321 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Abyuhhtl-kw99zEILsdecySsyGQ=", "createTime": "2024-08-15 14:50:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.100334+00 2025-12-17 11:20:01.100339+00 30322 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l7sOmRtGjo9vj67Fz_M8z0-Z8E4=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.102331+00 2025-12-17 11:20:01.102335+00 30323 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1DgJCJE9fvORgtsT7BB86_S9Lyg=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.104041+00 2025-12-17 11:20:01.104045+00 30324 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pvDOxOcIsHaNAWuON1gDt35gXbc=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.105906+00 2025-12-17 11:20:01.105912+00 30325 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jKGUX3X__q8LTnHaRMFddmg4MS4=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.10782+00 2025-12-17 11:20:01.107825+00 30326 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8rl4lQo3MJL67Fy1gzEca0jgvbI=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.109668+00 2025-12-17 11:20:01.109674+00 30327 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UwaSkHhrCkpJU-txyBx_VtYr0H8=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.111732+00 2025-12-17 11:20:01.111737+00 30328 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qT9yG97Nl8lF1YMlvD5ekQQ_bI0=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.113793+00 2025-12-17 11:20:01.113799+00 30329 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v-AaIGEM6bWDaYqCwieWvW5zQq0=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.115883+00 2025-12-17 11:20:01.115888+00 30330 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xSjncZSXE5xVxtpwbvPVaBJmoMY=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.117737+00 2025-12-17 11:20:01.117742+00 30331 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PqP2kxz5zKhymWH5qGvuwBaCeQI=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.120145+00 2025-12-17 11:20:01.12015+00 30332 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R4RE-ArfugoSUSG8mfTYlHXywCk=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.123016+00 2025-12-17 11:20:01.123022+00 30333 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BRAObxlxjXlbqqVnRl1f2_YrRmQ=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.125351+00 2025-12-17 11:20:01.125356+00 30334 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mvqzk90p4UahwUHqOOFxjyePUuc=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.127193+00 2025-12-17 11:20:01.127198+00 30335 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tBv70NXR0V9swD9qEkI2tRAedu8=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.128876+00 2025-12-17 11:20:01.128881+00 30336 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j6THe4yuyy_zFr53BXHKDu1Tgi0=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.130549+00 2025-12-17 11:20:01.130554+00 30337 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PlxiH8xbUA4bGdhySIcFNum7_ss=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.132224+00 2025-12-17 11:20:01.132228+00 30338 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:82cHkAV4QzXzsLHpoNCM4AS74AE=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.133928+00 2025-12-17 11:20:01.133933+00 30339 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1b7PAVOdoFS6mFu9eIyZVWj65zM=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.135684+00 2025-12-17 11:20:01.135688+00 30340 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6yz88K2WbG2kziZMk2v0AC1X6HY=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.137671+00 2025-12-17 11:20:01.137676+00 30341 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gy-lvpoB81UMfhKFmC86hhYBw8c=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.139894+00 2025-12-17 11:20:01.139899+00 30342 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W_rIU24Cz2vTRDKhjtRByskKVr8=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.14185+00 2025-12-17 11:20:01.141855+00 30343 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_rhQaCr31SwKJAO72cAHb-fgbtE=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.14411+00 2025-12-17 11:20:01.144114+00 30344 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e2pt83fvFe9fWUmWD_JMwrp_Lvk=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.146076+00 2025-12-17 11:20:01.14608+00 30345 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P7gYgEcLysjjkSK8IPXw-m6_ABs=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.147737+00 2025-12-17 11:20:01.147741+00 30346 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IRVefsYtfS9CbXXt5AG8orhFDSI=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.149654+00 2025-12-17 11:20:01.149658+00 30347 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BB9MMW1VKuu4E0as4Iq5oA4xoIU=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.151428+00 2025-12-17 11:20:01.151433+00 30348 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MEiLdcT6wIEnRIbFIYuxOZ0mESg=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.153478+00 2025-12-17 11:20:01.153484+00 30349 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:noKmDVxc9kK6P0sLeFOe0zZf4E4=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.155656+00 2025-12-17 11:20:01.155664+00 30350 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yAC5Om3WF4Sws4E1kwntB8nXyHs=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.157661+00 2025-12-17 11:20:01.157667+00 30351 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eHfJDjRzpe5PIic_2_T7C00QEjw=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.159525+00 2025-12-17 11:20:01.15953+00 30352 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HSMaLji_aqrhpE-CbFl2k1N9WY8=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.161271+00 2025-12-17 11:20:01.161276+00 30353 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AQrC07VDrXXH7px7PIGew_G4VZ0=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.163018+00 2025-12-17 11:20:01.163023+00 30354 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OQ6lSt6RANPexcraO8HhEGBxIrw=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.164927+00 2025-12-17 11:20:01.164932+00 30355 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5vO5FcqVgFpLgBEjeYg3ievWqvI=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.166811+00 2025-12-17 11:20:01.166816+00 30356 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nse8pOg48hKB-fYlaw-oJ9uxG-s=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.168828+00 2025-12-17 11:20:01.168833+00 30357 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GJKGLqPtim1HLiqSKoTwjmFoJRc=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.171036+00 2025-12-17 11:20:01.171041+00 30358 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ehZXiYCDZUvuvTYix-XxDinXcMU=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.173255+00 2025-12-17 11:20:01.17326+00 30359 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IDZeNUgonfMIV2Q6oRVQ6Jk6g4M=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.175214+00 2025-12-17 11:20:01.175219+00 30360 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LLQqLTktHLOmU35khWiyhfe0_5o=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.176945+00 2025-12-17 11:20:01.176949+00 30361 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XsLLZRj62q5p2IZ7dav_67TDC70=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.178884+00 2025-12-17 11:20:01.178889+00 30362 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LVmH3iT1iVn8GqFJwaOyCFe6__s=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.180549+00 2025-12-17 11:20:01.180554+00 30363 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UtIlHhRbcIhVBsU18i1KtLqvN50=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.182191+00 2025-12-17 11:20:01.182196+00 30364 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZFwWpltKNhyvTvmI1b3qOQ-Yfto=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.183849+00 2025-12-17 11:20:01.183853+00 30365 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EW5UbWvfHpgNaPuIQ0ZcP8BbKwM=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.185654+00 2025-12-17 11:20:01.185659+00 30366 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vWmO_iPMrL0fLVJGhLnx55n0qvs=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.187842+00 2025-12-17 11:20:01.187847+00 30367 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gcVuPLSwBnS7-YqyBfDdoZucw5c=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.189649+00 2025-12-17 11:20:01.189654+00 30368 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5_5yAsYTxDWr1jZovnbLemYr1mw=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.191423+00 2025-12-17 11:20:01.191428+00 30369 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7yF-0VeshqLICfbvTjc__OoT3Vw=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:20:01.193161+00 2025-12-17 11:20:01.193165+00 30370 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=1766056800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SVHuJsc9EURFQ2fmlTpNlkArh0Q=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.405903+00 2025-12-17 11:30:00.405911+00 30371 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GgK7W-m_RPE7fEyBdaOuCkDfVdw=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.408859+00 2025-12-17 11:30:00.408865+00 30372 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3w9fkRpR7F_jXYGIyrCIuEoQym0=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.410928+00 2025-12-17 11:30:00.410933+00 30373 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ts-uSFuji8Gx56764dPUaxI0vS0=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.4129+00 2025-12-17 11:30:00.412905+00 30374 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N0-mbuULC0fT4ZXesC8ev8Ho7xk=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.41461+00 2025-12-17 11:30:00.414615+00 30375 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7uFOhcg8GP1lS_ENBUpHF4_nzO0=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.416321+00 2025-12-17 11:30:00.416325+00 30376 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mH0viMPhHaWJ_KeKVut9jPp40UU=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.418462+00 2025-12-17 11:30:00.418467+00 30377 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XLRppuED7nvy3u4a54B--1b8OXI=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.420457+00 2025-12-17 11:30:00.420461+00 30378 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XC5p_x_iw9-in8cLFvrG0eQcS3U=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.422395+00 2025-12-17 11:30:00.422399+00 30379 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H7zRyOCN8PPIDyPuWK5N5JcuRps=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.424356+00 2025-12-17 11:30:00.42436+00 30380 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yHwioFK67oYbSIG4jvGT_6IcFNw=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.426591+00 2025-12-17 11:30:00.426596+00 30381 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_bUobSwDKuS6TEkPX1LhPyedUE4=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.428678+00 2025-12-17 11:30:00.428682+00 30382 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bP60DcxMrmDXWSIKjrEC1Syu5gc=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.430567+00 2025-12-17 11:30:00.430572+00 30383 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uxiqlctA7EzsmII2fz3SBigI0tc=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.432473+00 2025-12-17 11:30:00.432477+00 30384 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BsrXtH8D0AIFi6Is05oqoQCBJu4=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.434505+00 2025-12-17 11:30:00.434511+00 30385 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8c1DwksxxwLoh9BGik7E4q4T9r0=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.436726+00 2025-12-17 11:30:00.436731+00 30386 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:__g7YhFecR-D1zw_fSg-MoJ012M=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.438705+00 2025-12-17 11:30:00.43871+00 30387 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KaUJ6G6t1POulMvbj6KLsgYg0as=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.440735+00 2025-12-17 11:30:00.440739+00 30388 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DKfpqxVyo3SZOsYmpJclDtB-UGg=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.442711+00 2025-12-17 11:30:00.442717+00 30389 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RNxZukPB26QS8cLc5L5kaoqkWN4=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.444657+00 2025-12-17 11:30:00.444661+00 30390 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ubjqy7WUOqbD0zLpqgn2RTT0qWI=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.446752+00 2025-12-17 11:30:00.446757+00 30391 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Co-BJR_wPWg_r1SN8488CK4nJgY=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.448695+00 2025-12-17 11:30:00.4487+00 30392 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5-fgCoROx_I6OYuYesnmOtuBY84=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.450595+00 2025-12-17 11:30:00.450599+00 30393 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q4IuedYIKQzQ3KLfUKMniTeKCPw=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.452532+00 2025-12-17 11:30:00.452537+00 30394 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bmx5a-NcXwsRq7iZQURfT-vZ6NI=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.454336+00 2025-12-17 11:30:00.454341+00 30395 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lI3fOskL4cNbb7YUbY85gk_zPsw=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.456339+00 2025-12-17 11:30:00.456344+00 30396 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qWCiUkdWKLStlTVj1YuXbPaNIfE=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.458121+00 2025-12-17 11:30:00.458125+00 30397 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:etQzIMqXo__4yGqBLIFdCBgquTs=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.45982+00 2025-12-17 11:30:00.459826+00 30398 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tjYSTdlIOxFTHaKrEhdhBRJBTYQ=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.461487+00 2025-12-17 11:30:00.461491+00 30399 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CF8-8HjnBZ61V6X_iaSX8oOdTSM=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.463206+00 2025-12-17 11:30:00.46321+00 30400 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NK3QDpdmpe26dyozItJMCPt0zgg=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.464949+00 2025-12-17 11:30:00.464954+00 30401 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:igLKu_0BTz3_I34qx2JeXrvC4d8=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.466607+00 2025-12-17 11:30:00.466611+00 30402 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qI5LsHz1pFeNHFb25pmfpiTr-Ds=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.468391+00 2025-12-17 11:30:00.468397+00 30403 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3M9s66rhvFjW-zXPdT2MB-kweoI=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.470199+00 2025-12-17 11:30:00.470203+00 30404 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J7yWgSiE870GSXVMgDeSukcIZqw=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.471939+00 2025-12-17 11:30:00.471944+00 30405 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yztD1ufKPs9S1Id1BLJ2sfs39b0=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.474032+00 2025-12-17 11:30:00.474037+00 30406 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-fX3u6X7_ywhQ41_zOuKfMcufYo=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.484051+00 2025-12-17 11:30:00.484056+00 30411 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:26Yv3QARcTH70cecs_3khDvy-Bg=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.476023+00 2025-12-17 11:30:00.476027+00 30407 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8cyz7fNyRF-yMOHYsYV55f0aRAk=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.477934+00 2025-12-17 11:30:00.477938+00 30408 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SneJMZ17u97qhMdUFZCoPqerafM=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.479843+00 2025-12-17 11:30:00.479848+00 30409 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VkgQJYIP-3ugi5Y2A1TrlNRfjJY=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.481825+00 2025-12-17 11:30:00.48183+00 30410 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lMA4N4LDvQfmJ2HQCb3lb2bEHgM=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.486273+00 2025-12-17 11:30:00.486278+00 30412 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-To_oWE5Svq-gfFv8NGj4JOGh_A=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.488277+00 2025-12-17 11:30:00.488282+00 30413 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8LEZJAu2tCmf9G59kuW-weVdecQ=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.490095+00 2025-12-17 11:30:00.490099+00 30414 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tjpEIYiXaTnTep5gVQAVYiFDr5U=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.492059+00 2025-12-17 11:30:00.492063+00 30415 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UmG4vPoxN6ZsO5pBecYp9OXgWjk=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.494003+00 2025-12-17 11:30:00.494007+00 30416 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2sxWmbOed1NlA2hzM_WqHfGtgLk=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.495867+00 2025-12-17 11:30:00.495871+00 30417 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s8TL-oeOBPIN1oLZ6ICq42zHdlk=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.497805+00 2025-12-17 11:30:00.497809+00 30418 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LWayQb2xkvS5MTfqiMHAcUcOPGE=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.499738+00 2025-12-17 11:30:00.499742+00 30419 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VFdhkS6JU7ofygrUHI37854wBkU=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.501982+00 2025-12-17 11:30:00.501986+00 30420 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zPKj9IsV1RO5W5zS1ZrwK6-AaI8=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.512249+00 2025-12-17 11:30:00.512253+00 30425 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lIcvdOqOpEp1ydtGph5rthPGn-w=", "createTime": "2024-08-15 14:50:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.504229+00 2025-12-17 11:30:00.504234+00 30421 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O4d9NVBxEZS0mqm1CjgMr2dPlY4=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.506415+00 2025-12-17 11:30:00.506419+00 30422 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WIWqXArzWJzmZJWf-lzBd_7PQ_U=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.508391+00 2025-12-17 11:30:00.508395+00 30423 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JrT4cVUBUjULhohHjXqN2yktM9Q=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.510326+00 2025-12-17 11:30:00.51033+00 30424 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:065rzOVC0cxc-9HICRv6P-PdqLM=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.514271+00 2025-12-17 11:30:00.514276+00 30426 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WzhTsdx5pFO9EdJUxF9UT6cUOVc=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.516235+00 2025-12-17 11:30:00.51624+00 30427 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SEZ1P6V8vNt-3slOJoX9vU5wuZA=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.518301+00 2025-12-17 11:30:00.518306+00 30428 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TKB3g99BLVM1W4VtGmD9ZwzvzxE=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.520324+00 2025-12-17 11:30:00.520329+00 30429 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mTrGw36a30URMWw5X_59BFSFW-A=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.522245+00 2025-12-17 11:30:00.522249+00 30430 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l4njSg0G0iezJz8SandtFsy7w7Y=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.524336+00 2025-12-17 11:30:00.524341+00 30431 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ppWogRBD8vQuawYIjqhoIZ4RDEs=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.526519+00 2025-12-17 11:30:00.526525+00 30432 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jc8Tfk-c-ktJSFHjmxAAHdkaYRw=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.528538+00 2025-12-17 11:30:00.528542+00 30433 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jiyS4iSlWX81V4Pp9DffL14Df0w=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.530289+00 2025-12-17 11:30:00.530295+00 30434 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r6DCB_tFZxg8iKLeBk7VU3JoWMg=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.532383+00 2025-12-17 11:30:00.532387+00 30435 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8dgGhEuSKcflmFBfk3OCjtFzn40=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.53444+00 2025-12-17 11:30:00.534445+00 30436 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UrkLfs86-PI_t-72dH_Noz4lVyA=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.536403+00 2025-12-17 11:30:00.536408+00 30437 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uNB0qLNA5InhMw3C2tT28SnI8Uo=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.538295+00 2025-12-17 11:30:00.538299+00 30438 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YtMGLWTO8LG8sz1RFAb47Ht8oSs=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.540248+00 2025-12-17 11:30:00.540253+00 30439 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ACGxsYUiCQKeQLXUQ24CuRk_K4c=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.542178+00 2025-12-17 11:30:00.542183+00 30440 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y8AMidZk7AN0Vebe0Omp9j-h2ts=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.543993+00 2025-12-17 11:30:00.544001+00 30441 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RuxegBYjwykjwq8SlLAv7udOAz4=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.547155+00 2025-12-17 11:30:00.547163+00 30442 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bMJkZFnN4rhElAfToixGs0RG05Y=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.550063+00 2025-12-17 11:30:00.550071+00 30443 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QXMsQ6wN1b4QsLU6YLHlJj7RMrw=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.552623+00 2025-12-17 11:30:00.552629+00 30444 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xl-2YMBBuMN-1_Tzsgje_lbLXfw=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.554845+00 2025-12-17 11:30:00.554849+00 30445 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ngg-kYdBfZG2Oo-vnnR-3piDKI=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.556851+00 2025-12-17 11:30:00.556855+00 30446 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZGNXsWumJt40FoX2vKa3eTWj78o=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.558598+00 2025-12-17 11:30:00.558603+00 30447 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TfF_TNjuAffFc0K89RCv1biba7Q=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.560524+00 2025-12-17 11:30:00.560528+00 30448 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hei1QZSX26U7JGeA7ol1X9G4vyI=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.562464+00 2025-12-17 11:30:00.56247+00 30449 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DUHDo21yHR9LUWO1FcpEHRI3amo=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.564313+00 2025-12-17 11:30:00.564317+00 30450 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SRVu3cOhcTGV_6Xmy4iEZZKfU5o=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.566152+00 2025-12-17 11:30:00.566157+00 30451 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hQ56MOBoUxx9DlyavvD8iKPg_GY=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.568003+00 2025-12-17 11:30:00.56801+00 30452 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y1wE4ttLzHqEJr8RzD1HfwVg7SI=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.5699+00 2025-12-17 11:30:00.569904+00 30453 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eR-y-72dWA4XzQh4gwBN6RwjMSo=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.571629+00 2025-12-17 11:30:00.571633+00 30454 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kugbT6Oi_oUHeEe7-MQ-Pfz7mL8=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.573683+00 2025-12-17 11:30:00.573688+00 30455 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lW5qUioA3FQfS2Q9EWEE-Th3aD8=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.575763+00 2025-12-17 11:30:00.575768+00 30456 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HwEupuqu7cBwpiGQYsLNu7Mbcq4=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.57776+00 2025-12-17 11:30:00.577765+00 30457 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SObCMV0352vTRPxOuAtSGuWSguw=", "createTime": "2024-08-15 14:50:42"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.5797+00 2025-12-17 11:30:00.579705+00 30458 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XA_71VNV9aUKXBD8Z6mY6gATiZs=", "createTime": "2024-08-15 14:50:42"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.581596+00 2025-12-17 11:30:00.581601+00 30459 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GYfhGVY6SJYPgOjDwcadQA7J0js=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.583491+00 2025-12-17 11:30:00.583496+00 30460 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nbcr7B1PZM6lpaW5A7nwIpS_Qys=", "createTime": "2024-08-15 14:50:42"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.585342+00 2025-12-17 11:30:00.585347+00 30461 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GkEjTWb8Fcq0tIpBrZB1sq5SaIo=", "createTime": "2024-08-15 14:50:42"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.587108+00 2025-12-17 11:30:00.587113+00 30462 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vylNi6woYwbU1romLqYPRWSjMhE=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.588863+00 2025-12-17 11:30:00.58887+00 30463 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pQyE01gBJPOTbOiQQtHeKy-cL_Y=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.590982+00 2025-12-17 11:30:00.590987+00 30464 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:It4P3KcjAqPPRk1YC6ZWlFD0TwY=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.592718+00 2025-12-17 11:30:00.592722+00 30465 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wWDSQtM8QIRxr0sb--SChZ8pXBs=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.594596+00 2025-12-17 11:30:00.594601+00 30466 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b75LYE0oSgTKpy90aoKT2rda3Mo=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.596311+00 2025-12-17 11:30:00.596316+00 30467 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jceyaAdM-v3FU8eP7ky-ru5lnKw=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.598017+00 2025-12-17 11:30:00.598021+00 30468 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:keemGFR0ZMSTFy59AdVf4RdC4MM=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.599724+00 2025-12-17 11:30:00.599728+00 30469 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fpc6Wkyxgb4rYlCHe7x2Fa1pkfM=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.6018+00 2025-12-17 11:30:00.601806+00 30470 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=1766057399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jeT23xnvaz88xjM6A-Ho-5TeugM=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.992619+00 2025-12-17 11:30:00.99263+00 30471 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n45PD8BMk-UTx10Rwf5ME1xElvQ=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.995736+00 2025-12-17 11:30:00.995744+00 30472 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t3uTv1xRn1CrYB58lu1z--_Cc-8=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:00.998659+00 2025-12-17 11:30:00.998667+00 30473 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SF4selNF-mmOFczWTHaXZjpaGug=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.00146+00 2025-12-17 11:30:01.001468+00 30474 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iB2on4yL2fjtQU9nxqRrIMq2ytE=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.004248+00 2025-12-17 11:30:01.004255+00 30475 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NRmv0ImYeoTUUVp7NJkGLQW6qdc=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.007064+00 2025-12-17 11:30:01.007071+00 30476 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CZRvlxnB6B-gC3-Wzsy2Du6bSSo=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.009832+00 2025-12-17 11:30:01.009838+00 30477 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_a0-NztYVUycHO9lVo8Ao3E1zFI=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.0126+00 2025-12-17 11:30:01.012607+00 30478 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ympt2WIXxQ4IgTmQXpEl3JTTzuU=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.014877+00 2025-12-17 11:30:01.014883+00 30479 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QpTr4SoUlV38H-JrApLzCHzgv2I=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.016894+00 2025-12-17 11:30:01.016899+00 30480 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sNpj9womhQGqvWBlztYf_XdWLgs=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.018969+00 2025-12-17 11:30:01.018974+00 30481 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3qEJvqT1aMjEGPOCbjTu_jSrcoA=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.021793+00 2025-12-17 11:30:01.021801+00 30482 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hGJSZ6PXe9HaU_a8hYF25lHwV1U=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.024985+00 2025-12-17 11:30:01.024993+00 30483 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Yq8NDdFlvf1Nbpv9C9FoZGBOB8=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.02753+00 2025-12-17 11:30:01.027536+00 30484 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xJjVkMAGWwkE8YUJY72UGFoxPNk=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.029469+00 2025-12-17 11:30:01.029474+00 30485 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P2brup8AZLO8GgxV96teeyxObp0=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.031661+00 2025-12-17 11:30:01.031667+00 30486 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eA2l4K-NPgn1gr2L1DtIQzMjePs=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.034077+00 2025-12-17 11:30:01.034082+00 30487 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AnP_FI7bwtX3_n7SQkGXOSLG0FM=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.036139+00 2025-12-17 11:30:01.036144+00 30488 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oxx_s6ZFSGg4yTFgC-dhnHABCE8=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.0381+00 2025-12-17 11:30:01.038104+00 30489 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GQGrAwbP1JHbvNThx4UUbDF8cKk=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.040064+00 2025-12-17 11:30:01.040069+00 30490 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5BC958EkKfZVAl7g-_yTV_2vY6k=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.042004+00 2025-12-17 11:30:01.042009+00 30491 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oSh4-xLx6kXhKQpIroiCKshYcWs=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.043943+00 2025-12-17 11:30:01.043948+00 30492 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R5ONHmIgmbNELae5omkB29zTLUM=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.045953+00 2025-12-17 11:30:01.045958+00 30493 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:clI8zfaiDkkpc_9ymoOnQxim0Tk=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.047636+00 2025-12-17 11:30:01.047641+00 30494 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SqU-Th7KQExIB9Vm6kKVtiNJAUQ=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.04931+00 2025-12-17 11:30:01.049315+00 30495 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qa-wCnDJmzQJOUDhDLBKhPpWR3k=", "createTime": "2024-08-15 14:50:48"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.050989+00 2025-12-17 11:30:01.050993+00 30496 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1VwrJ5UawndbrtsGYNYG5KmddZI=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.053082+00 2025-12-17 11:30:01.053087+00 30497 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c4sVMi0rUT_mhneMqQpX3OwmW0k=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.055547+00 2025-12-17 11:30:01.055552+00 30498 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:by9YLjvrem3OSioqYMIhO6haAj4=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.057925+00 2025-12-17 11:30:01.057931+00 30499 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PgHkMD6HupeYTFouAxmMRoWuMa0=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.060121+00 2025-12-17 11:30:01.060125+00 30500 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EZNAHltY4XaooTOmuYDpkhrWs30=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.06234+00 2025-12-17 11:30:01.062346+00 30501 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-7mz1w8gRYINu2KpYYzghOdPcKE=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.064486+00 2025-12-17 11:30:01.064491+00 30502 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MJp52xe-ySA7aufml7R9KeijK14=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.066461+00 2025-12-17 11:30:01.066466+00 30503 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mV3dUJ61R-T6huDq3Ft5jXtg_KI=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.06845+00 2025-12-17 11:30:01.068456+00 30504 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k6A4n_TuMTpzfrr4b9xHsI-MO8U=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.070843+00 2025-12-17 11:30:01.070849+00 30505 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VDKCAeNwDrDQiSZiYlnKNC8oWCk=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.072956+00 2025-12-17 11:30:01.072961+00 30506 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:icRsEdP1_-j_iDiu14YT96OuX8o=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.074908+00 2025-12-17 11:30:01.074912+00 30507 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uHjulqArqqUoQ7fWtieVHh3M2aQ=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.076636+00 2025-12-17 11:30:01.076641+00 30508 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mKu2bcLHupHjmoXdrzVxmf9N6LA=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.078347+00 2025-12-17 11:30:01.078352+00 30509 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TNGmvJacdx11Kkb_3QTMnJExwKY=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.080277+00 2025-12-17 11:30:01.080286+00 30510 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WvFOK4AV48Nr1rmOI3LNuTgNjh8=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.082202+00 2025-12-17 11:30:01.082207+00 30511 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GbIxxnUqaVImJxVJTNYQO2LeEwE=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.083971+00 2025-12-17 11:30:01.083977+00 30512 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UWrIQ4PR0J8AF3Vn2ZHVSC-9h9g=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.08586+00 2025-12-17 11:30:01.085865+00 30513 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zkQpi6n2BMxgZMB1AgEezdEs0UE=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.087675+00 2025-12-17 11:30:01.087679+00 30514 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kfyu6wKmD5JgmZdj3oSiWIAAHDs=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.089624+00 2025-12-17 11:30:01.089629+00 30515 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wjfdS2ITjnn0zxZPrVGYv86FgO4=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.091513+00 2025-12-17 11:30:01.091517+00 30516 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pTZxY9rv5e2RUVttA4mAhbJL_iQ=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.093447+00 2025-12-17 11:30:01.093452+00 30517 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H5YSqkW7MkBZGW-VyQnijngacMM=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.096249+00 2025-12-17 11:30:01.096256+00 30518 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KgOuTyHL6eATbXCI8auRW84doZw=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.098592+00 2025-12-17 11:30:01.098597+00 30519 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dh0MVVWA7qHb8J5oxU10Qt8Oh3I=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.100637+00 2025-12-17 11:30:01.100642+00 30520 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pUennUwQfLYmIZfO3CVrSFtowIY=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.102646+00 2025-12-17 11:30:01.102651+00 30521 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bxvT3jD9HR8eZ-3AFqAkjce1zAs=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.104641+00 2025-12-17 11:30:01.104646+00 30522 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JC_aP5krMrntSAr-0hl-n-qf7dE=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.106599+00 2025-12-17 11:30:01.106604+00 30523 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0vs4mLIGstMjSkJniV7Ek6HMdAc=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.108541+00 2025-12-17 11:30:01.108546+00 30524 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Es-pNsMJ0wILvGaXbE8YLsGdeoc=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.110453+00 2025-12-17 11:30:01.110458+00 30525 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ztE9kxBhUPEIWqvm9xFlU5KujI0=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.112155+00 2025-12-17 11:30:01.11216+00 30526 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E--_K0xRGOOzrWPzYfuMKm5W7O4=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.113839+00 2025-12-17 11:30:01.113843+00 30527 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GIS74_979uYNeC8sfSg5-jBP3X4=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.115515+00 2025-12-17 11:30:01.11552+00 30528 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E2_V2_SdrocYevUUBR5tLLaU934=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.117479+00 2025-12-17 11:30:01.117483+00 30529 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4AEyIYdRlvZlQvHApbjYw9Y_CqQ=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.119266+00 2025-12-17 11:30:01.119271+00 30530 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6ZjBkGisZFxWfHp15568P9cmodU=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.121087+00 2025-12-17 11:30:01.121092+00 30531 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qdcjqwLYYD39jpANgIzQTrjGNdI=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.122805+00 2025-12-17 11:30:01.12281+00 30532 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pWCSL2jq1ZixFPc0DaC_W_JLCJI=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.124735+00 2025-12-17 11:30:01.124739+00 30533 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BHNv-k_j-Iqa-nOCc8rPu-MZMbw=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.126659+00 2025-12-17 11:30:01.126664+00 30534 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OaT6LXZxtZPnpi_rw-KDiwZRtNI=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.128575+00 2025-12-17 11:30:01.12858+00 30535 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TsaEGgb_wxhqEVZbP9y2wbDacHE=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.130225+00 2025-12-17 11:30:01.130229+00 30536 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n1UM6ye7B78MyaYtzaEFCwYIEeQ=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.13199+00 2025-12-17 11:30:01.131995+00 30537 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K8z3QwZEI8kXjf779dmpxVZ8JFU=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.133911+00 2025-12-17 11:30:01.133916+00 30538 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Ma4aXmgdntACgttL8x7WJrFzg8=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.135932+00 2025-12-17 11:30:01.135936+00 30539 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pq4KwBrJlgGmZZq6lWite2fKY60=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.137855+00 2025-12-17 11:30:01.13786+00 30540 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fqaFOP-xuZbOiu_T1Fvx1bJ2eRU=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.139779+00 2025-12-17 11:30:01.139783+00 30541 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B5H7ZzOK-XYPqaAZsCfcqtH09WE=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.141695+00 2025-12-17 11:30:01.141699+00 30542 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2x81J4eqbyeNsW7td8A5Sn8oBrI=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.143642+00 2025-12-17 11:30:01.143646+00 30543 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Zg8BiuPyakDN1FO62gYVguvC80=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.145584+00 2025-12-17 11:30:01.145589+00 30544 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E2qSQUVzTD782X1_Zzr0AXBKYh0=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.1476+00 2025-12-17 11:30:01.147604+00 30545 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y7Dfc6yf0Y4E4Dub-oEb4VnFhN8=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.149561+00 2025-12-17 11:30:01.14957+00 30546 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tCbJEdWWpLbfAT6iU9xKqQjUxiY=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.151853+00 2025-12-17 11:30:01.151858+00 30547 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T8EY-GLWtqgHPHVUEMFiiA-jKWk=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.154366+00 2025-12-17 11:30:01.154371+00 30548 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fgAtkPpoytPylo8xZQDOWLAhfms=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.15672+00 2025-12-17 11:30:01.156726+00 30549 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w_VyW0yYQlIhk60mN7ZQu6_dY4c=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.159313+00 2025-12-17 11:30:01.159318+00 30550 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dQVwQczHO9kwM0dr15FPWZXwn-Q=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.161162+00 2025-12-17 11:30:01.161167+00 30551 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eEGcz6f1eTwQbh9N1p3mcOdxY-g=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.16283+00 2025-12-17 11:30:01.162835+00 30552 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-WwVzvQjMpLYGpyYwbZ7KEaMask=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.164496+00 2025-12-17 11:30:01.164501+00 30553 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mUNO5_nwzJ6MjxyYOo_Z6tJOIy4=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.16619+00 2025-12-17 11:30:01.166194+00 30554 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BUL7R9UlAOGx59Sm2NA3BknPEC0=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.167861+00 2025-12-17 11:30:01.167866+00 30555 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hEeCGPW9HbVAgq_-xFh4D4X1-II=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.169538+00 2025-12-17 11:30:01.169542+00 30556 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m_99d06EwKMUslxWByxzmj9f__s=", "createTime": "2024-08-15 14:50:53"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.171334+00 2025-12-17 11:30:01.171339+00 30557 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RDdbKpOGxLWbs1iDjkX4aZUO3rM=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.173047+00 2025-12-17 11:30:01.173052+00 30558 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mNicQsSJ43bTWdJ_yOpeQzzFddk=", "createTime": "2024-08-15 14:50:53"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.175082+00 2025-12-17 11:30:01.175087+00 30559 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rgqLjqq2nCmxNA-t-2BpZsF9zec=", "createTime": "2024-08-15 14:50:53"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.177131+00 2025-12-17 11:30:01.177136+00 30560 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HCv5N0GGkhLxLjQHdEdDmrWLnpA=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.179091+00 2025-12-17 11:30:01.179096+00 30561 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZsTOLiotVNGgT-ZJmwNOHJOC8bM=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.181014+00 2025-12-17 11:30:01.181018+00 30562 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fI_IzIGOKw1RVNsh_YO47r5STjM=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.183056+00 2025-12-17 11:30:01.183061+00 30563 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GbxOHkgrzqTRygcXWQKboMLXyNM=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.185088+00 2025-12-17 11:30:01.185093+00 30564 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QJCTCtw96knY8bfNjkcPRX39HN4=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.187104+00 2025-12-17 11:30:01.187109+00 30565 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bucPjbUol18l439sb3hwH6wkPdE=", "createTime": "2024-08-15 14:50:53"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.189102+00 2025-12-17 11:30:01.189107+00 30566 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LkHusehRlU_Vh0F5HjXfzzxLroI=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.191524+00 2025-12-17 11:30:01.19153+00 30567 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vr4HVj4sKQefXQRno66FwHLnpzE=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.193655+00 2025-12-17 11:30:01.193661+00 30568 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uslYIV0uqke-xe93B1f5NnHzfTU=", "createTime": "2024-08-15 14:50:53"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.195525+00 2025-12-17 11:30:01.19553+00 30569 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l-O8LxLGTnxJR9C4iZMT5GbfqYs=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N +2025-12-17 11:30:01.19722+00 2025-12-17 11:30:01.197224+00 30570 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=1766057400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MU6tdXZ-KgyC5BG7erQ_kUBygrU=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.600301+00 2025-12-17 11:40:00.60031+00 30571 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5OibehUC9mFen7Qocx08nU0AXRM=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.603584+00 2025-12-17 11:40:00.603592+00 30572 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YQtCi52uDh2IUfEdSdtVoRv_jdI=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.605912+00 2025-12-17 11:40:00.605919+00 30573 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RPqoV7WucEwLS_A84FSeDk_7HIw=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.608133+00 2025-12-17 11:40:00.608139+00 30574 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PB4JO_sBAdIi4z-xPGul1phaVlQ=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.610422+00 2025-12-17 11:40:00.610429+00 30575 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aKPAlZ858JK0912aCt0WbzFpcMA=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.612906+00 2025-12-17 11:40:00.612912+00 30576 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mPqbqR7arwef5ufzjnhwQBwI3ho=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.61543+00 2025-12-17 11:40:00.615436+00 30577 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pLTlD_Yc7_0mbFeuQJ6joKNTPtE=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.617638+00 2025-12-17 11:40:00.617643+00 30578 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CI2hRfVCVExFv8FxyiudCZb9Wac=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.619562+00 2025-12-17 11:40:00.619572+00 30579 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3lVqgk9qezdlRrj30SdxPkT4V1w=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.621478+00 2025-12-17 11:40:00.621483+00 30580 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S7JzNUSzWuOMN007RKitIc6KL4A=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.62362+00 2025-12-17 11:40:00.623626+00 30581 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zaDgSiEkp1kiGXZj6d3MHDC1Nk8=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.625556+00 2025-12-17 11:40:00.625561+00 30582 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mgyLvqquSwgkqI_7oIr8O1dthtg=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.627483+00 2025-12-17 11:40:00.627488+00 30583 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4swVQzKsy-Y6O3TK0w03wepQGIs=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.62969+00 2025-12-17 11:40:00.629695+00 30584 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g8So0CpcIN_l56y9d_NJm_yOQgk=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.632128+00 2025-12-17 11:40:00.632133+00 30585 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0SWs4ewEo2cODJKE4iflZONz_Yo=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.634469+00 2025-12-17 11:40:00.634474+00 30586 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2evnS54Z0dHPFcR0kmOoiG5PrYA=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.636673+00 2025-12-17 11:40:00.636677+00 30587 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bMhLHsxClK3UwqhCSNlrqm9IRq8=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.638554+00 2025-12-17 11:40:00.638559+00 30588 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Vnj0sMd_2KFxTmVO9WmEzkOM64=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.640485+00 2025-12-17 11:40:00.64049+00 30589 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c78LYMV9fXc4A0nBvJPV1IFU1Vk=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.642434+00 2025-12-17 11:40:00.642438+00 30590 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S-RHUtcFxJ4gCE5NQ8QjcrX8a-I=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.644597+00 2025-12-17 11:40:00.644602+00 30591 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AwvTf-WvyCi9fcoI11-vlhZ0tjU=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.646537+00 2025-12-17 11:40:00.646542+00 30592 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E7sD7XjyfmOnYh4WA-DXN563uyg=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.64844+00 2025-12-17 11:40:00.648445+00 30593 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X8dPP_-A61OOw9jF5Ru-4dV_Sxc=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.650611+00 2025-12-17 11:40:00.650616+00 30594 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8zLigVLK7luyjd11BdWdjh8i1Rk=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.652714+00 2025-12-17 11:40:00.652719+00 30595 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dvwRx_jNrFgjebLPXLbaAsgoOf8=", "createTime": "2024-08-15 14:50:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.654583+00 2025-12-17 11:40:00.654588+00 30596 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PybQZqw7RrFf86SsM5-nfaZQ688=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.656672+00 2025-12-17 11:40:00.656677+00 30597 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CVuJwNQ5xR001zlxdMcbGZc3tis=", "createTime": "2024-08-15 14:50:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.658792+00 2025-12-17 11:40:00.658797+00 30598 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WxN6ITiB-RHlCtjlxaTT-ea7Z0s=", "createTime": "2024-08-15 14:50:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.660659+00 2025-12-17 11:40:00.660664+00 30599 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5KM1w0Zyiy5IMRQWO5igTvxw4Ek=", "createTime": "2024-08-15 14:50:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.662792+00 2025-12-17 11:40:00.662797+00 30600 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XB9wW1_cBWRPwzUjtKqUaRnWfS8=", "createTime": "2024-08-15 14:50:58"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.665096+00 2025-12-17 11:40:00.665102+00 30601 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qpFBe7hhx7l9gu2Jk1IKhbuTkmw=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.666947+00 2025-12-17 11:40:00.666952+00 30602 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fUSggklYHtBCJrY4he5u-wxKG00=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.668735+00 2025-12-17 11:40:00.668739+00 30603 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-b_TRjL3GbMid8Z9WG1uR4Hqe0s=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.670758+00 2025-12-17 11:40:00.670764+00 30604 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E4itLmkn3RrRiQcBKDwra6blT3Q=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.672894+00 2025-12-17 11:40:00.672899+00 30605 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mgx40mTIHQ_J8MOAtI3JG3yvnB0=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.674805+00 2025-12-17 11:40:00.674811+00 30606 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ulFJ9NXtDBcmF4gZ7ToSM0oTfbw=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.676999+00 2025-12-17 11:40:00.677005+00 30607 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AkifEHPX7BHlcqtHbIeNRYrhFxU=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.678984+00 2025-12-17 11:40:00.67899+00 30608 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0KJVEh-42vxQRF6nMTr9zaoNnc4=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.681028+00 2025-12-17 11:40:00.681035+00 30609 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AOmYQpLNozQeCgO0KoP3-ZSGS3k=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.689533+00 2025-12-17 11:40:00.689555+00 30610 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wu7zfrvcm5FMPqppjLm0zFlirXQ=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.702814+00 2025-12-17 11:40:00.702831+00 30612 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2q7eiRvO5ZJoNzyBhLwjumC80b0=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.696406+00 2025-12-17 11:40:00.696418+00 30611 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7NcWf_dSZPz09BshmfaXy-t79ds=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.714012+00 2025-12-17 11:40:00.714029+00 30613 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C8kKSBHu3HZd6yajmuav6gAWCGA=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.718674+00 2025-12-17 11:40:00.718688+00 30614 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pzl7Om_8oK8H_hztyMVutJTHQqo=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.72369+00 2025-12-17 11:40:00.723703+00 30615 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:frgcWMNcFuNY240SOJ1DI79P0jE=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.727852+00 2025-12-17 11:40:00.727862+00 30616 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:06VOVEin1pYwSqFgYTCMVKaLgbI=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.731716+00 2025-12-17 11:40:00.731726+00 30617 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JcKTAMkdjcbct-EYQ5HGX_GHLlQ=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.750035+00 2025-12-17 11:40:00.75004+00 30622 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:twnmJyCbEGOIg9-MXz1FHyt3oEg=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.736633+00 2025-12-17 11:40:00.736643+00 30618 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FUvJzsn6MC6RGXlgqaLhMt0PuYc=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.74178+00 2025-12-17 11:40:00.741793+00 30619 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H6yIzvvTfETmMf7abp_zal2MgGM=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.745221+00 2025-12-17 11:40:00.745228+00 30620 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8CI-ATZAF5Ye3rvwaMGcmNYevcw=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.747878+00 2025-12-17 11:40:00.747884+00 30621 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yHQMBCstVvNpdpkw5EFByyIeCwU=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.752084+00 2025-12-17 11:40:00.752089+00 30623 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bkVAI7FCua0kSVJicvF7eAKqnYI=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.753919+00 2025-12-17 11:40:00.753923+00 30624 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O5fyATgwvewi_ENcScVZ36-RCBE=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.755615+00 2025-12-17 11:40:00.755619+00 30625 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R946mCdWprTNal_XW5bVWWHMByo=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.757295+00 2025-12-17 11:40:00.757299+00 30626 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-N1D6BkBikyQ6oAgUz0cVMCIM2w=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.758979+00 2025-12-17 11:40:00.758984+00 30627 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SvLZltw08i1Pn_d-_A5EKcK8O8U=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.76069+00 2025-12-17 11:40:00.760694+00 30628 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qxXhpdV_id0zj_X9nFDHT2ewLzU=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.762391+00 2025-12-17 11:40:00.762395+00 30629 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a5Pi1xfNrAbdaTKMjyZi_cmyVT0=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.764137+00 2025-12-17 11:40:00.764142+00 30630 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ESPy_Aw3vuj-yjWEqwFgGgXhzQ=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.766054+00 2025-12-17 11:40:00.766058+00 30631 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D8prXEj4FQ8ePHGu6_I_HZjburE=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.767803+00 2025-12-17 11:40:00.767808+00 30632 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t2bgMA9EVLcracS6PbC3waEZ_6E=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.769624+00 2025-12-17 11:40:00.769629+00 30633 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VbFSnW-0wqrzqifOigfK_k9JlcY=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.771455+00 2025-12-17 11:40:00.77146+00 30634 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K5sS_5dxle4OAyfxL3LMxZ1ZPag=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.773496+00 2025-12-17 11:40:00.7735+00 30635 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vb5DNzUzHHI440LFkRDyu_36JR8=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.775301+00 2025-12-17 11:40:00.775305+00 30636 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qBaP0R_FfXkie716Oow2wMMcHOU=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.777292+00 2025-12-17 11:40:00.777296+00 30637 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZQq4GQwRQH1hMRZjTJYBKNmFoGM=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.779255+00 2025-12-17 11:40:00.779259+00 30638 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5WUpYgCdA-cr_UnJvy-Ntf10JAA=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.781182+00 2025-12-17 11:40:00.781186+00 30639 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9N1RG6QVoSd7fTu9GclatPQsHfg=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.783168+00 2025-12-17 11:40:00.783172+00 30640 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IBqawM1h8_GE5DvAlQaOLbKETVo=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.784846+00 2025-12-17 11:40:00.78485+00 30641 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C7PQbyc-Zw-fvGpA7XxnR5gkM_8=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.786533+00 2025-12-17 11:40:00.786538+00 30642 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yf4JoYAk0fvxadm1WovEBYeoHMI=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.788198+00 2025-12-17 11:40:00.788202+00 30643 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t1tz00fAcb7xmSUzbiu5GexAmAI=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.789889+00 2025-12-17 11:40:00.789893+00 30644 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nhqBVMD40yqKLrPCt6MJOdVb70g=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.791635+00 2025-12-17 11:40:00.791641+00 30645 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ER7Q54WkHi4eZWxW1vJjKu3F1yE=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.793397+00 2025-12-17 11:40:00.793401+00 30646 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:et5KOdIrnCott-s0PQaC_CceBq8=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.795293+00 2025-12-17 11:40:00.795298+00 30647 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WvTqZL7hA-2nXkDURa6jlM7Ot5k=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.79735+00 2025-12-17 11:40:00.797355+00 30648 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jCO5oLGnIm7ZjE-ZmgFRD46d944=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.799416+00 2025-12-17 11:40:00.79942+00 30649 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2YRFqYxaWXEihskRWaIkHfggzeI=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.801509+00 2025-12-17 11:40:00.801514+00 30650 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n3Ich2fb5YcLZAJujM9atQJNXm8=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.80346+00 2025-12-17 11:40:00.803464+00 30651 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p16G1_aolXMCpW5JpGWZMoA2N9w=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.805399+00 2025-12-17 11:40:00.805403+00 30652 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J2H4TAKu-pH9gS2t76lnYWYeEPc=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.80733+00 2025-12-17 11:40:00.807334+00 30653 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9PafRUqVAX5GAIWt89E4mWKCH70=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.809032+00 2025-12-17 11:40:00.809037+00 30654 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ppY7T69cEl5qFpvtwJqkKKCR9XI=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.81071+00 2025-12-17 11:40:00.810714+00 30655 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Xyu7qq2SYGoPyVXDNP-uhZzxRU=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.812464+00 2025-12-17 11:40:00.812468+00 30656 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z7KXSan2u_b7fvrIaIzli68O7As=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.814471+00 2025-12-17 11:40:00.814476+00 30657 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c8GRhtBfwtiyzR0szz-rLJUHpYk=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.816708+00 2025-12-17 11:40:00.816713+00 30658 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jw5mTE6J6pJxyCxb6DOvy3qzJ3A=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.818738+00 2025-12-17 11:40:00.818743+00 30659 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mj1BsOFX_zMwk03GZMfh1ytY3m0=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.820667+00 2025-12-17 11:40:00.820671+00 30660 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZF9W0Hfwv5x2Bms7caB3ofRGIDE=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.822595+00 2025-12-17 11:40:00.822599+00 30661 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zc2Feyz3Ua0jqXDNwgjHLCNOgwE=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.824501+00 2025-12-17 11:40:00.824505+00 30662 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SaEv07226Xk9KSAa1GgOd55uUvs=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.826443+00 2025-12-17 11:40:00.826448+00 30663 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5vnwSS9Iwdb_eVAvsi9IriP5DE4=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.835719+00 2025-12-17 11:40:00.835723+00 30668 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gpKwqeHm3TENGw5RmbXAsvwvtAc=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.82819+00 2025-12-17 11:40:00.828196+00 30664 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1I6IFHDucGvJTUq2e2JpYJ01okE=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.829979+00 2025-12-17 11:40:00.829984+00 30665 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YlKeThFAQPyI53UE5jXazYUqQL0=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.831853+00 2025-12-17 11:40:00.831859+00 30666 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ohXp6mNTrcoG-7_127o0VeOhig=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.833803+00 2025-12-17 11:40:00.833808+00 30667 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y_3KsA1g0pUsAy9RGV41ZGQdQjQ=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:00.837622+00 2025-12-17 11:40:00.837626+00 30669 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=1766057999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iZvGe-naSH51VyGrFy6K8X9hHcA=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.220464+00 2025-12-17 11:40:01.220475+00 30670 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jFMXMwGuyDfJ4Sn56Cyu9yhNJko=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.22422+00 2025-12-17 11:40:01.224231+00 30671 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HMiMnaU5Ff31y76O2Zp_tXadcG8=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.227192+00 2025-12-17 11:40:01.227199+00 30672 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:44kOUU1DOJO2D0ujVmBqz4fI_m8=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.230073+00 2025-12-17 11:40:01.23008+00 30673 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jSQptKNU5OMfBcRF4xe92h3CD4E=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.232946+00 2025-12-17 11:40:01.232954+00 30674 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MI8umsgAKHaq2ga1ERftoSVyC2U=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.235698+00 2025-12-17 11:40:01.235705+00 30675 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n3LMb6CYuBARR23dF13QfGOJZtI=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.238215+00 2025-12-17 11:40:01.23822+00 30676 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xxFkV764R0VUEzLG-WErlzZz6wE=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.24034+00 2025-12-17 11:40:01.240345+00 30677 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pLrxxmXTzEtEOwGgn6KBaXmMZiQ=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.242305+00 2025-12-17 11:40:01.24231+00 30678 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B8u3U21m6L-0JNa4lEylpZbl1IA=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.244407+00 2025-12-17 11:40:01.244413+00 30679 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IMA_AKBYw7kWFyY9wBlP0Wy1g7s=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.246487+00 2025-12-17 11:40:01.246493+00 30680 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EuREr9nbOw-mV6MG4wC2MTI-rcw=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.248681+00 2025-12-17 11:40:01.248686+00 30681 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LH7XAomojm6Dgdx7vGA5yf8maDQ=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.250839+00 2025-12-17 11:40:01.250844+00 30682 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:py4X5dPjLGEqXcn1LTRobdds0A8=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.252742+00 2025-12-17 11:40:01.252747+00 30683 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eih3SOdQuAg7eHseOE5s0O_uXYg=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.254852+00 2025-12-17 11:40:01.254857+00 30684 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6QXUFDjEdkgNgonXz67cbXF_6d0=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.256747+00 2025-12-17 11:40:01.256752+00 30685 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V9RBp3BhbtR3o7oTCqP4WHaWvLg=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.258889+00 2025-12-17 11:40:01.258894+00 30686 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1wgxj0qWMIxr1Q5tKNFSqBgqQNk=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.260782+00 2025-12-17 11:40:01.260787+00 30687 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rga8_6VxCwdRDzvKCuCawMhvQAU=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.262938+00 2025-12-17 11:40:01.262943+00 30688 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EMVr8pke9YmgTggj8q0nlPWUFJs=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.264915+00 2025-12-17 11:40:01.264921+00 30689 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WncMgxrfZBMrbrwg7pC0EqDpi8E=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.267129+00 2025-12-17 11:40:01.267134+00 30690 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jux3GRna5hz6ritvCOlOAxy601c=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.26903+00 2025-12-17 11:40:01.269036+00 30691 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YytgtjEtZIjmQYdSm3eCAy71hVU=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.270918+00 2025-12-17 11:40:01.270923+00 30692 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Md-G7Ko5YI56Gclt_elP0sLSSN8=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.272796+00 2025-12-17 11:40:01.272801+00 30693 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C9GOLZUV68vHho1eARBd0piruqk=", "createTime": "2024-08-15 14:51:05"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.27492+00 2025-12-17 11:40:01.274925+00 30694 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z9KOuz2XrPB6zthngTHGmpB9yvo=", "createTime": "2024-08-15 14:51:05"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.277028+00 2025-12-17 11:40:01.277033+00 30695 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bhv3dYiOfAlEeQyq45yxZPwKER8=", "createTime": "2024-08-15 14:51:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.278937+00 2025-12-17 11:40:01.278942+00 30696 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OAR3MTFYArhW1XmPLbFzaq9RkVQ=", "createTime": "2024-08-15 14:51:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.281133+00 2025-12-17 11:40:01.281138+00 30697 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dpoN58AcRSHkg3WmRnQ2WOvpFZA=", "createTime": "2024-08-15 14:51:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.283105+00 2025-12-17 11:40:01.28311+00 30698 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oAwuh7IDQzxid7Cq4MqTEn5U4RQ=", "createTime": "2024-08-15 14:51:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.285012+00 2025-12-17 11:40:01.285017+00 30699 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GkTUKXuNicIxloJutStneJq7EU8=", "createTime": "2024-08-15 14:51:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.286904+00 2025-12-17 11:40:01.286909+00 30700 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DYUb1r6XvemJq4KmQ08BmTcfd18=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.288999+00 2025-12-17 11:40:01.289004+00 30701 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mnJiT8mImQNhCMrL3Cqn7vA8Tlk=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.29112+00 2025-12-17 11:40:01.291125+00 30702 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RQOIH7waEVnHlURG5R5m0byIMQw=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.293201+00 2025-12-17 11:40:01.293206+00 30703 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yn2ULyi7wPEveGbnxYru7O-73Fk=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.295362+00 2025-12-17 11:40:01.295367+00 30704 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZM92RQx_mEwBSfYXuUiRiOMs_qg=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.297612+00 2025-12-17 11:40:01.297617+00 30705 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l5Ca79ChhIg3wUmmfRE16Sofhc4=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.300051+00 2025-12-17 11:40:01.300056+00 30706 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uz7mVY69zZSsWaFFfw7ty6hoRBo=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.302406+00 2025-12-17 11:40:01.302411+00 30707 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Dhchmypy0whXHCzxH2EDrJdd2U=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.304661+00 2025-12-17 11:40:01.304666+00 30708 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CjZC1_HD-cBhGsZSZIyg3t_S_-o=", "createTime": "2024-08-15 14:51:06"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.307147+00 2025-12-17 11:40:01.307153+00 30709 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mnsh3GZYvYQOREFGP_KaJCy8B4w=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.30954+00 2025-12-17 11:40:01.309545+00 30710 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pzxQ17-mdkndjwg5gHT3WAojcM0=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.311442+00 2025-12-17 11:40:01.311447+00 30711 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0nLTziLXByEoYfQl_XscHbnx8rk=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.31343+00 2025-12-17 11:40:01.313436+00 30712 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WeUoEPyxnlQeYyK0DozYi41rE8w=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.315572+00 2025-12-17 11:40:01.315578+00 30713 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o8TnxLtz6kUbt88D_YwlpUvXPtA=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.31775+00 2025-12-17 11:40:01.317755+00 30714 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uF_4gjRdfEn_pWmY7pSRqja-xp4=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.319687+00 2025-12-17 11:40:01.319691+00 30715 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8tSlGMSrcmUloDPQ0TckxYVgfco=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.321406+00 2025-12-17 11:40:01.321411+00 30716 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DbyNuDVRfVFpqTLWNXNdqWeQUpo=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.323125+00 2025-12-17 11:40:01.323129+00 30717 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yvOlfAb8p4qlWdOwti0kK9OE_Nw=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.324982+00 2025-12-17 11:40:01.324987+00 30718 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pqADEAlgE0JyzYEUj8_olK9AE68=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.326924+00 2025-12-17 11:40:01.326929+00 30719 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EAerLVvco4QqCdiwSKCKDhu53lk=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.328921+00 2025-12-17 11:40:01.328926+00 30720 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:virUrpJsH-A_ZAj8UCGKt0aQhzM=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.330973+00 2025-12-17 11:40:01.330978+00 30721 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BA5nTsifai_vP3m7-7uV5ynw3uk=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.332948+00 2025-12-17 11:40:01.332952+00 30722 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48g9oPC3_0mT095gptuREK_5CkA=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.334929+00 2025-12-17 11:40:01.334933+00 30723 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TYi78A9U9x5Et7sM4PU-dKRaNOM=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.336918+00 2025-12-17 11:40:01.336922+00 30724 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XfQ8NK2NQghUY2paSULmNgHaTJo=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.338638+00 2025-12-17 11:40:01.338643+00 30725 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rqvMZY8AJ-bvXFUbh3vwrmOA-hw=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.340823+00 2025-12-17 11:40:01.340828+00 30726 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g1ilTDcS__9pHxYcaRvTl0v-sao=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.342524+00 2025-12-17 11:40:01.342528+00 30727 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v4lqiP_cscR0_e-uRyqft2zdv3s=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.344222+00 2025-12-17 11:40:01.344226+00 30728 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q54ppoomijiPI84Q6JIEwxuDs_M=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.346191+00 2025-12-17 11:40:01.346196+00 30729 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JaYZi_t_HFgAoNdEhmrsUZaV1N4=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.348281+00 2025-12-17 11:40:01.348288+00 30730 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UPtmX7N32uVhq4Cl7sR2mRkgLtI=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.350444+00 2025-12-17 11:40:01.350449+00 30731 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_U4DjRjskE6wQ8zIrk6Y1wI9XLw=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.352174+00 2025-12-17 11:40:01.352179+00 30732 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jjapY7VfjBTOOMy6uJMjsCE9Xo8=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.354097+00 2025-12-17 11:40:01.354101+00 30733 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aT5wderl7oNRxTjqeO4QIJnldMM=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.362746+00 2025-12-17 11:40:01.36275+00 30738 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hlfBNQZcwiUt_qxHqgJRD_euQJc=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.356019+00 2025-12-17 11:40:01.356024+00 30734 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L9A1MW9UtTJAX6E5vuBppUUH3UU=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.357695+00 2025-12-17 11:40:01.357699+00 30735 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CipVLsuNlirvhkPcX3NfAMx5SWg=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.359396+00 2025-12-17 11:40:01.359401+00 30736 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qLXVPc5yJ_Sqj_pcaliGi1DwxxE=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.36106+00 2025-12-17 11:40:01.361064+00 30737 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-_SnkNSqzhnpUPdgOrWK44MkCYg=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.36456+00 2025-12-17 11:40:01.364571+00 30739 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kyjAUUoCONH6KR0AJ5oYXNcEoCw=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.366551+00 2025-12-17 11:40:01.366557+00 30740 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9gt1JVt26HcGJb1DtzXZNY5LrOA=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.368723+00 2025-12-17 11:40:01.368728+00 30741 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s1EattcNi_RJlLumkDO_ZnKwxlI=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.370626+00 2025-12-17 11:40:01.37063+00 30742 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U9UY0yT_F_ra5UpWlIcsW87xA9Q=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.372515+00 2025-12-17 11:40:01.37252+00 30743 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MCXX_kSYl7twn_sU_d6-559FQhI=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.374652+00 2025-12-17 11:40:01.374658+00 30744 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XKW6j1JlZa2s5kIr7nS-T9xXp4g=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.376524+00 2025-12-17 11:40:01.37653+00 30745 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9n7IR8U00uRUB_5vhDbN04Kx8lE=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.378631+00 2025-12-17 11:40:01.378636+00 30746 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Xz8OYadQaQMlXVlFjCeapIga04=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.380588+00 2025-12-17 11:40:01.380593+00 30747 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KTdAHS-u0NabqP1CM_nEp1uTr4Y=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.382798+00 2025-12-17 11:40:01.382804+00 30748 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W7eKzC7i11J23M_k5Gd-cK-bDhI=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.384707+00 2025-12-17 11:40:01.384712+00 30749 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gTSZQpXKwraSF_vRmD4nhrrf-qU=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.386608+00 2025-12-17 11:40:01.386613+00 30750 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zBBCmtF0R96hdmRzt6pkkiwttyY=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.388717+00 2025-12-17 11:40:01.388722+00 30751 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_aAM2fj4p3v6xTkGLUhJQ2ntKrw=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.390838+00 2025-12-17 11:40:01.390843+00 30752 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-etdIQZ1iogNRwrAHRqEy_0n_aA=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.392724+00 2025-12-17 11:40:01.392729+00 30753 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RSsKr8RQLWGXBXPPEjQ6Yq5hDbQ=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.394833+00 2025-12-17 11:40:01.394838+00 30754 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AhjkVeQfsJwsD3A4mZIM-wWrfKU=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.396907+00 2025-12-17 11:40:01.396913+00 30755 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SJ-x6jBbqjZRiIBUG997pxvbBjg=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.399282+00 2025-12-17 11:40:01.399288+00 30756 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nQHibbsXt4JAjLjt0RzBn7WM3Rw=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.40158+00 2025-12-17 11:40:01.401586+00 30757 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uib0bgSr_eSY_sTlxKCLWY_sE7I=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.403728+00 2025-12-17 11:40:01.403733+00 30758 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X5s6snPOY4ll51wDxmvTZrieW5Y=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.405887+00 2025-12-17 11:40:01.405891+00 30759 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YI5mIc82xZOqu2IQiDd31n2LGK4=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.407603+00 2025-12-17 11:40:01.407607+00 30760 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tQDRyd-QAmslxfnNmBqTv39AVM8=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.409513+00 2025-12-17 11:40:01.409517+00 30761 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oXlke0gAqYNhDY0xcI8qCds2Uoc=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.411393+00 2025-12-17 11:40:01.411398+00 30762 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L2HCcicl8pEhvY_MUd8Rp5mVDTI=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.413099+00 2025-12-17 11:40:01.413104+00 30763 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6eRPVw7a7qLEKic4ewEZ0J4rE_0=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.414845+00 2025-12-17 11:40:01.41485+00 30764 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bGlHBQsykAcNfVW2esMb9mCE1qE=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.416759+00 2025-12-17 11:40:01.416764+00 30765 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d_9MjiwumrYJBXA0EFprQhCTyNw=", "createTime": "2024-08-15 14:51:13"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.418862+00 2025-12-17 11:40:01.418867+00 30766 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z_R79uWePYRuHQRdKnvwWJNUxrE=", "createTime": "2024-08-15 14:51:14"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.420859+00 2025-12-17 11:40:01.420864+00 30767 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K5A_Od5NBNcGZ3mihp-NbhtiWuU=", "createTime": "2024-08-15 14:51:14"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.422956+00 2025-12-17 11:40:01.422961+00 30768 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XQCs1U3wDVp4RE3RjINLcc5bZvQ=", "createTime": "2024-08-15 14:51:14"}] \N 1 1 \N t \N \N \N +2025-12-17 11:40:01.424812+00 2025-12-17 11:40:01.424818+00 30769 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=1766058000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:byaNE6gGErQYwWZuzjqwkgRMO5s=", "createTime": "2024-08-15 14:51:14"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.393408+00 2025-12-17 11:50:00.393416+00 30770 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G3juq1IPrL2LmgDxVqhQ5mgdrxM=", "createTime": "2024-08-15 14:51:14"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.396864+00 2025-12-17 11:50:00.39687+00 30771 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oum_hPd1FVRON92QubHZtTlalBY=", "createTime": "2024-08-15 14:51:14"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.399336+00 2025-12-17 11:50:00.399341+00 30772 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PlOcTyGyu0XqL5u6aJ87jsbdJHU=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.401772+00 2025-12-17 11:50:00.401777+00 30773 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d0EuyfrZ7mVhBgXCjjDZ2wxkiHQ=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.403546+00 2025-12-17 11:50:00.403551+00 30774 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gxe8Pi6XdHF8LjWZvgn-ekqc0a0=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.405539+00 2025-12-17 11:50:00.405543+00 30775 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I19hR2SvFd2ZVB2MqoBRoinE0TM=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.407494+00 2025-12-17 11:50:00.407498+00 30776 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i9rb_37LnBvzCCYdMbhT1mSQ_FM=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.409426+00 2025-12-17 11:50:00.40943+00 30777 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WYaHFk2iDOAWeoYx76KBcky4kFE=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.411589+00 2025-12-17 11:50:00.411594+00 30778 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r_MfoVMFGBzHhzOrJ_hN65npIRM=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.413645+00 2025-12-17 11:50:00.41365+00 30779 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oHt1UuNjBhcrLFjgBcpcHjpd8c0=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.415686+00 2025-12-17 11:50:00.415691+00 30780 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LTmEmxi0iOEapMI-FsEcf1nJOts=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.417677+00 2025-12-17 11:50:00.417681+00 30781 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LwYQOs0p4mFpGLKJHa2NPBbVyn8=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.419631+00 2025-12-17 11:50:00.419635+00 30782 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d89LFls2aJLDmG8-ZRXP1qX6GXA=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.421511+00 2025-12-17 11:50:00.421515+00 30783 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HGg7dIman00-UDxk6KXjGU8E6Vg=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.42349+00 2025-12-17 11:50:00.423495+00 30784 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b1HKVzXpU2XF0iZJHjZpUbClGnE=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.425285+00 2025-12-17 11:50:00.425294+00 30785 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5HIMVuY5D_fgUOuZPk4dNW--jRA=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.427464+00 2025-12-17 11:50:00.42747+00 30786 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SL1A655Dy6hTj7V6hLw-gwBHft0=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.429543+00 2025-12-17 11:50:00.429549+00 30787 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yrcdOBHZHwdPwswdWVQ8PNehTZw=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.431816+00 2025-12-17 11:50:00.431821+00 30788 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cndtMmLAOrOosMWJSfk72Lr2kag=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.433932+00 2025-12-17 11:50:00.433936+00 30789 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j4F6Wy-_4aiVCFQVUgdgZaxKpSU=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.435927+00 2025-12-17 11:50:00.435932+00 30790 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WGOTCogILteoZ9UxnTo-a1s6TRo=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.437661+00 2025-12-17 11:50:00.437665+00 30791 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SprTfl1LEHxUP6BpJ2kvj25NrfE=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.439641+00 2025-12-17 11:50:00.439646+00 30792 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yZr4J_sC9Q7HLvZZiOXgfXxBTAA=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.441557+00 2025-12-17 11:50:00.441562+00 30793 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9555-7VY-H6bT1cvt8GBU6lbCsY=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.443323+00 2025-12-17 11:50:00.443328+00 30794 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KkWE9897Y9UU_lkqQ-1HMq7sl7g=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.445264+00 2025-12-17 11:50:00.445269+00 30795 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gj3zM73FAlXmEmVGQVeija9epdY=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.447355+00 2025-12-17 11:50:00.447361+00 30796 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W3W3pD5WeFMgf4WZM3lOhDEeDWI=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.449446+00 2025-12-17 11:50:00.449451+00 30797 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FjQqNG7xZBZfP9tmasqZeXSs5Do=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.451406+00 2025-12-17 11:50:00.451411+00 30798 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CkmCvH6GwJi1cNA1gEAkD17UaYI=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.453376+00 2025-12-17 11:50:00.453381+00 30799 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OyG1xRz1A_S_sAY1ijM-xR-nGbA=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.455297+00 2025-12-17 11:50:00.455302+00 30800 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WzjLyV9hj78HySc5vH9YDgP1u34=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.457198+00 2025-12-17 11:50:00.457203+00 30801 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JsB1BO58SMNnIgNLnxLOeSsUWXg=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.459132+00 2025-12-17 11:50:00.459137+00 30802 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_VS_Rx7VLBij-YhGWdgmJwTxgbo=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.461375+00 2025-12-17 11:50:00.461381+00 30803 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:otZZVB6kY4RRRDGJF7pIh54O6Rk=", "createTime": "2024-08-15 14:51:20"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.463382+00 2025-12-17 11:50:00.463388+00 30804 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:54ff5AWzMDxNWHzxfCQ83UxjsCk=", "createTime": "2024-08-15 14:51:20"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.465375+00 2025-12-17 11:50:00.465381+00 30805 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lrjx2Qck6SwfVoqlCYlY4tjq0_s=", "createTime": "2024-08-15 14:51:20"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.467499+00 2025-12-17 11:50:00.467505+00 30806 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rybTWC1VahZSlqWWhPYCRKNoJbE=", "createTime": "2024-08-15 14:51:20"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.469575+00 2025-12-17 11:50:00.469581+00 30807 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oZpJ1osGO5sgF1bYCCZnqR4HzvY=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.471575+00 2025-12-17 11:50:00.471581+00 30808 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XAVJhtVtODkwT3JjV_QjdqqFQxI=", "createTime": "2024-08-15 14:51:21"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.473517+00 2025-12-17 11:50:00.473522+00 30809 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IdB7JMjrW6LXqDpXRw8ugnHNujs=", "createTime": "2024-08-15 14:51:21"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.475443+00 2025-12-17 11:50:00.475448+00 30810 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vPmIP4XUezGscU69AEU4TqZijuE=", "createTime": "2024-08-15 14:51:21"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.477358+00 2025-12-17 11:50:00.477363+00 30811 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rOqsHO8JEStFJ9sbQx4cckAmipw=", "createTime": "2024-08-15 14:51:21"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.479205+00 2025-12-17 11:50:00.47921+00 30812 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jrlnq7R5j1KRVmDUlSb3I2pm-04=", "createTime": "2024-08-15 14:51:21"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.481257+00 2025-12-17 11:50:00.481262+00 30813 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RMq6qG2iKbOgoecnhxuxzItSpKs=", "createTime": "2024-08-15 14:51:21"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.483148+00 2025-12-17 11:50:00.483152+00 30814 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j6ol347zPhEDDTJymx2Zb2WLHWU=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.48508+00 2025-12-17 11:50:00.485084+00 30815 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gwybQWyIEbVXe3zVO-uVMvN3V8M=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.486999+00 2025-12-17 11:50:00.487003+00 30816 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QoiUiknWNKR6PRR_dMWS2ZrefcU=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.488977+00 2025-12-17 11:50:00.488982+00 30817 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-26AamLapKJZ-pBT25W2Sw0ns1w=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.490713+00 2025-12-17 11:50:00.490718+00 30818 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fq8VKie93fOT-D5Ilj7hY2KfTlQ=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.516412+00 2025-12-17 11:50:00.516416+00 30831 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YvLPAQNURx84Xi2ta5oiuKWlyUk=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.492399+00 2025-12-17 11:50:00.492403+00 30819 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FRo6wxs5zLsIWB-odImk9dqAXms=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.494151+00 2025-12-17 11:50:00.494155+00 30820 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FnW4BKWv3KMzGokmmFRR_NKge3E=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.496085+00 2025-12-17 11:50:00.49609+00 30821 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wHt64iCf4DECnWSxc_dhxdjfMLI=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.498138+00 2025-12-17 11:50:00.498144+00 30822 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R85UMk4G-w-dzpdzL8XMdyVgLus=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.500147+00 2025-12-17 11:50:00.500152+00 30823 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M7JLVCRC7rCkATvlZsrzCAnjuk0=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.502273+00 2025-12-17 11:50:00.502278+00 30824 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zsA5ZwSb_sYnzN8QSD9izEPCPL4=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.504301+00 2025-12-17 11:50:00.504306+00 30825 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pM3pmDIUp7e7LpjXDRfGyFF5ZDg=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.506295+00 2025-12-17 11:50:00.506299+00 30826 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FV8v1Hzz546OIpiP4wvdA0liOWM=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.508203+00 2025-12-17 11:50:00.508207+00 30827 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:peVlpb1-hacALY-1j_uX_Bk59tQ=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.510181+00 2025-12-17 11:50:00.510186+00 30828 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i6sBsF6kdPuP-U7AMBBUB_QFNRs=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.512183+00 2025-12-17 11:50:00.512188+00 30829 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GswnIEVF_6JgYpBQkth9v7GVA4M=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.514363+00 2025-12-17 11:50:00.514368+00 30830 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xML-8pZ-n6tw7vAgan-XceBgeW8=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.518373+00 2025-12-17 11:50:00.518377+00 30832 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xX-GvpT8PZjv67EA54fwc4167SU=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.520341+00 2025-12-17 11:50:00.520345+00 30833 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BhfYm9fFRjSZ2dzTjqrnTs2J8AM=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.522261+00 2025-12-17 11:50:00.522265+00 30834 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8hrBVmzl6J82ePxCwYcFkKQlNAo=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.524219+00 2025-12-17 11:50:00.524224+00 30835 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sTiyhiiuWV2orEXj5JsXKKr3owo=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.525915+00 2025-12-17 11:50:00.525919+00 30836 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1bC7nQPOc--43pmJsYRxauHDkMU=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.527666+00 2025-12-17 11:50:00.527671+00 30837 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:desxvgIV5KY8Qby4ZHB3RHYEdDw=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.529415+00 2025-12-17 11:50:00.52942+00 30838 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f0ML61STR4YOGPaZWV6-5FNQfcQ=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.531382+00 2025-12-17 11:50:00.531386+00 30839 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OvYTMkNgTPXyEuJb8SatIiCu1Qw=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.540839+00 2025-12-17 11:50:00.540844+00 30844 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w2ZZHmhRQIDxiruRlxnf9Wlw_m0=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.533329+00 2025-12-17 11:50:00.533334+00 30840 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jxw8F7QjlCNE15WEry5K1B7k1Uk=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.53531+00 2025-12-17 11:50:00.535314+00 30841 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RlnqeyCp9DOa6fSsPzLopzUNYks=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.537011+00 2025-12-17 11:50:00.537015+00 30842 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:epq_6B1maFfpCXgFklLFl-9-D9c=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.538712+00 2025-12-17 11:50:00.538717+00 30843 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vDME13h8sbLT95ACsqgia-7QRD4=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.542939+00 2025-12-17 11:50:00.542944+00 30845 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9jwwDQcZZtgQ_SwUVJXjZR9qxqY=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.54539+00 2025-12-17 11:50:00.545396+00 30846 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9csqZYXxzRkchLLF7bO98GDKHLg=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.548059+00 2025-12-17 11:50:00.548064+00 30847 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_gyoRNkK8qqwSTkMp33oaqeL-mA=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.550288+00 2025-12-17 11:50:00.550293+00 30848 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ti9IaFg3JGxA3ai5mYEa079oHuE=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.552437+00 2025-12-17 11:50:00.552442+00 30849 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:goInWa8eG16XZ3AIgOgHL_PnJew=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.55482+00 2025-12-17 11:50:00.554824+00 30850 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2nVDz-71gY3tU9FPkVkja-7dhII=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.557065+00 2025-12-17 11:50:00.55707+00 30851 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jm9FnH2nm5u6SDrPMuUARRMXWMM=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.558765+00 2025-12-17 11:50:00.55877+00 30852 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GPrQJ5mAHTaS-oexqHmlRvqbPIY=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.560772+00 2025-12-17 11:50:00.560776+00 30853 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lXJz8Js0c1ScJaZas_iJ2MbZNy4=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.562718+00 2025-12-17 11:50:00.562722+00 30854 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OWGznRst5dYc1CWN8bwxOr2d7xI=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.564779+00 2025-12-17 11:50:00.564783+00 30855 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48pmAHkV6rxsp-2QA0obvt5U92g=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.566775+00 2025-12-17 11:50:00.56678+00 30856 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nPVnqQK2eIGCNp63QJm45liBzb0=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.568735+00 2025-12-17 11:50:00.568739+00 30857 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E5rnpRw4QFTuU-AcZBBacGsjFy0=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.570692+00 2025-12-17 11:50:00.570696+00 30858 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-6IXE9khMspxBg92sy1EuVi1HD4=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.572618+00 2025-12-17 11:50:00.572623+00 30859 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dtqpgWZjnCzTc1pJYzFGbZJedRM=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.574579+00 2025-12-17 11:50:00.574583+00 30860 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m8DrKRieAIgn0QM9juN17IK-THc=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.57629+00 2025-12-17 11:50:00.576294+00 30861 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NTxnCcQHF40ASBAP_1Q9rWZu2hI=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.578013+00 2025-12-17 11:50:00.578018+00 30862 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CyFHW6v4iskcJLEWlXMruWDAaqw=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.579817+00 2025-12-17 11:50:00.579821+00 30863 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KEaffMi7ZcM9n977DlvW9aZU_A0=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.58197+00 2025-12-17 11:50:00.581975+00 30864 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8vofhVZq-uOUwmWdtzs69u7EJf8=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.583923+00 2025-12-17 11:50:00.583928+00 30865 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sh2FLUujEu-ItGTb8jXbSqiY7Lc=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.585892+00 2025-12-17 11:50:00.585896+00 30866 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:108lB40SUBJ7vr-HQA0xAJdOeRQ=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.58785+00 2025-12-17 11:50:00.587854+00 30867 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GhOhf1g1AZAH5U7Rl9BpNOEDkfU=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.589773+00 2025-12-17 11:50:00.589777+00 30868 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tn6-S4nYs9xld_roYJHlPYJdqOU=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.591756+00 2025-12-17 11:50:00.591761+00 30869 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=1766058599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IsZrNuQPN6GnwJJO0jSa96qlVlQ=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.973616+00 2025-12-17 11:50:00.973627+00 30870 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bjdzn_o2l3k5nqZydjDDGNTD93E=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.976951+00 2025-12-17 11:50:00.97696+00 30871 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TNTCTO_8tJzWvk9fG-DuahLWH3c=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.979919+00 2025-12-17 11:50:00.979926+00 30872 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jEiXwHde4u3FU1lTzOvyqAp-thA=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.98285+00 2025-12-17 11:50:00.982856+00 30873 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mj3uUU7iHXCrE-19RweWg9N66-I=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.985389+00 2025-12-17 11:50:00.985395+00 30874 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KHF1BLKoUbUsbfgMNDub6gjIfSI=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.987292+00 2025-12-17 11:50:00.987297+00 30875 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p3A0aCoJUmEum8hVvDOw-qmFIL4=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.98906+00 2025-12-17 11:50:00.989064+00 30876 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BqljPosvXmhWHSudEIKHTxe1BJM=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.990797+00 2025-12-17 11:50:00.990801+00 30877 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xEidQozjEaD4J7c9DejKIYuqi7A=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.992738+00 2025-12-17 11:50:00.992743+00 30878 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G_ZYeJnDJLrA-keisOC4SEinvlE=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.99518+00 2025-12-17 11:50:00.995186+00 30879 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Q-2re3GkC5hq2729CFoZKWaipk=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.997318+00 2025-12-17 11:50:00.997323+00 30880 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NgCkrzD5Nx5tdWHNVZz79QULv5Q=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:00.999121+00 2025-12-17 11:50:00.999126+00 30881 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jsw2KsuJw1k_b4xENw7pQIALo0Y=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.000844+00 2025-12-17 11:50:01.000848+00 30882 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7zOsoMUgOZ3DjhSEg5Cl_Yy8Gu4=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.002849+00 2025-12-17 11:50:01.002853+00 30883 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F5E2cOjs2wosNEEiRszsSdnsVoE=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.004796+00 2025-12-17 11:50:01.004801+00 30884 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GpQY4ynOS_eR-C4T5AaWG9yBuR4=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.006724+00 2025-12-17 11:50:01.006728+00 30885 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_T84NCgrbz1pgN2QVcgyNo_TH5c=", "createTime": "2024-08-15 14:51:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.008412+00 2025-12-17 11:50:01.008417+00 30886 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qR4ZE1XW2yfY_xRJs-lCGKS_cg8=", "createTime": "2024-08-15 14:51:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.01014+00 2025-12-17 11:50:01.010145+00 30887 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lyao3NWVVFMX2gGvwOlHOcyF8Ik=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.012021+00 2025-12-17 11:50:01.012026+00 30888 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lX-9JU7WOjqNj8Gp7rb3c8Hkmgg=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.014144+00 2025-12-17 11:50:01.014149+00 30889 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1T7kP95W8oIwUgMm5x9TT9paPog=", "createTime": "2024-08-15 14:51:30"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.016173+00 2025-12-17 11:50:01.016178+00 30890 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qz4A3PjbGIHS8YXK0riCigKKxWw=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.01816+00 2025-12-17 11:50:01.018165+00 30891 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LuZhqlkMAPUtK3WY4h5KLek6mgs=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.019909+00 2025-12-17 11:50:01.019913+00 30892 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j03bFIyJ-ooVZ3to7vywyk7X97k=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.02193+00 2025-12-17 11:50:01.021935+00 30893 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WVgIk0dpkeg4ljyoN98uQ56XWYk=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.024097+00 2025-12-17 11:50:01.024102+00 30894 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9jLi1_PRf0xTuVj6ihNvzhs-0K4=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.026583+00 2025-12-17 11:50:01.02659+00 30895 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ef45s0U4XFA0hS7pELAVo8tNqpE=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.029084+00 2025-12-17 11:50:01.02909+00 30896 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bh5lPHWqzrTNEKV1lGC3eiNKEvo=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.031252+00 2025-12-17 11:50:01.031258+00 30897 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XOuQRs7PmrYJbxGNMRqMT_3lcQ0=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.033287+00 2025-12-17 11:50:01.033292+00 30898 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N43j0AgnR6fMEWDUAiuxOHbeSkw=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.035267+00 2025-12-17 11:50:01.035272+00 30899 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W65o8YYsU78ionJ2GNGO-ZihsN8=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.036985+00 2025-12-17 11:50:01.03699+00 30900 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZNVo4S4jgFdi7lE9ZAH9-ZruKVU=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.038972+00 2025-12-17 11:50:01.038976+00 30901 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eu3EZC7xMhXRToW7s7_K1ArHfQE=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.040985+00 2025-12-17 11:50:01.040989+00 30902 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JjlU_sC3JEe9xOsxCC8Q3lhr45w=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.042958+00 2025-12-17 11:50:01.042962+00 30903 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a6g3Ey8au1-qOUrJtMCRbLKodZ0=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.044859+00 2025-12-17 11:50:01.044864+00 30904 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5_WyD48q8Qzrqf5my9_c0S5DdpU=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.046928+00 2025-12-17 11:50:01.046934+00 30905 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wLnK1aM_7n8posfXXGaCV7yUJaU=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.048879+00 2025-12-17 11:50:01.048883+00 30906 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jzMF54YmW3DUFnhPaNuwIgWnRVI=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.051031+00 2025-12-17 11:50:01.051037+00 30907 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0gSfnQS4GGO5d2WTvqMc3a4RRqE=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.053296+00 2025-12-17 11:50:01.053302+00 30908 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XifIjFUaudbc1ACp6nGXZ1J7_zM=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.055937+00 2025-12-17 11:50:01.055943+00 30909 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B1El7UU8g7gjDoaGLZjUnMXmEa8=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.058453+00 2025-12-17 11:50:01.058461+00 30910 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NCVq7R5boCAJ8JNlGcZoxcUBBiU=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.061547+00 2025-12-17 11:50:01.061552+00 30911 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KzQM-2L0kK27wcUfgHg_wHdr7Fw=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.064128+00 2025-12-17 11:50:01.064132+00 30912 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bhmMl2v0PxMNXVi1uyZmQr5fIOY=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.066318+00 2025-12-17 11:50:01.066323+00 30913 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DVZIxSacXsmMw_QxNrHTa4lWqt4=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.068352+00 2025-12-17 11:50:01.068356+00 30914 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ARsMokT92sgQdj8n1MsEtlhwQy8=", "createTime": "2024-08-15 14:51:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.07031+00 2025-12-17 11:50:01.070315+00 30915 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LzzjQvSiWXwQUHrCwErnNJ1T-QU=", "createTime": "2024-08-15 14:51:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.072212+00 2025-12-17 11:50:01.072217+00 30916 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4_opB79wfsJ8U9cDDUhvwMBH2_I=", "createTime": "2024-08-15 14:51:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.074178+00 2025-12-17 11:50:01.074183+00 30917 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-uhAN3M4sOxDgkC9-iHo-O0V5_0=", "createTime": "2024-08-15 14:51:33"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.075914+00 2025-12-17 11:50:01.075919+00 30918 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nW3rOhzUAxk4Y7OkdCZl1zcsdZ8=", "createTime": "2024-08-15 14:51:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.07779+00 2025-12-17 11:50:01.077795+00 30919 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d487oVmRdxPLYWx03IWRPs_5XUg=", "createTime": "2024-08-15 14:51:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.079698+00 2025-12-17 11:50:01.079703+00 30920 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eTHPXlVeRNvkSOGTON_aKRtNSKM=", "createTime": "2024-08-15 14:51:35"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.081689+00 2025-12-17 11:50:01.081694+00 30921 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oie95fKIPgwq5v70zSTHS9z5LJQ=", "createTime": "2024-08-15 14:51:35"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.083742+00 2025-12-17 11:50:01.083747+00 30922 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JLR_TrrnJ4DuI5c5slCvBwFLlaU=", "createTime": "2024-08-15 14:51:34"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.085482+00 2025-12-17 11:50:01.085487+00 30923 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1mgeFVdw21BJRvPDZwXopC8COhE=", "createTime": "2024-08-15 14:51:35"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.087435+00 2025-12-17 11:50:01.087439+00 30924 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D0yHRR-KxbOHfMhYBrIXDjViy_8=", "createTime": "2024-08-15 14:51:35"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.089359+00 2025-12-17 11:50:01.089364+00 30925 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2W1vD82FWtmnfmkyxXoHVPOqCcs=", "createTime": "2024-08-15 14:51:35"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.09132+00 2025-12-17 11:50:01.091324+00 30926 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d-ira0wg79XorV_OzgvKWcn4CLI=", "createTime": "2024-08-15 14:51:35"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.093039+00 2025-12-17 11:50:01.093044+00 30927 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GPExIEyTrQfhyjtIQIoZSVmW97A=", "createTime": "2024-08-15 14:51:35"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.095059+00 2025-12-17 11:50:01.095066+00 30928 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yEsqEIDU4qdRUYnM4QDT-5JRU_A=", "createTime": "2024-08-15 14:51:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.097262+00 2025-12-17 11:50:01.097267+00 30929 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GUbRH9EkY_SY_m6Am8UaV78SF1c=", "createTime": "2024-08-15 14:51:37"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.099282+00 2025-12-17 11:50:01.099287+00 30930 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KPwjyVGl_hNRoFEX7BhO6yV5wB0=", "createTime": "2024-08-15 14:51:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.101155+00 2025-12-17 11:50:01.101161+00 30931 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ixXZKS4qiHgLEqWzjvHyx_-FXGk=", "createTime": "2024-08-15 14:51:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.102912+00 2025-12-17 11:50:01.102916+00 30932 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yj49DSrFpWpfq0b-UewgaODLqBk=", "createTime": "2024-08-15 14:51:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.104643+00 2025-12-17 11:50:01.104647+00 30933 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gceZ5Z9ZhcsMQbBkwD8K6e0JLEQ=", "createTime": "2024-08-15 14:51:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.106585+00 2025-12-17 11:50:01.10659+00 30934 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H3nqDr7_CApL-MmErlkZpQqGEc4=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.108508+00 2025-12-17 11:50:01.108513+00 30935 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lpGx9B7EL-ui55FPMAQZGcIjQ1U=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.11052+00 2025-12-17 11:50:01.110524+00 30936 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SsTtHDmPUW1MNsba0wYIm2fzRKA=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.112587+00 2025-12-17 11:50:01.112592+00 30937 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p_QPnLofye3uYct6kqQJywQeGys=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.11462+00 2025-12-17 11:50:01.114625+00 30938 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1TFjyYdWG97H6jT_hDhdIHxBfGw=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.116637+00 2025-12-17 11:50:01.116641+00 30939 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2amts2gjZZyJCGpWdnh1oW0ebDc=", "createTime": "2024-08-15 14:51:38"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.118573+00 2025-12-17 11:50:01.118577+00 30940 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6RWATUCsAj6MNqGdx4Ty-ylkdjI=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.120687+00 2025-12-17 11:50:01.120694+00 30941 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EjBEZ7sDj5qyLD4_5Lx1z0mxHmA=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.122757+00 2025-12-17 11:50:01.122761+00 30942 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZmX0GzTAMMRsMblaXyeGekSa2lI=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.124737+00 2025-12-17 11:50:01.124741+00 30943 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:atmmNHSkX8qA-ocEkNblmY1Q9Y8=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.126699+00 2025-12-17 11:50:01.126704+00 30944 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mR931IaeYLlzV6Yuz1cITxFOumQ=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.128795+00 2025-12-17 11:50:01.128799+00 30945 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xbpmUd2ijOEK8YBFfto6sIpNipQ=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.130762+00 2025-12-17 11:50:01.130766+00 30946 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lZCCF4-7-YJ2cIO7YgdI-jSYW9Q=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.132811+00 2025-12-17 11:50:01.132815+00 30947 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rJB-hbfA75BGLfHM8X6tqWt7LWw=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.134774+00 2025-12-17 11:50:01.134778+00 30948 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kmTPAP3q6wYG-_2hiZbH7ThTpMw=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.136731+00 2025-12-17 11:50:01.136736+00 30949 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:otfkpcOuIk6pECrSXgFUaGIjOzg=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.13866+00 2025-12-17 11:50:01.138665+00 30950 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Kwsj8TIN1GPKq9sEF1Z7S0BTsk=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.140379+00 2025-12-17 11:50:01.140385+00 30951 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:19_MUcdTAZDKgeGdH4CTRYMRKO0=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.142115+00 2025-12-17 11:50:01.142119+00 30952 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wT5JWlVLZWUecrFQCGC60qVNN-s=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.143838+00 2025-12-17 11:50:01.143843+00 30953 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_pv0RYzJJwZlpw0l_zJQuFJLuYQ=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.145823+00 2025-12-17 11:50:01.145827+00 30954 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rjO7ZkhURkMWqy7VKTlVlK5Ra9Q=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.147997+00 2025-12-17 11:50:01.148003+00 30955 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aGCYvOPczn7pi1kAOGEvOEUUL58=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.150213+00 2025-12-17 11:50:01.150218+00 30956 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e3GEYh2grzgFavucCNixrF9DU_M=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.152235+00 2025-12-17 11:50:01.152239+00 30957 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RgJPNk0xvkamgDViH_52CEA0zJw=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.154035+00 2025-12-17 11:50:01.154039+00 30958 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y8dJNeRyFrrt5JleUSSWH7nZuxU=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.156016+00 2025-12-17 11:50:01.15602+00 30959 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_XRa5a3-OUkxJLxXx-mBbE5G75s=", "createTime": "2024-08-15 14:51:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.158294+00 2025-12-17 11:50:01.158299+00 30960 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ybPpvRhAk3cDgxo-BeK7H306e0=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.160376+00 2025-12-17 11:50:01.160382+00 30961 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zVOI1xjo-rWJtrfIBKh427_Bxoc=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.162577+00 2025-12-17 11:50:01.162581+00 30962 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zyBj0wgxSUq-DUz4hNYn9ZYSrd0=", "createTime": "2024-08-15 14:51:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.164832+00 2025-12-17 11:50:01.164837+00 30963 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KqTaOJzD_RZBGzPb7jL0RZnwF4w=", "createTime": "2024-08-15 14:51:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.167015+00 2025-12-17 11:50:01.16702+00 30964 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jtEyB8kPv_rICL1kLjE5Gl28OQ8=", "createTime": "2024-08-15 14:51:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.169281+00 2025-12-17 11:50:01.169285+00 30965 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cv0n91z2xSOYMZZ5Tnwh33_eIFc=", "createTime": "2024-08-15 14:51:41"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.171357+00 2025-12-17 11:50:01.171361+00 30966 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hv8sgQU2qwbHzBQpzegb7Jbb4k8=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.17342+00 2025-12-17 11:50:01.173424+00 30967 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:riyt8Ncr0P5Yw7K-CTXPJk2UNMQ=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.175151+00 2025-12-17 11:50:01.175156+00 30968 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IP9qMLav0Fw9z-ASut7oT_h4KiQ=", "createTime": "2024-08-15 14:51:42"}] \N 1 1 \N t \N \N \N +2025-12-17 11:50:01.177179+00 2025-12-17 11:50:01.177184+00 30969 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=1766058600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9vzJJ97iwuHC8IfVBfjhSGPnSyI=", "createTime": "2024-08-15 14:51:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.404202+00 2025-12-17 12:00:00.404211+00 30970 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pDKvhByBk0cXOPzvHzo1DAuY7RM=", "createTime": "2024-08-15 14:51:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.407855+00 2025-12-17 12:00:00.407862+00 30971 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NxJWUkqGDecTYHWFrL2TI0z4Pvk=", "createTime": "2024-08-15 14:51:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.410382+00 2025-12-17 12:00:00.410388+00 30972 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P5Ex_3HXII5eerFSHTaUlPiDfYo=", "createTime": "2024-08-15 14:51:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.412418+00 2025-12-17 12:00:00.412423+00 30973 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aJgIlRKeKZeGsIBpqUh0V4REfjQ=", "createTime": "2024-08-15 14:51:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.414428+00 2025-12-17 12:00:00.414432+00 30974 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dBchWVpQLj-fNab6-tBwA_mlfCw=", "createTime": "2024-08-15 14:51:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.416405+00 2025-12-17 12:00:00.41641+00 30975 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ujDOyIBn2IiPa6BKIg7K_uT9qL4=", "createTime": "2024-08-15 14:51:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.418347+00 2025-12-17 12:00:00.418351+00 30976 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2M7vm7uBd4krSlL4gQp2x8O-6qo=", "createTime": "2024-08-15 14:51:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.420162+00 2025-12-17 12:00:00.420167+00 30977 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LphKIE4yVXLXEue9PmoCbTvTDIc=", "createTime": "2024-08-15 14:51:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.421988+00 2025-12-17 12:00:00.421992+00 30978 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YEud8kvuhMVG61Ah0EK1bccXqvI=", "createTime": "2024-08-15 14:51:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.423994+00 2025-12-17 12:00:00.423999+00 30979 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LWvFX0Hd7oAsd8ZyKZw3MId1Vfs=", "createTime": "2024-08-15 14:51:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.42637+00 2025-12-17 12:00:00.426376+00 30980 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pRpcSptykKs1r3ZkdhvKoEkhpBo=", "createTime": "2024-08-15 14:51:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.428688+00 2025-12-17 12:00:00.428693+00 30981 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XYU1xvabu-j8oQfqRHIT02PFdRI=", "createTime": "2024-08-15 14:51:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.430669+00 2025-12-17 12:00:00.430673+00 30982 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dt978zNUjlrhzrS8ix-XW_-9n-4=", "createTime": "2024-08-15 14:51:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.432665+00 2025-12-17 12:00:00.432669+00 30983 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qC9ufOv4qfJu6oaCpcTmzwUd9jY=", "createTime": "2024-08-15 14:51:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.434626+00 2025-12-17 12:00:00.43463+00 30984 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ssjObsEh8NEB_Wbq4jAI-lbbGYY=", "createTime": "2024-08-15 14:51:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.43657+00 2025-12-17 12:00:00.436575+00 30985 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_E2m7JSDqJlFzHzKaDENIgGy_nM=", "createTime": "2024-08-15 14:51:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.438501+00 2025-12-17 12:00:00.438505+00 30986 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s7x-awzgW_I7nAfP5bk3B886Ll8=", "createTime": "2024-08-15 14:51:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.440798+00 2025-12-17 12:00:00.440803+00 30987 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oSqcOY_vYUQYkvNqGVzPplwRHw0=", "createTime": "2024-08-15 14:51:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.442855+00 2025-12-17 12:00:00.44286+00 30988 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u1jGKhhTAPCHeF-nD_13yvK7wJg=", "createTime": "2024-08-15 14:51:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.444817+00 2025-12-17 12:00:00.444821+00 30989 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UonqEa3TWyzqoRqi-VOe12dN7Q4=", "createTime": "2024-08-15 14:51:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.446791+00 2025-12-17 12:00:00.446795+00 30990 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IylZ4gZ4CONfiOZHWvVz3ZdpfTU=", "createTime": "2024-08-15 14:51:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.449245+00 2025-12-17 12:00:00.44925+00 30991 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aBF5SWcK4we0R7PiTbz3JjQLqTg=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.451291+00 2025-12-17 12:00:00.451295+00 30992 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m6BQ8r_oi-3rU1M78ow3qho_8Ec=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.453316+00 2025-12-17 12:00:00.453321+00 30993 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LvmiI5xFuw8VwspZUEaexWLuw2o=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.455366+00 2025-12-17 12:00:00.455372+00 30994 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L2fCmhm3LFUajarHgyn9fHhz8ic=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.457553+00 2025-12-17 12:00:00.457559+00 30995 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SIcUoUWofABRaUzM9tx_PxzQSLI=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.459751+00 2025-12-17 12:00:00.459756+00 30996 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:idbiIt7EjC9UU304Y-R8rWQqsTk=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.462008+00 2025-12-17 12:00:00.462013+00 30997 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iPlhry1FexH1WJqFwR7BKRg8QAg=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.464259+00 2025-12-17 12:00:00.464263+00 30998 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L8BTJk3rExtG4ea3s0sqARGDyzo=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.466278+00 2025-12-17 12:00:00.466282+00 30999 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H80FGDmhEXYj0ExIbPyUKNyLOlo=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.468255+00 2025-12-17 12:00:00.468261+00 31000 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uibBBZ3XNOayf7IUtA4AeD7U03w=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.470301+00 2025-12-17 12:00:00.470305+00 31001 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-s6neki03AQwpBtl0iz38SW0Aso=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.47205+00 2025-12-17 12:00:00.472055+00 31002 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OgHbrpxEm9CaIaaEYPRWDgCsLEY=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.474172+00 2025-12-17 12:00:00.474177+00 31003 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vNV3tKl1lvAKdqnhrKbVvaIWxaI=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.476214+00 2025-12-17 12:00:00.476218+00 31004 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mva0JMDt3na3bWICl8e5OuqMDCw=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.477959+00 2025-12-17 12:00:00.477963+00 31005 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oGw6WFGaDS9QKcvkLUZ2P5LyXzo=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.479885+00 2025-12-17 12:00:00.479889+00 31006 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IDg76h1tg5B5LS2VSjX6sq2IOLs=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.481857+00 2025-12-17 12:00:00.481863+00 31007 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I9s0mdsh38A4YezjfvcLdXXwUaM=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.483924+00 2025-12-17 12:00:00.483929+00 31008 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2fwt-OI9o_o1tlMicF2wTYv_A9k=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.48592+00 2025-12-17 12:00:00.485925+00 31009 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jk-dTiV6TdXCC47HEzPqoEmrm6U=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.487855+00 2025-12-17 12:00:00.48786+00 31010 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y0xlpGogR3YRkwJp6WszEMG-Bxw=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.489677+00 2025-12-17 12:00:00.489682+00 31011 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mo1Oazt2Wlql1oHxQqX9jE5_GJ0=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.491512+00 2025-12-17 12:00:00.491517+00 31012 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N1MDMabActdP49rnSx_YrGoYJqw=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.49327+00 2025-12-17 12:00:00.493275+00 31013 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M0oano3CTUU4CZFDKNcBv-9dzG4=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.495019+00 2025-12-17 12:00:00.495024+00 31014 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QcEX8gVLNZmLC0_Lg8egXDC6obY=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.497417+00 2025-12-17 12:00:00.497421+00 31015 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_UGHzouTIZ-3aDOvdTyKyvI1xRE=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.499177+00 2025-12-17 12:00:00.499182+00 31016 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H4ZKMDOBtF26reu1WFVB6f3z3aw=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.501111+00 2025-12-17 12:00:00.501115+00 31017 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k9X9HslYMRssJRsaxuX3Oz2UePk=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.50318+00 2025-12-17 12:00:00.503185+00 31018 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hMGWGdg3tWlP8Mxcjhjl_78cWqk=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.50531+00 2025-12-17 12:00:00.505315+00 31019 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aqiiRi5aKHmXPuLyuijep6ew_m8=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.507682+00 2025-12-17 12:00:00.507687+00 31020 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iDU_IbRpswgqPDWrXzTaRROSIMk=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.509584+00 2025-12-17 12:00:00.509588+00 31021 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZizNRwNYMPNIHSxB2dU5n4VURak=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.511335+00 2025-12-17 12:00:00.51134+00 31022 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T9Sr_Sif3nFSb8I2D4y3pD8BWQM=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.513295+00 2025-12-17 12:00:00.5133+00 31023 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v0qIHVlFXL2Ge4T23CqNraBjyvY=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.515282+00 2025-12-17 12:00:00.515286+00 31024 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2cm_vGmki2bIpnycRXuL5gjdCjs=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.517235+00 2025-12-17 12:00:00.51724+00 31025 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WSSZkOs2aQl5QY30e49qdxl3d3k=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.519178+00 2025-12-17 12:00:00.519182+00 31026 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Ya3LupJcHMvciEVaTd_BnpVhGA=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.521125+00 2025-12-17 12:00:00.521129+00 31027 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LP_eqcIk3SkNu-ZIIzWHKt9W40Q=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.523145+00 2025-12-17 12:00:00.52315+00 31028 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YRHQDoyRGJRIb84OfLAvQizJWKw=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.525294+00 2025-12-17 12:00:00.525298+00 31029 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AoCr2atKbHWE5ccNAs19KVGc4mQ=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.527297+00 2025-12-17 12:00:00.527302+00 31030 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gls73m5rrX50fku0UW0AfOHi2bo=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.529216+00 2025-12-17 12:00:00.529221+00 31031 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vv1czwpuYPiAZvdJoTbpVEXMpxY=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.531166+00 2025-12-17 12:00:00.53117+00 31032 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p2ujz07xzpW7QpArGZCo9ehLZyA=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.532893+00 2025-12-17 12:00:00.532898+00 31033 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZUzeUR_aX6VPO5gtjc9-rrIDYig=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.534773+00 2025-12-17 12:00:00.534778+00 31034 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8MaEmA1yGGqGTD8_2oqaiVQ1hEs=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.536535+00 2025-12-17 12:00:00.53654+00 31035 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oezknYLkJHbRXY-5i9_F2s75YS8=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.539185+00 2025-12-17 12:00:00.539194+00 31036 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fY5S7p40l_BccUR_3G6ZPSlgx_g=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.541758+00 2025-12-17 12:00:00.541764+00 31037 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C4cW913-Yhm6GKWhboZ7Y5FTwVw=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.54392+00 2025-12-17 12:00:00.543925+00 31038 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p-0aMWGJid_DySURT7AffPO-UtU=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.546135+00 2025-12-17 12:00:00.546141+00 31039 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-PoZIeagDEzmQeI9G7MLxlm975o=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.548083+00 2025-12-17 12:00:00.548088+00 31040 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YgAEbOYVmO_ajoJk5D_bvXqEYoc=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.549897+00 2025-12-17 12:00:00.549902+00 31041 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o0B7lpf1x2lXykWeD_EB3Npc8t8=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.55168+00 2025-12-17 12:00:00.551685+00 31042 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JWBDJFmOuUEzvsoVAHP0onb0_NQ=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.553683+00 2025-12-17 12:00:00.553688+00 31043 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h-ElTrJVUEWAeBTlOcdEDWx6pyw=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.555664+00 2025-12-17 12:00:00.555669+00 31044 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vj1mq8PPtV76EVbQPMIT0B6QWwk=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.557818+00 2025-12-17 12:00:00.557823+00 31045 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8a5HpmgVMIveR5vbn7FKqnkbz5E=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.559866+00 2025-12-17 12:00:00.55987+00 31046 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nr9Rlw8TmjNJGsbXHQnN5m5L32Y=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.561579+00 2025-12-17 12:00:00.561583+00 31047 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J9miY7Cs9IQv4267ulNXy1xcX_4=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.563512+00 2025-12-17 12:00:00.563516+00 31048 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P7HOa9S7YXI3ZYaZDpOXK_KHDIw=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.565494+00 2025-12-17 12:00:00.565499+00 31049 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qgZyQ0yloqBVE1cndW4bdrOZ_nA=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.567451+00 2025-12-17 12:00:00.567456+00 31050 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:niTVyeO5vRAIn_FamclHLAqs2yg=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.569176+00 2025-12-17 12:00:00.569181+00 31051 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4rf_sCrJpNa6awx6fR0KeItlyfg=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.570885+00 2025-12-17 12:00:00.57089+00 31052 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HKxmbCvj9WqA_xdF_MJb3VTUvfA=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.572757+00 2025-12-17 12:00:00.572767+00 31053 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GYPMxzmL2Ixzi54r9dxDyI-fLhg=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.574868+00 2025-12-17 12:00:00.574873+00 31054 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DjyYOlC0KlViZjS_8zx2Ej61dkM=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.576903+00 2025-12-17 12:00:00.576908+00 31055 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jYaVvG6Dd9QiJbMTnu9jx9Aw8Uo=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.578787+00 2025-12-17 12:00:00.578792+00 31056 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BHoY8m_SPufW1pnsznfCbacZeLQ=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.580734+00 2025-12-17 12:00:00.580738+00 31057 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0bBkKxKjV6waPzEjIVQZLtCDoSI=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.582667+00 2025-12-17 12:00:00.582671+00 31058 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ReKJ63ojCb_vhkT9RtVQfnTM6JQ=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.58457+00 2025-12-17 12:00:00.584574+00 31059 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dm4cjE6pSajKAfg0HwYvqt5ts4E=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.586266+00 2025-12-17 12:00:00.58627+00 31060 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:10nxG2_nap_dxiwBU50XwGIxEOw=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.588148+00 2025-12-17 12:00:00.588154+00 31061 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6by-6xZYu0b11zfnjqLrCwbBGpQ=", "createTime": "2024-08-15 14:51:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.590198+00 2025-12-17 12:00:00.590204+00 31062 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vHqISEP3YuDZRvUlelQPFdedQmY=", "createTime": "2024-08-15 14:51:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.592668+00 2025-12-17 12:00:00.592672+00 31063 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uineXsGcpIux0RK7thrYdsfOKQY=", "createTime": "2024-08-15 14:51:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.594717+00 2025-12-17 12:00:00.594721+00 31064 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qKq3U48A-EVyM7Y6lV_-62zx_fY=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.59675+00 2025-12-17 12:00:00.596755+00 31065 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yVTYkuKnKXnlIws5nPOPdzOUSHo=", "createTime": "2024-08-15 14:51:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.598729+00 2025-12-17 12:00:00.598733+00 31066 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N6IVbD4dLYa_a8T_X0PxJJsJNQw=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.60072+00 2025-12-17 12:00:00.600724+00 31067 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:02th42dFWhNxnZeO0T8fw3ZsXM8=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.602449+00 2025-12-17 12:00:00.602454+00 31068 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HbR_FuU7beAT82fBE4Dg6NSshqA=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.604189+00 2025-12-17 12:00:00.604193+00 31069 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=1766059199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6-N2El56pLcHrtwt5mX8-_55Zoo=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.990503+00 2025-12-17 12:00:00.990511+00 31070 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wNIYZc8j9rtG2SbjZcLO7yGeQWQ=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.993098+00 2025-12-17 12:00:00.993105+00 31071 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sy8rWL3jOmkWFIhW0NtvJ0gbL6Q=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.995459+00 2025-12-17 12:00:00.995464+00 31072 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LKfg_aRn_oCA2PCIGtoCioJ0wkc=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.997274+00 2025-12-17 12:00:00.997279+00 31073 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tHXMAJ5gsCUAmQgs6BiLRau4UeE=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:00.999068+00 2025-12-17 12:00:00.999072+00 31074 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xAN-OR17hHQD1cw72YyJ3rFww3M=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.001187+00 2025-12-17 12:00:01.001192+00 31075 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0aDPfmBYLUI_lpqhB6-iA-3unXo=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.011351+00 2025-12-17 12:00:01.011356+00 31080 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fTn6E5g467edCwYO6u7UR5iVRKs=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.003297+00 2025-12-17 12:00:01.003301+00 31076 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WDXrwAkIFF3BsrPQn_3LpY25RpU=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.005105+00 2025-12-17 12:00:01.005109+00 31077 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mstty1M4GfKgm1JDDIkfAcnoWpM=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.007339+00 2025-12-17 12:00:01.007345+00 31078 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NOnpdOBsGFcsJAqQpae_GGpgw3I=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.009443+00 2025-12-17 12:00:01.009448+00 31079 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mXGOWEiCxPikqgUjguVcuGWzMYI=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.013208+00 2025-12-17 12:00:01.013212+00 31081 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NVZKq_f4HouEeqSVcyvXxlCnZNk=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.015291+00 2025-12-17 12:00:01.015296+00 31082 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2_Tu_QUv3jpHOVt7ldvbL4CZZoo=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.017288+00 2025-12-17 12:00:01.017293+00 31083 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rqgmXGm9v79C9wIKZdIlrHYAgWs=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.01905+00 2025-12-17 12:00:01.019054+00 31084 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0q1sq9kUvA8SE8Ig9t0hKw4RlwY=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.021308+00 2025-12-17 12:00:01.021312+00 31085 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eQgh1iwMLnrPTGlG7sDOgMtGNz8=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.023143+00 2025-12-17 12:00:01.023149+00 31086 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jsQKgOKvweNyYYmDIYkQI0pkUHo=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.025701+00 2025-12-17 12:00:01.025708+00 31087 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7kRdWX2vVQGXpiTyMF39Yq_gQY=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.028199+00 2025-12-17 12:00:01.028205+00 31088 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DnGz_Vv33yHB6VsiEkztYcyjn-Q=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.038582+00 2025-12-17 12:00:01.038587+00 31093 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fj3iJdo0hXPeBUQZlyEqucxmum8=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.030344+00 2025-12-17 12:00:01.030349+00 31089 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f_z2MY1pb8yTzwp6AxCSb8BrpFQ=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.03235+00 2025-12-17 12:00:01.032354+00 31090 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AphXIMxSswwUhyFjP_c7VqlVODk=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.034288+00 2025-12-17 12:00:01.034293+00 31091 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TMd0B1Kzay7yCkvipnYCembzGc8=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.036436+00 2025-12-17 12:00:01.036441+00 31092 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4TTjfZNJCd6Vto8WkDQT87T1lFA=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.040704+00 2025-12-17 12:00:01.040711+00 31094 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:etByS44VfiNtlXpl9wjzw8k8ens=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.042812+00 2025-12-17 12:00:01.042817+00 31095 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pvl5wZFQMmciaygCAgiEsYSAtuw=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.044783+00 2025-12-17 12:00:01.044789+00 31096 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VvMZ9ZLtJdNxRRrcGVjUdWLaqQo=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.046988+00 2025-12-17 12:00:01.046993+00 31097 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NcXZGnOvs_mld6OmvzE4rhvCftg=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.048932+00 2025-12-17 12:00:01.048937+00 31098 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9TGQeO65YHV23h1M49nEYUPEdL0=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.050874+00 2025-12-17 12:00:01.050879+00 31099 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sd0Rcu6mJa3SaAv0si86Xtl3Ecw=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.052811+00 2025-12-17 12:00:01.052816+00 31100 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EgmbU-zm03L3B-s7nI0HTrSef2s=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.054729+00 2025-12-17 12:00:01.054734+00 31101 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yliFEoK1-RmtpJvlf-wi6zQ1J_o=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.057026+00 2025-12-17 12:00:01.057032+00 31102 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e2Ne3qaL9C8uohZZxtIJBzjmAH4=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.059199+00 2025-12-17 12:00:01.059204+00 31103 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T8pFQZa6F56b20MjBQkuqYHhmD0=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.061305+00 2025-12-17 12:00:01.06131+00 31104 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0w3s-KEQkS2mMVDBgPSQec-iE8o=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.063284+00 2025-12-17 12:00:01.063289+00 31105 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VTAlFX57SYju1jS9UeGzhOZDuX8=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.065253+00 2025-12-17 12:00:01.065257+00 31106 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SEWPGxaie4HGuvSO_XWyznBv36o=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.06708+00 2025-12-17 12:00:01.067085+00 31107 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c57Mp8AsJ4BOBRfPSXvmdxqK2dw=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.069026+00 2025-12-17 12:00:01.069031+00 31108 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TlCWa7TfZ3XPlEZgVk0YW_t78ic=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.071314+00 2025-12-17 12:00:01.071319+00 31109 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hdcUx7X7w5KtI-FbebkaQ9rFFQU=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.073765+00 2025-12-17 12:00:01.07377+00 31110 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xxAsOwSC4SKZ9YMSvgm3iwbtyrA=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.076249+00 2025-12-17 12:00:01.076255+00 31111 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GU9cAp_Z3f1NX7sCl451CKnwdP0=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.078607+00 2025-12-17 12:00:01.078612+00 31112 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EulTt1FXGxKI9EWWa0D_DBbPhCw=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.0808+00 2025-12-17 12:00:01.080805+00 31113 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1PKdT-aM2ZnyoeA1RoNcclYhrks=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.082926+00 2025-12-17 12:00:01.082931+00 31114 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SsY1OqyEvQfVFw3u_XhyNIZA5U4=", "createTime": "2024-08-15 14:52:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.084912+00 2025-12-17 12:00:01.084917+00 31115 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:82d24WKgu1Vb3I0H5WzVb23AWEA=", "createTime": "2024-08-15 14:52:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.086855+00 2025-12-17 12:00:01.08686+00 31116 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9R_CLS53FlCzZ0t-htYyQnHcAv0=", "createTime": "2024-08-15 14:52:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.089037+00 2025-12-17 12:00:01.089042+00 31117 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UJPi7_wodfPSj6rwKiPxylbi8Nk=", "createTime": "2024-08-15 14:52:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.091367+00 2025-12-17 12:00:01.091372+00 31118 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nWrUfvFwUuDOmLVqpx6xHNSd3B8=", "createTime": "2024-08-15 14:52:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.094009+00 2025-12-17 12:00:01.094015+00 31119 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q8iQjGAoKyZIuLIWPmFrPluBBaI=", "createTime": "2024-08-15 14:52:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.096482+00 2025-12-17 12:00:01.096488+00 31120 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8KT1lfn0Q6sY5xrJ7lh-35K3t20=", "createTime": "2024-08-15 14:52:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.098954+00 2025-12-17 12:00:01.098959+00 31121 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mNrIw9lCGaLeSki26kVHOQIVnh8=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.101353+00 2025-12-17 12:00:01.101359+00 31122 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VHduvZvO_z0iDFqHiWF4cHYxfCQ=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.103685+00 2025-12-17 12:00:01.10369+00 31123 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PshuuqN3PlFKrzHLczRC37UPmxg=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.106122+00 2025-12-17 12:00:01.106128+00 31124 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hkW0xgm4u9vz15a5kk_IWH56eds=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.108529+00 2025-12-17 12:00:01.108535+00 31125 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_1OrNtr8YVnOW5i0-sa9cJ-ZHRg=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.110893+00 2025-12-17 12:00:01.110898+00 31126 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5tWDs7WKTArSty_Jd47v48puo6o=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.113092+00 2025-12-17 12:00:01.113097+00 31127 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZiZBdl420C4TIoeosTuERYnyII4=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.115048+00 2025-12-17 12:00:01.115053+00 31128 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dAWI8DRMD8Pg0z8d6IrLe-uXyrU=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.117221+00 2025-12-17 12:00:01.117226+00 31129 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vNSM3G8YqQuq1HVg2d4LactY860=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.119166+00 2025-12-17 12:00:01.119171+00 31130 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NsuyHiI8uPUHCCzs1p_rhVnvF1U=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.121113+00 2025-12-17 12:00:01.121119+00 31131 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zRINxHStT4fBaLEVwnVXT1JjYu4=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.123367+00 2025-12-17 12:00:01.123373+00 31132 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T064g58k6dOY7V1QvcTlnRJwxhM=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.125482+00 2025-12-17 12:00:01.125487+00 31133 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k3LVIXHbWIPJo9Hz6OHBYi0Kvp0=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.127891+00 2025-12-17 12:00:01.127898+00 31134 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x2HO_3jxTJzEhPUx6g0-NqMd7dg=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.130346+00 2025-12-17 12:00:01.130351+00 31135 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wz2e9WLFHc0_dZrGdGZc0j4tbho=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.132416+00 2025-12-17 12:00:01.132421+00 31136 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ffi4LffaOhgfHaOMYK3xSy43EPg=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.134193+00 2025-12-17 12:00:01.134197+00 31137 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:APlFmKZFJOFb-bnBxZxHt9rd4eo=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.135952+00 2025-12-17 12:00:01.135957+00 31138 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T1MMCpNwNtfvk01TDP5-a73T96A=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.137907+00 2025-12-17 12:00:01.137911+00 31139 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WEqYV9n1vmJxWqYLw-IZNtLmX9U=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.139979+00 2025-12-17 12:00:01.139984+00 31140 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5KsNIaERw0-PTIBO9_soRul1QQI=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.142113+00 2025-12-17 12:00:01.142118+00 31141 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:31zQwzHPBtZnu1IMbB3gq342YT8=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.14416+00 2025-12-17 12:00:01.144165+00 31142 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aBgEuGGtaMA4wy4FHmBa5XP1tnA=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.146137+00 2025-12-17 12:00:01.146141+00 31143 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TLIeTELw_aOHt97X8tBH7Vu5zVU=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.148102+00 2025-12-17 12:00:01.148107+00 31144 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TSh2m9U_VbKlkPASRHbbninCiBA=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.150082+00 2025-12-17 12:00:01.150086+00 31145 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aYfDqTRZfmv04Qimluk6gNfXalE=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.152063+00 2025-12-17 12:00:01.152067+00 31146 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jsm8srTcs2Is7G57wcrSEWXsTZo=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.154038+00 2025-12-17 12:00:01.154042+00 31147 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:12yP5IYayKV-3hS4harLCHRk1Qs=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.156051+00 2025-12-17 12:00:01.156057+00 31148 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZHjAwiPHWu7xdE8SiVPN6o4peuU=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.15849+00 2025-12-17 12:00:01.158495+00 31149 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KoOft2FHKQKtE_md6aXtGWQasTg=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.160641+00 2025-12-17 12:00:01.160646+00 31150 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O4TIKnjjmHVAo041VGOTdC7o3vQ=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.162404+00 2025-12-17 12:00:01.162408+00 31151 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PufBeA28sfVBkrXOecV5pYDXhUc=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.164254+00 2025-12-17 12:00:01.164259+00 31152 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HHi6ljwBFj2XHnSPLAjgcljztA0=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.166058+00 2025-12-17 12:00:01.166063+00 31153 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pvqd9bhG8eyUEssuT7TgeQ19Mtw=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.168096+00 2025-12-17 12:00:01.168101+00 31154 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t6np2cQTryue9WxPd0VnX3ut3YI=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.169963+00 2025-12-17 12:00:01.169968+00 31155 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HS07dAxVFIOgjuZKwdQfLmRZkbc=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.171699+00 2025-12-17 12:00:01.171704+00 31156 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jIm338sCYY2Z_7UNUED8yUYYTF0=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.174091+00 2025-12-17 12:00:01.174097+00 31157 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vMBiBfuqp_rRe218UEzR8JcHqs8=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.176242+00 2025-12-17 12:00:01.176246+00 31158 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TaQLWt1SOkEC2V6OFzXrss0uHtI=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.178359+00 2025-12-17 12:00:01.178364+00 31159 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mYZu94XegB3GkqhMbzmxspojO8w=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.180748+00 2025-12-17 12:00:01.180753+00 31160 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6jdeuC1dWl82kvb1eudchHYj1Iw=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.182779+00 2025-12-17 12:00:01.182784+00 31161 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FfToefHsUH8ocIzckCT7R_spFwE=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.18453+00 2025-12-17 12:00:01.184535+00 31162 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mDLlrh0RTjvK0dOEmgzVvhXbRw4=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.18629+00 2025-12-17 12:00:01.186295+00 31163 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Boy2JilVtmZFSqvj9kgxh7EPdio=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.188269+00 2025-12-17 12:00:01.188274+00 31164 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NVdWhnK2JIKvTDA_pz0apKsV3Vs=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.19074+00 2025-12-17 12:00:01.190746+00 31165 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DaBAVZhaA0Yjhx9j7mtXjKAHzmM=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.192926+00 2025-12-17 12:00:01.192931+00 31166 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:scRGEwD5OSdYJBwHIbcoyfGxccY=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.194703+00 2025-12-17 12:00:01.194707+00 31167 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P6x14aLTyMCSK014dGYTxqp7r2w=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.196442+00 2025-12-17 12:00:01.196447+00 31168 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uzqUqXnC0iFlO3GQb5-O-h9uSGY=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:00:01.198408+00 2025-12-17 12:00:01.198412+00 31169 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=1766059200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PuPc2WpdmmGosYmiEHF3q7GwDrs=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.39936+00 2025-12-17 12:10:00.399368+00 31170 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gQLIzL9kCs-ArIm38ZAy8stIOgE=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.402501+00 2025-12-17 12:10:00.402507+00 31171 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XXCpnRGCLcEkOaaK8EVhPAYexDo=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.404851+00 2025-12-17 12:10:00.404858+00 31172 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4_67jtsToHuPVw4pU5erl6AKsgE=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.406971+00 2025-12-17 12:10:00.406977+00 31173 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lo1RO0wT4WufXvL-7JVSMgq9Gsc=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.408924+00 2025-12-17 12:10:00.408929+00 31174 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xwmLQb9ltTfXUYPsxwJgS9PZRsM=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.410811+00 2025-12-17 12:10:00.410816+00 31175 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:__JYVXSP8N7raWDYFXPyezm53q4=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.412845+00 2025-12-17 12:10:00.41285+00 31176 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Sj15OozZYlSLNC6xWn8McaR4rU=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.414614+00 2025-12-17 12:10:00.414618+00 31177 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-f0GUm97UPhPG18dF9Sc-BRks3Q=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.416574+00 2025-12-17 12:10:00.416579+00 31178 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LeAdHyhCtHHbNs7eI6VSdRLMA3A=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.418641+00 2025-12-17 12:10:00.418648+00 31179 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:go07VY2qYj-WbiG1lQkkKZ_zvoA=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.420837+00 2025-12-17 12:10:00.420842+00 31180 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SP1EuRsQcEPQJ1cSKiFt-V0l8jw=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.422886+00 2025-12-17 12:10:00.42289+00 31181 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SLUnHLJNOPZM-0QdzaZrtwD7gw4=", "createTime": "2024-08-15 14:52:07"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.424916+00 2025-12-17 12:10:00.424922+00 31182 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8YySVqW7USxmpkCVjXqYRKJojC0=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.427041+00 2025-12-17 12:10:00.427046+00 31183 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CIvAUZ5D9Lx687CFoyWEEel_Yxk=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.429053+00 2025-12-17 12:10:00.429058+00 31184 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1YNJqFAuU8yBNcTSi_k9kQlkVVY=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.431051+00 2025-12-17 12:10:00.431055+00 31185 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w27r7X6_0rza-RtEVA8COoGAQYw=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.432919+00 2025-12-17 12:10:00.432924+00 31186 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZyLBn27Xn69ThmH21vgN5aStEbc=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.434981+00 2025-12-17 12:10:00.434985+00 31187 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B_eOpP4G9KSZrbHpUUjOkwwmO5k=", "createTime": "2024-08-15 14:52:07"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.436881+00 2025-12-17 12:10:00.436885+00 31188 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Q_mDKNAbQM1ulAq08gqkS-ptIM=", "createTime": "2024-08-15 14:52:07"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.438914+00 2025-12-17 12:10:00.438918+00 31189 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BszzQD2Yc-WGav-wkyhbgmN3xLk=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.440839+00 2025-12-17 12:10:00.440844+00 31190 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_mfXN27LxydtnhGryBXRx3F1AwQ=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.442857+00 2025-12-17 12:10:00.442861+00 31191 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8efkOaj6uqTUt5B8evjkhsj5itY=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.460881+00 2025-12-17 12:10:00.460885+00 31200 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:881p2mRQI_wEWnKgtQYsRCap6m0=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.444896+00 2025-12-17 12:10:00.4449+00 31192 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tlMFn9rKjfJJPohm5UazE4ouyMM=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.44691+00 2025-12-17 12:10:00.446915+00 31193 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8i3FKRD9bwFA_U8X746ugS--HH0=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.448886+00 2025-12-17 12:10:00.448891+00 31194 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PTJ8SNebpxFeBlJhfj9r4e2nTPk=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.450888+00 2025-12-17 12:10:00.450893+00 31195 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kuLl16mmSxDbs16uHA5MkSjvxo4=", "createTime": "2024-08-15 14:52:08"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.452939+00 2025-12-17 12:10:00.452943+00 31196 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F5ywwAlDQm-UounPWMovDQZtKag=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.45496+00 2025-12-17 12:10:00.454964+00 31197 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5vLnelW_GziR84WFjAXhfmiY7d0=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.456972+00 2025-12-17 12:10:00.456976+00 31198 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R9hfdpCI9oSnjL9eixckRIMZnWo=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.458969+00 2025-12-17 12:10:00.458973+00 31199 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tlX7vjSw_21QvvkmOujvXhZ2Hcs=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.462852+00 2025-12-17 12:10:00.462856+00 31201 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-dT_CNDm5573R3ToBwfQjemroo=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.464955+00 2025-12-17 12:10:00.464961+00 31202 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4SguqMVZ6kQMqTmjzvD60J-LIuE=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.467026+00 2025-12-17 12:10:00.467031+00 31203 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4zvVc5blN0UtvO-3pu0O5uu0fzQ=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.469096+00 2025-12-17 12:10:00.469101+00 31204 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cI-owB44eucrpF6OfRziBUXw8Is=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.471349+00 2025-12-17 12:10:00.471353+00 31205 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I_WoL55b4-46CIiak1aJEVDrJRA=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.473291+00 2025-12-17 12:10:00.473296+00 31206 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1mMf3xXvtcu2w5TglyAxp27THEE=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.475393+00 2025-12-17 12:10:00.475398+00 31207 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7OhpGAKpuRt_yWCO2M-Bn_v8SII=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.477173+00 2025-12-17 12:10:00.477177+00 31208 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nv0vNOIGl7LePMClE4OvJ4ILuQs=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.479185+00 2025-12-17 12:10:00.47919+00 31209 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:atvFSu4P79d_zbKt3O2k4NbJ8qM=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.481344+00 2025-12-17 12:10:00.481351+00 31210 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vnwsbAU1wk1It5TxsznSkiOwkaI=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.48341+00 2025-12-17 12:10:00.483415+00 31211 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mwBITMT1G4_8EFkpSFRi-TOxDLY=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.48549+00 2025-12-17 12:10:00.485495+00 31212 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zJZGMOn16qXbV-1npxvzJA1880o=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.487306+00 2025-12-17 12:10:00.48731+00 31213 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zJm0AioUxlLNIZjfv6t-3NDxeQ0=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.489293+00 2025-12-17 12:10:00.489297+00 31214 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:41QTioJK1oYkju3lbiy8ZLMZOc4=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.491267+00 2025-12-17 12:10:00.491271+00 31215 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KseXs2TNAHzBGx6L03LrhCL87fI=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.493246+00 2025-12-17 12:10:00.493251+00 31216 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p9ElH6eJuCM4ow4mLvbT9FRry_M=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.495331+00 2025-12-17 12:10:00.495335+00 31217 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-GGspInTnhplr2lxYLHXUm_bMlI=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.497341+00 2025-12-17 12:10:00.497345+00 31218 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:62TL0qO9cSa7VQFbrE7-92xgXo4=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.499452+00 2025-12-17 12:10:00.499457+00 31219 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ly8EJSIPAczoa2JyHofBnhOskh0=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.501528+00 2025-12-17 12:10:00.501532+00 31220 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qIkXGT2jdR7y3kj67659RCcN5eE=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.503353+00 2025-12-17 12:10:00.503358+00 31221 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AM-u8FURDqtzhNVshyhZU5LkftM=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.505329+00 2025-12-17 12:10:00.505334+00 31222 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8YjqYeUfDHiKQMNyNJjoE4w95Gw=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.507331+00 2025-12-17 12:10:00.507335+00 31223 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:etRw5gjMzZ10kZFNfX_Ot_C0S4Y=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.509314+00 2025-12-17 12:10:00.509318+00 31224 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9beGJkhcSpZtKUxTJTXi6tlTuDY=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.51129+00 2025-12-17 12:10:00.511294+00 31225 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hRUyNlfz2tzdLZuV2JpjAU7uxRM=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.51325+00 2025-12-17 12:10:00.513254+00 31226 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SqTzNIVI8pVL_kUqMpkXyM8Y6sg=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.515257+00 2025-12-17 12:10:00.515261+00 31227 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7omCB8lG6rzGNbtLiyxPL0RveBY=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.517321+00 2025-12-17 12:10:00.517326+00 31228 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M2CZvpjkGUBWfZ9o6iWNH34-_g4=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.519396+00 2025-12-17 12:10:00.5194+00 31229 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sZPyMl-DsPwKiWYRn45apwRHqHE=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.521585+00 2025-12-17 12:10:00.52159+00 31230 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bHTWxWWj-BU37F4VM6vHLEF6Ifg=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.523553+00 2025-12-17 12:10:00.523557+00 31231 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-EmwN0TYtVYxIPZaWnkku3EjGng=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.525499+00 2025-12-17 12:10:00.525504+00 31232 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1fCMoTR_IU2E762ll3Tr9NDTbjw=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.527465+00 2025-12-17 12:10:00.52747+00 31233 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZbPFpAVNn9UXQMrK7xRUR-XxQo=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.529458+00 2025-12-17 12:10:00.529462+00 31234 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QG8lnWVOwBxkS6z5Vk_D8OoD0QU=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.531416+00 2025-12-17 12:10:00.531421+00 31235 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PY2zdm-H22qoos9oEWuoN8Qodb8=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.534554+00 2025-12-17 12:10:00.534562+00 31236 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HmIhB4NU2Uw_cye6zMr8g4rMngA=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.537258+00 2025-12-17 12:10:00.537264+00 31237 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-wBhk9B1dG9kAzoJ-mB8W0G66TM=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.539762+00 2025-12-17 12:10:00.53977+00 31238 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NzzfeDFzdDteKgy--an3i50qupk=", "createTime": "2024-08-15 14:52:13"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.542891+00 2025-12-17 12:10:00.542899+00 31239 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SKcGP98pu6-Kv-0h0a7tKge3tgk=", "createTime": "2024-08-15 14:52:13"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.545488+00 2025-12-17 12:10:00.545493+00 31240 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U-WhG5vIqRypvdNfNNtXEwjAAvE=", "createTime": "2024-08-15 14:52:14"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.547785+00 2025-12-17 12:10:00.54779+00 31241 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tTAS6WJYDN_YSclHLBvQCNK9Oy0=", "createTime": "2024-08-15 14:52:14"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.54991+00 2025-12-17 12:10:00.549915+00 31242 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rs4aHKtjfqpqyxjN731zFNhFi3A=", "createTime": "2024-08-15 14:52:14"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.552183+00 2025-12-17 12:10:00.552188+00 31243 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gqexFaMIZZdaL4ON3yNK6vsXm1w=", "createTime": "2024-08-15 14:52:14"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.554395+00 2025-12-17 12:10:00.554399+00 31244 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QNdlShfhBw-7OKPO-e0ReO8rw4U=", "createTime": "2024-08-15 14:52:14"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.55653+00 2025-12-17 12:10:00.556534+00 31245 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lmR65qODQiY2oXiT5p3ASFZr_Is=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.559266+00 2025-12-17 12:10:00.559271+00 31246 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sl7eQc2q5sXG_u7UUC6dOuMV7Xc=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.561324+00 2025-12-17 12:10:00.561328+00 31247 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6dfBDnlT5jI1fwNBKHvs5twPkHg=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.563099+00 2025-12-17 12:10:00.563103+00 31248 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4810kspB6JvPJYErRWclA6bgk0o=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.564851+00 2025-12-17 12:10:00.564856+00 31249 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TEAgWB_psKD1CVhh2pH-45Ok96U=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.566615+00 2025-12-17 12:10:00.566619+00 31250 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zC7W4a7ki6vjDAlU4iN4bSFD2S4=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.568643+00 2025-12-17 12:10:00.568665+00 31251 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3CimNB2AeqaJgZ7pmQEQ8lIaHQo=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.570697+00 2025-12-17 12:10:00.570702+00 31252 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:31s4mkxZ0olgV8XMz4DJSIDGtCo=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.572659+00 2025-12-17 12:10:00.572664+00 31253 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fe0GXA5oRgxcWdfxXQ280DFL_J8=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.574613+00 2025-12-17 12:10:00.574618+00 31254 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1hzdZFZyfw_rqBnc8D2NnY_ASWQ=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.576637+00 2025-12-17 12:10:00.576642+00 31255 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A_PSGMeD4_5K5Jqu81mspmNe68c=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.57862+00 2025-12-17 12:10:00.578625+00 31256 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vChFA2iDhb9LZVK2CtwmmRP6Tr8=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.580665+00 2025-12-17 12:10:00.580669+00 31257 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qO_jx2hsu3qj1DGdbzes6nRV8pY=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.582707+00 2025-12-17 12:10:00.582712+00 31258 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CoK4sn8AUC0CkHqBS0XmGO5dOwo=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.584769+00 2025-12-17 12:10:00.584773+00 31259 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y25_hUEX_vqxDDGYSjmmAFsmJ2U=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.586785+00 2025-12-17 12:10:00.58679+00 31260 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:brYMRR1QBJL9XjsupkfW2y_dG0E=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.588809+00 2025-12-17 12:10:00.588814+00 31261 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qgUd25XopqGoUqipwT_f-L9MejY=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.590772+00 2025-12-17 12:10:00.590777+00 31262 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bs2-CDIsq8TZ4rEGO-9dE2eMRgw=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.592892+00 2025-12-17 12:10:00.592899+00 31263 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oxWk8W6Iaks5PxRtqW6bSwigjt8=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.595205+00 2025-12-17 12:10:00.595212+00 31264 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WSF-wK1GklQJBVucXwXjAJVjqUQ=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.597627+00 2025-12-17 12:10:00.597634+00 31265 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZjKohMydfWhP_WUilj-1poaV5Rg=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.599939+00 2025-12-17 12:10:00.599946+00 31266 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W36mCuedx71qWx_R3W7mAMoP6WE=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.602294+00 2025-12-17 12:10:00.602302+00 31267 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9KvAhnXM-16Yei6hokIrFhC9MP0=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.604632+00 2025-12-17 12:10:00.604639+00 31268 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LmAHy1SjIHNbH1X1f5rs-fC7Mhk=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.606693+00 2025-12-17 12:10:00.6067+00 31269 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=1766059799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t7yZjUToYzPoqrQhetNJEkIBUvE=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.964131+00 2025-12-17 12:10:00.964139+00 31270 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gp-4LIUgj8WP13s6mNA5-C1O8Ts=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.966723+00 2025-12-17 12:10:00.96673+00 31271 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XuUm7faDgXy2QS8A91L6pFp-Hhw=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.96877+00 2025-12-17 12:10:00.968776+00 31272 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fgOFdILSpbPSUoCtxaM1iYWCE0k=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.970998+00 2025-12-17 12:10:00.971004+00 31273 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UDLpCMdT74yNAz4VapedI9YjDGM=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.972841+00 2025-12-17 12:10:00.972845+00 31274 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:os7jS9YQmICwF1FrBzuINeCzv-E=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.974594+00 2025-12-17 12:10:00.974598+00 31275 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sCRkqcfPsSRFzrX632FXqCV99xs=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.976582+00 2025-12-17 12:10:00.976586+00 31276 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vYPdM0E_iGu06nuyY7sjgU-R-tI=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.978552+00 2025-12-17 12:10:00.978557+00 31277 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yq1N5BuszieAg64VDuJW-tY7AlQ=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.980637+00 2025-12-17 12:10:00.980641+00 31278 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tHJNrOm4f4ZGaCjTJohiac7-mTI=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.982646+00 2025-12-17 12:10:00.982651+00 31279 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WD3Eb5BmBYoGE_juF2GRQeO13DQ=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.984653+00 2025-12-17 12:10:00.984657+00 31280 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gNfpVyoXJJAucY8wJdgBSwgtPM0=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.986672+00 2025-12-17 12:10:00.986677+00 31281 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RrpZ2wVpT-LWrAXEPIL6Bt_T6B8=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.988787+00 2025-12-17 12:10:00.988791+00 31282 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8duH_R0FVKPAElYVQ5sI4n8apTk=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.990833+00 2025-12-17 12:10:00.990837+00 31283 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gmSeEmMfxyZWo-mOJjUeo1jepBY=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.992814+00 2025-12-17 12:10:00.992819+00 31284 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b9QF4eDcU2P4WS9B8TJbxK8X48E=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.994804+00 2025-12-17 12:10:00.994808+00 31285 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YDZkHPuwokyMExogSkfd8_T1jsU=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.996769+00 2025-12-17 12:10:00.996774+00 31286 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kRu5KW2pUllTPZb_KyAGF1L_mKA=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:00.99877+00 2025-12-17 12:10:00.998774+00 31287 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DM_QhkmMUPNMBWgDRr7KeQinBQw=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.001189+00 2025-12-17 12:10:01.001194+00 31288 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zSnfVBEXWpoOGIqYpdikgKQ9nvU=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.003647+00 2025-12-17 12:10:01.003652+00 31289 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VLZfI8w7eKNAooMKdTdVfGaCruc=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.006202+00 2025-12-17 12:10:01.006207+00 31290 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Ju5hMYLg7ivDn9pJnYlyab2Jlk=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.008234+00 2025-12-17 12:10:01.008238+00 31291 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dwEnVBiSkbVI2XNaevMIbK7nxyU=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.010252+00 2025-12-17 12:10:01.010256+00 31292 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GxL396jczCoNCk5n0kksGqMPiVQ=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.012271+00 2025-12-17 12:10:01.012276+00 31293 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AlxF4knwdx8cUZfNCZw3B6itLik=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.014375+00 2025-12-17 12:10:01.014379+00 31294 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CCr_URNtOisFm1e8rjYlZM5bsJY=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.01653+00 2025-12-17 12:10:01.016534+00 31295 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6TPda49HkLXpSTWrAe7gs1V09DM=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.018332+00 2025-12-17 12:10:01.018337+00 31296 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SeVc-gKijxqpaQivuHH-YYy-Dp8=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.020148+00 2025-12-17 12:10:01.020153+00 31297 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RkbZcVsGix3TaWvbjh1pVOY2I-g=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.021946+00 2025-12-17 12:10:01.02195+00 31298 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S_5SLFTz-ly0bbKGfbhvvmVD-uI=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.023925+00 2025-12-17 12:10:01.023929+00 31299 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Lk8zPOdrDmSl0V2oxUOs0yw1Fc=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.026039+00 2025-12-17 12:10:01.026045+00 31300 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iunnTkUpBp9nPdqVaUa3RcDVPvc=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.028365+00 2025-12-17 12:10:01.02837+00 31301 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8tQWUCbfv0AbpnA6aqzPXs_8ktk=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.030261+00 2025-12-17 12:10:01.030266+00 31302 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BvCAfwCSAY-dwUyN_tmodRHN19c=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.032165+00 2025-12-17 12:10:01.032171+00 31303 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uMVv6-01rLtR4Da1ERbPMQJfy2A=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.034198+00 2025-12-17 12:10:01.034202+00 31304 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FgOSMCTIFOiGXEOtrpykqRx5TgI=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.036296+00 2025-12-17 12:10:01.036302+00 31305 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xkrjMjY6dPKNZY-I9ovwhbHjbsQ=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.039015+00 2025-12-17 12:10:01.03902+00 31306 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ydZnx_lE_SsFxYJS19ZV-0bj_vA=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.041125+00 2025-12-17 12:10:01.04113+00 31307 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PgyQo-U3TsCmiBAaxCgxIFHiBLk=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.043134+00 2025-12-17 12:10:01.043138+00 31308 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g3rzCZEx5sCXgLbcx8q4O6JonK8=", "createTime": "2024-08-15 14:52:21"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.089581+00 2025-12-17 12:10:01.089588+00 31330 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IYK8KYtWXpA8DcUXURoTRv0OV3U=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.045174+00 2025-12-17 12:10:01.045179+00 31309 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KyDnxgMBYHg2BYcQaQNDFj2D9YE=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.047649+00 2025-12-17 12:10:01.047654+00 31310 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IzgW91E2T0hTOloFFCpyNND0190=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.049886+00 2025-12-17 12:10:01.049891+00 31311 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uCSV4OV4XMAGcMlhuLzkgvS-lZ4=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.051711+00 2025-12-17 12:10:01.051716+00 31312 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4agideYP9tX2-q5OHdDjKNhPNxA=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.053594+00 2025-12-17 12:10:01.0536+00 31313 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mXZKsRsvhOc-lVHxyWrJhQvE1hI=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.055529+00 2025-12-17 12:10:01.055534+00 31314 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1mcdQwk5MUJHvL4BI8FX-hbsyS0=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.057348+00 2025-12-17 12:10:01.057353+00 31315 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s6HMb3fST-a3ilNWHUi5Q94qcqw=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.059358+00 2025-12-17 12:10:01.059363+00 31316 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y6eD6QVlgLG0VJCg_7qbNIp8XDQ=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.061276+00 2025-12-17 12:10:01.061281+00 31317 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1oTk0M6pNBJiL7DhyZRDuymhwrI=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.063335+00 2025-12-17 12:10:01.06334+00 31318 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zlclWFmzTcR4XU9illn2G6cFePs=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.065842+00 2025-12-17 12:10:01.06585+00 31319 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t6_y-zGKGk-buA1GjG44bW0A_-o=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.068204+00 2025-12-17 12:10:01.068213+00 31320 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oXCC7msqPWgc4LgInryONyvg_6A=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.070675+00 2025-12-17 12:10:01.070681+00 31321 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nDdO_eTxmB8hbuTl2S_FEzLFdAI=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.072868+00 2025-12-17 12:10:01.072873+00 31322 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QQ90nRW5PoYsXiSE5fs_n-LijC0=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.074658+00 2025-12-17 12:10:01.074662+00 31323 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Snaz81cYc04AspOZAMArVHbMEHQ=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.076411+00 2025-12-17 12:10:01.076415+00 31324 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EpO0v9Qpo1HDi4uWHIct1R8457U=", "createTime": "2024-08-15 14:52:25"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.078371+00 2025-12-17 12:10:01.078376+00 31325 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PA0bxD2DYKpELy66GznBcHiTImU=", "createTime": "2024-08-15 14:52:25"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.080347+00 2025-12-17 12:10:01.080351+00 31326 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jy8lv_yLngIgi1njYTa5ujR3800=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.082581+00 2025-12-17 12:10:01.082586+00 31327 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xuY6lh3024Q_M4kMJHKVS6Sz7Qk=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.087062+00 2025-12-17 12:10:01.087068+00 31329 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dZxD2LlGM2IVbdY6sVAw8oSHX_4=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.091844+00 2025-12-17 12:10:01.091849+00 31331 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k33aZ8VZQWj7kIBNl6o04WXpuoQ=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.084662+00 2025-12-17 12:10:01.084667+00 31328 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GeWfEqiGdTeuYz3Ptf5SuDWuaho=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.095817+00 2025-12-17 12:10:01.095823+00 31332 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TSJpOJ4mASebRP07PKuaLnaji5E=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.097589+00 2025-12-17 12:10:01.097594+00 31333 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lmdCcu9DxqfgkrComkDJBsbLXkQ=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.099777+00 2025-12-17 12:10:01.099781+00 31334 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Q3X7KE5OrQHS1GNYytwOGk-sWc=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.101782+00 2025-12-17 12:10:01.101787+00 31335 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PqNipNk6R5GiyTNFbXAIFLXVQ4k=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.103644+00 2025-12-17 12:10:01.103649+00 31336 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jIZANiPPPnpWxYTjD0tRcC6RC2A=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.105856+00 2025-12-17 12:10:01.105861+00 31337 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rXWGI9_vLq1onmmbay3L5-kY56E=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.107617+00 2025-12-17 12:10:01.107621+00 31338 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gDCg84w5D1esFCn4vidakH-PC2Y=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.109608+00 2025-12-17 12:10:01.109612+00 31339 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Csu73mxptSi787BwmVs4lPCsrHE=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.111585+00 2025-12-17 12:10:01.111589+00 31340 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GOc7jKbHpIcDfpAwOFdDM7f1Nxg=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.113549+00 2025-12-17 12:10:01.113555+00 31341 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4YaBWEbe8RQpZb65NbPR8-VKQAg=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.115628+00 2025-12-17 12:10:01.115633+00 31342 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kcAdHEsJBo7y5LXRhknKwJk4iEA=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.11764+00 2025-12-17 12:10:01.117644+00 31343 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VyvtdzoFhJDtZnESnxJml08KBls=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.119707+00 2025-12-17 12:10:01.119713+00 31344 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dikVI25cMrkhPK7FzeZy6p9lydw=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.121745+00 2025-12-17 12:10:01.121751+00 31345 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FMWHzhGQpMq-03zJRxVYYBqpt1s=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.123866+00 2025-12-17 12:10:01.123871+00 31346 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IqdJFypa2frz1EH9f1sf1p67AZ8=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.125721+00 2025-12-17 12:10:01.125725+00 31347 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y6Eu4tPBMAsxbOxB3YPltrNTM6s=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.127734+00 2025-12-17 12:10:01.127739+00 31348 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KXsPXdT_c37jCxPoOv42Ff_nFNk=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.129823+00 2025-12-17 12:10:01.129828+00 31349 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0SInDl1MQ6hRlFn5-Vxu5226gY0=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.15155+00 2025-12-17 12:10:01.151556+00 31359 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:phZWUnjVoM8eKopQcRt06kABEKY=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.131949+00 2025-12-17 12:10:01.131954+00 31350 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eio1XxE_pkh9lYPFGYiPpLQVw38=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.133968+00 2025-12-17 12:10:01.133972+00 31351 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KDOjKamRPhjjlrvlAx2uGC6lOjg=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.135778+00 2025-12-17 12:10:01.135782+00 31352 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FqOMLvTXDHplPLwT6GCjLc2cFts=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.138155+00 2025-12-17 12:10:01.13816+00 31353 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lxoLzlsqXX0VVXG4czDOe_OhxeU=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.140303+00 2025-12-17 12:10:01.140308+00 31354 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QxpMWeZ13xX4AICLVzmoNSgEJ3E=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.142131+00 2025-12-17 12:10:01.142136+00 31355 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GNnM1bIvPehdrF_qNj-w1RUwTB0=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.143966+00 2025-12-17 12:10:01.143972+00 31356 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ByoPSMxauUoViAVdlqSFKTCjMz4=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.146535+00 2025-12-17 12:10:01.146539+00 31357 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XVBD48-sowS3Ya2IPbxhTooOo-8=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.149052+00 2025-12-17 12:10:01.149058+00 31358 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jtwhDmU2SKoHo9EDuXtsJnEs9yc=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.153889+00 2025-12-17 12:10:01.153894+00 31360 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bS-OaUSAGGHtndm8vfJ5R51Hsv4=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.156009+00 2025-12-17 12:10:01.156014+00 31361 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yxi8AQgaoQ2vHtEcxkLlX76fEsw=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.158341+00 2025-12-17 12:10:01.158346+00 31362 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FrZXMedYAYtvytBS5V31UEvr0Eg=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.160524+00 2025-12-17 12:10:01.160528+00 31363 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ziZXa1IDJZ35GWLVc-t2NHI3vDw=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.162344+00 2025-12-17 12:10:01.162349+00 31364 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QMTjNWbTvVZLAAdM2OI1dKkonXY=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.164194+00 2025-12-17 12:10:01.164199+00 31365 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qA5A-5fbL1v4NsBUUFObomQUIJY=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.166031+00 2025-12-17 12:10:01.166035+00 31366 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_KmXIopB9-YrVGbVyOqwzecv77g=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.168025+00 2025-12-17 12:10:01.16803+00 31367 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SzvEGoN3VWa32gcFNFoGpmxP1uU=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N +2025-12-17 12:10:01.170039+00 2025-12-17 12:10:01.170045+00 31368 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=1766059800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lgbyqH8vev_OCTUysxTsj11VsdU=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.598961+00 2025-12-17 12:20:00.598973+00 31369 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TA4EXbyfMTjMC1UI1HcHbblplAU=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.601896+00 2025-12-17 12:20:00.601902+00 31370 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-nFf0mqD1-S74hw_3wiPS0FHj2U=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.604221+00 2025-12-17 12:20:00.604226+00 31371 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q6QCP7geU3AocAFaQI23rX-c2cE=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.606207+00 2025-12-17 12:20:00.606212+00 31372 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vtK4NBtwMMZeczPIwzhtU1CiyqI=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.608209+00 2025-12-17 12:20:00.608215+00 31373 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BF9vdCPI6iGFZj4Gg5L8iy3jUkc=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.610988+00 2025-12-17 12:20:00.610993+00 31374 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:03pP57Vo3BmiPNdUyP3pkUN1Uoc=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.6138+00 2025-12-17 12:20:00.613804+00 31375 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3oQy5DHv7vhZzeI-aPwnf8_x9GY=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.61597+00 2025-12-17 12:20:00.615975+00 31376 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z4o5n2a8jubA243IwKg5WJjNJUU=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.618176+00 2025-12-17 12:20:00.618181+00 31377 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FNznK1efRDYLn-HFmVoJYgqUcdU=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.62046+00 2025-12-17 12:20:00.620466+00 31378 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dZd51QqkSYVUAjry9All-CcY_pE=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.623487+00 2025-12-17 12:20:00.623493+00 31379 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u7QdaHt7MZI5yB8Elw-BAkWE8-Q=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.625887+00 2025-12-17 12:20:00.625892+00 31380 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DYhkuwvYB_sfqwhsQ7IORAxY72o=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.627972+00 2025-12-17 12:20:00.627977+00 31381 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a7ajrWwtOI2EcJMYAV9sM8EW6MY=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.629998+00 2025-12-17 12:20:00.630003+00 31382 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ufxLXLjtIlQ-bp6w6EycNdxU0w=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.632016+00 2025-12-17 12:20:00.63202+00 31383 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:suzNCohu1LGolwyMZeq2LbfH6q4=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.634041+00 2025-12-17 12:20:00.634046+00 31384 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_wYLzekx2Hkuksmkeox8lZTlzcg=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.636046+00 2025-12-17 12:20:00.636051+00 31385 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XL1-ZRTl10Dh2UYBZ6JUX5evCCg=", "createTime": "2024-08-15 14:52:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.63808+00 2025-12-17 12:20:00.638085+00 31386 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7lbDnB6SxsbmxJYakSfXTyhqAuA=", "createTime": "2024-08-15 14:52:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.640067+00 2025-12-17 12:20:00.640072+00 31387 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1OqGOON995BEXabpUGQgI8rizY8=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.642127+00 2025-12-17 12:20:00.642131+00 31388 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KT-sSqUerCpEOtZ7I4KJE3kN5_c=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.64414+00 2025-12-17 12:20:00.644145+00 31389 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h9ANVdZaNnkGNFwxE0AT0ro4O9A=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.646618+00 2025-12-17 12:20:00.646622+00 31390 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:neBex-eEJnE0qr5643Zmn6PKOPE=", "createTime": "2024-08-15 14:52:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.64846+00 2025-12-17 12:20:00.648465+00 31391 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G66CeslITXr84wBh1eoM_vNBafg=", "createTime": "2024-08-15 14:52:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.650317+00 2025-12-17 12:20:00.650321+00 31392 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rz10EtpcTBdD7OvkOfUtHXker3I=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.652357+00 2025-12-17 12:20:00.652362+00 31393 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FGwQRiqFbuot_77c6j6Ex3-FT84=", "createTime": "2024-08-15 14:52:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.654183+00 2025-12-17 12:20:00.654187+00 31394 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0iFL6eYtA_xhcqHxOCkDRUoo2Vw=", "createTime": "2024-08-15 14:52:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.656172+00 2025-12-17 12:20:00.656177+00 31395 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DBDcJDJfkx5Ltqudy5C7fwG0QYg=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.658196+00 2025-12-17 12:20:00.658201+00 31396 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3AJ1KhxuOwwYOHNnEGHpdI9a7wo=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.660212+00 2025-12-17 12:20:00.660217+00 31397 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dl1XGtJHrHTUUOBRzA-w0IJrZZo=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.662159+00 2025-12-17 12:20:00.662163+00 31398 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5pR7jxp3glSnXOm-O31og_9JRBk=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.664155+00 2025-12-17 12:20:00.664159+00 31399 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8q3sKIT5HyXUkA9g4DrZ_zUhmVc=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.66616+00 2025-12-17 12:20:00.666164+00 31400 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TRf_YCR66Bgg2b_PgWRfstfW3mA=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.668154+00 2025-12-17 12:20:00.668158+00 31401 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DLyehJgOh7cDLSQIOF9xfc_qdiA=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.670139+00 2025-12-17 12:20:00.670143+00 31402 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C4x9Mx_FO6kPwl6ol0bNcqvd0gw=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.67218+00 2025-12-17 12:20:00.672185+00 31403 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tq-mUiFbfleomDoX95HbsKf5Zmw=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.67416+00 2025-12-17 12:20:00.674165+00 31404 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p4MCMT6udUdS0sQwch1lcmUCkiE=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.676319+00 2025-12-17 12:20:00.676324+00 31405 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nCHccx7y-f_nOsYTGA2X0Gcp0ho=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.678445+00 2025-12-17 12:20:00.67845+00 31406 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zCGnQLJ_5mz--guu6kcHzXtEL3A=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.680503+00 2025-12-17 12:20:00.680509+00 31407 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9NTCHLddgn4NMXOlBpRmaXM6Ey8=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.682664+00 2025-12-17 12:20:00.682669+00 31408 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fuxUJCm_f93yzLWtFj4Kjjt-9M0=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.684547+00 2025-12-17 12:20:00.684552+00 31409 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:szl1kFyBeBtcmd_rR9lo4vDT3p0=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.686581+00 2025-12-17 12:20:00.686585+00 31410 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5SmFssqlWZ1IJCHXYHagHd6gJWc=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.688445+00 2025-12-17 12:20:00.68845+00 31411 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jGJvhtu3d0E6gUR3Ng8yNwMSrGA=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.690515+00 2025-12-17 12:20:00.690521+00 31412 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AbNWxs5w70T1L-ifsb7u-zZ52uQ=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.69305+00 2025-12-17 12:20:00.693056+00 31413 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yRQQXoo5zas-WihoSa8Z-sQ8Msw=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.695184+00 2025-12-17 12:20:00.695189+00 31414 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-WbaSsaYgyB85AyGIyT7yDoSRXc=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.697063+00 2025-12-17 12:20:00.697068+00 31415 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:igsU324SaG1Jy1TFWt5mtiUypJM=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.698869+00 2025-12-17 12:20:00.698874+00 31416 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OyTZT4J7SaXQFXn2gle9lBaWNSU=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.700674+00 2025-12-17 12:20:00.700678+00 31417 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ACpuhFb-Hj1CuX7t5a5JWK4y1sQ=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.702642+00 2025-12-17 12:20:00.702648+00 31418 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NmgsL_pSw2dksKo5VWyOVkN33rI=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.704814+00 2025-12-17 12:20:00.704818+00 31419 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W3Z3-lC3z7Thgdd6brBB7EPIrtw=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.706619+00 2025-12-17 12:20:00.706624+00 31420 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lwc7fLF4ZUDpS8Nkt0FifyAjAKo=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.708689+00 2025-12-17 12:20:00.708694+00 31421 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2PfWNtioz44vaAiBCwzLZyCFOsw=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.710642+00 2025-12-17 12:20:00.710647+00 31422 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A7-s3hxgN-OSZbImcBaLTBnzeeQ=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.712668+00 2025-12-17 12:20:00.712672+00 31423 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mxDHeKkz39sDRG7eUowoVaZIaqo=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.714651+00 2025-12-17 12:20:00.714655+00 31424 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oUJbwTXPH6QKqDVYjGfUy3iRpv0=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.716676+00 2025-12-17 12:20:00.71668+00 31425 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z3Yqs_vZ_CJ49V37tETW-8NpQWI=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.718721+00 2025-12-17 12:20:00.718725+00 31426 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-e0G-gZYooXPGVo0JxbmPKNW2wk=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.720743+00 2025-12-17 12:20:00.720748+00 31427 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ip06lJ0F02noPVT5lyO42CZwXqY=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.722702+00 2025-12-17 12:20:00.722707+00 31428 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_jrH6gZsSJ5fI8gbfBwNBBm_xeY=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.724705+00 2025-12-17 12:20:00.724709+00 31429 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rDFQOE-yLBEs6m9PZSCPG-FlL98=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.726776+00 2025-12-17 12:20:00.72678+00 31430 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HhwNHun6SmwA9_2V_2Ji7PRKYkE=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.728822+00 2025-12-17 12:20:00.728827+00 31431 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:71TOLRGlh35UDMJgVkAZtOfGMyA=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.730831+00 2025-12-17 12:20:00.730835+00 31432 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B1iyap_zq2OdNYfl2u-lYpRROc4=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.732663+00 2025-12-17 12:20:00.732667+00 31433 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OnXmpuHqCrI-Ss6_5H46roUDkyw=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.734683+00 2025-12-17 12:20:00.734687+00 31434 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pXI5mc54Ik1KVeIgsslYqdUnHM4=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.736674+00 2025-12-17 12:20:00.736678+00 31435 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bGOJMzb7bJBPtNC57HJ3dx2M9_k=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.738683+00 2025-12-17 12:20:00.738687+00 31436 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aPpyH9URzTeegFqCAjY-UeR0fKM=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.740676+00 2025-12-17 12:20:00.740681+00 31437 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ud9CFfdGPeQntbA5sjS9ukUC-oM=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.742853+00 2025-12-17 12:20:00.742858+00 31438 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y6hQs3epFaG7Sg1S4r-OPh10bao=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.744883+00 2025-12-17 12:20:00.744887+00 31439 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FKg01KCIkGrWrmAI1FeRuWWLkzI=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.746882+00 2025-12-17 12:20:00.746886+00 31440 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n9c34XwfE7kouY6WhjUHdeOP9Jk=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.749349+00 2025-12-17 12:20:00.749355+00 31441 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bv2sqnGeEkFBd4B1_gbenG9a6F0=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.751504+00 2025-12-17 12:20:00.751509+00 31442 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DsvDNrs0brqjicavNjOGnZ6Odew=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.753394+00 2025-12-17 12:20:00.753399+00 31443 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CtoUq9kaORs0sFSifUKfd-MUWE4=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.755209+00 2025-12-17 12:20:00.755213+00 31444 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2cOgzZGDFHGKKAmJ7dRb5iHyq64=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.756991+00 2025-12-17 12:20:00.756996+00 31445 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FAZiw4Nsoy3QSGOQxj_T3uXegLk=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.759085+00 2025-12-17 12:20:00.75909+00 31446 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FexeVlEBC26tJkNDmWy6nW2ap28=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.761046+00 2025-12-17 12:20:00.761051+00 31447 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OjUV6AvZLYYOFoq-ex55hsm6A8c=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.763062+00 2025-12-17 12:20:00.763067+00 31448 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ecd13ZVxm-Ms3oMCvIHr36xmxE=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.765085+00 2025-12-17 12:20:00.765089+00 31449 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e9FI1ub7QfZa9X9qGxocLyyKrYc=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.767218+00 2025-12-17 12:20:00.767222+00 31450 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:95SDDU_pL1CPwqHDoEv1Pyx2Ss0=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.769032+00 2025-12-17 12:20:00.769036+00 31451 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fhwvdKEKuE8EO2iGHfwC-1Vc5F4=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.771015+00 2025-12-17 12:20:00.77102+00 31452 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xNG-LyAHLlr8ibJddVw2o8vMxYg=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.772995+00 2025-12-17 12:20:00.772999+00 31453 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V6wY1j7Ha-2zC4wn-6BUbQDWon0=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.775292+00 2025-12-17 12:20:00.775297+00 31454 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IEgG9BQpN43_78bdZqVJmxQZ6Ow=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.778061+00 2025-12-17 12:20:00.778065+00 31455 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lza3So1s1hCV6jFlPONGKPQBx10=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.780665+00 2025-12-17 12:20:00.780671+00 31456 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_8LybXS_QBegOtvzeP0mehHNZp0=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.783131+00 2025-12-17 12:20:00.783136+00 31457 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gp8_rLwK-bVtQngp_HhWRc8cq8I=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.785543+00 2025-12-17 12:20:00.785548+00 31458 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aN-Kaiee-xAyv2O5-E7EU7n6Xxg=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.787635+00 2025-12-17 12:20:00.787639+00 31459 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q09XeDWUYEmO1XTOqF_vcgAfL00=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.789764+00 2025-12-17 12:20:00.789769+00 31460 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uIfksZLFi_u2MQSv0Q5ZxZHetno=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.792167+00 2025-12-17 12:20:00.792173+00 31461 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H9FhjldvnccribzQc_7G1OEdSJ8=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.794677+00 2025-12-17 12:20:00.794682+00 31462 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VYbvUaO6htXvKgCS6YbHY0bpTkA=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.796475+00 2025-12-17 12:20:00.79648+00 31463 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mCaj0Mk310ViuePhLDwmP89g1H8=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.798276+00 2025-12-17 12:20:00.79828+00 31464 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EcGj4t-5i3ghg93UkmMAIqQHrts=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.800314+00 2025-12-17 12:20:00.800319+00 31465 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ruoSA6mv0tHox75Zu_XY7hSc1Og=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.80231+00 2025-12-17 12:20:00.802315+00 31466 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-5R-4U6HqwFeF3gpT5a3B-oRY0E=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.804287+00 2025-12-17 12:20:00.804292+00 31467 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J8YsLUivm9JUbT4akPQN0LgZP0k=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:00.806271+00 2025-12-17 12:20:00.806275+00 31468 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=1766060399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JveTuD-FHlcklrU2FptSqPUuKAA=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.174486+00 2025-12-17 12:20:01.174498+00 31469 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-oezcKDnQs9d5PGf5wnBKLkFjc4=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.178122+00 2025-12-17 12:20:01.178131+00 31470 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8MJ4SCLiqZPUXFWwHudU_w3lnhM=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.180679+00 2025-12-17 12:20:01.180684+00 31471 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AVnJbEEkrVL4NEsD3jDJMvTr4M8=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.182508+00 2025-12-17 12:20:01.182513+00 31472 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uW5xObOSfFtUq4-IW1jUChhZMFU=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.184418+00 2025-12-17 12:20:01.184423+00 31473 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mW28SUV8nW71Hryt5YU9CAbVk-o=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.186303+00 2025-12-17 12:20:01.186308+00 31474 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OJXKWK70nQdg5ytwXXG9Lm2SfQw=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.18827+00 2025-12-17 12:20:01.188275+00 31475 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vsavu7zeG5oQQ9G_XvranAwA5PU=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.190392+00 2025-12-17 12:20:01.190397+00 31476 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XpXQzXUpGpQn9MVha_I2RbMVdxQ=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.192493+00 2025-12-17 12:20:01.192499+00 31477 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mV4-3-RCfKReu9jELN7ZJsk4T-g=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.194522+00 2025-12-17 12:20:01.194527+00 31478 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nuaq4g7WVHg2BICTEiyeul5hvNM=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.196386+00 2025-12-17 12:20:01.196391+00 31479 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cZ1-VEaX-Js5iKQRFounHyd7xEg=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.198183+00 2025-12-17 12:20:01.198188+00 31480 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:abxyhW7Qx3vAvuFCsY25wgaFXWM=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.20065+00 2025-12-17 12:20:01.200655+00 31481 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HIykIGOwXGs9IrJ93e8rrB_L3ak=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.203131+00 2025-12-17 12:20:01.203138+00 31482 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NQVM6NT0RU9H699hfqQDTDziaf8=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.205361+00 2025-12-17 12:20:01.205366+00 31483 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E705ps-LWiuQskG8NmAA8n9SUbc=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.207458+00 2025-12-17 12:20:01.207465+00 31484 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qXdhmqZEApqKS69VlgH2ZbDudL8=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.209398+00 2025-12-17 12:20:01.209403+00 31485 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EsFGTcKzHUIRZrfgBA2WCtAwdEw=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.211595+00 2025-12-17 12:20:01.2116+00 31486 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wLfUM-t--M2YkTq2Vhf2vW83sGg=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.213412+00 2025-12-17 12:20:01.213417+00 31487 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AhTiSMe8ocLAvXx4vAZU94GWqJ4=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.215342+00 2025-12-17 12:20:01.215347+00 31488 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IBitzwBl7PwmuVtvgtIz-ePWOv4=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.217461+00 2025-12-17 12:20:01.217466+00 31489 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zqz1Kxz_Jh0mnctbPbbWxOF8hoI=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.219485+00 2025-12-17 12:20:01.21949+00 31490 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E6RpmSa0eLBfYvOk7eaL4kImS54=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.221696+00 2025-12-17 12:20:01.221701+00 31491 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UJ42aRAZVjBQnGW_6AH8W3lE3ZU=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.223542+00 2025-12-17 12:20:01.223547+00 31492 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mkm-kF7tJrqUJ7MhBkmiCkr2NKE=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.225429+00 2025-12-17 12:20:01.225435+00 31493 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PGIEd24ry_gVwX0uSuQU3ce3OB0=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.227472+00 2025-12-17 12:20:01.227476+00 31494 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:my1-PdiGpfjfFYsadTnYRcjAfuE=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.229524+00 2025-12-17 12:20:01.229529+00 31495 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zMfaYAP5EVlokxSNHOhFP-rsozM=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.231574+00 2025-12-17 12:20:01.231578+00 31496 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MxnqaIwFbe_M9O5GOWDDotNEn9o=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.233454+00 2025-12-17 12:20:01.233459+00 31497 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zfJTs1sPY9Y80UrgQ6ojZGUDY_M=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.235567+00 2025-12-17 12:20:01.235572+00 31498 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:079KAFVmk6CFnbibBmgBSoup6gs=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.237569+00 2025-12-17 12:20:01.237573+00 31499 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xP2P5t6IIzt_zpzTNjpar1UWcuo=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.239479+00 2025-12-17 12:20:01.239484+00 31500 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Whvkcr4vlmCTW7NtySYcHmHiCKQ=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.241631+00 2025-12-17 12:20:01.241636+00 31501 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KDSn03kuGRf2PnALS2DCHZyMTTw=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.243778+00 2025-12-17 12:20:01.243783+00 31502 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uyk-ECP3JdIQL5xUVwmHTRCkHQ4=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.245605+00 2025-12-17 12:20:01.245609+00 31503 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pKRuX9UC8nEbIVzNubNeyP2yxxs=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.247612+00 2025-12-17 12:20:01.247616+00 31504 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UghDHaVTmlXo7wVLoII4qik6nOs=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.24957+00 2025-12-17 12:20:01.249577+00 31505 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FD8BVbOEIzkq1xnsBBvRT112_iY=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.251725+00 2025-12-17 12:20:01.25173+00 31506 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ezRiuT95TGXFG9PqJV50VaKRZBI=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.253777+00 2025-12-17 12:20:01.253781+00 31507 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c9PwP9MQVLAH5vjQoKKjG64yhRE=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.255755+00 2025-12-17 12:20:01.25576+00 31508 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aW5V0WMFPpsg4sBhWDaRgdhgjsU=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.257503+00 2025-12-17 12:20:01.257508+00 31509 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AYqn_3TJSj9C-SpbfmISXeMNN-Y=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.259763+00 2025-12-17 12:20:01.259768+00 31510 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VWQ3jbB94Ho3EpTfKrAAfhUXBuw=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.261981+00 2025-12-17 12:20:01.261986+00 31511 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_q_FOyJZc56qa098JsyM5mGSWio=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.264005+00 2025-12-17 12:20:01.264011+00 31512 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:An_W495Y_OoG04jKFAYDx5GuDpM=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.266001+00 2025-12-17 12:20:01.266007+00 31513 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Cin9ApY-1OG_Nc-hRe3z5TmYjE=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.268031+00 2025-12-17 12:20:01.268037+00 31514 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N6YVSSQbLjkl3WIBGC8Xc0YbxeQ=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.27008+00 2025-12-17 12:20:01.270086+00 31515 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u2hSeAFyFaJZJDaj9YGDTRrQ1TM=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.272069+00 2025-12-17 12:20:01.272075+00 31516 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GwAgw7HaaIIgdTQUSG_Q3Ru2ko8=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.274039+00 2025-12-17 12:20:01.274044+00 31517 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ggVE-Y53Vr9BqRngs9ssDZ3hjV8=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.276164+00 2025-12-17 12:20:01.276169+00 31518 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JNFDhJ3M2zuc-ti3_5JzJZhY7a0=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.278233+00 2025-12-17 12:20:01.278238+00 31519 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d96obPEQz_X1-CG0ugNxKBvxfek=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.280196+00 2025-12-17 12:20:01.280201+00 31520 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q9kXgqy2_QIdTaflDeFZxdmREEg=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.282159+00 2025-12-17 12:20:01.282164+00 31521 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SPrF4p52xzkg932jP1yMODKLVnQ=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.284179+00 2025-12-17 12:20:01.284184+00 31522 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bg21RPxusst2e3AlhK5QlqG4aHA=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.286176+00 2025-12-17 12:20:01.286181+00 31523 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VeWhBYiBP31Pm7-YNlP-OgMya4E=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.288161+00 2025-12-17 12:20:01.288166+00 31524 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a_7UkU1O3CpnYAjOYe4OmlnoQIo=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.290115+00 2025-12-17 12:20:01.29012+00 31525 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:32XMJ2NdC4sXdj-zvZmAVUndFrU=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.292266+00 2025-12-17 12:20:01.292272+00 31526 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tHrEdy2lQLUNNnlsM3M072heK8A=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.294435+00 2025-12-17 12:20:01.29444+00 31527 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZLdU8YBIoPo7lDIsFXRGaH3ol20=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.296544+00 2025-12-17 12:20:01.296549+00 31528 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aiK8jSElWB3yvcqiK3i961q1V6c=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.298813+00 2025-12-17 12:20:01.298819+00 31529 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-UPFLYmbe00DzRFGodG9fEczPqM=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.301035+00 2025-12-17 12:20:01.30104+00 31530 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RNZpFXFiJtvFafaMf03bGS65CVI=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.303217+00 2025-12-17 12:20:01.303222+00 31531 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NRtNo1Ne-ROw1soixQJFxqgveBM=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.305185+00 2025-12-17 12:20:01.30519+00 31532 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SMqvJ312JGWM-NzrkUelihpMW3c=", "createTime": "2024-08-15 14:52:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.307151+00 2025-12-17 12:20:01.307156+00 31533 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:go1yCS5q9H9TgPaRrDFmfWVsrNI=", "createTime": "2024-08-15 14:52:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.309253+00 2025-12-17 12:20:01.309258+00 31534 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6eJM9-irXEaqysclQvYJpGcISnM=", "createTime": "2024-08-15 14:52:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.311541+00 2025-12-17 12:20:01.311547+00 31535 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ryHeqHb04fUuMQ8-Q7el3JKwyE8=", "createTime": "2024-08-15 14:52:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.313534+00 2025-12-17 12:20:01.313539+00 31536 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zBT0-GyAXAXeZdp-SHf9hFtlMMg=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.315534+00 2025-12-17 12:20:01.315539+00 31537 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2t4cTOhUCGp6zOJ9lLdRDgEiHvg=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.317561+00 2025-12-17 12:20:01.317573+00 31538 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kiAhIdokLKJlMPJf9e7_qwtBr4A=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.319585+00 2025-12-17 12:20:01.319591+00 31539 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZMP4TZh8KPg5LWIbJrHQWjY5-KE=", "createTime": "2024-08-15 14:52:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.321578+00 2025-12-17 12:20:01.321583+00 31540 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GJ6iX-VQdlbl33DP1opeMKhoxqs=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.323644+00 2025-12-17 12:20:01.323649+00 31541 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JmazC68Ez-7Fo5kAGR3aSXkqopo=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.325759+00 2025-12-17 12:20:01.325764+00 31542 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z3LwJXWfnSbnK0FIAr2c29Y91-w=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.328085+00 2025-12-17 12:20:01.32809+00 31543 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QulZHPPtFRBS2xhUT2wgKMxumc4=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.330313+00 2025-12-17 12:20:01.330318+00 31544 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wV5HeMD6FWIUkplTcqU_cqV7cWk=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.33252+00 2025-12-17 12:20:01.332525+00 31545 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6_7X2pUXVkbIEZc4h9mBZwefLlQ=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.334547+00 2025-12-17 12:20:01.334553+00 31546 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ke04O53VPV0-xWkuFMbZZNZExnU=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.336594+00 2025-12-17 12:20:01.33661+00 31547 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VZJgsVZ3KOvg6frNVhAyTiLE3UA=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.338618+00 2025-12-17 12:20:01.338623+00 31548 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Gq-nrQ5TN0esyruTI4OKYdn104=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.340629+00 2025-12-17 12:20:01.340634+00 31549 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qKBzaCGoFY4e2GTHlj03iYUu7xo=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.342729+00 2025-12-17 12:20:01.342735+00 31550 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hdnNJSxnBgg_PSJwisH93Uf1Kzc=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.344797+00 2025-12-17 12:20:01.344802+00 31551 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CtG8xf8VSqrAEiJjrPdkFvJd26U=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.346778+00 2025-12-17 12:20:01.346783+00 31552 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A9e3vqNlyxXCQ5cKNPdc2YyYwH8=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.348758+00 2025-12-17 12:20:01.348763+00 31553 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZX7oTqZkBTPZT2MiAbaigmYmLpk=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.35075+00 2025-12-17 12:20:01.350754+00 31554 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GZwdzleMWJp7t_Zg3JjcB1JiKaw=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.352779+00 2025-12-17 12:20:01.352785+00 31555 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jEkExb5ruyO9atxvJvldZeXLfqI=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.354734+00 2025-12-17 12:20:01.354739+00 31556 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U_Kl6BYfzUZYE_20y7agnZ9dfa0=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.356751+00 2025-12-17 12:20:01.356756+00 31557 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:681jwq8cr0lsd52g6A9RSLo2F8g=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.358884+00 2025-12-17 12:20:01.358889+00 31558 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tmzGhvoVgF7eQaxxw0VhqtMje48=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.360988+00 2025-12-17 12:20:01.360993+00 31559 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a_LHCeKevB85oC-EpoDeme_mnn4=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.363263+00 2025-12-17 12:20:01.363268+00 31560 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wju-u7E6QfZlP7K-WLdQ5kJOTyw=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.365481+00 2025-12-17 12:20:01.365486+00 31561 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XEaNir-OEsNHxC24wlGEOeq4XcM=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.367724+00 2025-12-17 12:20:01.367729+00 31562 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HjKSswTobz8WO3Qaf7v8stJ8sGw=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.369899+00 2025-12-17 12:20:01.369905+00 31563 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5-nvUu_Ek8nvrI7n6atvxyvQRaA=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.372005+00 2025-12-17 12:20:01.37201+00 31564 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f6aZYtjBn_VCbkl-PEGGNMdl-S8=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.373996+00 2025-12-17 12:20:01.374002+00 31565 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LBvqaJYBw41daZzM-WuUv7bE9wA=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.376143+00 2025-12-17 12:20:01.376149+00 31566 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MwRgeyxK3tUy24vHrQ2ysvQVgnQ=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.378426+00 2025-12-17 12:20:01.378431+00 31567 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FO4oshILCtfm6fq7Y6ejDHxhe6k=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:20:01.380546+00 2025-12-17 12:20:01.380551+00 31568 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=1766060400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:juuA43QIz3Ax21EPIzGKl0P4mSU=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.378606+00 2025-12-17 12:30:00.378615+00 31569 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gBkQVSvLJjG-FU3NLX44wffhoR8=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.381577+00 2025-12-17 12:30:00.381584+00 31570 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q08wfCZ6H_qwtkSgiwJBboJdgjI=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.384421+00 2025-12-17 12:30:00.384427+00 31571 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z2LRXSTbvbVPlBXmgtBV5woTYcA=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.386928+00 2025-12-17 12:30:00.386935+00 31572 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qw_eTNpNpE72eDX916jse25ssko=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.389151+00 2025-12-17 12:30:00.389157+00 31573 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xyYhxEM0FEW6Mq-axip_s_TeIk0=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.391318+00 2025-12-17 12:30:00.391322+00 31574 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w-O5BjDxB2D5x_YfRatjy0xiBPw=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.393403+00 2025-12-17 12:30:00.393408+00 31575 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yOfdRQVFlzYpItPHsMVcMfV-fTU=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.395535+00 2025-12-17 12:30:00.39554+00 31576 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AtDrjk5aFbXEmVXviYMdN7SJeq0=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.397366+00 2025-12-17 12:30:00.397371+00 31577 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mGt4Lz5cls4EOo2I_P0K0BlJq50=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.399382+00 2025-12-17 12:30:00.399387+00 31578 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iWl2NJUREm1HJ3FF_jIAdPu6ics=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.401499+00 2025-12-17 12:30:00.401504+00 31579 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GZ1ga6wgPKAaLzIfAb3Nyjlt49I=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.403599+00 2025-12-17 12:30:00.403603+00 31580 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sJacYfOnKA37SYfW38nSnIeY90Y=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.405394+00 2025-12-17 12:30:00.405399+00 31581 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E8TrP5XIcmWFBoszMSyqAhtl8x0=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.407401+00 2025-12-17 12:30:00.407405+00 31582 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mvs0glRpJKfStfWEDXw_3hrbA4Y=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.409383+00 2025-12-17 12:30:00.409387+00 31583 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BTEq7F6JH1QL21DQmvl6mUxowhM=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.411404+00 2025-12-17 12:30:00.41141+00 31584 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W6tAp3ZbhvCG81VK-JBT8biWwzg=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.413844+00 2025-12-17 12:30:00.413849+00 31585 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P6OLnKs5yxDJtUwhWGPDK1-ikcw=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.415781+00 2025-12-17 12:30:00.415786+00 31586 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v4B6-8FPn7cYwdg2EzwWrkjWqQo=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.417661+00 2025-12-17 12:30:00.417667+00 31587 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VOJWwe3KwgdQ9X6FJ1e2tg9V0xY=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.419504+00 2025-12-17 12:30:00.419509+00 31588 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uISMPXMlb2In7j3An_tdUQ7Rjjw=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.421467+00 2025-12-17 12:30:00.421471+00 31589 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z7gUkr1TRzo-zCXB9Wlyz5ayodI=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.42344+00 2025-12-17 12:30:00.423444+00 31590 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ELiOqGNVuen3fgYB9Ny7O_0QPfE=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.425648+00 2025-12-17 12:30:00.425653+00 31591 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DIyaH5IsbBfkYU0iG3NSKTJ5nYM=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.427921+00 2025-12-17 12:30:00.427926+00 31592 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d3EwSl-k24VvdttJEC7i-EjqN-E=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.431889+00 2025-12-17 12:30:00.431894+00 31594 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L-ZenI7Go_hw8ZDpdzThY7BaNrc=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.433716+00 2025-12-17 12:30:00.433721+00 31595 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TZGDG0vUkAx7nlSs1_pGq_abCwk=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.429967+00 2025-12-17 12:30:00.429973+00 31593 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pM_iCgl9HnYmFRV-Krzyor0alAM=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.437986+00 2025-12-17 12:30:00.437991+00 31596 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vSYf82MPWAs2LC2cUCGxbj3s5Q8=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.439833+00 2025-12-17 12:30:00.439838+00 31597 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S7dAVRmgq08OX_coud6wSdVeyAA=", "createTime": "2024-08-15 14:52:51"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.441611+00 2025-12-17 12:30:00.441616+00 31598 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:853MHslmyGey_i6X2s9DjXiKlJk=", "createTime": "2024-08-15 14:52:51"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.443636+00 2025-12-17 12:30:00.44364+00 31599 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EPMHMCu8xZuf9tGoDqDADYG_l4E=", "createTime": "2024-08-15 14:52:51"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.445824+00 2025-12-17 12:30:00.445829+00 31600 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B8xgZJfNHWrtZqwJBiXA1VVnc5c=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.448128+00 2025-12-17 12:30:00.448133+00 31601 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zIgfE6qQ8JXhz8h-H5FGZO7ln1A=", "createTime": "2024-08-15 14:52:52"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.458733+00 2025-12-17 12:30:00.458738+00 31606 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EB2Xjk_AfKsf59L2XgA1mM5nA1A=", "createTime": "2024-08-15 14:52:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.450199+00 2025-12-17 12:30:00.450204+00 31602 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yBl2zh140V6Fyh6NVvRp68HS1ws=", "createTime": "2024-08-15 14:52:52"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.452342+00 2025-12-17 12:30:00.452347+00 31603 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JfbDdz8GfwBiqJ3jjkDxFn9SJyU=", "createTime": "2024-08-15 14:52:52"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.454405+00 2025-12-17 12:30:00.45441+00 31604 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:74AqUNfFgTAdhqyY73PHO8DmVTU=", "createTime": "2024-08-15 14:52:52"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.456635+00 2025-12-17 12:30:00.45664+00 31605 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_VVNiZLXigGZNBfTxDuzUmU7t9I=", "createTime": "2024-08-15 14:52:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.460949+00 2025-12-17 12:30:00.460954+00 31607 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fG7A2dCu9o1Xq25AVc4MZbv02gU=", "createTime": "2024-08-15 14:52:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.463891+00 2025-12-17 12:30:00.463896+00 31608 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SArEYsmpFNGVcRPbAo-n83lkur4=", "createTime": "2024-08-15 14:52:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.466359+00 2025-12-17 12:30:00.466364+00 31609 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EVZ2jE9Af2QLw0EOBG8zSGuzN_g=", "createTime": "2024-08-15 14:52:53"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.468774+00 2025-12-17 12:30:00.46878+00 31610 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_gvWy-SihtS8XlLVmCVlJYEN8Ic=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.480759+00 2025-12-17 12:30:00.480765+00 31615 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nsq7BWyfTLOsoOruQPHiP9e855M=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.471326+00 2025-12-17 12:30:00.471332+00 31611 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bt1f5tCPbVhbYHOAUn9QzaOsYso=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.473632+00 2025-12-17 12:30:00.473638+00 31612 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YLTjBzSfhHy2StCT2u1TsjwCCik=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.47612+00 2025-12-17 12:30:00.476125+00 31613 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XzANv3e0mwak3OLQZ9l-18lbJZw=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.478397+00 2025-12-17 12:30:00.478403+00 31614 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5zjQdbXbtCsaNRHSWC8etu8e3XE=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.483284+00 2025-12-17 12:30:00.483289+00 31616 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:baYtmh9xoB5B3YkQHtKkxWJHkdo=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.485356+00 2025-12-17 12:30:00.485361+00 31617 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PuJC9qoqB3WcopTnYAuwmYtRWVA=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.487397+00 2025-12-17 12:30:00.487402+00 31618 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PSGIDnuwm1ICI0acch8rgJ6f2Wg=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.489566+00 2025-12-17 12:30:00.489573+00 31619 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6lG56qASD1DEif6-5G4FAFpnHko=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.491756+00 2025-12-17 12:30:00.491762+00 31620 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SGDXLNoF9lmcrKGotAQPKCYakrc=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.494099+00 2025-12-17 12:30:00.494104+00 31621 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DZd4JZIXJWcJmQ3vuYPJvWrbOj4=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.496297+00 2025-12-17 12:30:00.496302+00 31622 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uaXDlypgyx-73UgtgVF_REajKH0=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.498336+00 2025-12-17 12:30:00.498341+00 31623 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xxpmn655UYdBeuMBiQbQ_S5BsAE=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.500329+00 2025-12-17 12:30:00.500334+00 31624 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FYj7kxXciNAGQTWVJP2ksVp2kf0=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.502474+00 2025-12-17 12:30:00.502479+00 31625 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WRXbtN_5KJSdU-U0FWd6u53OwyQ=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.504537+00 2025-12-17 12:30:00.504542+00 31626 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QuyUnFYrcTQ0oaJAsMn48TIwf2U=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.506545+00 2025-12-17 12:30:00.506551+00 31627 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LlODlC-2m3rEw84dW3WGYSR8_wQ=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.50853+00 2025-12-17 12:30:00.508535+00 31628 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZRZAoJt7kbH-1lVQqo-MYRD44OY=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.51054+00 2025-12-17 12:30:00.510545+00 31629 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:65cUDc1rpXFOK4sI15myD5UztQI=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.512594+00 2025-12-17 12:30:00.512599+00 31630 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wQKrzo9gaWJFQqp09LuSvGg_Qmw=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.514636+00 2025-12-17 12:30:00.514641+00 31631 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cPX4RXenQsv68Le_60CNm1WNILo=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.516626+00 2025-12-17 12:30:00.516631+00 31632 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MnaK89TboK7N_BLpfmJMYlFt_hI=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.518767+00 2025-12-17 12:30:00.518773+00 31633 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NO3C8jqX_vHcG2kKzC-iUu8YoIc=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.520844+00 2025-12-17 12:30:00.520849+00 31634 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dSGb_uXHPQHvzHg1LvGkJ95KQFw=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.523135+00 2025-12-17 12:30:00.52314+00 31635 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QZbimAe7iD0bXQneiVBqVUW8zIY=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.525348+00 2025-12-17 12:30:00.525353+00 31636 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AiaHG5PG7Oo1kcYHjisaWsjLX8Q=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.527907+00 2025-12-17 12:30:00.527913+00 31637 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EAMb3FkCCciN2uMkT_8NS5lA7n4=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.530329+00 2025-12-17 12:30:00.530335+00 31638 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G8YhHzmrkEPcM7fIQ2o6fIsgg0o=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.532461+00 2025-12-17 12:30:00.532466+00 31639 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WnjVF6SM9wAxjBdq-8mAd9W2RV4=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.534404+00 2025-12-17 12:30:00.534408+00 31640 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eG9PqwAFLrEuaIh7yfnuxFLbhvo=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.536617+00 2025-12-17 12:30:00.536622+00 31641 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3jyeWGxtQSuOkYaEkRADZ5wWffk=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.538471+00 2025-12-17 12:30:00.538476+00 31642 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iCQMxOyhKv8WcVsVF89iCBXWU88=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.540264+00 2025-12-17 12:30:00.540268+00 31643 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZM-UUENFkT3_AxVl7_Qv6OU-yIQ=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.542263+00 2025-12-17 12:30:00.542268+00 31644 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5xClNd-hWwm8ElZFt09-ISyoqYI=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.544452+00 2025-12-17 12:30:00.544459+00 31645 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:51F0SUhfQAK1KLLyyLTvfaMVrfw=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.547794+00 2025-12-17 12:30:00.5478+00 31646 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HYjdEJEsbPchAQmkT1WVmUWzqxc=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.550892+00 2025-12-17 12:30:00.550897+00 31647 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3dLkJRaq7lIcnVWsv-S2x90SfzU=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.553414+00 2025-12-17 12:30:00.553419+00 31648 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g-JgFWjPqL79KN57cwgiiGmtN1I=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.555629+00 2025-12-17 12:30:00.555634+00 31649 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_vJ66EFBxiLURPDDOv_vmuYEQNI=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.557641+00 2025-12-17 12:30:00.557645+00 31650 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wh29O5_pMPf7vqWizCHU__VkTJA=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.559497+00 2025-12-17 12:30:00.559502+00 31651 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x93khQaqhJUIQQxWf3G_MrhXqzA=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.561679+00 2025-12-17 12:30:00.561687+00 31652 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i2Qx14L9GNdA33xmLn4aZz5FOVI=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.563842+00 2025-12-17 12:30:00.563847+00 31653 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JndSbRHQaOWyfRGa5xLYNLOgg_o=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.565683+00 2025-12-17 12:30:00.565688+00 31654 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XcWArjMJuarv4IcwZLqFTB89fSI=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.567612+00 2025-12-17 12:30:00.567617+00 31655 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vEXNsb1aP9TrXJBn-tONg9-IZRg=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.570488+00 2025-12-17 12:30:00.570495+00 31656 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DmOOYeRISCB8G3GjjVbafTTnY_k=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.573311+00 2025-12-17 12:30:00.573317+00 31657 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QCScETOG88f24GuszPGRIxBKNqU=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.576004+00 2025-12-17 12:30:00.57601+00 31658 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:btQTs60GM-bsp1Ueq7uW6SUL3Vo=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.589612+00 2025-12-17 12:30:00.589621+00 31663 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yuMB-Al0PHdbTCN8JwIT27CGQrY=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.578557+00 2025-12-17 12:30:00.578568+00 31659 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GNb617dtZFqRfqcIUDFsnKbMaAY=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.580983+00 2025-12-17 12:30:00.580988+00 31660 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DtR5BBR7g7q7kljW_hWBPho8lPs=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.582897+00 2025-12-17 12:30:00.582901+00 31661 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5PD8DaqMaarMVSR_N7soDTWTlWI=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.586061+00 2025-12-17 12:30:00.586071+00 31662 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jVPNuNRkYBTNE3c45R6zy-t_Y-A=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.593084+00 2025-12-17 12:30:00.593092+00 31664 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4DqzYRdGd5jX54WMvGr5z9AnaY0=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.595935+00 2025-12-17 12:30:00.595943+00 31665 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HmIeZQx8t7GVo9vScMJLiWosxIc=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.598957+00 2025-12-17 12:30:00.598964+00 31666 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WV2YHuz3SSxYMA0JeT5AJYkKcQA=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.602451+00 2025-12-17 12:30:00.602458+00 31667 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=1766060999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MKHW-ycqWKQE-57QqT5Q8iqQC5I=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.985244+00 2025-12-17 12:30:00.985256+00 31668 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W_3V1nOP7zrPMoPl8ktOePF1fNo=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.988539+00 2025-12-17 12:30:00.988548+00 31669 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a7mHp0UIPULpzbrTvwG7uhTUwuA=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.991864+00 2025-12-17 12:30:00.991869+00 31670 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mqw58bNQhdLGwSQhaD5rggJAvDM=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.994087+00 2025-12-17 12:30:00.994091+00 31671 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ogyagAL1Ami2JUw9yiI3ZiHbus=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.996013+00 2025-12-17 12:30:00.996018+00 31672 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pzyd_XzhzDNsOjHstdNGKmX5atc=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.9979+00 2025-12-17 12:30:00.997905+00 31673 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8tEcn5F2_ATolOpp3VMqqzXWiZw=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:00.999748+00 2025-12-17 12:30:00.999752+00 31674 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EWVCD_ZHLNnzBD5KG7cw3VesZCM=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.001678+00 2025-12-17 12:30:01.001683+00 31675 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kLFcsEZ4WMv0C7_TUcqkqNYesIU=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.00407+00 2025-12-17 12:30:01.004075+00 31676 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dkPUItW2FBUD_rs8IMT5dmsEkwA=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.006259+00 2025-12-17 12:30:01.006263+00 31677 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gFIPdNG4PRvyBotr8b5BN5bGolk=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.008292+00 2025-12-17 12:30:01.008297+00 31678 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e8ZAShqeDItC-JEP8c_0ccwPuZ4=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.010336+00 2025-12-17 12:30:01.01034+00 31679 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L-PnZCl9yZGvtG9aklPZT8ItY3o=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.012458+00 2025-12-17 12:30:01.012462+00 31680 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Ovlr2O_YtbvoaHkIJzga-1nIuc=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.014633+00 2025-12-17 12:30:01.014638+00 31681 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6E_tCpmnjUbWdRT35W34UgU3HEM=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.016661+00 2025-12-17 12:30:01.016666+00 31682 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2J8Q9Ry-TJLbp4TDj0lF-kqfJk4=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.018965+00 2025-12-17 12:30:01.01897+00 31683 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SqlBMxETWVGr6GjRmBH204h3EZ8=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.021219+00 2025-12-17 12:30:01.021224+00 31684 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e8iOnSQXKGOQvJ4RrcAkXIRqKtw=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.023852+00 2025-12-17 12:30:01.023858+00 31685 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nOQpsnDHGpwkXdH856xLmqbABrA=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.026327+00 2025-12-17 12:30:01.026334+00 31686 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KsEKFHmo-QPjML4Dv6y0MxZh170=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.029152+00 2025-12-17 12:30:01.029158+00 31687 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v_aqUryTEUO8s-6O51suMk0nAz8=", "createTime": "2024-08-15 14:52:59"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.031747+00 2025-12-17 12:30:01.031752+00 31688 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tCIBq7AOCkZeQmDL5NYtZvu9_yY=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.034071+00 2025-12-17 12:30:01.034076+00 31689 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_xTgXqrsjWZr1nDmNpf9NUfxxVM=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.036236+00 2025-12-17 12:30:01.036241+00 31690 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cjR-h02xQjfKPKm9Bir5Nm2WH-k=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.038092+00 2025-12-17 12:30:01.038097+00 31691 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ChzJ_nBon390sgGH2g4jdEn5mKg=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.039909+00 2025-12-17 12:30:01.039914+00 31692 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t5PBFHPKUAn7kV_JwO7bEadYxHE=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.041682+00 2025-12-17 12:30:01.041687+00 31693 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8YMEjzw3LYFICaNDbcJzVsGydDg=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.043833+00 2025-12-17 12:30:01.043839+00 31694 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h4Gboa7u1URvdLTWfIkU3CNhbFM=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.046305+00 2025-12-17 12:30:01.046311+00 31695 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y9vEq-4-1q8km-MLqKd2IHlUvHQ=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.048558+00 2025-12-17 12:30:01.048571+00 31696 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8LeDO1vCtOXPc2kkN63YlAG4Go8=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.050958+00 2025-12-17 12:30:01.050964+00 31697 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LRRuOPDy7M-aBK-5uPi9tZrLB84=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.053231+00 2025-12-17 12:30:01.053236+00 31698 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ijc4hujVD3Fx6sbYFXZ1Egv2Ok8=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.055259+00 2025-12-17 12:30:01.055264+00 31699 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z35UtleDNjK_YsPdOqEQiuC8DWY=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.057277+00 2025-12-17 12:30:01.057282+00 31700 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AESM939iu4flb6k52nz2oChLmUc=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.059261+00 2025-12-17 12:30:01.059266+00 31701 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JPnHBujyLpA9eR1inIcJZHXtazM=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.061267+00 2025-12-17 12:30:01.061271+00 31702 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ta2iIHOhNPu25Rxr4XXQDUrcMbk=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.073106+00 2025-12-17 12:30:01.073112+00 31707 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f0Yvs2Cb3DuS0zPY0S_yZcERXgw=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.063551+00 2025-12-17 12:30:01.063556+00 31703 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_obJ8zJGCWGYlCTpKASgdClCxYY=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.06606+00 2025-12-17 12:30:01.066065+00 31704 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ZXWDd3prgNGcEd-le8O4_mBuTg=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.068474+00 2025-12-17 12:30:01.06848+00 31705 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xZe3qLYc0BFcdIS721Txg7kXS2U=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.07073+00 2025-12-17 12:30:01.070736+00 31706 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:If3uha6a_M3-568nDP_-0vFoocI=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.075584+00 2025-12-17 12:30:01.075592+00 31708 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DWmhi00OkI3Cw7wGfyXkpT-747c=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.078397+00 2025-12-17 12:30:01.078404+00 31709 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R73ut-PzLDPIX2MRvt9ZAJqZhns=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.081166+00 2025-12-17 12:30:01.081173+00 31710 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UJdNHD2rERW9Yr0rYQohK1C89Jc=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.0836+00 2025-12-17 12:30:01.083607+00 31711 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OHYEvfheW_PVNzo3vgM1qXQNh5o=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.08569+00 2025-12-17 12:30:01.085696+00 31712 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ktjGelANz9MQ-IflFNW1s0E2KA4=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.087649+00 2025-12-17 12:30:01.087654+00 31713 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iZZtLXb9jcWoqvKhTN4aaNpIr80=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.089574+00 2025-12-17 12:30:01.089579+00 31714 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QgyCc_8tsfLUNGe2jWySPQPGBHY=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.091368+00 2025-12-17 12:30:01.091373+00 31715 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vH6dIlSHlYKkZfU4Y7lH85RZKyQ=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.093156+00 2025-12-17 12:30:01.09316+00 31716 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MpBnMpMH5FFt1z6s7NsETDXPmKY=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.0952+00 2025-12-17 12:30:01.095204+00 31717 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zYKWVpgvBAbmzsRVHb5imWoXTPk=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.097153+00 2025-12-17 12:30:01.097158+00 31718 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WHUqXKg1NtkxxncaDwN7xTynRpU=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.099265+00 2025-12-17 12:30:01.09927+00 31719 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iQWsliC57EikeLtK5rRSDcH1YVo=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.101641+00 2025-12-17 12:30:01.101646+00 31720 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v5pc6X-DBrZ0tvhaHacY5DLHLMg=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.103592+00 2025-12-17 12:30:01.103596+00 31721 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l4dGNvMhuLYuXGdxx3FabCAiddo=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.105421+00 2025-12-17 12:30:01.105426+00 31722 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TiJKy3GitFDuM5WhmOcAzxABjUo=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.107213+00 2025-12-17 12:30:01.107218+00 31723 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mhqfxfJV4J7kAWLGIt1cOydJyH8=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.109199+00 2025-12-17 12:30:01.109204+00 31724 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J6VL1CktGmozJ-DXyFNIlNLP054=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.111357+00 2025-12-17 12:30:01.111362+00 31725 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5uDezEnmhEbFdIXS7kcAjoNL3eQ=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.113493+00 2025-12-17 12:30:01.113498+00 31726 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M8nS7qMoUQLJwr5vPawn3jnqwI0=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.115333+00 2025-12-17 12:30:01.115338+00 31727 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xkWtbTdjVBHu-T2GeGx7eMlpGBM=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.117312+00 2025-12-17 12:30:01.117316+00 31728 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aqwXZPRwWXGqApbEB02-rXB8KOU=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.119344+00 2025-12-17 12:30:01.119348+00 31729 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PvRobZXsLlZXAl_RW7ti0xVw9S8=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.121342+00 2025-12-17 12:30:01.121346+00 31730 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vjRm_1VGHSVUnTp-5BztqIazVy0=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.12337+00 2025-12-17 12:30:01.123374+00 31731 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TMX4247U8_klZNSat0UkfmiNri0=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.12534+00 2025-12-17 12:30:01.125345+00 31732 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5zWbK4GUgl5I_kRwOd0bj1198u0=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.127361+00 2025-12-17 12:30:01.127365+00 31733 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y0K2l4QCsvYSH9GvdbR5RbuFkRU=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.129719+00 2025-12-17 12:30:01.129724+00 31734 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yi3imvDREL3MNxUjNegI7izAHV0=", "createTime": "2024-08-15 14:53:04"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.131888+00 2025-12-17 12:30:01.131893+00 31735 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yfDEOf6Pcy8EFSDDOTHBfNKMT5s=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.133984+00 2025-12-17 12:30:01.133988+00 31736 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5jiJ79ZlrGh_UePAW7Xx3_oCbYo=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.13617+00 2025-12-17 12:30:01.136174+00 31737 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ai9SVapwhb3sLy0933klX8pXaig=", "createTime": "2024-08-15 14:53:04"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.138509+00 2025-12-17 12:30:01.138514+00 31738 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JPgYNxdapgIFmLemf8CzHDJ_FfI=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.140808+00 2025-12-17 12:30:01.140814+00 31739 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OxyRM-IixKJaAjf-ir8UbgAC0QQ=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.143151+00 2025-12-17 12:30:01.143156+00 31740 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:881Q1lC-fWYmvmCSq0hmLEqpnYM=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.145879+00 2025-12-17 12:30:01.145884+00 31741 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0KCQDCII-5quJDqo4baM07ngo68=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.148238+00 2025-12-17 12:30:01.148244+00 31742 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9XQFBeaaIHuKODovD5JFtXi97DA=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.150527+00 2025-12-17 12:30:01.150532+00 31743 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EaEWE3gqB9b0FcvxI8vw0u33Ffs=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.15261+00 2025-12-17 12:30:01.152615+00 31744 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zhUzTdJLUBqz7kfd5nBN6M63SVE=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.154662+00 2025-12-17 12:30:01.154666+00 31745 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ykQrwb2uOFPTQJvoutaCTDNIa70=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.156694+00 2025-12-17 12:30:01.156699+00 31746 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qj6C6f6nhv0MaazzueINr7ioYFA=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.158804+00 2025-12-17 12:30:01.158809+00 31747 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BLzb5Okg4vh8FjTj2_WdOfMajeQ=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.160896+00 2025-12-17 12:30:01.160901+00 31748 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zsq2NSGxaK1zfWC_17hGVMPdLgE=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.162763+00 2025-12-17 12:30:01.162768+00 31749 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UbfCW5EtPWmMRNMCEUIAKEG36Po=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.164758+00 2025-12-17 12:30:01.164763+00 31750 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u-GTi9mQdlpFKWe7lxvt_01pocA=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.166791+00 2025-12-17 12:30:01.166795+00 31751 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sTNIyFa4LjeNGklB_qzp5i03mKI=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.168625+00 2025-12-17 12:30:01.16863+00 31752 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mr875aZEHB2lVtO8g7A0PN42fps=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.170635+00 2025-12-17 12:30:01.17064+00 31753 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UpuKaWk6E6Lzp9PEb4Wk7juxMHI=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.172918+00 2025-12-17 12:30:01.172923+00 31754 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hnmc0XnRMKXAXFnSF3MpGLC0dc4=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.175123+00 2025-12-17 12:30:01.175128+00 31755 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NN9K4z8IJ6ZNb-TSvyMMq_A5iv4=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.1771+00 2025-12-17 12:30:01.177105+00 31756 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rxSui7RWOEdZ_2zI-eZtJ4OR7c0=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.179278+00 2025-12-17 12:30:01.179284+00 31757 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i769UVyVIJUtefdw8huSwFxt_kM=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.181471+00 2025-12-17 12:30:01.181477+00 31758 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vjqo7VnDZ7BfF3K4Ozxa4glAF2A=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.183668+00 2025-12-17 12:30:01.183673+00 31759 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kaZ465PsLrQZqvmAdLenKj6ZErE=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.185959+00 2025-12-17 12:30:01.185964+00 31760 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sA8YYFfl_e7SPKSaJyik3lc0lQE=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.188083+00 2025-12-17 12:30:01.188088+00 31761 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VNGiPn7KTEGUP9xU6UvSbFSZnmA=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.189941+00 2025-12-17 12:30:01.189946+00 31762 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D7GUayexSpynL6gbB6ZSB99rovg=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.191993+00 2025-12-17 12:30:01.191998+00 31763 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pvpTJoaxcuiTUQRHreto11YGyPk=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.193822+00 2025-12-17 12:30:01.193828+00 31764 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8GQJouKgFVFDKv1h1cg0Nk8JCdA=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.198334+00 2025-12-17 12:30:01.198339+00 31765 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iycr0IxlWuk16vvJ21GGLhiEK5o=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N +2025-12-17 12:30:01.200201+00 2025-12-17 12:30:01.200206+00 31766 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=1766061000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WOgYPICtoa-QnMh3UTpo4TT4ijQ=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.383862+00 2025-12-17 12:40:00.38387+00 31767 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mNgjsb_-rc2w1-ICp98txqQVM18=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.387251+00 2025-12-17 12:40:00.387256+00 31768 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rbO4z1F5YiRRyzCaQwDH9og0td4=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.389586+00 2025-12-17 12:40:00.389591+00 31769 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5zR_A1SWF9SQtjLzM0CCxBGmuJc=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.391728+00 2025-12-17 12:40:00.391733+00 31770 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yyNRD0APcj0NlM-HZaWWaOqL2Ls=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.394163+00 2025-12-17 12:40:00.394168+00 31771 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:czGapZyZYEGMQDOJFk3eYH6I97c=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.39606+00 2025-12-17 12:40:00.396064+00 31772 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ehEok881Up3KLdBn1c9BN1GC4o=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.397894+00 2025-12-17 12:40:00.397898+00 31773 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p8v3fF_439BLTpkx-LfyQb3oqkE=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.399904+00 2025-12-17 12:40:00.399909+00 31774 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QaWgdpZn7whL7dNn2OD4ThTVzt8=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.401928+00 2025-12-17 12:40:00.401933+00 31775 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4G2VuTkDSQ57j-aiwUtPgCOSsSE=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.403935+00 2025-12-17 12:40:00.403939+00 31776 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sii0muOhfGVSUOODFjdEbVWqr8w=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.405941+00 2025-12-17 12:40:00.405945+00 31777 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p3g7eDg90py2CVJN7NOELuTcvc0=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.408283+00 2025-12-17 12:40:00.408288+00 31778 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-CrkaLKDQeBGO7JpszM_uUXiTY=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.410452+00 2025-12-17 12:40:00.410457+00 31779 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N_adEoz9670VLusvCtd1EImVp64=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.412311+00 2025-12-17 12:40:00.412315+00 31780 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:puX1JkHSBiHzFppTEZd81gnaQbE=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.414148+00 2025-12-17 12:40:00.414153+00 31781 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZR1soX4yrAuPG3dGbUDma99fmtg=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.415942+00 2025-12-17 12:40:00.415947+00 31782 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TxEWj5EBQK0Khvxd6qsq0mo2vk0=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.417935+00 2025-12-17 12:40:00.417939+00 31783 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2MJvOGrIWALS73KUu0TjD6a_mNo=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.419945+00 2025-12-17 12:40:00.419949+00 31784 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x-tHRjNQnGxVqXbEdb_7lPyKd6M=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.421958+00 2025-12-17 12:40:00.421962+00 31785 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K8raSbAFshUgPzLw_HZGpAShA4k=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.423928+00 2025-12-17 12:40:00.423933+00 31786 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P1OzGg9rJTdwbViJptVE21wbKtA=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.426265+00 2025-12-17 12:40:00.426271+00 31787 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kq6I8rvWzQSfxmnDX0GOrWYJQlw=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.428804+00 2025-12-17 12:40:00.42881+00 31788 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_9PBlQWZQlbjZjWJLdjYLSIb84o=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.43103+00 2025-12-17 12:40:00.431034+00 31789 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:29C0uxeQxTIzkKpIgPLUS5lrcwU=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.433089+00 2025-12-17 12:40:00.433094+00 31790 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:duhZsqE6jXAS4dA9mtT7K9Pn3wg=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.435093+00 2025-12-17 12:40:00.435098+00 31791 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fq0YiVbpne8BL2oYCj5DItNyNz8=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.437156+00 2025-12-17 12:40:00.437161+00 31792 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:568jmJZL-E1r5f6zlXLh47pHtBE=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.439259+00 2025-12-17 12:40:00.439264+00 31793 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L8kAR8S15He9S0Zj8MN8dS0w6To=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.441346+00 2025-12-17 12:40:00.441351+00 31794 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7kz5SmK94KwrOikFr9VkhsYqyHA=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.443383+00 2025-12-17 12:40:00.443388+00 31795 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U5Gj-PyXmXPzBIFlz2ULxVVXea0=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.445512+00 2025-12-17 12:40:00.445516+00 31796 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CDh1JefLiprXnbrrLtCNV-lKVxI=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.447432+00 2025-12-17 12:40:00.447439+00 31797 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4dqyZb_qX5I66vmkkhbnYN5YqjM=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.450209+00 2025-12-17 12:40:00.450216+00 31798 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8rBQgPQd_UrPWmREmnyXOmEo4_8=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.452883+00 2025-12-17 12:40:00.452889+00 31799 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aP6w4JlHpJKe_Px-n_KDdxKA7GY=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.455124+00 2025-12-17 12:40:00.455129+00 31800 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_uQ44Ia5IXWqvy0qRoikZYKj-Rg=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.457285+00 2025-12-17 12:40:00.457291+00 31801 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rJa6SDRTR2FCM_YUgp96WV_Bdqw=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.459446+00 2025-12-17 12:40:00.459451+00 31802 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Xigws58uN4sx2f542tz3qNzxyE=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.46158+00 2025-12-17 12:40:00.461584+00 31803 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d8Ivz7yv2kre2fqeZt1SfOZESVU=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.463415+00 2025-12-17 12:40:00.463419+00 31804 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PFbK72DPlI65aPZ-KqanPkOFl2E=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.465427+00 2025-12-17 12:40:00.465431+00 31805 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qgvFVSb32yFWKlaKS1VlzUd5JNU=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.467449+00 2025-12-17 12:40:00.467453+00 31806 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mj7Dd3_IXJarMakNcCu4lhAdoC0=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.469531+00 2025-12-17 12:40:00.469536+00 31807 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PJZannTIwCPH8635ItA9Ee5FtSI=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.471341+00 2025-12-17 12:40:00.471346+00 31808 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I0VamhixKeuBHqf7kmw5yRpD-Sw=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.473369+00 2025-12-17 12:40:00.473373+00 31809 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ikRoOqKQYbZVG_dvXfwg7oLOTKo=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.475706+00 2025-12-17 12:40:00.475711+00 31810 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UAnNyvZAJOSOYHPuDxzJeRRfn5g=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.477944+00 2025-12-17 12:40:00.47795+00 31811 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pU_y0uAku7ESaTKBhBRm54MFpM4=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.480659+00 2025-12-17 12:40:00.480665+00 31812 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v9zuKXu9sD4-t8HkKTRiIaIHIkA=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.48351+00 2025-12-17 12:40:00.483516+00 31813 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DaOgKjwDAq89aApp6FeAtDycpRc=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.486095+00 2025-12-17 12:40:00.486099+00 31814 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ukwm-eYZje_fsqfLc_DFpHGsvB8=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.488243+00 2025-12-17 12:40:00.488247+00 31815 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7mTpscWUuKXxKfpp0aRVfjQmRB0=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.490698+00 2025-12-17 12:40:00.490703+00 31816 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sui2DiGXgETippX1ntbHzw8uGS4=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.493123+00 2025-12-17 12:40:00.493127+00 31817 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8kgon-HNyYQ2ln41kipEwknMy_I=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.495026+00 2025-12-17 12:40:00.49503+00 31818 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IcE5AExe1hya9gqwIsZwW0Sap-w=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.496848+00 2025-12-17 12:40:00.496853+00 31819 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DUdKAf32Qs9XzPmFwWELu40mBfI=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.498652+00 2025-12-17 12:40:00.498656+00 31820 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wg_rJVXwo0zXpcua7_QHn4UlB9I=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.500664+00 2025-12-17 12:40:00.500668+00 31821 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pWnV5u0jUQhHG8paeLQ5db_zIZU=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.502574+00 2025-12-17 12:40:00.502579+00 31822 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4-y464pBvOFl5lrsB5OK2CAPz4c=", "createTime": "2024-08-15 14:53:12"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.50466+00 2025-12-17 12:40:00.504664+00 31823 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f8tNLNVnGSrGIP_WI_4OTOzM8iA=", "createTime": "2024-08-15 14:53:13"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.5067+00 2025-12-17 12:40:00.506705+00 31824 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NRyCXr22XWyZS2f46sBwDVirsYg=", "createTime": "2024-08-15 14:53:13"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.509211+00 2025-12-17 12:40:00.509215+00 31825 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ii3Nc42m5COfG_S7qARZ3oESoHg=", "createTime": "2024-08-15 14:53:13"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.511082+00 2025-12-17 12:40:00.511087+00 31826 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AGkuF_G_y6WCEBAy487A5IMg4QE=", "createTime": "2024-08-15 14:53:13"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.512993+00 2025-12-17 12:40:00.512997+00 31827 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wTFlJMJp2Viv39A5VC08TEx0ZeQ=", "createTime": "2024-08-15 14:53:13"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.515226+00 2025-12-17 12:40:00.515234+00 31828 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-FPY4Q6-bme142RLRX6eC68xCP8=", "createTime": "2024-08-15 14:53:13"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.517445+00 2025-12-17 12:40:00.51745+00 31829 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kaq9szk0QXFh5_vdpQv4xR3E5fU=", "createTime": "2024-08-15 14:53:14"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.51969+00 2025-12-17 12:40:00.519695+00 31830 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4d15h076es3esbPceZm7OWiftR4=", "createTime": "2024-08-15 14:53:14"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.521764+00 2025-12-17 12:40:00.521769+00 31831 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ot9RjB2MYPsxvAj43qvdgcT6Spo=", "createTime": "2024-08-15 14:53:14"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.52398+00 2025-12-17 12:40:00.523989+00 31832 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:htN7aW7PtWEJDsLAtFJaBSZR6zc=", "createTime": "2024-08-15 14:53:14"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.527398+00 2025-12-17 12:40:00.527406+00 31833 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t8DseYzxsHHS4GlNHKSTW2gASiE=", "createTime": "2024-08-15 14:53:14"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.52987+00 2025-12-17 12:40:00.529876+00 31834 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e8Hvf4E4IM53ZbDq36gi1RyYtOQ=", "createTime": "2024-08-15 14:53:14"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.531962+00 2025-12-17 12:40:00.531967+00 31835 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xERzpS4SQ7AhVaqumOojpZeZeN8=", "createTime": "2024-08-15 14:53:15"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.534009+00 2025-12-17 12:40:00.534014+00 31836 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mseYsJg73cf2X0F9kmvP7faAp9s=", "createTime": "2024-08-15 14:53:15"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.53582+00 2025-12-17 12:40:00.535824+00 31837 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nneIFHof114mz43f0rGC0dl991M=", "createTime": "2024-08-15 14:53:14"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.537862+00 2025-12-17 12:40:00.537866+00 31838 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uavhEfA83S6j3B-OkUpyN1uOy88=", "createTime": "2024-08-15 14:53:15"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.539882+00 2025-12-17 12:40:00.539886+00 31839 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MqeD8HPTJxwg8yIaB5kkAIWJFI0=", "createTime": "2024-08-15 14:53:16"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.541941+00 2025-12-17 12:40:00.541945+00 31840 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:71pRdX1X6ZlnTC9gUIPnqBSMQPQ=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.544308+00 2025-12-17 12:40:00.544314+00 31841 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W-6fPyaMxtsJE387w_UchRPiK_A=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.546758+00 2025-12-17 12:40:00.546763+00 31842 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OVqokIizTPgs81QbRlKnHrcPwgo=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.549014+00 2025-12-17 12:40:00.549019+00 31843 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gTN9Jpb_6FymNjC2fHg04nHHhsw=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.551383+00 2025-12-17 12:40:00.551389+00 31844 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ebh4FR9dmvcWoXnyEooIELEYeY8=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.553369+00 2025-12-17 12:40:00.553373+00 31845 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A9XCIg8_aM3CfDnNnJTprZW_fOw=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.555235+00 2025-12-17 12:40:00.555239+00 31846 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FLbnl0IIRRvRQqMp7x-Fv9eGj2M=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.557084+00 2025-12-17 12:40:00.557088+00 31847 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GtTrMHidpWNYbEgDLT1hs9Sm34U=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.559143+00 2025-12-17 12:40:00.559147+00 31848 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-drluMvXZPBHlfGPqIqIwxFbJS4=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.561384+00 2025-12-17 12:40:00.561388+00 31849 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7rZTePRcXSPJ0Zj11DojyrHOkYQ=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.563248+00 2025-12-17 12:40:00.563253+00 31850 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pZDbY_Jdq4sJzYsthuHC1WMzcqQ=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.565071+00 2025-12-17 12:40:00.565075+00 31851 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Um3arbc8fSWfCIHiWj5BbDpq1xs=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.567095+00 2025-12-17 12:40:00.567099+00 31852 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8pi3uClEK3QLLnCm8MI6WV0AhZQ=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.56918+00 2025-12-17 12:40:00.569192+00 31853 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bIBOszxvsik6K4JOgsh_cjJBK48=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.571205+00 2025-12-17 12:40:00.57121+00 31854 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NovzjeDMJRVPYulFzvM93wRvjpw=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.57327+00 2025-12-17 12:40:00.573275+00 31855 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dsjEaWZEqqbHHHeB5kdJKJsrZ2A=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.575749+00 2025-12-17 12:40:00.575754+00 31856 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wenxcvSVATEUYlnI03oAmxbkJYs=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.577908+00 2025-12-17 12:40:00.577913+00 31857 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s9ncZCxCu2IfwB5Bm711qSj5_XQ=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.580174+00 2025-12-17 12:40:00.580179+00 31858 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:02LrBZK9vxJvXSYf7PZJTDBe5PA=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.582276+00 2025-12-17 12:40:00.58228+00 31859 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pnXVlnuZAB-0wUwokIt3N_z2dk8=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.584393+00 2025-12-17 12:40:00.584398+00 31860 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ventRIY5puODxO_ICA5W7403Wu8=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.586574+00 2025-12-17 12:40:00.586579+00 31861 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I5E-meig5EeIPlNyYaixx02KcLE=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.588441+00 2025-12-17 12:40:00.588445+00 31862 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tlc9dsOaHwEa2JMNiN_fzjPvQLs=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.590338+00 2025-12-17 12:40:00.590344+00 31863 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qHM87TxLlnwonh91HMRbgV8J3yE=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.592767+00 2025-12-17 12:40:00.592772+00 31864 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5GaEcMjjAcQ3QGJrlVfAyczrNac=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.595005+00 2025-12-17 12:40:00.595011+00 31865 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3EP6blftufksV-pCqfcpTphnS4M=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.597236+00 2025-12-17 12:40:00.59724+00 31866 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=1766061599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BgO1DpesnFJ47mEBCBRd365gHqI=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.965281+00 2025-12-17 12:40:00.965289+00 31867 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-wAhflT7McOxG_2W3kmeVxVgA7g=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.968143+00 2025-12-17 12:40:00.968148+00 31868 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f9Xv0-eOKIpXB-oX-jcGJPSpmr0=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.970354+00 2025-12-17 12:40:00.970358+00 31869 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YTuingDQhNk3xi2tsTXQ_av7hCI=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.97248+00 2025-12-17 12:40:00.972484+00 31870 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZxUcFzx97uxLo5lsE4BiFCwOT00=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.974335+00 2025-12-17 12:40:00.97434+00 31871 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H1ZscM1eIrUeY2gPoqyAMWnhBSw=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.976685+00 2025-12-17 12:40:00.976693+00 31872 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NvvypOzbwhduL4c_8K_SrCt2C8c=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.978852+00 2025-12-17 12:40:00.978857+00 31873 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dTRrwx1h7viLJefoaSquc1LqiMw=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.980919+00 2025-12-17 12:40:00.980924+00 31874 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gLpuMWQp3rRGOvNk3AtkEUrnsXA=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.983059+00 2025-12-17 12:40:00.983063+00 31875 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:203W5wx-OEJwbv7BdzqlZPaG7Vo=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.985133+00 2025-12-17 12:40:00.985138+00 31876 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:giG7fzhvfVQN7XtohciCusUIdRM=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.987148+00 2025-12-17 12:40:00.987153+00 31877 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p9wqXoBGVMHdiCBkk-D0FUSl_5Q=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.989179+00 2025-12-17 12:40:00.989184+00 31878 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yXFZ7NQHyRDCwP58jP1ItgFyAvE=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.991227+00 2025-12-17 12:40:00.991232+00 31879 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OfLLT5BOamT0EQuNrjf3JlkK-LY=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.993533+00 2025-12-17 12:40:00.993538+00 31880 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ifoTb4jPyCsqGkcTqww68fAeZiY=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.995634+00 2025-12-17 12:40:00.995638+00 31881 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:duw6LPd5UrfOSyvJj--ZPs7UlZQ=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.997495+00 2025-12-17 12:40:00.997499+00 31882 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vYDRUKBZJdphDGXJR8fvmBDgwhw=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:00.999301+00 2025-12-17 12:40:00.999305+00 31883 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kleAiYSv_K7IH_8984o7xIG6EF0=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.001367+00 2025-12-17 12:40:01.001371+00 31884 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Jn2LLsS77RsuMYpx209KohIDpI=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.003423+00 2025-12-17 12:40:01.003428+00 31885 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZP8dbBcPGdWrVRBrjCqSjoxR2A4=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.005436+00 2025-12-17 12:40:01.005441+00 31886 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t2pfbl_8islAgUXdXxgsDcL4FVo=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.007505+00 2025-12-17 12:40:01.00751+00 31887 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3LVCxVu3j6Ht55ng5twYm8axNgM=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.009659+00 2025-12-17 12:40:01.009664+00 31888 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FpN9tIAGDFYVcWBjC6xz_x7ZoyY=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.011745+00 2025-12-17 12:40:01.011749+00 31889 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-qWPqws27ZCOEICzZuJdpiUnZV4=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.013681+00 2025-12-17 12:40:01.013686+00 31890 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hxC0HjNcgGZTpzpgIqEpaPmVMbg=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.016049+00 2025-12-17 12:40:01.016055+00 31891 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dh3VpERxf4SwWuSBJ4PBrJyfNG0=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.018079+00 2025-12-17 12:40:01.018084+00 31892 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yNgkxFmCSEMnuVVCEqc1IBdFsOA=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.019943+00 2025-12-17 12:40:01.019947+00 31893 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mhuO_tYO4-WRcjF1etXMxATJa00=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.02176+00 2025-12-17 12:40:01.021765+00 31894 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CYqJCxG9_Lu0LwAj9VEG7wnvg_8=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.023527+00 2025-12-17 12:40:01.023531+00 31895 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oGGW1CLjqk_WOP6lVN0S6vdAz10=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.026147+00 2025-12-17 12:40:01.026155+00 31896 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NQP0O5jiJSqzNp0mq1orld-NO6E=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.028928+00 2025-12-17 12:40:01.028934+00 31897 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5019aDWdCAkrMXU0fMwJPGXQTQM=", "createTime": "2024-08-15 14:53:21"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.031243+00 2025-12-17 12:40:01.031248+00 31898 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xzw3PA0Q3APA_Ui7FqBnim_Ahg4=", "createTime": "2024-08-15 14:53:21"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.033185+00 2025-12-17 12:40:01.03319+00 31899 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lRuAGA2GnK5hkkXzdkbevaqrSaw=", "createTime": "2024-08-15 14:53:21"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.035091+00 2025-12-17 12:40:01.035096+00 31900 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XePlnNAy42VcXINPk1kDuFkXZRo=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.037018+00 2025-12-17 12:40:01.037022+00 31901 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rt7VhNCyTY8eeu8fXlVVMvC8xZA=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.038972+00 2025-12-17 12:40:01.038977+00 31902 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gYwHTTyj1SVsNC6-wZhienJZ7cc=", "createTime": "2024-08-15 14:53:21"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.04086+00 2025-12-17 12:40:01.040865+00 31903 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ut5jzncZEUFYEJGDM7ITCZTt1TM=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.043053+00 2025-12-17 12:40:01.043059+00 31904 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QhRoP3vghLLcCxb1HFLWJ6GC9s4=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.045355+00 2025-12-17 12:40:01.04536+00 31905 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P9EmwsUSUI_7ReZmJPVhWUWCwvU=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.047296+00 2025-12-17 12:40:01.047301+00 31906 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WTfkadKxlf8k7VSNaOd6w0TMtEc=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.049117+00 2025-12-17 12:40:01.049121+00 31907 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SgY66j24CyurmNnrXqeD33GdPVk=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.05091+00 2025-12-17 12:40:01.050915+00 31908 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fXPumPz4_8aHAp931krdw1JRM8c=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.05271+00 2025-12-17 12:40:01.052714+00 31909 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kOmkEFISLgF89yv0d6pvRmm2sc0=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.054699+00 2025-12-17 12:40:01.054703+00 31910 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kjsipzQPO5-jXwhONHB4RAND2P0=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.056644+00 2025-12-17 12:40:01.056648+00 31911 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x-n2TIOvtRIn3thliS5Q3BHLKjY=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.058913+00 2025-12-17 12:40:01.058918+00 31912 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NdgK2cWa87_DoR8Y4O-hVs0VVv4=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.061303+00 2025-12-17 12:40:01.061308+00 31913 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jllIOYZkaO5PFed0v8FZTz-v-pw=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.063341+00 2025-12-17 12:40:01.063346+00 31914 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jneaf7A55bsNVRYAW7Sk1Wfi7bo=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.065201+00 2025-12-17 12:40:01.065205+00 31915 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yKQ9RsyZTu-ikgb28Gll0CRe9co=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.067042+00 2025-12-17 12:40:01.067046+00 31916 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hyNuzpbvBCKLsqPi_GgQJP9_vm0=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.068901+00 2025-12-17 12:40:01.068906+00 31917 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iWuXnw-G0NpwA3bwL067DE-7kaY=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.071002+00 2025-12-17 12:40:01.071007+00 31918 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tsfAoVKh1N2mbvvCRTHHozA2as8=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.073029+00 2025-12-17 12:40:01.073033+00 31919 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oj0aCoYKX-tvaQPLhFc8BCCryEk=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.075157+00 2025-12-17 12:40:01.075162+00 31920 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RE71VE-e0Rvj3Q4XIaYVXeJ9o4w=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.077368+00 2025-12-17 12:40:01.077373+00 31921 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3XDpcMfLT_-WVejV52RZNUFg994=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.079202+00 2025-12-17 12:40:01.079207+00 31922 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PfMIT0wypYxILcxCdUBmzJqHU60=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.081005+00 2025-12-17 12:40:01.081009+00 31923 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nRB1rUsm9onwNuVKJ81IhjjlSoE=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.0831+00 2025-12-17 12:40:01.083104+00 31924 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NkN6dYPwMCkhsgODZFbBuTrJ2eU=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.085146+00 2025-12-17 12:40:01.08515+00 31925 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p4_LnU78vQeANS5_J_taOhOcFHo=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.086938+00 2025-12-17 12:40:01.086942+00 31926 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_EP8ZQLkFtBGCGxV4U0mJ8CWA9c=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.088951+00 2025-12-17 12:40:01.088955+00 31927 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gKcD3wPeyQ-mo9Ny-2_sxwmpWIQ=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.091001+00 2025-12-17 12:40:01.091007+00 31928 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:00DWrttiI4phD6afM7Gbp8xxAk8=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.093328+00 2025-12-17 12:40:01.093334+00 31929 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ceLW-YnmxMXhSDGADl8RvvSicjo=", "createTime": "2024-08-15 14:53:24"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.095602+00 2025-12-17 12:40:01.095606+00 31930 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CKMEsD-qjhF565rfIPIn6h0vJ20=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.097488+00 2025-12-17 12:40:01.097492+00 31931 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r4o1y5RtD1KJv1QxSEzN7_a25Ho=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.099294+00 2025-12-17 12:40:01.099298+00 31932 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QT3ifahhpHBi4lFN5E5U9t_KQmg=", "createTime": "2024-08-15 14:53:24"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.101096+00 2025-12-17 12:40:01.101101+00 31933 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bcBcWKwaIQ8EZHoUwEusoHKhtHk=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.103132+00 2025-12-17 12:40:01.103136+00 31934 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U4kAeftG1t-LgOojlzqLQs99hS4=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.105375+00 2025-12-17 12:40:01.10538+00 31935 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mAOO6tJ5RoRUha8a0ImKxhCpIXk=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.107575+00 2025-12-17 12:40:01.10758+00 31936 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2WVdZrlgqcN1qLhoVS6lOU16UeE=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.109816+00 2025-12-17 12:40:01.10982+00 31937 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:exQOqHdA0RaC8vIsp5lhYwZF_ME=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.112162+00 2025-12-17 12:40:01.112167+00 31938 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E-fLk9axEFzCtsoHUblIJIJac1Q=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.11448+00 2025-12-17 12:40:01.114485+00 31939 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:olBi2NJxNAF3-YQZUL1m-nb60Hs=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.116553+00 2025-12-17 12:40:01.116558+00 31940 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vTs9NUZICKUIky6eBV1sBSSjGdg=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.118661+00 2025-12-17 12:40:01.118666+00 31941 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5AFgrdW9QEVQ_10VnbGj9_SZycc=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.120998+00 2025-12-17 12:40:01.121003+00 31942 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YF0igCYaW7St_k-KWMjLXDKME-k=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.123205+00 2025-12-17 12:40:01.123209+00 31943 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xHw_24azUWHbsDHwR1JrqGbvx8E=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.125609+00 2025-12-17 12:40:01.125613+00 31944 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kEnASvnUQw6dr64ra8JJXKr03LU=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.128892+00 2025-12-17 12:40:01.1289+00 31945 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HmTdhLtrXx6_XSf8MFjjMSVVnek=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.132011+00 2025-12-17 12:40:01.132018+00 31946 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iEqIU3sJfYJfZ_bYs2BYmM5Jci8=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.135046+00 2025-12-17 12:40:01.135053+00 31947 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hgb4rdzx90aZIKDv2oczAJRzYHg=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.13754+00 2025-12-17 12:40:01.137544+00 31948 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OknlWHbvrdW1MfL9IVsmGVQPx10=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.139639+00 2025-12-17 12:40:01.139643+00 31949 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9nIxmZF-Zhw-R14JYw1z7AijKiQ=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.141507+00 2025-12-17 12:40:01.141512+00 31950 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iD0hZujXKHnNN1JPT6ps32outEk=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.143645+00 2025-12-17 12:40:01.143649+00 31951 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8sp2jqEknJpHhTmEDZoB1EKPf68=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.145825+00 2025-12-17 12:40:01.145828+00 31952 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9KffwJe6eSrGkzKGvGhqIPzjKR8=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.147652+00 2025-12-17 12:40:01.147656+00 31953 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6B6oJGHMzf2A2-0r-Fys-es0XrU=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.149447+00 2025-12-17 12:40:01.149452+00 31954 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-0gnYF47lPxg1Muhm7wiXB0CSHI=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.151624+00 2025-12-17 12:40:01.151629+00 31955 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pDBy0NaR36fdLxCSF_CQlseDY2c=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.153765+00 2025-12-17 12:40:01.15377+00 31956 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EFu2ff476i3pdThng9mzHkr5KT0=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.155603+00 2025-12-17 12:40:01.155608+00 31957 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M6npWyfHB4sLq6DG8MRNBRhmTMI=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.157695+00 2025-12-17 12:40:01.157702+00 31958 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0EwXcYUuPLYje8HmB82UpQbiyJo=", "createTime": "2024-08-15 14:53:27"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.159944+00 2025-12-17 12:40:01.159949+00 31959 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FzUVhSS8MNfsF1amJXZms2asfII=", "createTime": "2024-08-15 14:53:27"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.161815+00 2025-12-17 12:40:01.16182+00 31960 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z7CLQSMydApn3wPAE_6lEwtvZFc=", "createTime": "2024-08-15 14:53:27"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.163622+00 2025-12-17 12:40:01.163626+00 31961 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Lj3PgBFaocRIrrUHWTsQbcLFow=", "createTime": "2024-08-15 14:53:27"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.165603+00 2025-12-17 12:40:01.165608+00 31962 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FycVOX9og0RGjgeV4NBNq1Cu56w=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.167597+00 2025-12-17 12:40:01.167601+00 31963 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MRLukqj99YH2D1BoQvUXvGqUOIs=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.1696+00 2025-12-17 12:40:01.169604+00 31964 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5WvyWpwmKBkCjvAjrPa9GDRMH2k=", "createTime": "2024-08-15 14:53:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.171529+00 2025-12-17 12:40:01.171533+00 31965 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C6D5bmI13YufFyAUmxDMlt2KqmI=", "createTime": "2024-08-15 14:53:27"}] \N 1 1 \N t \N \N \N +2025-12-17 12:40:01.173502+00 2025-12-17 12:40:01.173507+00 31966 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=1766061600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ht6ITGmAQ_Yj5ILXfeku7BfEZsM=", "createTime": "2024-08-15 14:53:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.394015+00 2025-12-17 12:50:00.394021+00 31971 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vfcerT_UBW353QhjmiEQLQgxv7I=", "createTime": "2024-08-15 14:53:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.383048+00 2025-12-17 12:50:00.383059+00 31967 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zWxj39mgXjN6-KOlzyK-4vVyeqA=", "createTime": "2024-08-15 14:53:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.386382+00 2025-12-17 12:50:00.386388+00 31968 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qi8XJU9oydNb4aNUOywXS7qf9jA=", "createTime": "2024-08-15 14:53:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.389134+00 2025-12-17 12:50:00.38914+00 31969 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1po4KGM4pqQW_IzK1Mj9gYHmBhA=", "createTime": "2024-08-15 14:53:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.391698+00 2025-12-17 12:50:00.391704+00 31970 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RHHtUmApJmGYl2l8gpwVAqRHG00=", "createTime": "2024-08-15 14:53:28"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.395911+00 2025-12-17 12:50:00.395916+00 31972 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4IKPOb73_4fjTMwpU-dz2RA6VGg=", "createTime": "2024-08-15 14:53:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.397831+00 2025-12-17 12:50:00.397836+00 31973 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kI504tQpY1w9TuDGXLsSGV075vE=", "createTime": "2024-08-15 14:53:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.399901+00 2025-12-17 12:50:00.399906+00 31974 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ts7ddxMNrfhwXVSUzGpQDDdswyg=", "createTime": "2024-08-15 14:53:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.401717+00 2025-12-17 12:50:00.401721+00 31975 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FoWs4HW8QDD4UFjaiPDOw20KfwU=", "createTime": "2024-08-15 14:53:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.404036+00 2025-12-17 12:50:00.404041+00 31976 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tMnJtwNaVVRMLJYCkw_74WuF1WM=", "createTime": "2024-08-15 14:53:30"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.406324+00 2025-12-17 12:50:00.406329+00 31977 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:39LsbDIPT_DHF6NzpwWDNHtWeZM=", "createTime": "2024-08-15 14:53:30"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.408179+00 2025-12-17 12:50:00.408184+00 31978 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:thsITqLCsqQgzpUuvH0HSzEJ3kc=", "createTime": "2024-08-15 14:53:30"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.409987+00 2025-12-17 12:50:00.409991+00 31979 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jz-AebZIZRIwUMo0a7wWaMJCU0U=", "createTime": "2024-08-15 14:53:30"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.411786+00 2025-12-17 12:50:00.411791+00 31980 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b21uDbcs36nWEjx6VmMLjlbR1Mk=", "createTime": "2024-08-15 14:53:29"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.414131+00 2025-12-17 12:50:00.414137+00 31981 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:De1U8iTfV7slgBJh4YOFZt4N8_M=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.41678+00 2025-12-17 12:50:00.416787+00 31982 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V6SRVQLx89qONiBCaa-S1M_H1rE=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.419152+00 2025-12-17 12:50:00.419158+00 31983 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ckPUtqEOoeVVndRkAzBsImiUTSc=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.421545+00 2025-12-17 12:50:00.421549+00 31984 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mej82r6TDhWipH6QZMvWPBiqaw4=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.423967+00 2025-12-17 12:50:00.423972+00 31985 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FrHRs09Ik3ukVTFxPMKk5vVPJBw=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.427+00 2025-12-17 12:50:00.427007+00 31986 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BXdAKoSDQ6MUYjo6np_aT44Lmo0=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.429775+00 2025-12-17 12:50:00.42978+00 31987 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4NaatjuZvo_xAFWThKsqTVVOu34=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.432238+00 2025-12-17 12:50:00.432243+00 31988 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ifikswHrsmHcUjCqzRdl2iKrV0Y=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.434476+00 2025-12-17 12:50:00.434481+00 31989 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EXzjDrQ4yPkVYIjR5zBXkvIQLeI=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.436422+00 2025-12-17 12:50:00.436427+00 31990 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AaVW_SMtmS_tjdXHBRSxsq67IQY=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.438475+00 2025-12-17 12:50:00.43848+00 31991 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ehJ0KX-aLDwK0MxauDeKeEMCWA=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.440407+00 2025-12-17 12:50:00.440412+00 31992 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kZ0RjBHN-mJ_7hi7z5IEAqZEzeg=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.442302+00 2025-12-17 12:50:00.442306+00 31993 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bzT9WFWBrVglkOOtpCUsFpHKjm0=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.444139+00 2025-12-17 12:50:00.444144+00 31994 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HkR8CvXXJ0IvRGGJL_mG-xqKKt8=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.446195+00 2025-12-17 12:50:00.446199+00 31995 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NLCEyYsKC1qadFtf0SgC2Tze0ec=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.448099+00 2025-12-17 12:50:00.448103+00 31996 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:keLzQzsGj55SeC1hWI0HIm-PAg4=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.450173+00 2025-12-17 12:50:00.450178+00 31997 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-pa8DX9fpCrsu8veTnLpko0mvqw=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.452218+00 2025-12-17 12:50:00.452222+00 31998 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B0n_jqCH-n2j0ccRGDawiJDQUVY=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.454466+00 2025-12-17 12:50:00.454471+00 31999 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:esFSWb_fZma_BSCucQdS5AfXWYQ=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.456673+00 2025-12-17 12:50:00.456678+00 32000 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:STwGy_fhCcNjPEqTnbqy-oFUeAo=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.458602+00 2025-12-17 12:50:00.458608+00 32001 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FSyN7u8gJJotqwiJhUlCExnIH8I=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.46101+00 2025-12-17 12:50:00.461015+00 32002 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mqO7IAm5E3XNYy_lsny-UvKsSxk=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.463506+00 2025-12-17 12:50:00.463511+00 32003 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YLCcxz1Gv68HHRIsrP9qOXL9Agw=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.465696+00 2025-12-17 12:50:00.465701+00 32004 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:beJigQG1ET1MwBHE4gkPf_RvZTI=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.468319+00 2025-12-17 12:50:00.468324+00 32005 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9vSThQDfL6PiAgbB7TUP9X0vLwg=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.471029+00 2025-12-17 12:50:00.471035+00 32006 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0emTpTLCPaEochV-z3fnZbTk06o=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.473535+00 2025-12-17 12:50:00.47354+00 32007 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u5UYbpGhaZyWhj84cq2AFzngP2Y=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.475671+00 2025-12-17 12:50:00.475676+00 32008 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wyupsWFoNZjMb5eJT-WojkgfE1k=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.477791+00 2025-12-17 12:50:00.477796+00 32009 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Es_PrYdDZHicVmbR7AdDr2YEKvg=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.479893+00 2025-12-17 12:50:00.479897+00 32010 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ed0PpIoxU9XDzZohFqgi8-dgnis=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.481697+00 2025-12-17 12:50:00.481701+00 32011 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t6jvwZQnsPmQYc59-qK9EnaK52A=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.483473+00 2025-12-17 12:50:00.483478+00 32012 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1fIFnd2QCYlXLAmNXanQSW-IJok=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.485283+00 2025-12-17 12:50:00.485288+00 32013 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oU6lsBX9-8dLEAxCym0IT_0jfSU=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.487452+00 2025-12-17 12:50:00.487456+00 32014 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zq4CrJcnr0zrl3W0-wyrKIe-aY4=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.489925+00 2025-12-17 12:50:00.48993+00 32015 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kGNO7akAdQZnKxDc3ncLZT6YvDE=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.491811+00 2025-12-17 12:50:00.491816+00 32016 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZagpC8j0D-La2SXBHnyqLKOuZp4=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.493694+00 2025-12-17 12:50:00.493699+00 32017 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0I6XnxdAihYcAPxLrjga8bmV7D8=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.495515+00 2025-12-17 12:50:00.495519+00 32018 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yk1guEAWluRfQjrWTSVJiigzLS0=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.497552+00 2025-12-17 12:50:00.497556+00 32019 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3UOPt0ftdjcK5fU-IEWZHpCC8u8=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.499348+00 2025-12-17 12:50:00.499352+00 32020 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Ia_DrFiTFMl_jRTuJw8frpWYLk=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.501384+00 2025-12-17 12:50:00.501388+00 32021 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hl9vp8MdGEunuOxxRC5xNnOXslo=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.503477+00 2025-12-17 12:50:00.503482+00 32022 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i5mdHny6_--na_Ne0Ul8-ZjFq-A=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.506262+00 2025-12-17 12:50:00.506267+00 32023 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qQPwAZBk3WxuLbh_n7tF9Zsqk6k=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.508953+00 2025-12-17 12:50:00.508958+00 32024 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z4u7CC04qVtfYBxQ6mqpPTKj6gE=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.511538+00 2025-12-17 12:50:00.511542+00 32025 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rmMFiD2O47k2jXpAPwmHKHrFtbM=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.514057+00 2025-12-17 12:50:00.514062+00 32026 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DFK0wfNWOQKVTpMMzrTLObgiSAs=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.516305+00 2025-12-17 12:50:00.516312+00 32027 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QfrORBZnDRVVpO82i_tqZ7vFUB4=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.518728+00 2025-12-17 12:50:00.518736+00 32028 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rOoHPNlr0gOp7aUB9wPkm6uAF6M=", "createTime": "2024-08-15 14:53:35"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.521377+00 2025-12-17 12:50:00.521384+00 32029 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJwJ618bX4LSDrB2lX9dwDXGRfs=", "createTime": "2024-08-15 14:53:35"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.523727+00 2025-12-17 12:50:00.523732+00 32030 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BoGJig6VZchvqIu7PjJOuibhfqY=", "createTime": "2024-08-15 14:53:35"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.525839+00 2025-12-17 12:50:00.525844+00 32031 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XXg6RNs4ScrdxH2VkBp9nkKS8jI=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.527664+00 2025-12-17 12:50:00.527669+00 32032 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aFwHwNzMgzHfYNPgaez8V_LkA_I=", "createTime": "2024-08-15 14:53:35"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.529709+00 2025-12-17 12:50:00.529713+00 32033 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mH6dKLCJYiKjk3iR5PrFVKqaVNs=", "createTime": "2024-08-15 14:53:35"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.53176+00 2025-12-17 12:50:00.531765+00 32034 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s9fTObn7OpEGSHBcks0PGkneTGU=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.533825+00 2025-12-17 12:50:00.533829+00 32035 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ENSdyhTZ2FyXWYPSAV1XkcLHS8M=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.535692+00 2025-12-17 12:50:00.535697+00 32036 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XZ3gOH_RZoWU-Gdcs3jyqQxD8WI=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.53795+00 2025-12-17 12:50:00.537955+00 32037 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z1wzshW1XUFc5G_HUy-qk2BaJkY=", "createTime": "2024-08-15 14:53:35"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.541054+00 2025-12-17 12:50:00.541064+00 32038 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WsJjpKNKEaxTnZY-En7f1cORa6k=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.544396+00 2025-12-17 12:50:00.544404+00 32039 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NP9Y4SW1Z8At0v2_V6drSKHVz10=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.547975+00 2025-12-17 12:50:00.547984+00 32040 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K533n9JukN0qFtE7MUfrkqXi7CI=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.551143+00 2025-12-17 12:50:00.551151+00 32041 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LdlqqahczvsQBuaYWYKZH8If7Ek=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.554472+00 2025-12-17 12:50:00.55448+00 32042 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aVmpoLBMwG3qVE31I32HOQQAdJI=", "createTime": "2024-08-15 14:53:35"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.557046+00 2025-12-17 12:50:00.557051+00 32043 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7hiH39MGxC56_RmFfwUcCJ4YvfQ=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.559469+00 2025-12-17 12:50:00.559474+00 32044 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GFH825oynjCfCYn0fgzb-nnYv1w=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.561515+00 2025-12-17 12:50:00.56152+00 32045 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aX4OoZ_Kp5peCei35zUZjCRQFdY=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.563346+00 2025-12-17 12:50:00.563351+00 32046 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zPHCGsYDmdOb9lhWI38ku3H2JgE=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.56523+00 2025-12-17 12:50:00.565234+00 32047 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6MKNJx_91JguHnF4aj1Akt0LrTs=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.567069+00 2025-12-17 12:50:00.567073+00 32048 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NfYh2yyc_YAXGrUvvEx3CPXkVV4=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.568935+00 2025-12-17 12:50:00.56894+00 32049 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FTY21VrhN4fEcr8DXARZXGRIjKA=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.571158+00 2025-12-17 12:50:00.571163+00 32050 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8QzgCGlX5YU4Y8-0j79cwBEZqX8=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.573272+00 2025-12-17 12:50:00.573277+00 32051 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bSHOOuIBd8UMYkZ7FgIQlbTVATo=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.575117+00 2025-12-17 12:50:00.575122+00 32052 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r_s_-Lz_zwN5MhIC-meD9M5EQac=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.576943+00 2025-12-17 12:50:00.576948+00 32053 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bkkG9_YvVQVnMZCOe2FBdtYX6Ds=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.578973+00 2025-12-17 12:50:00.578977+00 32054 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zqoCpkI2YyI8A7pciV-8zipVEG0=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.581+00 2025-12-17 12:50:00.581005+00 32055 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UhiI0w6_GmVEbzK7jliSGi5q6XE=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.583037+00 2025-12-17 12:50:00.583041+00 32056 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z1Ha31Hjkw59Vxu69NTBhYjXVyI=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.585062+00 2025-12-17 12:50:00.585067+00 32057 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KLQ1LEerfsFPAeleKGrY7xoaqSw=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.587189+00 2025-12-17 12:50:00.587194+00 32058 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LP5_66pZf9xM9foVcC3pA03f-xQ=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.589319+00 2025-12-17 12:50:00.589324+00 32059 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IBsjs1SngE03313DloJa1BUFnrs=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.591132+00 2025-12-17 12:50:00.591137+00 32060 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O1CGBrRpCIxKqE5FZv6HLCv0-g0=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.593105+00 2025-12-17 12:50:00.593109+00 32061 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OEU6AJqXmDYe8kdTNWrFU58YiHc=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.595054+00 2025-12-17 12:50:00.595059+00 32062 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KZy5PSKiROhjJTXj5GQAIlmaJpo=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.597032+00 2025-12-17 12:50:00.597036+00 32063 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-E--vjUCzmYvhUBlC50_2FFZyqc=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.599024+00 2025-12-17 12:50:00.599029+00 32064 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z3HeC3ymqU1_vQBNl7nChHCNTdg=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.601041+00 2025-12-17 12:50:00.601046+00 32065 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:39WmQPBpTpj8RvVQsEI2MmbmzVM=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:00.603068+00 2025-12-17 12:50:00.603073+00 32066 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=1766062199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pXIUjpwpqnNqfHryGeomKHqtpUA=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.187793+00 2025-12-17 12:50:01.187803+00 32067 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bm6C8mJRvwucJ3jjM0MainzUFxs=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.190892+00 2025-12-17 12:50:01.190898+00 32068 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uVmCqGgmtEd9vnoUKJCkJxQFlhI=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.193134+00 2025-12-17 12:50:01.193139+00 32069 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FP9bpwHdEpiTHAxlGYe_rJwNUbE=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.195004+00 2025-12-17 12:50:01.195009+00 32070 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c4GrPmpzzvjOe2MURzlitTEc0eA=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.19686+00 2025-12-17 12:50:01.196865+00 32071 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dYxXTZ2TrQAHEEYijoKm8Plke-k=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.19866+00 2025-12-17 12:50:01.198664+00 32072 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_CktoGWDuaq5qrOXlOk1Y_-byJE=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.200483+00 2025-12-17 12:50:01.200488+00 32073 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-RqLyqdQmrvc2z0WFp9eEI_MdmE=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.202544+00 2025-12-17 12:50:01.202549+00 32074 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FWwGXgD2JhJMJUnKo0QE7cxmTlc=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.204738+00 2025-12-17 12:50:01.204742+00 32075 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NmQCDsUSzpuNdhLqUFwDCvr_eoc=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.206941+00 2025-12-17 12:50:01.206946+00 32076 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iNRRGbnPaHZGhSIegUJuEvbQSHQ=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.208989+00 2025-12-17 12:50:01.208994+00 32077 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:odTNCcmU0ts_EZvdtPzV_IY3VZY=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.210875+00 2025-12-17 12:50:01.21088+00 32078 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2C8IZbbt8UjifGvJXmpIHMWBW3k=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.212711+00 2025-12-17 12:50:01.212716+00 32079 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B7P14UadcSj4r6FZwTBaCxygzFY=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.214877+00 2025-12-17 12:50:01.214882+00 32080 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zr9hmvRGkSp-jr16WWWszrhn5Hg=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.224707+00 2025-12-17 12:50:01.224712+00 32085 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B1mlmr4LnJTWEye_Mx9WW5wVL8o=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.217054+00 2025-12-17 12:50:01.217059+00 32081 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gh8o_RO93iCluTN43I-1QkFcxXI=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.218932+00 2025-12-17 12:50:01.218937+00 32082 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZeA_z4dQS8jj_NnquzYR0O446sE=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.220804+00 2025-12-17 12:50:01.220809+00 32083 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XzGyUAvgonSnfO4GbpSqlY70jnU=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.222892+00 2025-12-17 12:50:01.222897+00 32084 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rZChrX7g4i9Vx4-LiLfAQ7sgr74=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.226752+00 2025-12-17 12:50:01.226756+00 32086 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x32F7nOetkXwvQbl3-6i2FDYgo4=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.22878+00 2025-12-17 12:50:01.228785+00 32087 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pyCjmhsMxzOf4qSSqxKnBqjG1fo=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.230809+00 2025-12-17 12:50:01.230813+00 32088 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RzMPywJKxY_RS_uHrO89YXZujbo=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.233007+00 2025-12-17 12:50:01.233012+00 32089 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tt7YjVd3FKbr_pID5TIgUPYGjko=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.235129+00 2025-12-17 12:50:01.235134+00 32090 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ydz4YxFIlrIFzgxbGV1nWylSlnk=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.237132+00 2025-12-17 12:50:01.237137+00 32091 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hYdvvLAgUPRhqa01rguyXyVr1t4=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.239106+00 2025-12-17 12:50:01.239111+00 32092 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_WIkB3oPRsV9GoHPP0MiMox_tKw=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.240935+00 2025-12-17 12:50:01.24094+00 32093 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LVRNiuMXcl0ephrMsVm8OCKbVeU=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.242988+00 2025-12-17 12:50:01.242993+00 32094 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:myLXbcppOOH9636rCh3MdrdlopQ=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.244995+00 2025-12-17 12:50:01.245+00 32095 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cZ7snLV_JeCiKL5ilGx-uAxHq58=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.247067+00 2025-12-17 12:50:01.247071+00 32096 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gdWqyus-OGxD1tabNiDLiHXcvJI=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.248875+00 2025-12-17 12:50:01.248879+00 32097 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w2U2uGp6GGNQcZeePOEsKiBKzvs=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.250889+00 2025-12-17 12:50:01.250894+00 32098 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDZmL4SIyeRNBpvJJKM88kcJYCw=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.252905+00 2025-12-17 12:50:01.25291+00 32099 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DF_PAPljVcyoiMWciD2uiQyFm0U=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.255194+00 2025-12-17 12:50:01.255199+00 32100 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3LxgMDHpHuA02Y6HaRzVtnPTdUQ=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.257421+00 2025-12-17 12:50:01.257425+00 32101 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MQETpGNvRBcjE9EMhfWJ-SW-VJ0=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.259389+00 2025-12-17 12:50:01.259394+00 32102 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VQoghTFL2Yo1Z90tWQtRhaNHSSc=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.26163+00 2025-12-17 12:50:01.261634+00 32103 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CrJG9zLbpJa-J9zN1mSGpHnxP_k=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.263431+00 2025-12-17 12:50:01.263435+00 32104 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DuoVtGbREetzhDU9KkCjnU5a4eQ=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.26525+00 2025-12-17 12:50:01.265254+00 32105 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gEAkIuHR64ylzRO99vwdOJ5JzxU=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.267117+00 2025-12-17 12:50:01.267121+00 32106 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j2pScFuJnr3wanIN94r9I9ak-IQ=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.269197+00 2025-12-17 12:50:01.269202+00 32107 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wP_Y1jhGiIZwMq4TxQBWdKIpmwQ=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.271584+00 2025-12-17 12:50:01.271588+00 32108 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:krlwlDsBMLr-braQMmMONtsLM2Q=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.273997+00 2025-12-17 12:50:01.274006+00 32109 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FdncYQzJ5vXWfgo3qJCltnPnlzM=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.277397+00 2025-12-17 12:50:01.277405+00 32110 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LtRzqkQG-BuqfIO0s5EEkkCJXc0=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.280152+00 2025-12-17 12:50:01.280158+00 32111 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0yxHln-2caj8oMnr-aWia8Jw3Dc=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.282279+00 2025-12-17 12:50:01.282283+00 32112 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pzur2p8wTvhGkiHQ8SAoLETv6MQ=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.284351+00 2025-12-17 12:50:01.284356+00 32113 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n1m72g6iSuNj0bYokCcLNX5Hd8s=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.286292+00 2025-12-17 12:50:01.286297+00 32114 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v6HdYMxWJAqPRV6gw425e43mVU4=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.288664+00 2025-12-17 12:50:01.288669+00 32115 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:INjWd5hdlWNbk5gJIgqjdVXWnoY=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.29102+00 2025-12-17 12:50:01.291026+00 32116 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7cjSlPZdkpEeSxd-TVqKtZRhll8=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.293417+00 2025-12-17 12:50:01.293422+00 32117 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P_mRZ5-l3j-w1E8jC1As0JhNYz8=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.295627+00 2025-12-17 12:50:01.295631+00 32118 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-jKqABQq8KThSL8RK01ihPxuCqU=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.297489+00 2025-12-17 12:50:01.297493+00 32119 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HnWBoXM0mRQ5ZOvHzKk0B3uwAqc=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.299281+00 2025-12-17 12:50:01.299285+00 32120 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pcw05uE1MFT1t3UqBege_M5td28=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.301305+00 2025-12-17 12:50:01.301309+00 32121 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6F0kEMoPj51_OHjkn12j56Mz5gw=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.303537+00 2025-12-17 12:50:01.303542+00 32122 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zFrvybL5w3y-bEsIRA9rO-8SxqQ=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.306036+00 2025-12-17 12:50:01.306042+00 32123 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ptwKTdnvqlKaYWi6FZif3UIUniw=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.30837+00 2025-12-17 12:50:01.308375+00 32124 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jTISqYxhFrTtV_XVn7YFLXb2XGg=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.310576+00 2025-12-17 12:50:01.310583+00 32125 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gpcOhgAb2m8d4gARequ-En7LUV4=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.31308+00 2025-12-17 12:50:01.313086+00 32126 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ak-pevRULLd3-lJFwlBCnCT_eA=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.315561+00 2025-12-17 12:50:01.315585+00 32127 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5E4kQi6-3IrnYHaJJMyeDMGdNCU=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.318281+00 2025-12-17 12:50:01.318286+00 32128 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ziqsr-nP9iZfPU3EHISZawX2GrY=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.321041+00 2025-12-17 12:50:01.321047+00 32129 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oyx0m-Gpe_I9ExKBEyi0IozDgB8=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.323909+00 2025-12-17 12:50:01.323916+00 32130 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yrRN9s84R0MIDRwSHxxxtQqDEUA=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.326689+00 2025-12-17 12:50:01.326695+00 32131 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zvfgs-lpXWBjaEJXBxNop_eR47A=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.329292+00 2025-12-17 12:50:01.329297+00 32132 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:adkWTVHPe_FiVHagx9llS_a1ang=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.331848+00 2025-12-17 12:50:01.331854+00 32133 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C-ig5PrDoHlQgzOUEFTnSRSrU-I=", "createTime": "2024-08-15 14:53:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.334165+00 2025-12-17 12:50:01.334171+00 32134 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lJ2amSyB4klLpQ_uFb-0HYC36IE=", "createTime": "2024-08-15 14:53:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.336639+00 2025-12-17 12:50:01.336646+00 32135 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1QU9y3JOmg_3W0g_IouubcxsQDk=", "createTime": "2024-08-15 14:53:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.33924+00 2025-12-17 12:50:01.339246+00 32136 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qYAHOoToDkxti97qTKr-3xbpb5w=", "createTime": "2024-08-15 14:53:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.341305+00 2025-12-17 12:50:01.341312+00 32137 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y7umLEU0AnMi9muyohWwGDwJEiE=", "createTime": "2024-08-15 14:53:44"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.343556+00 2025-12-17 12:50:01.343561+00 32138 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:awI9S0RzzVJV6ptkpFrJ-HfaQr4=", "createTime": "2024-08-15 14:53:45"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.345609+00 2025-12-17 12:50:01.345614+00 32139 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GT5Kk90wKXllD4PhPYrcB86Palw=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.349774+00 2025-12-17 12:50:01.349778+00 32141 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vvNqN3tQukhRwjM-yKuH7grGpA8=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.351812+00 2025-12-17 12:50:01.351817+00 32142 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AymlqYpK4F9fB_T8YO8-29pSS_s=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.347714+00 2025-12-17 12:50:01.347719+00 32140 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lqc3XWj604YY7apFIgF-TpaAZW4=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.356231+00 2025-12-17 12:50:01.356237+00 32143 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PH74I2OzRaxi3MnGux44zy5X1m8=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.358122+00 2025-12-17 12:50:01.358127+00 32144 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wMwTKhGKLO-PVnkREbm1Ba3hHNs=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.359929+00 2025-12-17 12:50:01.359934+00 32145 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W1pxTwDmF7hMCQGBqBc69xVyuIg=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.361749+00 2025-12-17 12:50:01.361753+00 32146 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gwtyulbXfCHH5QehAtiM127MYv4=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.363767+00 2025-12-17 12:50:01.363771+00 32147 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nayw_k1gYa-a3hxqUmnma6Ocb8M=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.365874+00 2025-12-17 12:50:01.365879+00 32148 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wKuCbB7vH7L-6hYwI3haZnXwmM4=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.367981+00 2025-12-17 12:50:01.367985+00 32149 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q-LRGrPA0l8lSV7LCmu4ONk2j9A=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.369976+00 2025-12-17 12:50:01.369981+00 32150 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XAtxJGLRAVsph-5GHRSJsf-pMVY=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.372101+00 2025-12-17 12:50:01.372107+00 32151 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2yMoyPiSj27ibhxJOjuK2i-FfQ4=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.374289+00 2025-12-17 12:50:01.374293+00 32152 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6otMCmNO4VZttYZ9jKGtAWmuQD0=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.376183+00 2025-12-17 12:50:01.376188+00 32153 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fHegaQx3UlDf-nRda9zcKcC2Sr4=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.378057+00 2025-12-17 12:50:01.378062+00 32154 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xHthbOOqXUXiNz4pBJv2wmwRhps=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.379894+00 2025-12-17 12:50:01.379898+00 32155 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nY2YYCyohlLZClKPpbbLj6xeTuk=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.381964+00 2025-12-17 12:50:01.381968+00 32156 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zq0-wobr13s7a_fY55kCkLbiK4o=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.384019+00 2025-12-17 12:50:01.384024+00 32157 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4a4lulY_qVpeBpactkWDfjHut1M=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.386187+00 2025-12-17 12:50:01.386192+00 32158 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IEAsecDlUjQtIsUNUjPGgoXd1O0=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.388475+00 2025-12-17 12:50:01.388479+00 32159 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FlQTUC-c81ZHuJlj-Sto6O4JmAs=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.390482+00 2025-12-17 12:50:01.390487+00 32160 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aLtXokB77YPUY69SWQIrLoeCJWM=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.392422+00 2025-12-17 12:50:01.392427+00 32161 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8_ByibTRSgx6ftuk6Ct5QidHh0A=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.394496+00 2025-12-17 12:50:01.394501+00 32162 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8fXH1YoYEXhtTympx2izd5dQFv4=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.396539+00 2025-12-17 12:50:01.396544+00 32163 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9j0Vq1P1LvyL99HUymEPsG7OwxI=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.398571+00 2025-12-17 12:50:01.398577+00 32164 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:blzP2VeEekQMcfHaavxerI8qvl8=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N +2025-12-17 12:50:01.400608+00 2025-12-17 12:50:01.400613+00 32165 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=1766062200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VTPC9fVKldsaDNbsLZRPnRlBDgo=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.406327+00 2025-12-17 13:00:00.406339+00 32166 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cPtLNJs1L5zAyaC67RL441PlMwU=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.410779+00 2025-12-17 13:00:00.410788+00 32167 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2rNSivKE5-B_pqUbGX5b_K_m4a4=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.414132+00 2025-12-17 13:00:00.41414+00 32168 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-uLMU0ukn8MGWQw1DtV-rcWEfDA=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.417022+00 2025-12-17 13:00:00.417027+00 32169 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cBnmH3H_nkm1yg-Y1diXWkaIWhw=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.419522+00 2025-12-17 13:00:00.419526+00 32170 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:htXBMD9VPHzSkNsTcVDV3pKY_kU=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.421403+00 2025-12-17 13:00:00.421408+00 32171 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wwUdjPME7G4cIgEY7J199olMfJs=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.423213+00 2025-12-17 13:00:00.423217+00 32172 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:snjLLzK4-_juQaAbjWx2g5U7bjg=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.425411+00 2025-12-17 13:00:00.425418+00 32173 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nwD86SxFUTAlrAKqGj4Je9HytKU=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.427873+00 2025-12-17 13:00:00.427878+00 32174 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jU1z9zpVoFQmmqHKK1y0wNsQp1Q=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.431518+00 2025-12-17 13:00:00.431527+00 32175 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7HuXyWhhl-cZFL9tBJncBVzp5Ds=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.434244+00 2025-12-17 13:00:00.434249+00 32176 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GcxEit2myZFPnAvnXTl5Ov6QRZg=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.43646+00 2025-12-17 13:00:00.436465+00 32177 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pHrwUY7iZ7S9IqOXlGFiunsFQCk=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.438575+00 2025-12-17 13:00:00.438579+00 32178 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NzNQvtS9r2ZAYvK-DEzNdij-LDA=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.44058+00 2025-12-17 13:00:00.440585+00 32179 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UNzfvx8dqKVP1lfotjIWH7Kj5Ww=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.442648+00 2025-12-17 13:00:00.442653+00 32180 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hIuJV4LwznW96hepc6empQCEgzE=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.444498+00 2025-12-17 13:00:00.444504+00 32181 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OffolgH4Zu8rFiUdnrbwdXTQa8I=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.44666+00 2025-12-17 13:00:00.446665+00 32182 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kR81YRpapVyxGYexYddMlkw8dG8=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.448541+00 2025-12-17 13:00:00.448547+00 32183 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VUNkBtDGD2kEauwJGCR67KsDk6A=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.450802+00 2025-12-17 13:00:00.450808+00 32184 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jAm-k422kFqEMPrlnuBPsFiXIg8=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.452846+00 2025-12-17 13:00:00.45285+00 32185 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ueC8zs6cgX5B84C-6sOzcVyafC8=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.45473+00 2025-12-17 13:00:00.454735+00 32186 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iyurn05JFZO4Nu85dtPTlbJylPw=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.456568+00 2025-12-17 13:00:00.456572+00 32187 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hMd_YdLFDjq_c-sR-b3fAN0-ais=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.458614+00 2025-12-17 13:00:00.458619+00 32188 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kasWboD9XcCZrOc_qsT6Ht2xVJc=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.460435+00 2025-12-17 13:00:00.460439+00 32189 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZiKfdKJcsa9yXnwPoxA52d1hOhU=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.46255+00 2025-12-17 13:00:00.462555+00 32190 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qN7YAp7VfhnW2VRdZysPOEvgi5w=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.464558+00 2025-12-17 13:00:00.464568+00 32191 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6XHeY-gCFhicdlBmM3GyMOOGyGE=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.466641+00 2025-12-17 13:00:00.466646+00 32192 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9TQgqf2atUsj361RUpp6PHELZl4=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.468774+00 2025-12-17 13:00:00.46878+00 32193 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KV585kfhVYx7T1nlk1AtxQfgBI8=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.479262+00 2025-12-17 13:00:00.479267+00 32198 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AP8O3ccpysdtpQxLTIW-Ry3tf1Q=", "createTime": "2024-08-15 14:53:52"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.470754+00 2025-12-17 13:00:00.470759+00 32194 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pDe1sLJydY5s4TGyajXy6Q15Vpg=", "createTime": "2024-08-15 14:53:52"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.472866+00 2025-12-17 13:00:00.47287+00 32195 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJqqqLgmGB-0lki6ZN5u0y87oLw=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.474716+00 2025-12-17 13:00:00.474721+00 32196 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_3vDkn8MjrUm-cfd2VUJ6mzsphI=", "createTime": "2024-08-15 14:53:52"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.47707+00 2025-12-17 13:00:00.477074+00 32197 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sjIOZXRL5PSe1T8YCMJ7jbVf0JM=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.481528+00 2025-12-17 13:00:00.481532+00 32199 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h5HkU--fwkroSc3nbXxAhS4o6Xk=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.484119+00 2025-12-17 13:00:00.484125+00 32200 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CEG2kTa_n6yD0UFYVSKXOulucV4=", "createTime": "2024-08-15 14:53:52"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.486374+00 2025-12-17 13:00:00.486379+00 32201 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qQyBtVv6rbKuiMKWR0nVr97S_L4=", "createTime": "2024-08-15 14:53:52"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.488522+00 2025-12-17 13:00:00.488526+00 32202 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1kCCH8D3hZ6Xox5fJiDGF1sOpgs=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.490978+00 2025-12-17 13:00:00.490982+00 32203 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3pcyibZwUST7FeqgDvOd4iRzFjY=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.493185+00 2025-12-17 13:00:00.49319+00 32204 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z8ZXGpS4vmkD8bkzTNVwnBzc4LA=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.495039+00 2025-12-17 13:00:00.495044+00 32205 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bJTZMWswW65BquN-zbinekH1GdQ=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.496896+00 2025-12-17 13:00:00.4969+00 32206 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jWrlgNIvvzj4gbQO1mdBU1byzSU=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.498971+00 2025-12-17 13:00:00.498976+00 32207 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TDNQtjMIAfHbI2OQPfi-_2eHevg=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.50103+00 2025-12-17 13:00:00.501035+00 32208 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KPa0HSZAPmuU-CBWCRW8lfW1B-Q=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.503114+00 2025-12-17 13:00:00.503118+00 32209 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tzZLRPvUk8HD7tHmdfxQqVzy3NY=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.504985+00 2025-12-17 13:00:00.50499+00 32210 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2jDHP_W48pSOE9NOYQb-a50Z-n4=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.507039+00 2025-12-17 13:00:00.507043+00 32211 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cyRZ_ssUlTrVeN2nJTnXz6IYL4c=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.509225+00 2025-12-17 13:00:00.509229+00 32212 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sI7wT2kOwjTSnYXslcXyocRWZz8=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.511048+00 2025-12-17 13:00:00.511052+00 32213 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dstOKYtTGOI3w3gnyL5YKpgJ6qw=", "createTime": "2024-08-15 14:53:52"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.512955+00 2025-12-17 13:00:00.51296+00 32214 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I1g55CNhBM91fPYvmf9PCqeOygs=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.51509+00 2025-12-17 13:00:00.515095+00 32215 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6HAl6iNvm5bP-uOzUj4bCgfn8w0=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.51713+00 2025-12-17 13:00:00.517135+00 32216 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qq8yVrhlDOEyvLwJo0Qv3LzNkKs=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.51935+00 2025-12-17 13:00:00.519355+00 32217 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:COEqixumeVQbvSvisKmDkMQR2EQ=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.521357+00 2025-12-17 13:00:00.521362+00 32218 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z-4gsf58o-n_TBwLZYAOLulxVyc=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.523295+00 2025-12-17 13:00:00.523299+00 32219 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QY3HUvV0bP-1YwOIcYPqgnpoJa4=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.525216+00 2025-12-17 13:00:00.525222+00 32220 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kzRgnpc66F5skySiVEC-DJi-kVc=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.527089+00 2025-12-17 13:00:00.527094+00 32221 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LXZRLNlIVAhvHq2iRERLmEl4NqU=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.529137+00 2025-12-17 13:00:00.529142+00 32222 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Hi5CL7lgdEX8AXGbyXUJX-6ozY=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.531226+00 2025-12-17 13:00:00.53123+00 32223 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ENDlLNsoSy-THgHF6WdRzGzGnhg=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.533142+00 2025-12-17 13:00:00.533148+00 32224 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D2UYoH33Ugnv8VDb5NkLCxpvjhI=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.535325+00 2025-12-17 13:00:00.535329+00 32225 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nflj-5JmBz7utthZFQSdAHjoZ1Q=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.537198+00 2025-12-17 13:00:00.537202+00 32226 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0HooyqoB13Jjq-QO8YBUgJVCPSI=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.539047+00 2025-12-17 13:00:00.539051+00 32227 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vf95T3lP7lu3SALf4C4QUf23BOg=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.541087+00 2025-12-17 13:00:00.541092+00 32228 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o2dsrrGqB9N_wufyJTwN9DKcxNk=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.543077+00 2025-12-17 13:00:00.543081+00 32229 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VxDqiNHJHyzpZB25NyDVEClL2qs=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.545351+00 2025-12-17 13:00:00.545359+00 32230 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JarwtXsxM10p_-ZNRHN3le7kpbk=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.547966+00 2025-12-17 13:00:00.547972+00 32231 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N1mXJg3riKCcZdqMNY2o-v-Loko=", "createTime": "2024-08-15 14:53:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.550472+00 2025-12-17 13:00:00.550477+00 32232 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WPiwWtLkSyjN--BpMXkP8RgWJ3Y=", "createTime": "2024-08-15 14:53:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.552927+00 2025-12-17 13:00:00.552932+00 32233 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UINifA0f_1TeD3_8Hq3sdsHHsCw=", "createTime": "2024-08-15 14:53:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.555162+00 2025-12-17 13:00:00.555167+00 32234 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CVj75Zuhl5shDNsSi8nuBtbg2jk=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.557241+00 2025-12-17 13:00:00.557246+00 32235 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-4thF2zwoatGW60NZuJ31JBRpzQ=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.559274+00 2025-12-17 13:00:00.559278+00 32236 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iRgqVMUBrL9FOTOkxQLSVh_wb_4=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.561248+00 2025-12-17 13:00:00.561252+00 32237 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eXNF4mbeqsooe7Ohr7DwqEuHi1A=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.563435+00 2025-12-17 13:00:00.563439+00 32238 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQETHKR5UfIFAGZnLkfvrFRd59s=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.565873+00 2025-12-17 13:00:00.565879+00 32239 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kgCm7dJXKxeqszwk1TxbOPE8Qes=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.568077+00 2025-12-17 13:00:00.568082+00 32240 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rEslsRgFBXN0C_rbMdgK3xvfZMs=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.570324+00 2025-12-17 13:00:00.570328+00 32241 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rLg8T_qZ6HgsNyEt_hk5Vkuyxf8=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.572387+00 2025-12-17 13:00:00.572391+00 32242 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_fph8hAcOX7-Px-4STcNPBNqzWk=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.574627+00 2025-12-17 13:00:00.574632+00 32243 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZCn8ipLhwKbvyzguLjAoeRG_dfs=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.576789+00 2025-12-17 13:00:00.576793+00 32244 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jdY1DN43UreGa397SLHbcv2si8E=", "createTime": "2024-08-15 14:53:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.578891+00 2025-12-17 13:00:00.5789+00 32245 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TpQZZWPt-Ol0ARV1PEXxHEDZkCY=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.582221+00 2025-12-17 13:00:00.582228+00 32246 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bwci3Z_auwh3kwFN5_v40RSKi5A=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.585382+00 2025-12-17 13:00:00.58539+00 32247 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S9Mnxatu2bOAYFluee8p_5wlvq8=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.588466+00 2025-12-17 13:00:00.588472+00 32248 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xjh4BQRVRYix8a7T6Ct7VqUvQqM=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.590716+00 2025-12-17 13:00:00.590721+00 32249 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:taRBuWmIfzbO3W9b219C1PvDRrs=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.592572+00 2025-12-17 13:00:00.592576+00 32250 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OOyreKtoD8_CzYnLnCMldKgMY0U=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.594583+00 2025-12-17 13:00:00.594587+00 32251 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UGYJXTM-WerKKsB7V0t7KAjYoic=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.599816+00 2025-12-17 13:00:00.599828+00 32252 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ZxxPOEZqjW5KA7MZFeFCFk68cI=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.603278+00 2025-12-17 13:00:00.603283+00 32253 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iIuVaUwGMjmUMA4YYS7QS-c7Yh8=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.60555+00 2025-12-17 13:00:00.605554+00 32254 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:emihXv9RaBdBXkud_7wYyixiFXc=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.607765+00 2025-12-17 13:00:00.60777+00 32255 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cLoBbQOVYMlyOeEiEauA7K8blqI=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.609905+00 2025-12-17 13:00:00.60991+00 32256 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KpGUfAga8M7086WOv5ngirGik1w=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.6118+00 2025-12-17 13:00:00.611805+00 32257 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YkTfl82uxv8V1PvnnDmYaQ3LRfE=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.613757+00 2025-12-17 13:00:00.613762+00 32258 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CqKIP3DsNWjus2-eN0mD2LCHH2c=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.61602+00 2025-12-17 13:00:00.616026+00 32259 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nixdYhPObMEHXnkWqBjgdjx3TH4=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.617969+00 2025-12-17 13:00:00.617974+00 32260 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0EpWOV520nX7ppjFpcNTVF8lSsM=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.619842+00 2025-12-17 13:00:00.619847+00 32261 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vR1xv6xR6yWF4h7MuwGtIgxxEoQ=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.621839+00 2025-12-17 13:00:00.621844+00 32262 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FSHmWMYLB_bFuR_2zB2x4gXYjtI=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.623964+00 2025-12-17 13:00:00.623969+00 32263 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WUzQLtoYbzMn7ynt_Tqe3B3H4YM=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:00.625853+00 2025-12-17 13:00:00.625858+00 32264 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=1766062799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UmsriDUpjFVZtsow46oZ6Kh3R3g=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.00678+00 2025-12-17 13:00:01.006792+00 32265 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l22RiSZAuwMB-34cDrIdCS3cd8E=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.010194+00 2025-12-17 13:00:01.010199+00 32266 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f2J3z5N-8YJ2Xvhg2veJ1aNPlVI=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.012481+00 2025-12-17 13:00:01.012487+00 32267 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nj6ex2qe97TRNr6yPpfjpyw--Yw=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.014716+00 2025-12-17 13:00:01.014721+00 32268 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SKZEguxyYxZsjCG82vlj7ubOGZc=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.016717+00 2025-12-17 13:00:01.016725+00 32269 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AxlAc0mAQfCoDBSR8HkgiLsbX0M=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.018939+00 2025-12-17 13:00:01.018944+00 32270 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BRDZi8c06xXykFvZ1IKNFRWJyD0=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.020821+00 2025-12-17 13:00:01.020825+00 32271 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pdY2oNHHZMtulJYfud_3Y5iTzEQ=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.022666+00 2025-12-17 13:00:01.02267+00 32272 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ybST-W4Dx0BOpFKKehWXMNgwwSY=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.024481+00 2025-12-17 13:00:01.024485+00 32273 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wFaR5-bBeL3jEN8Tnj1U11pLY_A=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.026876+00 2025-12-17 13:00:01.026882+00 32274 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kbvAjE4AxRm1LLDfZsRRoUiraUY=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.029287+00 2025-12-17 13:00:01.029292+00 32275 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mlWup84J2AVNiAiN3wmDFnWyvq0=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.031466+00 2025-12-17 13:00:01.031471+00 32276 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NS7LLNbv_R3vQjTJaSJUHZe2IrA=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.033683+00 2025-12-17 13:00:01.033688+00 32277 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9P8HkhSqmPD5f82bTOl8w3wz8ws=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.036039+00 2025-12-17 13:00:01.036044+00 32278 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EDSxTJW0Pm2QAD9BxuMOILrSk1g=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.038014+00 2025-12-17 13:00:01.038018+00 32279 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uqGL3Xmgq7nMPbnwdsnc14eA1_M=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.03998+00 2025-12-17 13:00:01.039985+00 32280 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LZNZEO4iN_qNwzYhjgPqyvcHSLU=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.041862+00 2025-12-17 13:00:01.041866+00 32281 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lWHwz37BOL7_CRMHDhgBvX2QzdU=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.043844+00 2025-12-17 13:00:01.043849+00 32282 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3NhHka0_cB0NFauMpcZPwi8-OdQ=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.04618+00 2025-12-17 13:00:01.046186+00 32283 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HBs8DyFMI-_eL2QMiy4G-x5Mjc0=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.048117+00 2025-12-17 13:00:01.048122+00 32284 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PBnaC1R03rgaLi-pcLS_4ud1Dn4=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.049991+00 2025-12-17 13:00:01.049996+00 32285 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p7cpMML4jy8PvJVI7heyOmJhFIw=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.051925+00 2025-12-17 13:00:01.05193+00 32286 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t1KLj594kM56mJiyGEaLc5rR_VU=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.053808+00 2025-12-17 13:00:01.053813+00 32287 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5CnUR9yYGTlUzU_XU1cT4ZCXTGw=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.05587+00 2025-12-17 13:00:01.055874+00 32288 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rk_UVT7sZHVzPUkuudiQWxhfJdU=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.057867+00 2025-12-17 13:00:01.057871+00 32289 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:79adjcxIcoc04aG0VjMXd-XdfBE=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.059791+00 2025-12-17 13:00:01.059796+00 32290 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:trHvmIOjSU_eNakljqQ-4fyOYew=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.062006+00 2025-12-17 13:00:01.062011+00 32291 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sdd_v0clIhhl3j1Lxh12uwzcI1s=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.064242+00 2025-12-17 13:00:01.064248+00 32292 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1qFc64UwqTuiK5FpBf4pZ7d-zbc=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.066659+00 2025-12-17 13:00:01.066666+00 32293 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:69uNRerOuwj4jNzXs17wc8E8zlY=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.069341+00 2025-12-17 13:00:01.069346+00 32294 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UxdNsRrPGsD-vjxjdTpINHD_mMw=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.071716+00 2025-12-17 13:00:01.071721+00 32295 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VsmEHs6x5WdKFKSkKYa5K7yuHIU=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.073868+00 2025-12-17 13:00:01.073873+00 32296 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cXdLOFE_cfVE9kBEmHpKvhqGZkM=", "createTime": "2024-08-15 14:54:01"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.07589+00 2025-12-17 13:00:01.075895+00 32297 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JOjBxPGy_vf6HNskeRUVQVUK43E=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.078048+00 2025-12-17 13:00:01.078053+00 32298 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:57qkP8DTXdY5gZfAiXdQ_sWpsjc=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.080206+00 2025-12-17 13:00:01.08021+00 32299 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rt88kYI9z66TEHPYFwQhB0EsbKg=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.082079+00 2025-12-17 13:00:01.082084+00 32300 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-oNUrITjgsBeoqZjF7Anag-xWMM=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.084389+00 2025-12-17 13:00:01.084395+00 32301 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZ5Plh2VlwVkh5JNXpnbhwbHgJg=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.08639+00 2025-12-17 13:00:01.086395+00 32302 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xI4buwMlch0xJnB6f23cK1zL324=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.088279+00 2025-12-17 13:00:01.088283+00 32303 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RGx-x0gwUcAxaU_yQXaDIcuc5OE=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.090263+00 2025-12-17 13:00:01.090269+00 32304 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qezwb4zKi9W6YrR-WeC86nHYtkA=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.092164+00 2025-12-17 13:00:01.092169+00 32305 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5qu3cHaQH9gIPQzitHbZC2hraXI=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.094018+00 2025-12-17 13:00:01.094023+00 32306 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GuPJkDx2szaQmjBvxxQ2HQ-IvvA=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.096159+00 2025-12-17 13:00:01.096165+00 32307 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jv6_T5wvgMcdJ8N4r9uwTsELSbY=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.098307+00 2025-12-17 13:00:01.098312+00 32308 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x94SNV5JGP0Dhs0Ko70ABhoFh50=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.10029+00 2025-12-17 13:00:01.100295+00 32309 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8VicS_cf4aJloagUn8YN__2wD-k=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.102641+00 2025-12-17 13:00:01.102646+00 32310 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:01ohInmTuaKibvysRfMPaH8deas=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.104638+00 2025-12-17 13:00:01.104643+00 32311 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Duv8W_3MBTLD2tAJJLvakXIRVuc=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.106524+00 2025-12-17 13:00:01.106529+00 32312 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d05DeaEiPid9JRx9AhH3mSm_-Cs=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.108384+00 2025-12-17 13:00:01.108388+00 32313 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ix5xSFjYHF7_RHxNCfQkNuOs6xQ=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.110229+00 2025-12-17 13:00:01.110233+00 32314 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vxYxeWEUEhvbd4z51JCR_A503wI=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.112391+00 2025-12-17 13:00:01.112396+00 32315 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pnaQhAiNXvJxw9JKoGDy_eu6rgM=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.114334+00 2025-12-17 13:00:01.114339+00 32316 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1WIICjBAVg9P-Ep89oV3r-GxaoA=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.116456+00 2025-12-17 13:00:01.11646+00 32317 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ftlA3zXJ879lef0cDNlNm3KucPk=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.1185+00 2025-12-17 13:00:01.118505+00 32318 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4WMSGeYweCBlQ3-SePxRYYsczmc=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.120729+00 2025-12-17 13:00:01.120734+00 32319 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VOjC_nnin8XSRMcxQMBeHdrMVaY=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.122691+00 2025-12-17 13:00:01.122695+00 32320 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3BVLhuw2MYnd1-zeZWkA8LZKO4Q=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.124974+00 2025-12-17 13:00:01.124979+00 32321 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wEMx_KABJsJnej1cU5JDy5UV1KY=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.127506+00 2025-12-17 13:00:01.12751+00 32322 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RX-P0WeOZxxfzXlF0k8IgJ9sPJU=", "createTime": "2024-08-15 14:54:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.129914+00 2025-12-17 13:00:01.129919+00 32323 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FmNUkEnDobYUro8BqTU67ZzyBlQ=", "createTime": "2024-08-15 14:54:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.132313+00 2025-12-17 13:00:01.132317+00 32324 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dk7E4tdKBh--l2kEVFq6Vu480h0=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.1349+00 2025-12-17 13:00:01.134905+00 32325 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KhevGPZmMIiVOUwwZWFGmAnKrF0=", "createTime": "2024-08-15 14:54:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.13713+00 2025-12-17 13:00:01.137135+00 32326 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tat-n_rf-H2xsk3vegY9-ZN5aQA=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.139604+00 2025-12-17 13:00:01.139608+00 32327 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VTOmY3qKTmFTZQ0vmYys4HMKwdM=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.141814+00 2025-12-17 13:00:01.141819+00 32328 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XApmNTz3Pq-SD-aN6KZpRF5qMZE=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.143608+00 2025-12-17 13:00:01.143613+00 32329 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X0XzJqslZORSQD0-UDXKafp0DI0=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.145433+00 2025-12-17 13:00:01.145437+00 32330 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NnbwvFNH1sXAsKm13aOiQllor1c=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.147511+00 2025-12-17 13:00:01.147515+00 32331 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UoaAeAybo2svNGPblqD2ukoBTd0=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.149678+00 2025-12-17 13:00:01.149682+00 32332 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HJJhYzZBbqx15BbCtFBtL_3LgfU=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.151629+00 2025-12-17 13:00:01.151634+00 32333 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:so73lWdBUGrh5gJN2_a7t7G6qQc=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.153734+00 2025-12-17 13:00:01.153738+00 32334 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oLd0ObL0WY-wWOnbXDDltAQBMqc=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.155544+00 2025-12-17 13:00:01.155549+00 32335 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T3rrU5bUZbDTsx5dK6j4WOomWag=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.157618+00 2025-12-17 13:00:01.157623+00 32336 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GsLujIlq2j1WTPsdpoQJWtp_qWc=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.159553+00 2025-12-17 13:00:01.159558+00 32337 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HDYXRPgLOScbY0k4UK0LKgdVqvg=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.16181+00 2025-12-17 13:00:01.161815+00 32338 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fCm05ylYP1MrjJ-_JIOSz6PAWpQ=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.163799+00 2025-12-17 13:00:01.163804+00 32339 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wfWqR_qzgI0VCk1eqqEQgKjrVcE=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.165697+00 2025-12-17 13:00:01.165702+00 32340 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yu57qzvr-7rE5opkAbYLf1Icv0k=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.167849+00 2025-12-17 13:00:01.167853+00 32341 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GaB6lDkHFx-RRRw-fgHKYqxkI54=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.169707+00 2025-12-17 13:00:01.169712+00 32342 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dRtS-sDVzIf6J8KsCPTESd_Uf10=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.171768+00 2025-12-17 13:00:01.171772+00 32343 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2QlpXKIPWOSVq9F-untPEcZojKw=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.173576+00 2025-12-17 13:00:01.173581+00 32344 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eUWYTCxSDzXV4t7WrSqJ9eHMmoc=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.17564+00 2025-12-17 13:00:01.175644+00 32345 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uE7smodUd0WhXDEfRuw7f7jRboI=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.177639+00 2025-12-17 13:00:01.177644+00 32346 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:roM46u9-mYALbrAmPC9zGZI_pxg=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.179696+00 2025-12-17 13:00:01.179701+00 32347 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i7DR6CXjwhgLNAdAybi6J8N46P4=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.181863+00 2025-12-17 13:00:01.181868+00 32348 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9nBEF28yp0NiSBCXBFPDi9a8K4Y=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.184129+00 2025-12-17 13:00:01.184134+00 32349 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e376bT2nOJjrr4iFbVvrhSiEezc=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.186075+00 2025-12-17 13:00:01.18608+00 32350 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kvg3Df_zrqzpP1e6lDIaltst46k=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.18795+00 2025-12-17 13:00:01.187955+00 32351 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nGaNoX4d57XKRvLQONUnVjoK4mQ=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.190617+00 2025-12-17 13:00:01.190626+00 32352 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u94NlIfEhkOm9Nwdm0Y6uv6brPU=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.193371+00 2025-12-17 13:00:01.193377+00 32353 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k2vwg1x0RodGA7pqC6Jr9txSGXU=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.195366+00 2025-12-17 13:00:01.19537+00 32354 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qe0j8tt2atVXuXOLz3-lhf7ycwQ=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.197388+00 2025-12-17 13:00:01.197393+00 32355 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zNkR1Bhf_W9d5zRk4KpGkntfOas=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.199342+00 2025-12-17 13:00:01.199347+00 32356 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k1cO5abtK9SIK90pIs-2N7zkio0=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.201278+00 2025-12-17 13:00:01.201283+00 32357 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7dJMynh5J_vvVHRt6inbvwN-eNQ=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.203149+00 2025-12-17 13:00:01.203154+00 32358 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EJ6Hs3lCvb8ck7ZqFnHtER8h76w=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.204978+00 2025-12-17 13:00:01.204983+00 32359 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_MhSwHjT2Fbg5nFRglU26uPhGzk=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.206955+00 2025-12-17 13:00:01.20696+00 32360 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vbUhtCWPbzuww9Nv1dHCkKbNMeo=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.209023+00 2025-12-17 13:00:01.209027+00 32361 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8e94l2ivFYVJ-0hAwKhKdu1tTkM=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.21089+00 2025-12-17 13:00:01.210894+00 32362 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M4CgIb156B5Oed0bX8AnYlk-WdE=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.213097+00 2025-12-17 13:00:01.213102+00 32363 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BiE3sXTHQUz7WAkmE4v3V-kWIeY=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:00:01.215456+00 2025-12-17 13:00:01.215462+00 32364 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=1766062800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HssW_DU6kAtztDn213icFBFQTOw=", "createTime": "2024-08-15 14:54:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.645508+00 2025-12-17 13:10:00.645518+00 32365 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EEkHS9WWO5_140eiV0WM6p9zJBE=", "createTime": "2024-08-15 14:54:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.648947+00 2025-12-17 13:10:00.648954+00 32366 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_rq8Ix3jdAIVlFEQT-dUThff6mI=", "createTime": "2024-08-15 14:54:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.65142+00 2025-12-17 13:10:00.651425+00 32367 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yXRf4XNwpw_cKVeExStVRTEnJMk=", "createTime": "2024-08-15 14:54:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.653655+00 2025-12-17 13:10:00.65366+00 32368 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yrp475whpQLvQfNJwvCbYU0aU2U=", "createTime": "2024-08-15 14:54:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.655965+00 2025-12-17 13:10:00.65597+00 32369 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z449o3AB7On71HglhcIH0L9narE=", "createTime": "2024-08-15 14:54:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.658066+00 2025-12-17 13:10:00.658071+00 32370 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jItdsYbLDeKnOGTABD16dD5nuWk=", "createTime": "2024-08-15 14:54:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.660164+00 2025-12-17 13:10:00.660169+00 32371 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x0o9yK82NaLiKMwogkBM0y_DVak=", "createTime": "2024-08-15 14:54:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.662344+00 2025-12-17 13:10:00.662349+00 32372 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aSh1IvX2xyXdCTv3qM3oj0dkV0I=", "createTime": "2024-08-15 14:54:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.664673+00 2025-12-17 13:10:00.664677+00 32373 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e4VZNrzsG6p-mk3gXIPDzJq8ITU=", "createTime": "2024-08-15 14:54:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.66681+00 2025-12-17 13:10:00.666814+00 32374 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8iQvrkHJVN5T2VqefNFikd67uG8=", "createTime": "2024-08-15 14:54:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.668935+00 2025-12-17 13:10:00.66894+00 32375 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H4MdLj7kw49Q85ISIFBzUcGQgP8=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.670821+00 2025-12-17 13:10:00.670825+00 32376 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XyvcuCS43NMrMYfoWoahQsdTc3c=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.673016+00 2025-12-17 13:10:00.67302+00 32377 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X8_A7wMdx1j6hFdGLdBuVZdJYVs=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.674923+00 2025-12-17 13:10:00.674928+00 32378 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nSMldqJj-ljcHiMbbwmR8ma94rs=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.677202+00 2025-12-17 13:10:00.677207+00 32379 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q3ICipTs_mq8VG44h_tjbl6Bhmk=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.679656+00 2025-12-17 13:10:00.679662+00 32380 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dYPVgS_Lpgo6UWCB7Xlk5SsB3gY=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.682259+00 2025-12-17 13:10:00.682265+00 32381 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PfydgsmJZlYD8C7RAyU1Kogj_s0=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.684657+00 2025-12-17 13:10:00.684663+00 32382 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e3gCPJ0AwE7b0OQ7Q8wwoKbQxG0=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.687051+00 2025-12-17 13:10:00.687057+00 32383 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zNOWmC5V1zmgxfHaLeygEdeFca4=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.689876+00 2025-12-17 13:10:00.689881+00 32384 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mKPtnGHofKByoxvx20Td3fuYv-A=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.692595+00 2025-12-17 13:10:00.692601+00 32385 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ADwCnqhoaJ0cow5AC4r3LDMQ5JM=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.69513+00 2025-12-17 13:10:00.695136+00 32386 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ArmO26RQKLI4W6N8dUuM2zxIito=", "createTime": "2024-08-15 14:54:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.69758+00 2025-12-17 13:10:00.697585+00 32387 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GlImPfOEqM20WqzpyB3cBcBxJeg=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.699938+00 2025-12-17 13:10:00.699942+00 32388 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lGWpCyj1z-oIB2v5KHR3CR0bcCY=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.702243+00 2025-12-17 13:10:00.702248+00 32389 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NIzA89-32ufy_LSQqyX1GQHn5bw=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.70436+00 2025-12-17 13:10:00.704365+00 32390 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x6gVNMMZDiKD5uz7iujE4h4cAYM=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.706274+00 2025-12-17 13:10:00.706279+00 32391 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:izOkAIAsJhFRFIB2C0tVPlpe7QU=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.70818+00 2025-12-17 13:10:00.708185+00 32392 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H-IYcGB6CdsBGeJYzsGbb3ROPXg=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.710025+00 2025-12-17 13:10:00.710029+00 32393 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lgDLH8eIJw-kXR06OOWxJtWrsnc=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.712122+00 2025-12-17 13:10:00.712127+00 32394 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F3omvO1IcKx-kH9NG3Iup_7z_V0=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.714245+00 2025-12-17 13:10:00.71425+00 32395 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R07O2Gc7oDlBTazaEd62g2GN3ns=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.716121+00 2025-12-17 13:10:00.716125+00 32396 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dQqIR5ZopmUoQ-MOyOTIJToB6AY=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.718335+00 2025-12-17 13:10:00.71834+00 32397 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M4e-UCqTm-iOVgPoP7EWhWoR3P0=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.720343+00 2025-12-17 13:10:00.720348+00 32398 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L5GOkXm2sQeZeUk2fBmGLoUiGYk=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.722304+00 2025-12-17 13:10:00.722309+00 32399 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MJTR0LpAwZR0UYQKkF07Z2-OSRg=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.724532+00 2025-12-17 13:10:00.724537+00 32400 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tBhqq5ngNrnwv4V1BMI5SZnAxm4=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.726494+00 2025-12-17 13:10:00.726498+00 32401 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aakWTkskpmAYYFL_WI4stmyLHD0=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.728393+00 2025-12-17 13:10:00.728398+00 32402 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qQdJhwfzD0wZE4tgUbYV06-w5Tk=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.730407+00 2025-12-17 13:10:00.730412+00 32403 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6cxjRhMTqu3QImNUtWVZ92M9w30=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.732412+00 2025-12-17 13:10:00.732416+00 32404 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fYwKWO80QOaLPKXNYKHXPdJWO2w=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.734359+00 2025-12-17 13:10:00.734363+00 32405 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0K7PoEae4xvH52syrIhNGreviAg=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.736205+00 2025-12-17 13:10:00.73621+00 32406 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eq-Wvsn8O_fPQGWLGJhCjhe7gB8=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.738252+00 2025-12-17 13:10:00.738258+00 32407 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gv-p0WjRg6wUBsFFidLqjJP0f_E=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.740369+00 2025-12-17 13:10:00.740373+00 32408 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bebPSlcVBKSzwld1nxOazeJ1CSg=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.742242+00 2025-12-17 13:10:00.742247+00 32409 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ET50YQvnNCwx7O5hNCOx3UmSl14=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.744315+00 2025-12-17 13:10:00.744319+00 32410 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:94IFKqcS-doe19zrmseLhs2RIUM=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.746546+00 2025-12-17 13:10:00.746552+00 32411 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B_bTp6P-qiEoQ0lmMeW5-wYrd58=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.748496+00 2025-12-17 13:10:00.7485+00 32412 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mkM4spx9Oj6xs4RO2qHomDAzDvE=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.750379+00 2025-12-17 13:10:00.750384+00 32413 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZAq-tBgOSMO9aBc9wJFXqf70k-U=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.752228+00 2025-12-17 13:10:00.752232+00 32414 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gWi25LkoDVK5rr48uaq0vMVicgc=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.754316+00 2025-12-17 13:10:00.75432+00 32415 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bKWMvuofTETj4GmFOY9PHMxjFl8=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.756468+00 2025-12-17 13:10:00.756472+00 32416 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OpTIWZBtXQ_P8GDstdwnXn23ig4=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.758355+00 2025-12-17 13:10:00.758359+00 32417 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W7UXl6w2aZ3rSYEqPPf5RoPB2WQ=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.760455+00 2025-12-17 13:10:00.760459+00 32418 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wCPJPtohj4t_h3iA-aX1iAFlepI=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.762471+00 2025-12-17 13:10:00.762479+00 32419 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SrMjYJBVppCsgNfPCMvPGI2GQCg=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.76486+00 2025-12-17 13:10:00.764865+00 32420 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RMfxcEAqdDF4UpRvFIFvkxsnrUg=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.766796+00 2025-12-17 13:10:00.766801+00 32421 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cztXbhVbCOp6jFE6JXeDzMFnt4g=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.768772+00 2025-12-17 13:10:00.768777+00 32422 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l6MclpDjDZPIKuA3OL5QlwOxWFY=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.770629+00 2025-12-17 13:10:00.770634+00 32423 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mapm1AWoLVDql6n7tzSuKTt3jy8=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.772511+00 2025-12-17 13:10:00.772516+00 32424 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sqt7QCRAKh6uY_Jn5VfBqntRG6M=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.774629+00 2025-12-17 13:10:00.774633+00 32425 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d0KJbXMh1DjkNkKAvCkDZl5KYEg=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.776492+00 2025-12-17 13:10:00.776497+00 32426 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bmtSZmAtAP_t3cbiL3fXYRgXe24=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.77858+00 2025-12-17 13:10:00.778585+00 32427 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4QEIhgdKgFf_Ajj3xlmaviVmFqs=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.780948+00 2025-12-17 13:10:00.780953+00 32428 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gLg45sLEiGiXETRiTmrwFfbOJ_U=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.782808+00 2025-12-17 13:10:00.782813+00 32429 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:943dV_auYMn7eeaBJdwbfrA-JZY=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.784623+00 2025-12-17 13:10:00.784627+00 32430 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x6KP3oxepAK4riMnkwi_izeVvGA=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.786422+00 2025-12-17 13:10:00.786426+00 32431 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SXXJWyE-FCt9ZrfZb-ymPPKuyYM=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.788455+00 2025-12-17 13:10:00.78846+00 32432 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C8_xY19KUCLNxi-TM5S6mEdwCQI=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.790509+00 2025-12-17 13:10:00.790513+00 32433 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xLiuQlN-bkHOHDqsA4ml5IJE0eI=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.792575+00 2025-12-17 13:10:00.79258+00 32434 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OS_smIOsbxNHK60Zh8KGz9ftlD8=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.794599+00 2025-12-17 13:10:00.794604+00 32435 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yiwJY1VVGML7OvfESs3yr1GUvh8=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.796658+00 2025-12-17 13:10:00.796662+00 32436 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r-YBlB8EFQbzHPwZxsOOEKsu7Vs=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.798793+00 2025-12-17 13:10:00.798798+00 32437 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fWrLV_0jTNMrlzPy6MbWn1Uygpw=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.800641+00 2025-12-17 13:10:00.800645+00 32438 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v0pKSiPA5C8FF0uNSA5UO6uqhgc=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.802681+00 2025-12-17 13:10:00.802685+00 32439 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vQSk93hkfGcgSrP3G4JIARe-3p4=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.804895+00 2025-12-17 13:10:00.8049+00 32440 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ElDz8QWUKKYqLR8VhdFm5mEJgFQ=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.807042+00 2025-12-17 13:10:00.807046+00 32441 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:56KLTBO191Il4VypJsXUW5UkJlw=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.808897+00 2025-12-17 13:10:00.808901+00 32442 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cypZs6S9bjENah8QxKTaljEYeMM=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.810688+00 2025-12-17 13:10:00.810692+00 32443 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j363w4uS1EhpVnBkYYzYEUraoio=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.812704+00 2025-12-17 13:10:00.812708+00 32444 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QFyyN63IyyBz8qVh0rvRM8ItT_4=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.814763+00 2025-12-17 13:10:00.814768+00 32445 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s_v5IS6-eHF2OFZelhlxJuaTFI0=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.816771+00 2025-12-17 13:10:00.816775+00 32446 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZNL2OuCfmlJ3NEhejluopYEjOg4=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.818782+00 2025-12-17 13:10:00.818787+00 32447 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:exV-vFHdhf5R2AeclyPSxNhmJrU=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.820797+00 2025-12-17 13:10:00.820801+00 32448 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PhzUkcw-uOqIZaQGUJJnVuF8ES0=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.822845+00 2025-12-17 13:10:00.822849+00 32449 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iLvgd_-ehMuMzW0VKr1FCMS_Nv8=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.824664+00 2025-12-17 13:10:00.824668+00 32450 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sz6xICrx_JHXDUgkYui_9PFxdQw=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.826704+00 2025-12-17 13:10:00.826709+00 32451 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L9PmNIT27l8Yuya3EctCiXef7g8=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.828794+00 2025-12-17 13:10:00.8288+00 32452 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9OZAyAHGdcs8iJZ-i0AsRG2yLrY=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.830882+00 2025-12-17 13:10:00.830886+00 32453 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-k224DtALu0CqKxtPpsy2TO15dE=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.832932+00 2025-12-17 13:10:00.832936+00 32454 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wc7jV8PI7ZYC5kzXqBOYMMqe4LQ=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.83471+00 2025-12-17 13:10:00.834715+00 32455 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QHhRaVLW0DcUQ0e4Y30aoW5yM_8=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.836763+00 2025-12-17 13:10:00.836768+00 32456 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hbw4DU_6iuZoXEvrjS6TD3vpeGE=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.838834+00 2025-12-17 13:10:00.838838+00 32457 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ejRFG1W9OXZDfLSi7YpW3hSYLaw=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.840894+00 2025-12-17 13:10:00.840899+00 32458 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eMQoJzOwyXn0a0l2l07k1vEyoWc=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.842939+00 2025-12-17 13:10:00.842944+00 32459 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SOotT8QTTqc9UeH1QdaCup-Lc2c=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.845037+00 2025-12-17 13:10:00.845042+00 32460 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c3dONyIKl89SKkQorMmGmeG9Abs=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.847075+00 2025-12-17 13:10:00.84708+00 32461 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9v3YoQeljoEXLZ5CB_YQ9Ykg_nY=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.849012+00 2025-12-17 13:10:00.849018+00 32462 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j_-VlGQu_3ocvSRScsUNSnoY9AM=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.851186+00 2025-12-17 13:10:00.851191+00 32463 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0J2MvXg1v3REJgOn7gl2_edDN4E=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:00.853106+00 2025-12-17 13:10:00.853112+00 32464 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=1766063399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ha7W7JFn9HtpiT5fJhtzIPIqBKc=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.210763+00 2025-12-17 13:10:01.210772+00 32465 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S47TxWJ83uaE66qjPqD2n7eQSHA=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.214525+00 2025-12-17 13:10:01.214533+00 32466 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k__GSQEl9QVcjPo4VaHigOwe5ys=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.217872+00 2025-12-17 13:10:01.217878+00 32467 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UjEGFscPUwPtDg4H_R-2ttqHhZk=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.220692+00 2025-12-17 13:10:01.220701+00 32468 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rU6TPtHnZ2f_qD1iUbxXsfWcE_I=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.223484+00 2025-12-17 13:10:01.223489+00 32469 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GBd7G-8zFKmp4bXi09IoDSO73Ds=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.22577+00 2025-12-17 13:10:01.225775+00 32470 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uQcGLo429uuwmDcjXsyAfX6Ai8A=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.227901+00 2025-12-17 13:10:01.227905+00 32471 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CAr4vQR-8SwYz6t5OeekKAmWL1I=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.229839+00 2025-12-17 13:10:01.229844+00 32472 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YnqU73NyVTipqJ3df9vUKoZVD3g=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.231769+00 2025-12-17 13:10:01.231773+00 32473 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uvAONmAD3mtG2Da7eZAa3_Gp9Fc=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.233639+00 2025-12-17 13:10:01.233644+00 32474 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iHbDnNXLh9vg2DsvNh-8KSqUkKk=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.235738+00 2025-12-17 13:10:01.235743+00 32475 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tFVMjeifUY7fbKbIXP_oxWquacA=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.253839+00 2025-12-17 13:10:01.253844+00 32484 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ptfj-WLmWywRpGwx7wSStrYOoIw=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.237604+00 2025-12-17 13:10:01.237608+00 32476 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iMmzKeBwQwRKZsoim5bd5viJymo=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.239768+00 2025-12-17 13:10:01.239773+00 32477 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:skqxrP2AZ-X75k6-DcisTAmyOoI=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.241849+00 2025-12-17 13:10:01.241853+00 32478 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ld3pIcHGxa-oTvBxomE54THT8Gc=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.243715+00 2025-12-17 13:10:01.24372+00 32479 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_o1sNCIJMfIK3ssqRO1ZnYys45c=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.245877+00 2025-12-17 13:10:01.245882+00 32480 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cvKEL5iOzNtSqzpOdXjsEcRmuT4=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.247795+00 2025-12-17 13:10:01.247799+00 32481 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YVTs_9QX7Ay8LHZKO4s2X5Rg_OI=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.249928+00 2025-12-17 13:10:01.249932+00 32482 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Ini0cLoJrJN7tfOnBz0wWyRY3A=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.251776+00 2025-12-17 13:10:01.251781+00 32483 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JjdUxwGhfD1ULrOj7GmY09AoWC4=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.255761+00 2025-12-17 13:10:01.255765+00 32485 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YOSPHF201WpU8lfP7GHd-JSK2Zk=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.257906+00 2025-12-17 13:10:01.25791+00 32486 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vUL0z0l41W0_A2JoUoHL7bOb5Bw=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.259999+00 2025-12-17 13:10:01.260003+00 32487 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5gmy4iIUlN24MDS8-_brsyyY7vU=", "createTime": "2024-08-15 14:54:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.261873+00 2025-12-17 13:10:01.261877+00 32488 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ygvivs_L5sff9d6lmpqDZyeWY0g=", "createTime": "2024-08-15 14:54:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.263993+00 2025-12-17 13:10:01.263998+00 32489 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MqGPalfWPrBWW6NBbejcRgd8PkY=", "createTime": "2024-08-15 14:54:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.265896+00 2025-12-17 13:10:01.265901+00 32490 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:We8Qxu-40fmc8T4tM2AlmyTW1x8=", "createTime": "2024-08-15 14:54:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.267984+00 2025-12-17 13:10:01.267988+00 32491 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kQyuXftIb1e46yTaBHqrIGGMKc4=", "createTime": "2024-08-15 14:54:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.269892+00 2025-12-17 13:10:01.269897+00 32492 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NgRpyCQ3BHO8BifLDP8VLt-gJ7Y=", "createTime": "2024-08-15 14:54:21"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.272067+00 2025-12-17 13:10:01.272071+00 32493 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lcqyn1HdLR1BEnr6zOwDyHbn2cM=", "createTime": "2024-08-15 14:54:21"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.274009+00 2025-12-17 13:10:01.274014+00 32494 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JsM0jtzPkw1HWR9uhjTgnGcccFY=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.276086+00 2025-12-17 13:10:01.276091+00 32495 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:88kLGBFL1f1kLbf63CbqBaEkqVs=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.277948+00 2025-12-17 13:10:01.277952+00 32496 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jVHuG0grgLacpB8OFMI3b_a5-Gc=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.2962+00 2025-12-17 13:10:01.296204+00 32505 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NdBkRiqKvHTo3D7IalfDlqdJ7-Y=", "createTime": "2024-08-15 14:54:22"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.28005+00 2025-12-17 13:10:01.280055+00 32497 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7N-EB3tsU2R11t2IL_7YTVhAVyo=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.281938+00 2025-12-17 13:10:01.281942+00 32498 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ItYdTnReXvHJEv3xWFUzX74EmV4=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.284045+00 2025-12-17 13:10:01.284049+00 32499 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QDiUTTMD7G6rY96tzrcqJWIPi94=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.286088+00 2025-12-17 13:10:01.286093+00 32500 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vD5rG0hcid02JgauenP5TVVGSXc=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.298126+00 2025-12-17 13:10:01.29813+00 32506 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r6p1VyK35oopFRQdWtVfnQGgwww=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.288013+00 2025-12-17 13:10:01.288018+00 32501 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z2rDB2-Z8ZvXAFkUduP_B_0eGEg=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.290195+00 2025-12-17 13:10:01.2902+00 32502 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aPK6esPYLrG2Gqq0KAdUkRv2L3Y=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.292046+00 2025-12-17 13:10:01.292051+00 32503 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XKG3FBiPTKZMwKHignALITCXD_c=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.294103+00 2025-12-17 13:10:01.294107+00 32504 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I4Aau0xyapncMBS0GHJ9V4zogv4=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.300296+00 2025-12-17 13:10:01.300301+00 32507 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cw7_1dl5sWTLVDi9KD8o89AnE7g=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.302375+00 2025-12-17 13:10:01.302379+00 32508 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1qqa9V4rQhjsnWn3Zi3J_mKb3kc=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.30443+00 2025-12-17 13:10:01.304434+00 32509 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cabeeiaShAOel4Dn3mT-0nqFl8E=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.306551+00 2025-12-17 13:10:01.306556+00 32510 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0PId7z60gtCMmbApIhw-k7USz7k=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.317586+00 2025-12-17 13:10:01.317591+00 32515 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DAh3sBhXQpT_tBohq8_msBS-u0Q=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.308634+00 2025-12-17 13:10:01.308638+00 32511 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YxG40JTUWe6zYqhHga9xhKetnAg=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.31069+00 2025-12-17 13:10:01.310695+00 32512 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gew-CmxyBorEWXrr6QFdizizSng=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.312783+00 2025-12-17 13:10:01.312787+00 32513 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T5c0MnA63_xKrYk1ubvs_q1iNfw=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.315239+00 2025-12-17 13:10:01.315243+00 32514 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:liXYtvP1wfGWA0YZAjBtThXtMKg=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.319433+00 2025-12-17 13:10:01.319437+00 32516 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GbW1EJEv-_AcEkdywSPgq83DzIs=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.321346+00 2025-12-17 13:10:01.32135+00 32517 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EBQSt6X8TM9kG9lDYiDMxQ0ssbU=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.323467+00 2025-12-17 13:10:01.323472+00 32518 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H1yBoDjcdHuxKvTCC01RyjIiDUA=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.325354+00 2025-12-17 13:10:01.325358+00 32519 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Gh4F6jMgyAlSQPPCfSb5JkfA_Q=", "createTime": "2024-08-15 14:54:26"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.327211+00 2025-12-17 13:10:01.327215+00 32520 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SZlFoxZVEmjfhBt3H38H2Q2_-5A=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.329301+00 2025-12-17 13:10:01.329305+00 32521 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1cT76KNm_0HvmBArnqyzTXLXlow=", "createTime": "2024-08-15 14:54:26"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.331371+00 2025-12-17 13:10:01.331376+00 32522 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UOy_xj7bLguVHAfZ6epNEBmJGsI=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.333448+00 2025-12-17 13:10:01.333453+00 32523 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mTEOdafifSTYPScRN1jb9zTA88Y=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.335281+00 2025-12-17 13:10:01.335285+00 32524 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NQWee6cKzW0SSLZPAyMXXPKKdmg=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.337416+00 2025-12-17 13:10:01.33742+00 32525 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Bm8th8D-vMVu7527c4-5HEIMw4=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.339525+00 2025-12-17 13:10:01.339529+00 32526 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tD9rj18mwn1uKv3DTl2FUTxc_C4=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.341409+00 2025-12-17 13:10:01.341413+00 32527 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yMYRQOK4o1KKxN4ujiOlLzX7D60=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.360787+00 2025-12-17 13:10:01.360793+00 32536 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xdmTuiJVRTs0l_92zxRGIIXH6Ws=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.343481+00 2025-12-17 13:10:01.343485+00 32528 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vCPEjv-mtwqhYbKpUsuHlYAZOXk=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.345317+00 2025-12-17 13:10:01.345322+00 32529 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6bRKUHf2z2Sinx8Rs_up-J0Mtr4=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.347544+00 2025-12-17 13:10:01.34755+00 32530 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DW_UnGqgnA7hpOAthEWgDXSkCpA=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.350048+00 2025-12-17 13:10:01.350053+00 32531 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QSqQlaFUiBYyZ3JeAe_zSTP5fwE=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.352346+00 2025-12-17 13:10:01.352351+00 32532 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lTQF_2SkSl94tZwiOa2QVoG6GhU=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.354497+00 2025-12-17 13:10:01.354502+00 32533 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tBOCBO88-9cjNz5QPyK3_slNQRs=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.356869+00 2025-12-17 13:10:01.356875+00 32534 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZffVSNNZR669Klh5lvaCJU43Ghc=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.358839+00 2025-12-17 13:10:01.358844+00 32535 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZFfKSkZg7GPihYrjnZyzoX4zo60=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.362712+00 2025-12-17 13:10:01.362717+00 32537 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TfrKQHGCF5ac8BbScjqUbwpV9UQ=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.364764+00 2025-12-17 13:10:01.364769+00 32538 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MlElyUiN4FZ5LJkUlW0SRoQ4864=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.366885+00 2025-12-17 13:10:01.36689+00 32539 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Y6mf7BL54LGNISx4xUtedfC5WQ=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.368789+00 2025-12-17 13:10:01.368793+00 32540 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-CfBMlqR_Z5_v5VZq41fkIH3ris=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.370677+00 2025-12-17 13:10:01.370681+00 32541 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HzFUZTSiBjbopaCC43rhrQpsCMY=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.372934+00 2025-12-17 13:10:01.372938+00 32542 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-GNFWYrUMCZ7knH26y6aB6PtfVg=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.37489+00 2025-12-17 13:10:01.374894+00 32543 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I7bvbs0UaNVJfgB9eYzQNrw_IMk=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.376743+00 2025-12-17 13:10:01.376747+00 32544 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BufmNaEfuOSam8NLj442o43xifI=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.378594+00 2025-12-17 13:10:01.378598+00 32545 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u2R9JcQIRw6I-9wbuZ4NLeod_7I=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.381062+00 2025-12-17 13:10:01.381067+00 32546 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sC08358CLrI9yg4yaXv5EW4HJ9E=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.383081+00 2025-12-17 13:10:01.383086+00 32547 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gRsfjDZgnOLDyHRSsUrGCUbKgsA=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.38676+00 2025-12-17 13:10:01.386769+00 32548 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gCMuadByB3ylvfF6_WZ1DxXKADw=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.389675+00 2025-12-17 13:10:01.389681+00 32549 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z2l2J5f2E_2u5LkgkYM_Zjvb0uw=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.392103+00 2025-12-17 13:10:01.392108+00 32550 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CJ47S1pgOkOcbm7OOjqWR2Cc85E=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.394179+00 2025-12-17 13:10:01.394184+00 32551 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o2M35ANkyCJdaFrWXlqLlOtLMEU=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.396078+00 2025-12-17 13:10:01.396082+00 32552 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_bZFv0F7r4H8VRU-I874muKTzzk=", "createTime": "2024-08-15 14:54:29"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.397994+00 2025-12-17 13:10:01.397998+00 32553 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_AgTa4q4Gi7FUERxgEaQSQ8lCS4=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.410152+00 2025-12-17 13:10:01.410158+00 32558 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fa5Ow1nZGWxj5361IS9sRbygiOc=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.400426+00 2025-12-17 13:10:01.400432+00 32554 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RDi-BnVb-4M_6kGNaqwzrBQEOaY=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.402892+00 2025-12-17 13:10:01.402897+00 32555 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-j5xZ1-UBvg5QsA75m8saq2eWtI=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.405028+00 2025-12-17 13:10:01.405033+00 32556 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lfmWLrD7yiQ6-F1_emr_GUp4bvY=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.407541+00 2025-12-17 13:10:01.407546+00 32557 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O4LPpCx4Wwh5_nQZiuF44MJDFVo=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.412855+00 2025-12-17 13:10:01.41286+00 32559 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T7V4UnuPHQwKEogxb3F4dBUDoDI=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.415302+00 2025-12-17 13:10:01.415307+00 32560 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WY3zO-1ceIhTFOEzc7Mbpgopfbo=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.417344+00 2025-12-17 13:10:01.417349+00 32561 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7MDmOX_AqDSecBy0IaFo-lfLBwg=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.419291+00 2025-12-17 13:10:01.419296+00 32562 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GmisYGDxe_EwQRq_Bkr5Ps9NDJI=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.421435+00 2025-12-17 13:10:01.421441+00 32563 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wDOvPNDLK07YygB_8TFNS9mLiVw=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N +2025-12-17 13:10:01.423849+00 2025-12-17 13:10:01.423854+00 32564 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=1766063400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fdzCnvOKyWrQg5rxh8tBv5Q0UKY=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.362478+00 2025-12-17 13:20:00.36249+00 32565 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AGgajz3G2VSHwWojIGhB7pZuFXg=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.366913+00 2025-12-17 13:20:00.366921+00 32566 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CtSuVBv9U7DuiDNvrGqvOUVq3mE=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.370137+00 2025-12-17 13:20:00.370145+00 32567 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Zsr-pSuriGvHkqc4xCj0p0NtWQ=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.373476+00 2025-12-17 13:20:00.373483+00 32568 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ti8blouiIXHGGE-A6oIJEMFBoAg=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.376718+00 2025-12-17 13:20:00.376724+00 32569 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0-w9XLXDltR3eytJdN5gJktlzXM=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.379047+00 2025-12-17 13:20:00.379052+00 32570 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mVHztjmMHXrx_ubiTtg6Lp7DBc8=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.381274+00 2025-12-17 13:20:00.381278+00 32571 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kcgN2HMC_wTxwkVq3BHk44NqgXk=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.383224+00 2025-12-17 13:20:00.383229+00 32572 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZFppoyURzaft1IZMQycNGtx4zYA=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.385091+00 2025-12-17 13:20:00.385095+00 32573 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hDmWK7-1ydKWV7ivaE4iUamWIGc=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.386991+00 2025-12-17 13:20:00.386996+00 32574 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ewyOLoDU5bMucqCqv68ZYLW5uRc=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.389393+00 2025-12-17 13:20:00.389399+00 32575 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:58LB4zzSiz53UNWJyl70Tik5yoU=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.391584+00 2025-12-17 13:20:00.39159+00 32576 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MKzQOiR17q8xgRVXJ_JrFI-RPrM=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.393629+00 2025-12-17 13:20:00.393634+00 32577 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ffXht04QK-v5MT8DAiiJaEPv3WA=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.395869+00 2025-12-17 13:20:00.395874+00 32578 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NjEAXC9p-S7VEyZoVFFNCJLAl34=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.398118+00 2025-12-17 13:20:00.398123+00 32579 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f7ZctpQF8J1INIrjM-ta10R-j6Y=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.400287+00 2025-12-17 13:20:00.400291+00 32580 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NCrlwglzW2NxE0lop14Eo7xDySY=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.402246+00 2025-12-17 13:20:00.402252+00 32581 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jnSk-ErIK_0FtSemcVTa0VvhLIc=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.404516+00 2025-12-17 13:20:00.404521+00 32582 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JrRHsXzQxM9rl1HhR7CxfVlVVr0=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.40655+00 2025-12-17 13:20:00.406554+00 32583 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jLdOndjuPnp8XsRU4Jlh6x_G5PQ=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.408582+00 2025-12-17 13:20:00.408587+00 32584 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gmhacvTtDbEVqH_bPKbwIXVUdcU=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.410626+00 2025-12-17 13:20:00.410631+00 32585 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iM2ljdR6Fp28OUa2TxjhcH3cMWs=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.412541+00 2025-12-17 13:20:00.412546+00 32586 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_6eWIT7-z2rsh_oS0CczsNu-Izc=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.4144+00 2025-12-17 13:20:00.414404+00 32587 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YIpBiPJnDT6rEj-UDdw4bLDy9gg=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.443623+00 2025-12-17 13:20:00.443629+00 32600 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_bM79nOkOkVcyQV1hTyYwM2fX-U=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.41625+00 2025-12-17 13:20:00.416255+00 32588 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CTbLLryZHv6gevANI4qxoxcS_4c=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.418552+00 2025-12-17 13:20:00.418557+00 32589 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:117x2Uy1IZ4-ZzAl5Hyyrt764I0=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.42037+00 2025-12-17 13:20:00.420374+00 32590 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9uV_71lKEM-y4YC_A2Ni_M_zATA=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.422195+00 2025-12-17 13:20:00.4222+00 32591 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CNLhHt27eiC065LVL_eSe-aDF2w=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.424318+00 2025-12-17 13:20:00.424323+00 32592 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ijvsqUnZ6WPVCRRbRykTqXjFhoA=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.427067+00 2025-12-17 13:20:00.427074+00 32593 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bTMuhnXIsWeW2sy35ePIO3j-TEg=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.429727+00 2025-12-17 13:20:00.429733+00 32594 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ECxXrlbUT7Vo3De15kgNvYamQjE=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.432244+00 2025-12-17 13:20:00.43225+00 32595 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Co88J7W7385l6ziWlemyF5iSjn0=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.434674+00 2025-12-17 13:20:00.43468+00 32596 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2S0L1JYhcqt7x_c7x-P2iMJvoik=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.4368+00 2025-12-17 13:20:00.436806+00 32597 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zn3w6d-Obvy_UofHtvFNjoqD2r8=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.438869+00 2025-12-17 13:20:00.438875+00 32598 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0_mRhwRiKegpaGKjWI7xn_zkfEU=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.441326+00 2025-12-17 13:20:00.441332+00 32599 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zuMnM2M2783xgGou4neyRulFY4k=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.446015+00 2025-12-17 13:20:00.44602+00 32601 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MiMJ7hmHGV4W6_N5buItJNqPGyw=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.448362+00 2025-12-17 13:20:00.448368+00 32602 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VkX_Dzc7NAUz8ie0eE6iAUPCUM4=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.450751+00 2025-12-17 13:20:00.450756+00 32603 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NI_JcOvuT8QuyiB1SW58GPa27MQ=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.452829+00 2025-12-17 13:20:00.452834+00 32604 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YWHtUnHm-FAaoZRodkPBRxZl3Os=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.454922+00 2025-12-17 13:20:00.454928+00 32605 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3GlzYVFIIa6jW9KDhujE71MPEUQ=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.457004+00 2025-12-17 13:20:00.457009+00 32606 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uqxG31eQfK7zTEcQ2VzUU9La8nY=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.459399+00 2025-12-17 13:20:00.459405+00 32607 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LLguWfthQSZv9VG7bilcooZ5KI4=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.461776+00 2025-12-17 13:20:00.461782+00 32608 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DhYCoWVp0be8n0DQ_0ZtyNPpvWI=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.463899+00 2025-12-17 13:20:00.463904+00 32609 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SUaqxp_W3WjeTCYwYeOZ7aoirZE=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.466086+00 2025-12-17 13:20:00.466091+00 32610 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FQ0yz9A5SItLBgUb6K87QYppTV0=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.468487+00 2025-12-17 13:20:00.468492+00 32611 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QJvfkxSU_WkTTVNO8x3rdUBSZg0=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.470755+00 2025-12-17 13:20:00.47076+00 32612 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:biV00rIm-m1HdebVbe8bVNqu5NM=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.473034+00 2025-12-17 13:20:00.473039+00 32613 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B48xzrBKIyOmS6r0ldngJaze_uE=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.475148+00 2025-12-17 13:20:00.475153+00 32614 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xdvTrP8agGmzQdHW-d8kLZbYuT4=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.477577+00 2025-12-17 13:20:00.477582+00 32615 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5g8UI9wuQfDoNmkhlJ5evYas5zc=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.479875+00 2025-12-17 13:20:00.47988+00 32616 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jb4v4WCjhOxl-95N9Xd54HkFHHg=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.482067+00 2025-12-17 13:20:00.482071+00 32617 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bvA35HywuZepoxSVRXWbpNkErwk=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.484204+00 2025-12-17 13:20:00.484209+00 32618 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VLejnI00Z9dRD5MJia5ibW7HTgQ=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.486548+00 2025-12-17 13:20:00.486552+00 32619 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6LVx4eK2KdfLlC7hyyny-xFSFW0=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.488868+00 2025-12-17 13:20:00.488873+00 32620 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jiOVj4E_4cmyMRRN0-sGqi2pYlE=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.49124+00 2025-12-17 13:20:00.491245+00 32621 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KbvFOBWXFf0hXObjPs2BuLtmNpo=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.493655+00 2025-12-17 13:20:00.49366+00 32622 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kKtWvOIwgNWgFVydJLJXJhEQvhY=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.496039+00 2025-12-17 13:20:00.496044+00 32623 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bJG911y7toa4p4KCkKm1IditFDk=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.49819+00 2025-12-17 13:20:00.498195+00 32624 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7tqMLexM4c-eWbzKHUtXqk7jdYY=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.500311+00 2025-12-17 13:20:00.500316+00 32625 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HlzfXDsHdagacZAd0MxZdTw2dpc=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.502663+00 2025-12-17 13:20:00.502668+00 32626 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nsRg9gF3ubtFQijoM9yip6c30eg=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.504868+00 2025-12-17 13:20:00.504873+00 32627 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5I5Fu6EdIUQyaPly10PkWaa1o1E=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.507168+00 2025-12-17 13:20:00.507173+00 32628 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s_Yb69-8TiwMHfIYzCgNyQF9KCw=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.50954+00 2025-12-17 13:20:00.509545+00 32629 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AL4bNVM8n-aBG4Zus4zqq5GQdH4=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.51175+00 2025-12-17 13:20:00.511754+00 32630 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wa6m94PToyulbwmI1nIGhOEFnrY=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.514033+00 2025-12-17 13:20:00.514039+00 32631 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UVzs_YTPt1gIx2uHILkaUBPlC-Q=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.516245+00 2025-12-17 13:20:00.516249+00 32632 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kq_k9GkjxFwxzhshURDWJ7Gawto=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.518152+00 2025-12-17 13:20:00.518157+00 32633 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jsoT_O-7FzveCLQm0aIQTKRAywo=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.520002+00 2025-12-17 13:20:00.520007+00 32634 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gmis9K6O9G9rUaAtB7GKKV9AOtw=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.521874+00 2025-12-17 13:20:00.521878+00 32635 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1zj714QJ7f1q07IgM2PlZ_-KTKo=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.523939+00 2025-12-17 13:20:00.523943+00 32636 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JQP-6pkv14aTnnFvF-HRDupdUEY=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.526345+00 2025-12-17 13:20:00.52635+00 32637 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hB2BZuVqGf9Drltkc295qkL9b6w=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.528457+00 2025-12-17 13:20:00.528463+00 32638 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SseadeuHmA2rX2dKhsZaV-5hRtY=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.530972+00 2025-12-17 13:20:00.530978+00 32639 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BCbc05uU7TUuS7KCqE12hnn5DHk=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.533323+00 2025-12-17 13:20:00.533328+00 32640 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rYEGHrKpJs1PLfdUXm06N1P9LR4=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.5353+00 2025-12-17 13:20:00.535305+00 32641 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nU6w-lo1X08M1FA1086R-01dfbI=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.537178+00 2025-12-17 13:20:00.537183+00 32642 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mgF8ngzWrvhHgdH4otPvf7TZTVQ=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.539041+00 2025-12-17 13:20:00.539045+00 32643 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kptjFmVoZ_ZHS7jydq8k7N2dgbQ=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.541305+00 2025-12-17 13:20:00.541311+00 32644 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qbnF6MVSh0K29QlFzXgj9EZdBsI=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.543427+00 2025-12-17 13:20:00.543432+00 32645 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ReQ_-Tj3Teuj6weDtPgenzbEDM4=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.545469+00 2025-12-17 13:20:00.545475+00 32646 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zE2bN-HOOROIfzeduufwNB_zm8c=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.548373+00 2025-12-17 13:20:00.54838+00 32647 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PHQrL1C3An41yTSSvrF13MZSp6o=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.551613+00 2025-12-17 13:20:00.55162+00 32648 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2eqr6ar16UvLj-JN1tznznTo5BE=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.554255+00 2025-12-17 13:20:00.554261+00 32649 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4i6AMNRlZ-CC6CRWpG7WED3dyME=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.556427+00 2025-12-17 13:20:00.556432+00 32650 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OKcbPEvL8CeehjhyXMHjggXxpYA=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.558346+00 2025-12-17 13:20:00.558353+00 32651 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZuPeZV9rcfSvOCp_x6tXuxppyNk=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.560449+00 2025-12-17 13:20:00.560454+00 32652 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-gebSYK_KoTt23GVg1yIY9Wemk4=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.562438+00 2025-12-17 13:20:00.562443+00 32653 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gQawzgjqApzkMz6uCChW3M4bNBo=", "createTime": "2024-08-15 14:54:38"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.564357+00 2025-12-17 13:20:00.564362+00 32654 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zelLymMjn9So_H7LWB45I1IVYWU=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.566207+00 2025-12-17 13:20:00.566212+00 32655 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ug3p4m2JaEOE_6ECqFU8vYdhdjI=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.568349+00 2025-12-17 13:20:00.568354+00 32656 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NLougPBYcvNjJvKHHcne-siheHg=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.570335+00 2025-12-17 13:20:00.57034+00 32657 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KVreBE96SLzwVcEq99fD3OujtS8=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.572459+00 2025-12-17 13:20:00.572464+00 32658 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xWkw8_1DiFQ45_MeuwbAIlfwODE=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.574381+00 2025-12-17 13:20:00.574386+00 32659 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LQYog1GCRKtHuW-sEL22HAXpczg=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.577384+00 2025-12-17 13:20:00.577389+00 32660 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_0bKcuZW6Fk7a5O5Q6y6FDQNcNQ=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.580056+00 2025-12-17 13:20:00.580061+00 32661 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fqB0T2Z27YXycpllef42CECTKd8=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.58234+00 2025-12-17 13:20:00.582346+00 32662 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G0v9AUcLTRAuQcKzhKUNV7VTQIw=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.944754+00 2025-12-17 13:20:00.94476+00 32667 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WjmUGAB0hj83gPw4eti6zG7ziJ8=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.584559+00 2025-12-17 13:20:00.584568+00 32663 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:59CFrx30e751i9gBQdedeu8or3U=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.58657+00 2025-12-17 13:20:00.586574+00 32664 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=1766063999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_-FNL-Kusq-f1A4G_kRJiGl0va4=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.939305+00 2025-12-17 13:20:00.939314+00 32665 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ngE7KkqiBc6QZkthlqVP62ax4gs=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.942252+00 2025-12-17 13:20:00.94226+00 32666 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tj0oJ1lKAADFYD04Hd70y2yTizE=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.947295+00 2025-12-17 13:20:00.9473+00 32668 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cc2ZnieEOhet2g5baGweYmGOs9c=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.949753+00 2025-12-17 13:20:00.949757+00 32669 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9CJ_i-nxPF_6gPDwkYXyKg75dfo=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.951899+00 2025-12-17 13:20:00.951904+00 32670 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJ1mNk4UIM8mpxhMBLX-ZICktp4=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.953983+00 2025-12-17 13:20:00.953988+00 32671 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zk2uxLeVpMzKTjOQKdWoH8FXEj0=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.956011+00 2025-12-17 13:20:00.956016+00 32672 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pRY560BYARoO1B3KeXCm8ImxFJ8=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.958251+00 2025-12-17 13:20:00.958257+00 32673 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rfg5tSM0EkQtuZMfp0w6WO1B7Rk=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.960479+00 2025-12-17 13:20:00.960485+00 32674 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qd9vc2ln5ysWqOFcjTPh9DcJcjA=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.962814+00 2025-12-17 13:20:00.962819+00 32675 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iH3HSAp4ZvrNP4LoQ5T4PUF6exY=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.965232+00 2025-12-17 13:20:00.965237+00 32676 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G4FANgPQ0um4TyJYcVWy3c3Q-lQ=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.967442+00 2025-12-17 13:20:00.967447+00 32677 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ERCDyraF_PjDmcioS5OXmyCo5I4=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.969363+00 2025-12-17 13:20:00.969368+00 32678 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6EeVoHiJfCeQ7LU_qMLj_VvYP_Q=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.971242+00 2025-12-17 13:20:00.971246+00 32679 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EphX7MlJQygXeCEGovd6Bb8eebg=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.973114+00 2025-12-17 13:20:00.973118+00 32680 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BQ80MnyEVmUOyFbusdNb-A-t040=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.974992+00 2025-12-17 13:20:00.974998+00 32681 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ue4Un23_Alg2vr_QuAq_4XkbQgw=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.977182+00 2025-12-17 13:20:00.977186+00 32682 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZVHYDuXkfUljEylsCqMLz-Gvuw8=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.979083+00 2025-12-17 13:20:00.979088+00 32683 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6DUel3BPaj0PaUWQ4CD1BRMrMT8=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.981401+00 2025-12-17 13:20:00.981406+00 32684 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EaWlSDlomrdSEM_UiEQMWG04GSU=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.983414+00 2025-12-17 13:20:00.983418+00 32685 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6KXp4bUxQryTTEyE8UqNolXI54A=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.985447+00 2025-12-17 13:20:00.985452+00 32686 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xtjSWsnnWBhnc8oXdlPAXyRVCfE=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.987431+00 2025-12-17 13:20:00.987436+00 32687 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c1LI6c810LhnbsIkL9IW5N71e0I=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.98931+00 2025-12-17 13:20:00.989314+00 32688 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:52uZRjLgYEuzymK0HRpIDTZK2Ds=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.991236+00 2025-12-17 13:20:00.991241+00 32689 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-vLv5s0ZD1NkE7CE6SW42DRQkOs=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.993306+00 2025-12-17 13:20:00.99331+00 32690 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UjXKnhV0ZepmqM0A42KlLtrWdjg=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.995545+00 2025-12-17 13:20:00.995551+00 32691 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wyLjvju6Ec3xMqRFFDjisD-RkYI=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:00.997784+00 2025-12-17 13:20:00.997789+00 32692 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CGZIfSbO1YURLRA-MIaa2-5wJTE=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.000065+00 2025-12-17 13:20:01.00007+00 32693 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MAkHSm-6XGgtUTEiWpF4MhcboS0=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.002229+00 2025-12-17 13:20:01.002234+00 32694 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_wKXFW4um0E2-8TXkHO2s9Miyzc=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.00442+00 2025-12-17 13:20:01.004425+00 32695 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KSM8b9CixnleKfTsLuL-YemTHNw=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.006311+00 2025-12-17 13:20:01.006316+00 32696 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tD2687GI-4aT5adedkkCF4620LU=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.008482+00 2025-12-17 13:20:01.008487+00 32697 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4SrtztRudM4NugdwMLeV110QPGg=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.010911+00 2025-12-17 13:20:01.010916+00 32698 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uYN6reZ_swiJyOBazl7hWMzIQiI=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.01311+00 2025-12-17 13:20:01.013115+00 32699 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8qVd1DpHRnQuAQRm6rdhrC2x1xA=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.015453+00 2025-12-17 13:20:01.015458+00 32700 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oZDAPsOnBe1dBdlDJ2x6dDsJT-8=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.017669+00 2025-12-17 13:20:01.017674+00 32701 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ICw63y_lvHNIw9y7CgQWf0jqvCg=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.019553+00 2025-12-17 13:20:01.019558+00 32702 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xGl5r_BS7HI0Br9rc8kZrDXQCes=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.02144+00 2025-12-17 13:20:01.021444+00 32703 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:goEDCxgvY3l4oGdxsEwZbetzpOI=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.023309+00 2025-12-17 13:20:01.023314+00 32704 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YXPAl2c2masaB_gMSu-NvTHutqM=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.025535+00 2025-12-17 13:20:01.025542+00 32705 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qNpePayDCKntHhFCHdMxNqGzaqY=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.02821+00 2025-12-17 13:20:01.028216+00 32706 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8lcN4Ob_4y9S3NTh7dZmzKmKg_k=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.030829+00 2025-12-17 13:20:01.030836+00 32707 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XzviNPKM3v4LB--jVrT4Uf4jQhc=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.033202+00 2025-12-17 13:20:01.033207+00 32708 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eG5oW9k62XHiofq9lh1pHI_ubiw=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.035509+00 2025-12-17 13:20:01.035513+00 32709 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GezfXngT7WftKeE4vDDBFE0qSK8=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.037869+00 2025-12-17 13:20:01.037874+00 32710 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NiBY8neawGPVcGYIe-uK9HooMyM=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.039813+00 2025-12-17 13:20:01.039818+00 32711 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L8it1J2LGUzLcZmFyT3Yzi7xWeY=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.04192+00 2025-12-17 13:20:01.041926+00 32712 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oU1vPRvAkaQUcAe0ATOPBSeHBWo=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.044065+00 2025-12-17 13:20:01.04407+00 32713 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NaeOHqCFaJfT2c970FcWQVLPd8M=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.046113+00 2025-12-17 13:20:01.046117+00 32714 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8o-plNVjgrDFwWi8Jrx_Atmp5xM=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.048667+00 2025-12-17 13:20:01.048673+00 32715 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dvoO3l-zWXS5sanrMyOgujL0xV8=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.05098+00 2025-12-17 13:20:01.050985+00 32716 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dmbsNYnTrouuMlUnVyOQm8yHQrI=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.052919+00 2025-12-17 13:20:01.052924+00 32717 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OLgAp-svZ6dQdM_2gbiMGZW1pHU=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.054806+00 2025-12-17 13:20:01.05481+00 32718 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BekRi2vGdkPjXdKgviJorbeoFIc=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.056677+00 2025-12-17 13:20:01.056682+00 32719 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HHIJ3nGytoKJ0vckdBEs6fpb7mA=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.05875+00 2025-12-17 13:20:01.058756+00 32720 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hEF98EJI2uvBwBiFgSGyF01XBEs=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.061418+00 2025-12-17 13:20:01.061423+00 32721 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pRrAotvvxZVX5EJaTLyoPMQd9gs=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.064161+00 2025-12-17 13:20:01.064166+00 32722 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:satu0bjtZX8Me2IIC6PlM88kvj4=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.066136+00 2025-12-17 13:20:01.066141+00 32723 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bn111jsfuG0PDb-Xg9ZubyF_Vv4=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.068218+00 2025-12-17 13:20:01.068222+00 32724 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C1fm5HEDqwsEppDYM9rh_k7kTqk=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.070217+00 2025-12-17 13:20:01.070222+00 32725 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lHjjfezamUCZokzqTnWo5gh38Ws=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.072131+00 2025-12-17 13:20:01.072136+00 32726 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:beoRsvbKcbqvB2ENyWNmTMfBECA=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.074026+00 2025-12-17 13:20:01.074031+00 32727 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DYdkdltv3ERR54YQV1WWq2v29Es=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.075988+00 2025-12-17 13:20:01.075993+00 32728 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z0eUZvZ1kIrrQPl2q71RjJdpMn8=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.078105+00 2025-12-17 13:20:01.078111+00 32729 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sb97DlOFdsbOYD5Dvma79fR1q_c=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.080121+00 2025-12-17 13:20:01.080125+00 32730 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZPLv1ZWA5WdnjMmkK9Q0rIAwGIE=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.0822+00 2025-12-17 13:20:01.082205+00 32731 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XQ_w-Ua8e9bQ-ZZAP_zaLsxl_dQ=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.084199+00 2025-12-17 13:20:01.084204+00 32732 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cZ96eEnr4oi7KhzVj0QA4Mh9zDM=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.086103+00 2025-12-17 13:20:01.086108+00 32733 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P6OOsNcwP0xxqF-Bt76vZCkIEk8=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.087978+00 2025-12-17 13:20:01.087983+00 32734 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aVJ0-d7AeBmZX5Bm0YAnQGZguJ0=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.089948+00 2025-12-17 13:20:01.089953+00 32735 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IKIt4M8giE17P4iQwa1T3ah18Fw=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.092121+00 2025-12-17 13:20:01.092127+00 32736 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hchq6Lh-CkM2cDSxJDU37FgqNqA=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.094245+00 2025-12-17 13:20:01.094249+00 32737 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9gcdwRc32uw2IB6cNSqp9dKbQIs=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.096246+00 2025-12-17 13:20:01.096251+00 32738 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KVSwpdd8efvTbmmvnFsBXKfVX1U=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.098262+00 2025-12-17 13:20:01.098267+00 32739 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NLwEXzAK2E4pwM8OKKxn2BVJmTA=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.100226+00 2025-12-17 13:20:01.10023+00 32740 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sz9SZbjetur-9mjwkFQYy4Pwe4w=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.102116+00 2025-12-17 13:20:01.102121+00 32741 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GTXNDWK1qLHNQhbPpHuqR87JZFg=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.103998+00 2025-12-17 13:20:01.104003+00 32742 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hgikd1HiLyAGUDAoSQUHtHPwCWQ=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.105856+00 2025-12-17 13:20:01.10586+00 32743 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YWxN9p_UkL8s2h_rLlikA9SDbYw=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.107967+00 2025-12-17 13:20:01.107972+00 32744 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i_YKYkQnF42cuo3ypbObubmPDCw=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.110021+00 2025-12-17 13:20:01.110025+00 32745 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_9co0neKJY1PJkBgvO0_EdTGhbo=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.112179+00 2025-12-17 13:20:01.112184+00 32746 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gC_i__q5x6DjD4Na8iDHwq1LTC8=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.114065+00 2025-12-17 13:20:01.114069+00 32747 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3oIlVYHkW-HkWof9igHYXbDMq7E=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.116264+00 2025-12-17 13:20:01.116269+00 32748 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H8u35flHWh0Y1Bb0Bo13G-hclY0=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.118317+00 2025-12-17 13:20:01.118323+00 32749 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PUhOCnZrJdRSPsiNgj3fkv0AuYI=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.120318+00 2025-12-17 13:20:01.120323+00 32750 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y-Qlw-etMw2gDIlvka56ma-YtI8=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.122246+00 2025-12-17 13:20:01.12225+00 32751 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lP7MIuv6FKIoMqJLt-_P5I2v-Cs=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.124135+00 2025-12-17 13:20:01.12414+00 32752 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dOeMzFB6CLGPVMQPtoJGOY10HDs=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.126374+00 2025-12-17 13:20:01.126381+00 32753 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M_R5q2GpzlQYasjJJHLWQ1hMCio=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.128892+00 2025-12-17 13:20:01.128897+00 32754 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SI_h5ZaDigm7OftYDjq_2VhCxsA=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.131326+00 2025-12-17 13:20:01.131332+00 32755 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yGLsB4eQNxATkZ6_VG9vhr0w0qA=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.133716+00 2025-12-17 13:20:01.133722+00 32756 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-dP5WxN5Ji37_cZ4GpzrrPRtw48=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.136062+00 2025-12-17 13:20:01.136067+00 32757 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OudpguWD07MsofP5qA27odJpxH4=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.138408+00 2025-12-17 13:20:01.138413+00 32758 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D3HW1O6pPazUjNos3fjt6W54xtU=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.140929+00 2025-12-17 13:20:01.140935+00 32759 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w98UsdTARlHWD8fIQ25CEMqfht0=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.143795+00 2025-12-17 13:20:01.143801+00 32760 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uXMV_SV2p0Oc_GbEnVE9tqIBVx0=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.146275+00 2025-12-17 13:20:01.146281+00 32761 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kNnX2_WrpuK2N2veHorRE0YpAcw=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.148743+00 2025-12-17 13:20:01.148749+00 32762 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f4ljMvcHqF9cwS427ldh4wyv4u8=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.151088+00 2025-12-17 13:20:01.151094+00 32763 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tUd6kqM6kO2_-jczBR9XLKYlxJg=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:20:01.15345+00 2025-12-17 13:20:01.153455+00 32764 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=1766064000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TPEW1klZi5iDc5SUozQhyEHrIcU=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.577736+00 2025-12-17 13:30:00.577745+00 32765 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2gTgP7W42ZCJ-aR0nM2AFB_PrCc=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.581268+00 2025-12-17 13:30:00.581275+00 32766 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cSDOaxONV3zbmzti7T6uaMgbwdA=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.583746+00 2025-12-17 13:30:00.583751+00 32767 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8aj7dURYTRop3VQ6LBkoHhRvMNI=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.586285+00 2025-12-17 13:30:00.58629+00 32768 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-pS25HKxngpcxxs3KRB1wL8VtXA=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.588835+00 2025-12-17 13:30:00.58884+00 32769 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZamH8rJA2g2RpO786fXILqM_8I8=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.591877+00 2025-12-17 13:30:00.591882+00 32770 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XtOHfz_XZtTnwJH-AcmQuLrQePI=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.59446+00 2025-12-17 13:30:00.594466+00 32771 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fXYetu4be-SbUkFZTassqKn7iO4=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.596701+00 2025-12-17 13:30:00.596706+00 32772 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5s51tzJjhAwqrwE-zTu70ehpm-8=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.59862+00 2025-12-17 13:30:00.598625+00 32773 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qa8LiDpzIj9ieIPzXN7HTjdR6Gw=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.600789+00 2025-12-17 13:30:00.600794+00 32774 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iKj_fPPa2iruL3g7hywN3Dtm92A=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.60271+00 2025-12-17 13:30:00.602715+00 32775 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o5I-pI0SSyu2yjfJqSTlK4Kh8Sk=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.604811+00 2025-12-17 13:30:00.604816+00 32776 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vfOf49FJbO-spM8vguwW8oD4SLY=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.607331+00 2025-12-17 13:30:00.607336+00 32777 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7738J-XWWjX7kHjHTxZZTwDxIIo=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.609786+00 2025-12-17 13:30:00.609791+00 32778 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oe_orRFhzyNATyQoG6mQSMB7u2g=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.612176+00 2025-12-17 13:30:00.612182+00 32779 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eOfaMom8jilKYDqHNvjfUd7l3IY=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.614589+00 2025-12-17 13:30:00.614595+00 32780 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E5-GsSealU9C6NnQZ6gw5QF-xys=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.616911+00 2025-12-17 13:30:00.616916+00 32781 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CSxMWO7JNIZ0wJeLxo69FLc9sn8=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.618994+00 2025-12-17 13:30:00.618999+00 32782 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Th8vSll6Qh_JVpAdWa5YmnOqN7U=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.621087+00 2025-12-17 13:30:00.621092+00 32783 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Tj8M21BA0rXRabsTLtMImS7_n0=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.623252+00 2025-12-17 13:30:00.623257+00 32784 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-EDuQ6WqAvQo4fEufo1xqg7l5I=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.625711+00 2025-12-17 13:30:00.625717+00 32785 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1a502wotV8Y8ROmbTNsmakRFhV8=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.628108+00 2025-12-17 13:30:00.628114+00 32786 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mg0_lmOvJ3k8UDJL9Df3dd7VXLI=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.630194+00 2025-12-17 13:30:00.630199+00 32787 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QkWxEyi9wnYh1Kp40OLXTWqz-og=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.632278+00 2025-12-17 13:30:00.632283+00 32788 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ffdf6kf75ouEjmz9V_u0fnIu6c8=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.63489+00 2025-12-17 13:30:00.634895+00 32789 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hG4xwyuuXaegdypZnn9-MvKc9DY=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.637241+00 2025-12-17 13:30:00.637246+00 32790 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tJ8GAXvrXFSm53TFPPW28AjHqjk=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.639405+00 2025-12-17 13:30:00.639411+00 32791 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:crL8mtJc7Pt2uza6FqR7q1tGvq0=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.641853+00 2025-12-17 13:30:00.641858+00 32792 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zZyHAYsTQkyXQdAvA6yWT6B7rHs=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.644255+00 2025-12-17 13:30:00.644261+00 32793 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qIfyKRZqoBK5wRI8zeAdpwWsR04=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.646348+00 2025-12-17 13:30:00.646353+00 32794 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_kxoxHecXrx9c-t1lyHE7ZRnWzE=", "createTime": "2024-08-15 14:54:52"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.648431+00 2025-12-17 13:30:00.648436+00 32795 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wk8W1Ij6Alynpn8CU-IiOseM19g=", "createTime": "2024-08-15 14:54:52"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.650785+00 2025-12-17 13:30:00.65079+00 32796 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ijgj9Xkvp5yWOYyEWBqpBdFgMaY=", "createTime": "2024-08-15 14:54:52"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.653104+00 2025-12-17 13:30:00.653109+00 32797 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7biphbum0W67cDrK8MquR930zjQ=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.655508+00 2025-12-17 13:30:00.655513+00 32798 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6HtgCvRiu9d1E0CYAhnKCm-18jI=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.658018+00 2025-12-17 13:30:00.658024+00 32799 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dDcpJhoTKrWel1HSCZBHwYKzJWU=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.660409+00 2025-12-17 13:30:00.660415+00 32800 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p063qaIGbGhUIu-9toaMM4RPEvY=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.662503+00 2025-12-17 13:30:00.662509+00 32801 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CM6bdc_oAtPANX0IV9jKLF1_U0g=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.664809+00 2025-12-17 13:30:00.664814+00 32802 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OxUhX0YNn_nK6s6w3e1W28piSBE=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.666939+00 2025-12-17 13:30:00.666944+00 32803 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H-ixi89NfQmsBgT5Dxs5tWVZRx8=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.669038+00 2025-12-17 13:30:00.669043+00 32804 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sZnz6z9I_QG0gSJFn0HUaRAU1EA=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.671457+00 2025-12-17 13:30:00.671465+00 32805 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o9nA2K8JiBJUvQc5XEycQk27Ekc=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.67386+00 2025-12-17 13:30:00.673866+00 32806 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cuk2XKf5K0htYNsefHU-BBBYom0=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.676267+00 2025-12-17 13:30:00.676272+00 32807 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:44pr19d_4F_JOlPYngEYDIjwIms=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.678435+00 2025-12-17 13:30:00.67844+00 32808 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DxpCqBySr7Rx7CtnEE8jzlB5yKs=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.680524+00 2025-12-17 13:30:00.680534+00 32809 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j7igFtJqs4LyYkriXmpHQTWBICk=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.68502+00 2025-12-17 13:30:00.68503+00 32810 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MfyVGUHSplFKCNyFn7M7i-imm04=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.6885+00 2025-12-17 13:30:00.688508+00 32811 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BzVjWtPEM4gzBWRhQIX8BC8cYtk=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.692284+00 2025-12-17 13:30:00.692293+00 32812 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OZK-lGDTMHXAC-C_wTiOZvuxd2M=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.695488+00 2025-12-17 13:30:00.695494+00 32813 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k9N8a_Ic1jy-t208xb4LRx3t6ao=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.69789+00 2025-12-17 13:30:00.697895+00 32814 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0kMym6_HgqbMpLtv70XjBkzdOlQ=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.700078+00 2025-12-17 13:30:00.700082+00 32815 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kD04F8C45jeitI0ftwijChWaphQ=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.70217+00 2025-12-17 13:30:00.702174+00 32816 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DgE3SzWThmaFN8pN5SgtBkHi7zY=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.704201+00 2025-12-17 13:30:00.704206+00 32817 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fvJ0F1Uc1Yla7hvv0U1k-j5IX64=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.706342+00 2025-12-17 13:30:00.706347+00 32818 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vtvnjgYZnTPcb3Bb5mx0KyMgz14=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.708479+00 2025-12-17 13:30:00.708483+00 32819 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d1qToZzEdsOfwQ1b5qmXIy-zv1o=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.710349+00 2025-12-17 13:30:00.710354+00 32820 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:az81hRS6ldJHKiur9Xxd0ny7YoA=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.712186+00 2025-12-17 13:30:00.712191+00 32821 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ykF60R6Fw3yu3B-moS7_1VY7xXs=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.714269+00 2025-12-17 13:30:00.714274+00 32822 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jvBDpmhKJD9Yal-ZXqMYqqedcB8=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.716349+00 2025-12-17 13:30:00.716353+00 32823 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KcW8JauPoiTbMEf_sLgqupk0ex8=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.718446+00 2025-12-17 13:30:00.71845+00 32824 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vramu1V5ocGAlKcEUWiQnn8lUgU=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.720314+00 2025-12-17 13:30:00.720318+00 32825 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NsZ2qKu_lpGXyX8GDjBPXL0uU-8=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.722409+00 2025-12-17 13:30:00.722414+00 32826 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Femo2YjBlcWQifSbwXBH7hpWWaU=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.724584+00 2025-12-17 13:30:00.724589+00 32827 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KdiHFNgxjVaxO2Wlc4_yNqZUuwI=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.726474+00 2025-12-17 13:30:00.726479+00 32828 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jswGfuj7HkwLhGapnYSTY6vQoG8=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.728322+00 2025-12-17 13:30:00.728327+00 32829 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:usB_k0mz_-qPmz5n9wWjoG-aq-k=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.730463+00 2025-12-17 13:30:00.730468+00 32830 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BHZNAl9svHrpZjJkBI74pdvJecg=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.732767+00 2025-12-17 13:30:00.732771+00 32831 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YCOb84K8zcL73M1EO5xJRTO7SAs=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.734725+00 2025-12-17 13:30:00.73473+00 32832 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BQOfkJz7IBcbNe8DUCEekup_fYI=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.73659+00 2025-12-17 13:30:00.736594+00 32833 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sIlZmiwNc9VFluq6XXE2yNDvHZU=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.738538+00 2025-12-17 13:30:00.738543+00 32834 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6WCtj8o4WsFOLX46WzZjBPKAGoo=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.74073+00 2025-12-17 13:30:00.740735+00 32835 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kCL8U9lYbjvKTyMKhGi6dU73Eeo=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.742643+00 2025-12-17 13:30:00.742648+00 32836 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y4ocvZl9J0afZ1NWhfYbl6S6xj4=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.744491+00 2025-12-17 13:30:00.744495+00 32837 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0HiSzBgg0a1yLmLMQpHkrFiZuXA=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.746536+00 2025-12-17 13:30:00.746541+00 32838 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FvOcamZn8WJ8ArYKGZQktnrhSjE=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.748373+00 2025-12-17 13:30:00.748377+00 32839 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LCmzCsq296Z8x4ioa571MIpQplI=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.750401+00 2025-12-17 13:30:00.750406+00 32840 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZMK_dYpaVRTzS0UahGh2uYscxY=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.752462+00 2025-12-17 13:30:00.752467+00 32841 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M9GjS_67wNWOa67Pzp07kH0I1a0=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.754562+00 2025-12-17 13:30:00.75457+00 32842 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7T53ykuC-bdmtOySoy-_WYiMxBo=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.756743+00 2025-12-17 13:30:00.756748+00 32843 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dJIHbtNeWiWMCgzGE1zCOJXXoSc=", "createTime": "2024-08-15 14:54:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.75867+00 2025-12-17 13:30:00.758675+00 32844 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8otzsgy80Xb_3gn2_T9dWcC5IY4=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.760763+00 2025-12-17 13:30:00.760768+00 32845 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jweZcqIaMU8nKJaMC1_eG0iQzoU=", "createTime": "2024-08-15 14:54:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.762905+00 2025-12-17 13:30:00.76291+00 32846 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EpkJP_wUuY6QHnlmtsUZtuyLaHM=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.765143+00 2025-12-17 13:30:00.765148+00 32847 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TT_4eJCaZB0L6s1IobvtUanW6OA=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.767354+00 2025-12-17 13:30:00.767358+00 32848 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O7S6-PTR9Y0E_KNoYBF4eqTpc4U=", "createTime": "2024-08-15 14:54:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.769794+00 2025-12-17 13:30:00.769798+00 32849 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SO7o3PIBoE8O0wcbEcleHiHAIyA=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.771946+00 2025-12-17 13:30:00.77195+00 32850 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vL2O4fI4B_zzeO3PdzF3ejXbIGI=", "createTime": "2024-08-15 14:54:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.774596+00 2025-12-17 13:30:00.7746+00 32851 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Muz2OHj4_5EYGYeqwZPkJWcGttw=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.777277+00 2025-12-17 13:30:00.777281+00 32852 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:euSSLFaqWWl4hTcyzhOiPhxB6ug=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.77981+00 2025-12-17 13:30:00.779815+00 32853 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WSwKbrOcx5sA8bILlHC72AfOETU=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.781965+00 2025-12-17 13:30:00.78197+00 32854 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UmO9P3qdHUdX04OaNgcmb0vJM1U=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.783872+00 2025-12-17 13:30:00.783876+00 32855 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xgkwG38MfKLH7OoOK-6IxaUEaBM=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.785944+00 2025-12-17 13:30:00.78595+00 32856 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aB2durgNFych3wiG3JvjZQR5KYg=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.788316+00 2025-12-17 13:30:00.788321+00 32857 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d8dsByMvbmTUvNPVhiRl-7GwwpQ=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.790588+00 2025-12-17 13:30:00.790593+00 32858 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qReU0nwMgQd6SwgO26CRE3A4jjU=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.79276+00 2025-12-17 13:30:00.792765+00 32859 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cXyfkqqehLHCE1WkzXhIx_e4hw4=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.794884+00 2025-12-17 13:30:00.794888+00 32860 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2upQdleISQhVUCajUacP0USN-Ek=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.796962+00 2025-12-17 13:30:00.796967+00 32861 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6EFR8nb7EvBk41AeLeaxhMQMDDA=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.798812+00 2025-12-17 13:30:00.798817+00 32862 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UsjUerjgK8fVOPwtuP4ApdaXkYM=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.801013+00 2025-12-17 13:30:00.801018+00 32863 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ut28JDqjmQypTG-WQqV_031mXAY=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:00.802997+00 2025-12-17 13:30:00.803002+00 32864 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=1766064599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FhNdk4043oH5nKGfGUDEAsS8wyU=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.156993+00 2025-12-17 13:30:01.157001+00 32865 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:quMVIEakXElj3yVhLNJLJE0iKFk=", "createTime": "2024-08-15 14:54:58"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.160077+00 2025-12-17 13:30:01.160083+00 32866 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GSHGz7AhxE_y_MPPkTJ6HiRH5LI=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.162445+00 2025-12-17 13:30:01.162451+00 32867 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Agldj09CNAZWOLp5HEHgvxRhig0=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.164661+00 2025-12-17 13:30:01.164666+00 32868 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fM8v5ZsI9FMaNr_PELJLl3uc8jA=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.166583+00 2025-12-17 13:30:01.166587+00 32869 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uRpsPD9e4BAHm-HAqt-E4GQMNcQ=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.176778+00 2025-12-17 13:30:01.176783+00 32874 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3gjkwFONTjD_wXoUc1Fo2GcnSUU=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.168514+00 2025-12-17 13:30:01.168519+00 32870 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aZx9PpSTzFg5GEn40hk-dX9lcOs=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.170513+00 2025-12-17 13:30:01.170517+00 32871 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Nht9ki-IyH7X78sKMObnL290Nk=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.172627+00 2025-12-17 13:30:01.172632+00 32872 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TDtTDwBSA8lsrtEIOLBEb4qh81w=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.174783+00 2025-12-17 13:30:01.174788+00 32873 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kyPiTyJdVPJsIxeBOAFuKW5CoqU=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.178734+00 2025-12-17 13:30:01.178739+00 32875 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W2zzxMh4dGDOROYWuWgynD6cpZU=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.180646+00 2025-12-17 13:30:01.180651+00 32876 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cxm3itfnVL-3EvIfTQI7x9HoOQI=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.182532+00 2025-12-17 13:30:01.182536+00 32877 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJPvsZ1Mo34L4o9CY1f72iLp5so=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.185395+00 2025-12-17 13:30:01.1854+00 32878 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2At5w-5tLN_31fXwp9cUjDNRRDA=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.187935+00 2025-12-17 13:30:01.187941+00 32879 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_bvz0I0j-Trbs6rsj9twXUekufw=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.190227+00 2025-12-17 13:30:01.190232+00 32880 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lM-lDX47NXjMusWRjs-1C-QIusw=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.19267+00 2025-12-17 13:30:01.192675+00 32881 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SmHk3TcgTZbLADc5mRvEMKlyB-s=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.195081+00 2025-12-17 13:30:01.195086+00 32882 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kmTyUDylxuHzdY2POWAmL0xDugQ=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.197295+00 2025-12-17 13:30:01.1973+00 32883 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RZJf9qCSWT4Fxkrz8l99Hsf8IoQ=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.199459+00 2025-12-17 13:30:01.199463+00 32884 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y71R5LU-kLP6D1-iHV8EQY0Tg78=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.201934+00 2025-12-17 13:30:01.201939+00 32885 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ljg7hsnVhyfu-CeX_nxQLKs500c=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.203936+00 2025-12-17 13:30:01.203941+00 32886 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LPgZXVwomsYp06giwa1grtfhUeI=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.20591+00 2025-12-17 13:30:01.205914+00 32887 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H6-95c3zgccDjmT3wEuSLpXPm2E=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.207985+00 2025-12-17 13:30:01.20799+00 32888 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mV9d_oeOGhtL-YLDFR6qn9uDiX8=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.210007+00 2025-12-17 13:30:01.210012+00 32889 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WXibgoIYXvChhL5mtlMu3_40clM=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.2119+00 2025-12-17 13:30:01.211904+00 32890 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rJ9zcaLSfxa8zsvlweSAA9ttufw=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.213792+00 2025-12-17 13:30:01.213796+00 32891 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eztrouTg5688w9dvO1ROXVkinMk=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.215655+00 2025-12-17 13:30:01.215659+00 32892 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yxvZenCy6uYVJJH0DIuWaKzyTYk=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.217545+00 2025-12-17 13:30:01.217549+00 32893 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u4Nlaex5vYrJr1yGit9xkwNx1J0=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.219652+00 2025-12-17 13:30:01.219657+00 32894 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rWC54nDR-zHjmb_TSgckpKDV1bE=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.221994+00 2025-12-17 13:30:01.222+00 32895 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oIryg8J5FKOIZlnjoScpA30xMAE=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.22427+00 2025-12-17 13:30:01.224275+00 32896 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7FyldAc8a4mA3g7GqGVSTeN0pLk=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.22673+00 2025-12-17 13:30:01.226736+00 32897 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-jwWziDF3BKHPoPckAyg8FRRIa4=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.229059+00 2025-12-17 13:30:01.229064+00 32898 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YBuDde2-tXguXzfJfYW0kxxft0s=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.231152+00 2025-12-17 13:30:01.231157+00 32899 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wwX3FRaI-OfX_T8JEa2Gj9XKuDc=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.233556+00 2025-12-17 13:30:01.233561+00 32900 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jhtPZcoKcUworESkmM2uG4izGwM=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.235923+00 2025-12-17 13:30:01.235928+00 32901 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hyb71oLf1N907tRCoVg2V3afWEU=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.238022+00 2025-12-17 13:30:01.238027+00 32902 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eIbzqFysMEQUXn9eo7lWqv72rs8=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.24019+00 2025-12-17 13:30:01.240196+00 32903 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JjwtwKLBCjWkyYAyPzluUq9PDeE=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.251661+00 2025-12-17 13:30:01.251666+00 32908 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x31qmOVHIWRMQxgza6ptm1oTAn0=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.242408+00 2025-12-17 13:30:01.242413+00 32904 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PwdsLk7ENCxygrEE8CLuWGRVV_o=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.24479+00 2025-12-17 13:30:01.244795+00 32905 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qEgicTnvV4Ymsh3k4jLSGVI8ebk=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.247058+00 2025-12-17 13:30:01.247063+00 32906 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lSifaVNpZwjU9Re1Np_r2PpNWMQ=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.249362+00 2025-12-17 13:30:01.249367+00 32907 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BVQdp-gnLpnzFAcJhpZzeZYrwYI=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.253973+00 2025-12-17 13:30:01.253978+00 32909 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wNvXdDYAGWK1cJZGryOo_r_eJCo=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.256437+00 2025-12-17 13:30:01.256442+00 32910 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a44ZQRVlyzZCrQt2tkJvQOwXPwk=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.258822+00 2025-12-17 13:30:01.258827+00 32911 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:txmFlcoFnZ6n24pZ3wgm13O2aIc=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.260992+00 2025-12-17 13:30:01.260997+00 32912 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQjC3SPMIZfI4BOoELaO2iRpFgk=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.26309+00 2025-12-17 13:30:01.263095+00 32913 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:njmE-3qa3ErysbseNgINojjybNM=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.265002+00 2025-12-17 13:30:01.265007+00 32914 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HDc6B87ulArpjgb7EWFavwvE6nQ=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.266911+00 2025-12-17 13:30:01.266916+00 32915 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ci3kDEDk7gl9KMftKzSBbdKiTBE=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.269006+00 2025-12-17 13:30:01.26901+00 32916 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IeO3WIvRAlObxJBxBy76A0pZCTU=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.270913+00 2025-12-17 13:30:01.270918+00 32917 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JL4vse3ZEje2nVmqMFancazhVGg=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.273085+00 2025-12-17 13:30:01.27309+00 32918 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O0dLTz_H9MhMoZaDFPyehPKrPTU=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.275163+00 2025-12-17 13:30:01.275167+00 32919 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WsCJTqAAsXwynt3EiccwZBcgQTk=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.277124+00 2025-12-17 13:30:01.277129+00 32920 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fSu5Yki9wUzEpHE5G1xoASnPoag=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.279028+00 2025-12-17 13:30:01.279032+00 32921 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CZtcZQHU8Zvzid06WPklJYIgOiE=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.281152+00 2025-12-17 13:30:01.281156+00 32922 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WQsjl7ZzVodjo9s0IZQ3mKbBlug=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.283048+00 2025-12-17 13:30:01.283053+00 32923 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TZiIKO0ZSOH7IEssjGkYTqVtBzU=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.285121+00 2025-12-17 13:30:01.285126+00 32924 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aOYIWswLyg9sdRlvnedRn0SgrP0=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.286981+00 2025-12-17 13:30:01.286986+00 32925 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zd3ywe9uzvkjYNGnXiXEYxNydTk=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.289118+00 2025-12-17 13:30:01.289123+00 32926 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4UC0fITOev_XvpnT9zB9Adu-rtg=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.291397+00 2025-12-17 13:30:01.291401+00 32927 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iHtsd0G9vH6ao4_t74wsgmS8xQI=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.293456+00 2025-12-17 13:30:01.293461+00 32928 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BJSmDfMdpotEl2pGQjoaRUxl0uk=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.295525+00 2025-12-17 13:30:01.29553+00 32929 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4PHelX2P4zzN_UMfzlKWSpdH41o=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.297459+00 2025-12-17 13:30:01.297463+00 32930 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L7DuqSHQp_0Yw6F1tN7BtBCnMxY=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.29938+00 2025-12-17 13:30:01.299385+00 32931 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7RVT-OhKSrVnfOa7yVo5pYQcsdc=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.301274+00 2025-12-17 13:30:01.301278+00 32932 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J1wZMY0Krw6MUHcGXEROdPU_AJk=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.303139+00 2025-12-17 13:30:01.303144+00 32933 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wPCo0X1X4-36wS-1zMY3ZVA2XWw=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.305474+00 2025-12-17 13:30:01.305479+00 32934 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YG4pRYgxQZGbBWQTwxdDDT5Y0Qs=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.307642+00 2025-12-17 13:30:01.307647+00 32935 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zxBquu2yGne46IkzFc6UTp3aN7o=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.309633+00 2025-12-17 13:30:01.309637+00 32936 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S3VKTi17i21UEalK31QcR8EwaU8=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.311512+00 2025-12-17 13:30:01.311517+00 32937 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nMsrzlADbbiUqV7FvPfOgRvSlWg=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.313425+00 2025-12-17 13:30:01.31343+00 32938 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EcAjElbk1_sSHfQNkyOl1ArQ1gM=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.315345+00 2025-12-17 13:30:01.31535+00 32939 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hEsxzhBajSf8OINyU_0hdRdRJO4=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.317247+00 2025-12-17 13:30:01.317251+00 32940 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_QFRmV3utPaZXv3guzsk_KabkJE=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.319352+00 2025-12-17 13:30:01.319356+00 32941 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3RUITJ3Iw7S1hCIWaFYz8hWu7lk=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.321518+00 2025-12-17 13:30:01.321524+00 32942 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I-rJbG_Md-j3UbnnuIE7AEB7UmE=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.324064+00 2025-12-17 13:30:01.32407+00 32943 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lQJxrRH7VfriJ5M5tkWE3PDD3Ps=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.326426+00 2025-12-17 13:30:01.326431+00 32944 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LAYUWx6CdrDHcrYvS4W1x9MYS0c=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.328797+00 2025-12-17 13:30:01.328807+00 32945 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fgLIe3U5x2r7wMUaA0-uiW45-Dc=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.330901+00 2025-12-17 13:30:01.330906+00 32946 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ypeta_3U1KNPluS61wRIFRI_0lc=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.33324+00 2025-12-17 13:30:01.333245+00 32947 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oub4Xsv-el2XPwgnfWy4g88cMuQ=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.335602+00 2025-12-17 13:30:01.335612+00 32948 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:toqiE4vofl-EMteOS5XtjzNVCgI=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.337731+00 2025-12-17 13:30:01.33774+00 32949 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SdkaUoPDBAh1U8m2IgniXGo36Ks=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.340087+00 2025-12-17 13:30:01.340093+00 32950 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dO7aiGK1T42LYm3Culw70FeNPqU=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.342655+00 2025-12-17 13:30:01.34266+00 32951 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QJUVfIIq37HYKbYrndI1TDdBvgY=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.345069+00 2025-12-17 13:30:01.345074+00 32952 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L_bSYTNp4KGIMpitSdrx9KM4QEo=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.347413+00 2025-12-17 13:30:01.347418+00 32953 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L2FRYRmM7su1GMHpiNce2JcKMNw=", "createTime": "2024-08-15 14:55:06"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.349812+00 2025-12-17 13:30:01.349817+00 32954 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ewTaWY315xmeMPgt7ldzTD79tDY=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.352117+00 2025-12-17 13:30:01.352123+00 32955 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1fJ4DMtywgBQzchrGcGy-Zpa6O4=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.354498+00 2025-12-17 13:30:01.354503+00 32956 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fp1JafIi7hDAxTmjp8D4oyhDtTY=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.357127+00 2025-12-17 13:30:01.357133+00 32957 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lUvGEbAC1sQX25qBIRpA8E6r-I0=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.359695+00 2025-12-17 13:30:01.3597+00 32958 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SJIF-p3fzrbVJ6gagUmEgqwBIS8=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.362128+00 2025-12-17 13:30:01.362133+00 32959 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VBgv9GV71WxiU_gfZ0CZiJd0fZI=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.364472+00 2025-12-17 13:30:01.364478+00 32960 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lfVoUj3oxMi8Rrw_hb7kJQSOco8=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.366819+00 2025-12-17 13:30:01.366824+00 32961 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xDqFt-ZZyv2QYc0NnXApQkRBLwk=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.368947+00 2025-12-17 13:30:01.368952+00 32962 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z55vJoWaEArYuVBDBuop5qdlf-c=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.371129+00 2025-12-17 13:30:01.371135+00 32963 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kOGwDth810ZcPIfBR7hO-RFxhkA=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:30:01.373671+00 2025-12-17 13:30:01.373676+00 32964 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=1766064600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fv3kCsiUcPWLxx_y4yMBg0nWVaI=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.368988+00 2025-12-17 13:40:00.368996+00 32965 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t7yfsjDyeycN_1y6CfJiV_zoqoY=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.37238+00 2025-12-17 13:40:00.372387+00 32966 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aMC-Hg7y0Pe3d_y3EY3Nlfy1rOE=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.374918+00 2025-12-17 13:40:00.374923+00 32967 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7mrd3PoWpfOWeeFYOB1ND9j9IGQ=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.377167+00 2025-12-17 13:40:00.377172+00 32968 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mR85VpAk43Izx9PHwGZDFYnhDpY=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.379512+00 2025-12-17 13:40:00.379518+00 32969 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NKvnbqyPgwN25chSc0x_GikoRcQ=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.381704+00 2025-12-17 13:40:00.381709+00 32970 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qOs0fmkAlWWXzvldUyR2PaFd17o=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.383869+00 2025-12-17 13:40:00.383875+00 32971 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:16IdzKqm7sIUSeBqDwQKmGIacOQ=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.386075+00 2025-12-17 13:40:00.38608+00 32972 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jfe1TkohfhTGGTvE2xfyaHl1dgU=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.388269+00 2025-12-17 13:40:00.388274+00 32973 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g18lazZOiJQ4MwH5eezBf6_Kfek=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.398542+00 2025-12-17 13:40:00.398547+00 32978 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:45WLfpxJVYeOrkI3ZkDe7JsQjFo=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.390528+00 2025-12-17 13:40:00.390533+00 32974 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rq5aFFLAX_jBUiX7ZBH38Id2xzU=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.392751+00 2025-12-17 13:40:00.392756+00 32975 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NQ420aHtazk5GGYdVP0V6Yhlmkw=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.394685+00 2025-12-17 13:40:00.39469+00 32976 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kFHSc9zKFNYeTK0qNBvlrciZork=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.396616+00 2025-12-17 13:40:00.39662+00 32977 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YnxXLjxCSfe9ONjkj-jFpbtWxx4=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.400976+00 2025-12-17 13:40:00.400982+00 32979 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yJXzCHo48dZ_8KNkIsvd79vIjhs=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.403423+00 2025-12-17 13:40:00.40343+00 32980 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_iAuItWKJKNsozeAld87oxVS4YE=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.405923+00 2025-12-17 13:40:00.405928+00 32981 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wjt9_2Y2G67cRcxRjk3ncVKODN4=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.407918+00 2025-12-17 13:40:00.407922+00 32982 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXlKBdJCJ6p3P-ZfhQ8qFtj49Tk=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.409908+00 2025-12-17 13:40:00.409913+00 32983 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qascUUGpb9YvAAN-rwEDTuEQlEM=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.411915+00 2025-12-17 13:40:00.411919+00 32984 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:htYdaPaxS4jfuMfVy-NGJUDKrb0=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.41404+00 2025-12-17 13:40:00.414046+00 32985 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N0DQ1vpq0uZJLuqBzg5mqPW4BMU=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.416254+00 2025-12-17 13:40:00.416259+00 32986 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KdKaWKK33Me5IG0ovlDrJYrfZHQ=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.418688+00 2025-12-17 13:40:00.418693+00 32987 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HpATQaOOwbI-V8HfvfEK87wf-rs=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.420924+00 2025-12-17 13:40:00.420929+00 32988 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g0kKPQeh69J90kR_i10Vqze-bYE=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.422895+00 2025-12-17 13:40:00.4229+00 32989 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1b74OuqHRQWJazoNmStxpgd0UDo=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.424848+00 2025-12-17 13:40:00.424853+00 32990 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Aa4Ow8ZsG2_cD2tGMHAMyGig_Q=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.42743+00 2025-12-17 13:40:00.427437+00 32991 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ziX6xd82j3YXG4WImUG8XIqKvHw=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.430091+00 2025-12-17 13:40:00.430096+00 32992 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KhwBHmNoe4yZtZXgbEPyJNy-91o=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.432431+00 2025-12-17 13:40:00.432437+00 32993 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KOtk9WTptODLMiGDhLjfNg_vif0=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.43498+00 2025-12-17 13:40:00.434985+00 32994 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kvDdclbKx6IOYi6y-c23FnPQLBs=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.437373+00 2025-12-17 13:40:00.437378+00 32995 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:adFARO78T30JSOQgyNL2UhC7PHk=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.439586+00 2025-12-17 13:40:00.439591+00 32996 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TNVXovqpNeatnLTnuZDPvoMeO00=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.441703+00 2025-12-17 13:40:00.441708+00 32997 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:meBULm73dJT11U7Mdv0_ZgUUxsQ=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.443855+00 2025-12-17 13:40:00.44386+00 32998 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hsnXJT1qusRAgzAMvzIhHa0HC-E=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.445995+00 2025-12-17 13:40:00.445999+00 32999 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3eD0EdDH0T-2JJRUoDMbS31eOnM=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.447894+00 2025-12-17 13:40:00.447899+00 33000 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0FRtXys_WeiYglGMjpzoAkBYr8M=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.450377+00 2025-12-17 13:40:00.450383+00 33001 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T5w01wEw0kx_uxOFToWKPGCbxIw=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.453003+00 2025-12-17 13:40:00.453008+00 33002 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NS2MAmjYcUfnpB_jv22_yYvL_2M=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.455328+00 2025-12-17 13:40:00.455333+00 33003 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MXS9hHHLKzCGgQU6No2UAFRS1do=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.457276+00 2025-12-17 13:40:00.457281+00 33004 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t2kYaRX7KthpkuL9YivRUfnYLRg=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.459208+00 2025-12-17 13:40:00.459212+00 33005 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7UBMkSb-H35DxFhYw_RsMCgdK04=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.461109+00 2025-12-17 13:40:00.461114+00 33006 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:St9UmC-kPPPsrmZ9CaUwVoonqwo=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.463021+00 2025-12-17 13:40:00.463026+00 33007 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3BKEjmdWJQ569XVTqZtt7jDgAJY=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.465071+00 2025-12-17 13:40:00.465075+00 33008 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GD-cFuVIjhho_G-XFLdhhiSs-fI=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.467148+00 2025-12-17 13:40:00.467153+00 33009 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:24A3ayyVDsnbete13EHyog8yvy0=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.469443+00 2025-12-17 13:40:00.469448+00 33010 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xh30o6pjodrke0DZy3EZ6G8LX-Q=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.471426+00 2025-12-17 13:40:00.471431+00 33011 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:59Uln9hO5G3JxqcbwHMQKJ6jXqE=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.473322+00 2025-12-17 13:40:00.473326+00 33012 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E5kR1YQsAMFyo3FQO0E3SJ1UFhc=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.475194+00 2025-12-17 13:40:00.475198+00 33013 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5drBTjJDwwGZmPQtsGxELcajQm4=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.477351+00 2025-12-17 13:40:00.477356+00 33014 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YfM6lLWhML4UmBjsKu8fpL81r1k=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.47968+00 2025-12-17 13:40:00.479686+00 33015 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uOhT8v_V8NLxv_5q6BtCzjod7bU=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.482421+00 2025-12-17 13:40:00.482426+00 33016 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:old9yHh-lDVQD6QUe5l3bi9lrXA=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.485241+00 2025-12-17 13:40:00.485246+00 33017 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kyRQFUFLb__kCdwmCoyYXaBNA3w=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.488103+00 2025-12-17 13:40:00.488108+00 33018 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eVxaqH0Bk9sKsrSHcwD2Lrhzyqc=", "createTime": "2024-08-15 14:55:12"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.490684+00 2025-12-17 13:40:00.490688+00 33019 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Gg1rFLM-E-W6bmupPBRSNN1hnU=", "createTime": "2024-08-15 14:55:12"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.492961+00 2025-12-17 13:40:00.492966+00 33020 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:twL1vbb4B4AwIB-15Qz8i9qRV18=", "createTime": "2024-08-15 14:55:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.495379+00 2025-12-17 13:40:00.495384+00 33021 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rM3dXW_vCHBhLyXM-AeYkTKJ198=", "createTime": "2024-08-15 14:55:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.497286+00 2025-12-17 13:40:00.49729+00 33022 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qvxzOQITpbJeaJvmU5nsoql9xsU=", "createTime": "2024-08-15 14:55:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.499242+00 2025-12-17 13:40:00.499248+00 33023 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nIxR4u6bUfYgYk_rkl7igrk01iE=", "createTime": "2024-08-15 14:55:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.50167+00 2025-12-17 13:40:00.501674+00 33024 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FDvDSJv-aPumlqE5yGkzoi9-Rc8=", "createTime": "2024-08-15 14:55:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.504212+00 2025-12-17 13:40:00.504217+00 33025 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z2k5YlOj43pDNsczWyyj-Z9kRN4=", "createTime": "2024-08-15 14:55:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.506386+00 2025-12-17 13:40:00.506391+00 33026 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kF4UYvUZv_y8KB898Mi6Lbub-do=", "createTime": "2024-08-15 14:55:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.508318+00 2025-12-17 13:40:00.508323+00 33027 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ZMkTsbJ2fgLTwLtBPBZ2YAM7Z8=", "createTime": "2024-08-15 14:55:13"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.510479+00 2025-12-17 13:40:00.510483+00 33028 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GcE6FIj8wDQF95HalPGZpv463sE=", "createTime": "2024-08-15 14:55:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.512405+00 2025-12-17 13:40:00.512409+00 33029 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7mQxrL_mI-ke3lyJuBONNE8zh8c=", "createTime": "2024-08-15 14:55:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.514275+00 2025-12-17 13:40:00.514279+00 33030 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:amySHlDSHKOsy5B89hKXRPLfmqs=", "createTime": "2024-08-15 14:55:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.516581+00 2025-12-17 13:40:00.516587+00 33031 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TjVnSXDJ3G1NeoKMhTXT4-RZBoM=", "createTime": "2024-08-15 14:55:14"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.518929+00 2025-12-17 13:40:00.518934+00 33032 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DGG5UaqiYpc6NIArNFfzZeC2u78=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.521334+00 2025-12-17 13:40:00.52134+00 33033 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AWRUJmvgw9zBXTDRmHe8xUSehbg=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.523555+00 2025-12-17 13:40:00.523559+00 33034 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cTJ9uOR9ivkxeoVUiRyDBnq57xM=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.525522+00 2025-12-17 13:40:00.525527+00 33035 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rbv0nKAdhtjVgxZT7dQrKaNp9t4=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.527452+00 2025-12-17 13:40:00.527456+00 33036 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YZh7LhYygMIQIXhiN-0dXIgH8ek=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.529662+00 2025-12-17 13:40:00.529667+00 33037 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:06CFm9ehlyInTkQoZridOX7Fy10=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.531578+00 2025-12-17 13:40:00.531583+00 33038 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NHg5oLmr0cvXQ9RwDDg0hvvAIx0=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.533669+00 2025-12-17 13:40:00.533675+00 33039 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mP1peAV-ySyLnBRXx1Lrc0kOB4k=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.536239+00 2025-12-17 13:40:00.536244+00 33040 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oRwWjX7lFiSsX12RZqyRI6UFQ5I=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.538596+00 2025-12-17 13:40:00.538601+00 33041 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IDwy-kWeu7liwL2vLwBlqGmSOxY=", "createTime": "2024-08-15 14:55:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.540772+00 2025-12-17 13:40:00.540777+00 33042 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AOm7qQDXrtHDz8v4B4NStyPbHyc=", "createTime": "2024-08-15 14:55:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.542789+00 2025-12-17 13:40:00.542794+00 33043 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ucqnEVbSaWJb77D4hT-7J1FPmu8=", "createTime": "2024-08-15 14:55:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.544935+00 2025-12-17 13:40:00.544942+00 33044 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IdbjrfBMRSO52AOszu84gV7dV20=", "createTime": "2024-08-15 14:55:16"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.547625+00 2025-12-17 13:40:00.54763+00 33045 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gGYVY8vjPVsXP4hyLL6-bu-mYzQ=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.550009+00 2025-12-17 13:40:00.550014+00 33046 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NQIDF_lHOMaObew4d3wjI0cjLf4=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.552374+00 2025-12-17 13:40:00.55238+00 33047 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:joqGYhva5xpmVCqRcGqSygE7m60=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.554824+00 2025-12-17 13:40:00.554829+00 33048 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sXeDRM-ZcyC7sxE6cMZjhBrdGTU=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.556998+00 2025-12-17 13:40:00.557002+00 33049 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DvdcII5XHUJyeOHB3P3s87iUWDo=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.559017+00 2025-12-17 13:40:00.559022+00 33050 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:01XduuP9vWnXyUmKVun6PuIxFq8=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.561095+00 2025-12-17 13:40:00.561099+00 33051 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KbpRgGFWJdDg7XLVI0aHFzmFiR8=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.563069+00 2025-12-17 13:40:00.563074+00 33052 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3h2e0x81oy3bHdkVqJO9t0BRuDg=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.565009+00 2025-12-17 13:40:00.565013+00 33053 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eMAyW5LaFBnPWn4a_-9Grhn58M4=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.567122+00 2025-12-17 13:40:00.567127+00 33054 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0a_0jeCzhconIKn_IPBa0AZX0iA=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.569199+00 2025-12-17 13:40:00.569203+00 33055 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XVQRNicBe5xGJkOGAuMTmQHt6gg=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.57118+00 2025-12-17 13:40:00.571185+00 33056 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t8n2vhSz_u2n8qyonFREK9tsUGg=", "createTime": "2024-08-15 14:55:19"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.573104+00 2025-12-17 13:40:00.573108+00 33057 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Ea5mOY41yWt4JpI0alETa_VXqA=", "createTime": "2024-08-15 14:55:19"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.575287+00 2025-12-17 13:40:00.575291+00 33058 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5_zglgvDqHZsbzafcAZep70ZrJ8=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.577205+00 2025-12-17 13:40:00.577209+00 33059 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CyKA1G57515aAXVBAMnnQU5BxL8=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.579136+00 2025-12-17 13:40:00.579141+00 33060 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o6i55-ACoaCIq7T4NmDBLaZu_RE=", "createTime": "2024-08-15 14:55:19"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.581051+00 2025-12-17 13:40:00.581056+00 33061 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6PekNmzSWAfvzlY4PgiIRR6W6JY=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.583078+00 2025-12-17 13:40:00.583083+00 33062 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lm-BQ0GJ3owDpFpSkEnHVyaDNsk=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.585173+00 2025-12-17 13:40:00.585178+00 33063 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nz0xjhb5cHd_WkqPeKXSARsY_Xk=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.587252+00 2025-12-17 13:40:00.587257+00 33064 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=1766065199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wUMASXsgayc7Vx6fuvHmOuRcats=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.936144+00 2025-12-17 13:40:00.936152+00 33065 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mIzsiHDS235RrZ9Atj-9eV6d390=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.939153+00 2025-12-17 13:40:00.93916+00 33066 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kgJ2ut-0-Dr9WECji4y6sAkR8KI=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.941442+00 2025-12-17 13:40:00.941447+00 33067 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nr92EmLG_22PPKxkZ8S-z39Ab9E=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.943654+00 2025-12-17 13:40:00.94366+00 33068 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4bwLstCucMOd4GkKOinBJI83cak=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.945662+00 2025-12-17 13:40:00.945667+00 33069 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:At--i-2l2rPIM4r_v5zs1TBJv00=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.947817+00 2025-12-17 13:40:00.947822+00 33070 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gc2s04AQQ2L7vKH4H5V56ipQjxU=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.949876+00 2025-12-17 13:40:00.949882+00 33071 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:91r5XnMZ4AYanEEL4Ih-lF5CIF4=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.952068+00 2025-12-17 13:40:00.952073+00 33072 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XrDwhXglk4vteUwsVWJl8INmrwA=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.954166+00 2025-12-17 13:40:00.954171+00 33073 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LGX9Urd98Jqy51tNOsm4NKOzMFo=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.956372+00 2025-12-17 13:40:00.956377+00 33074 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P1KAXdj2E0AcMSFBvDkEZ9dt3H0=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.958462+00 2025-12-17 13:40:00.958467+00 33075 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sXRv3iYmhKSYp1Sl5CcN3OkLHKo=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.960623+00 2025-12-17 13:40:00.960628+00 33076 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hlb3hsWUI-0_276vUjQ74kJVVFY=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.962804+00 2025-12-17 13:40:00.962808+00 33077 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3hGhr8Xfa1TZeT96YwEaCivRVis=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.964861+00 2025-12-17 13:40:00.964866+00 33078 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fIjc1ZPRUPRGYc5QBF0zAujo1ho=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.967183+00 2025-12-17 13:40:00.967189+00 33079 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sTutsejOKFe_DIeQoqL2EIxQwaU=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.990318+00 2025-12-17 13:40:00.990323+00 33089 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WrzQHVa1A6dTW_yYlxQKhAGJpac=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.969228+00 2025-12-17 13:40:00.969233+00 33080 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VRAclK1Nwishl-EmFgRy32KZTvs=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.971214+00 2025-12-17 13:40:00.971218+00 33081 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YLnAmyhxnXxVtIqvBhY3BttCXiY=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.973171+00 2025-12-17 13:40:00.973175+00 33082 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xz36gn_RbE8d9by1mrEqEE4zPUg=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.975095+00 2025-12-17 13:40:00.975099+00 33083 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xjc3QZ56Hkt264GeK6j8GF_MMlE=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.977027+00 2025-12-17 13:40:00.977032+00 33084 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F9IV3x5__HmwYXa-qCf1n2jwhpA=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.978934+00 2025-12-17 13:40:00.97894+00 33085 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:olO52giE_FdobOOSNpqHUmtKL9Y=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.982323+00 2025-12-17 13:40:00.982331+00 33086 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x4knsekl9yJCCFth-UfIb5oL7ts=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.985744+00 2025-12-17 13:40:00.98575+00 33087 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sk_1BaB7L-pyF_Hm6QiSwQCkzsc=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.988312+00 2025-12-17 13:40:00.988317+00 33088 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_OkyTUCVjehPJHSEHFXhtCp2Ed0=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.99239+00 2025-12-17 13:40:00.992398+00 33090 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7MgA-kCLh6LMFDF7-E84be8c7Qg=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.994942+00 2025-12-17 13:40:00.994949+00 33091 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TRZWEh_kW4UuCflYML8hdcvhOsk=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.997452+00 2025-12-17 13:40:00.997459+00 33092 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7adPXXJlPsn4ndqDSv0lT4oR0Bo=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:00.999978+00 2025-12-17 13:40:00.999985+00 33093 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zNjYXrbZXLlyV1yuvShFv6Zoarw=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.002681+00 2025-12-17 13:40:01.002688+00 33094 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ycthSlTBuT51L4RgzUylG2qf3Zo=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.005245+00 2025-12-17 13:40:01.005252+00 33095 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kF_SZuPcAn0OwqnloW8EWxOEGko=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.007728+00 2025-12-17 13:40:01.007734+00 33096 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3MNjdtjlZ2kqXCzOGMKYmlOPVz0=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.0102+00 2025-12-17 13:40:01.010207+00 33097 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:65YA8N5bzvrTuhNz-Bh9Qef5yMs=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.01262+00 2025-12-17 13:40:01.012626+00 33098 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BUaOidN7Bnt-_Rh5sWKkGm3qcU4=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.015096+00 2025-12-17 13:40:01.015105+00 33099 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ob56QEAHAwCXxECSCzZxcSecv4=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.018171+00 2025-12-17 13:40:01.018176+00 33100 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rqq5s9gDNajzB3dSWN9gPNNwZhE=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.02101+00 2025-12-17 13:40:01.021017+00 33101 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lmxUcK5YKiUqZjjbTqXhl-5X8cw=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.023735+00 2025-12-17 13:40:01.023739+00 33102 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YLt5KbdWTafBg3iH_CCzL-7Ff9Y=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.026956+00 2025-12-17 13:40:01.026967+00 33103 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LF5hpM0fVsAL-EPYhASn1B_bVFM=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.029834+00 2025-12-17 13:40:01.029841+00 33104 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bgTRR-3l_iICn4L3oQS35FJwXC4=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.032368+00 2025-12-17 13:40:01.032375+00 33105 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:im73ppOcGyZCynmSJzoC5WPOCwk=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.035319+00 2025-12-17 13:40:01.035324+00 33106 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AnOevNYa-deoAA1q0XBy6p1sz-A=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.037792+00 2025-12-17 13:40:01.037797+00 33107 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0dcZhErWzESXBJ75ulnObOqExJQ=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.040055+00 2025-12-17 13:40:01.04006+00 33108 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0FcapTlsE1hbSHzKggBClPNpp6I=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.042186+00 2025-12-17 13:40:01.04219+00 33109 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d9daoa45PxXEkMNsGT0CRy-ngKo=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.044307+00 2025-12-17 13:40:01.044311+00 33110 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SRcV54qzb6QCIxmoNEjBUKxJVCo=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.055376+00 2025-12-17 13:40:01.055381+00 33115 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fk2BqadlLw4NexsWzytsOCpQ6_A=", "createTime": "2024-08-15 14:55:24"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.046442+00 2025-12-17 13:40:01.046446+00 33111 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rWSe-ElJk78JBpm3J13Mu7IxJhg=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.048346+00 2025-12-17 13:40:01.04835+00 33112 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qFmMms0WNrSiJb7Z-TlzsjasRS4=", "createTime": "2024-08-15 14:55:24"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.050716+00 2025-12-17 13:40:01.05072+00 33113 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Vl2s7zo_wPgmYkSqHW_MkRm3As=", "createTime": "2024-08-15 14:55:24"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.053061+00 2025-12-17 13:40:01.053066+00 33114 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ToPDoc6Czr4ubKkyl31vLqDUj8=", "createTime": "2024-08-15 14:55:24"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.057548+00 2025-12-17 13:40:01.057552+00 33116 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CZ8kiBKF3_eXqp9WwTqMTTFETU4=", "createTime": "2024-08-15 14:55:24"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.059474+00 2025-12-17 13:40:01.059479+00 33117 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UUCjUEyPZUaLq5IBdA3xT30J3do=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.061624+00 2025-12-17 13:40:01.061629+00 33118 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w4h7mUmA1QaSC6vxncuqB4U9Md4=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.064061+00 2025-12-17 13:40:01.064066+00 33119 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qmppQBbR55ooKw7F8Bqv58DFJq0=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.066523+00 2025-12-17 13:40:01.066528+00 33120 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mgM9if6aSXD5a7DDq7-xmwOZI9M=", "createTime": "2024-08-15 14:55:24"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.069369+00 2025-12-17 13:40:01.069377+00 33121 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZdD1FaipiF30asdwiKFQzJ8mtPg=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.072252+00 2025-12-17 13:40:01.072259+00 33122 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SHAbSeR6r-OyTA-syIHIpaPpdTM=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.074725+00 2025-12-17 13:40:01.074732+00 33123 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WeawgMX56DSR6RrgG3u3Fap3bjQ=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.088606+00 2025-12-17 13:40:01.088611+00 33129 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kO5WQlhPPvEaT04EhEL-5_EnvxI=", "createTime": "2024-08-15 14:55:24"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.077211+00 2025-12-17 13:40:01.077217+00 33124 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NcYmq9VlFKeZrT6LYj-urK48lg4=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.079543+00 2025-12-17 13:40:01.079548+00 33125 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y6ozCqqkk2yCpaUSBlUihtOfZls=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.081692+00 2025-12-17 13:40:01.081697+00 33126 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4HkoZ9TkQrNSw4tqnxQWoEAuNeM=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.083892+00 2025-12-17 13:40:01.083898+00 33127 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v-Ogai0cPW093I9d3n_cGGu2lDQ=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.086356+00 2025-12-17 13:40:01.08636+00 33128 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KcO8CadavmaNcQSxHPijhqujjLw=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.090869+00 2025-12-17 13:40:01.090874+00 33130 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Bi0rUDDiZsl-dGi1Q5EEajklDI=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.092862+00 2025-12-17 13:40:01.092866+00 33131 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XYKgRaXwGLI-os9XS9rdo4k2Dl0=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.094913+00 2025-12-17 13:40:01.094918+00 33132 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wvgp7la9r4BbPzeIadbdFtaX3WA=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.096896+00 2025-12-17 13:40:01.096901+00 33133 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MzNREljo6qvK7PiTjd3haWYe2Hw=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.098847+00 2025-12-17 13:40:01.098852+00 33134 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TqnG68E0tc5TCYcrAWN-0NBwg6w=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.101133+00 2025-12-17 13:40:01.101138+00 33135 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uGEiFtg0qwPMO0u0D7uuogKwkU8=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.103815+00 2025-12-17 13:40:01.103821+00 33136 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jrzmBOAj4rC6VscY98bpWdvA1rA=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.10602+00 2025-12-17 13:40:01.106024+00 33137 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GgKOOWZTR0VCyzLuXdDU9YdhQ2A=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.107956+00 2025-12-17 13:40:01.107961+00 33138 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ve-gBidRYXskoWuEpe-Y-qOnn1g=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.110145+00 2025-12-17 13:40:01.11015+00 33139 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p-vRNO77ZmWcpEIVJ-x6MvSQlP4=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.112323+00 2025-12-17 13:40:01.112328+00 33140 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CX_d37UmiAucgNY8rwnaIlt5AFU=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.114506+00 2025-12-17 13:40:01.114511+00 33141 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RM9OlO53mxYD5220g2LIBbXlAo0=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.11718+00 2025-12-17 13:40:01.117186+00 33142 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qo2LjVUqsQqIUhznNGfG6eXdciQ=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.119679+00 2025-12-17 13:40:01.119684+00 33143 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eCvHXMCayYPv9an9RdrsT5-_fik=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.122267+00 2025-12-17 13:40:01.122272+00 33144 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ce_yz7Mc3HINBDUG3Sg-ni0eIjI=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.124491+00 2025-12-17 13:40:01.124495+00 33145 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zdQRvT5yjAdvKxnOtnDR7VFJFeY=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.126936+00 2025-12-17 13:40:01.12694+00 33146 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YZQuX0iL9Wasxhz-AXIyp5_UxlI=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.129129+00 2025-12-17 13:40:01.129134+00 33147 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jGufIjcgB999F5c0V4yEfAwMudA=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.131056+00 2025-12-17 13:40:01.131061+00 33148 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NyukTnqFDiIQMqRzuvLpB6iAVVc=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.133304+00 2025-12-17 13:40:01.13331+00 33149 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AHE5OWfpJC6EmIqtiReUKXTL3IQ=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.136174+00 2025-12-17 13:40:01.13618+00 33150 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fneGYmp9dRoVFMOeaaA5Ju0PeaY=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.138965+00 2025-12-17 13:40:01.138971+00 33151 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xPi_DOnPd4ecUeigU4Yab1ir91Q=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.14138+00 2025-12-17 13:40:01.141387+00 33152 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IeE9FWhzzdxv-zmDdkACJMYHRiM=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.143489+00 2025-12-17 13:40:01.143495+00 33153 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P87_t2N8EGlAGDadOPGi2fv6v0U=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.14545+00 2025-12-17 13:40:01.145454+00 33154 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S-UnWlRKusfCOfLE_EVLgAqCr0E=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.147359+00 2025-12-17 13:40:01.147363+00 33155 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_f_jFnHsiWYwXkH1lHIn8HVNKQU=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.149291+00 2025-12-17 13:40:01.149296+00 33156 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6cZl6AX9xRxaXFk6xfet1uHwKjw=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.151529+00 2025-12-17 13:40:01.151534+00 33157 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iras0WY_RlU8cDvQQhL-RW-2QYw=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.153744+00 2025-12-17 13:40:01.153748+00 33158 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fGGAxmN7epH_-Bwv6AdrXyTtV90=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.155948+00 2025-12-17 13:40:01.155952+00 33159 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rtdoONwP2LgZapMe7l6qe6OR-o4=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.158045+00 2025-12-17 13:40:01.158049+00 33160 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8_DkN2JT8r9hBXhELf18byA6pyU=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.160152+00 2025-12-17 13:40:01.160157+00 33161 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ONpO6loW8Ow20mewTvTtNp49YUk=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.162277+00 2025-12-17 13:40:01.162282+00 33162 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r_hT8gmq2A7faLRoUJbe3xN869A=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.164173+00 2025-12-17 13:40:01.164178+00 33163 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zS68YaL50BCaH-yFih6PlQcA-DY=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:40:01.166407+00 2025-12-17 13:40:01.166438+00 33164 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=1766065200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7UD3m_r4FE896mcChjfXs0SBvvY=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.580075+00 2025-12-17 13:50:00.580083+00 33165 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ofdSUfe2Dp0lUcrmB4YiK28fazE=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.583712+00 2025-12-17 13:50:00.583719+00 33166 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KqqX_o8lYgYPsBsYby7U_pyhbXU=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.586308+00 2025-12-17 13:50:00.586313+00 33167 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6cI8lejGYPd7UEhNrmVKHjtauGE=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.588543+00 2025-12-17 13:50:00.588548+00 33168 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lY6Gh2BeR7xwRI3ttKTTqW9_bOA=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.590514+00 2025-12-17 13:50:00.590519+00 33169 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_VMSEAw47UOGA1uvloDyqZwCMpE=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.592848+00 2025-12-17 13:50:00.592853+00 33170 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Kkglpn1LSbd87i_OZ4QtesEcVs=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.595111+00 2025-12-17 13:50:00.595116+00 33171 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gASPUruP9gZ1OAxdXnOKH2mLCdw=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.597444+00 2025-12-17 13:50:00.597449+00 33172 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n1GNNVU6XWD97kQNXiKnKj7QAPw=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.599625+00 2025-12-17 13:50:00.59963+00 33173 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jtfsjfdtDEXtTYrWtlsi2PFAZd8=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.601511+00 2025-12-17 13:50:00.601516+00 33174 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xtN7W8Y54W1r6U4r2KBi6wxqacc=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.603374+00 2025-12-17 13:50:00.603378+00 33175 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K6NA2CWnLpAy_VPE3nSRi9q546I=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.605235+00 2025-12-17 13:50:00.605239+00 33176 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RFTha7nXmDETc68w0UmWJx0Qe7I=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.607301+00 2025-12-17 13:50:00.607306+00 33177 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pHPFjmAdT22WHx4QFaWEP1KpZWw=", "createTime": "2024-08-15 14:55:30"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.609516+00 2025-12-17 13:50:00.609521+00 33178 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zwIwXlq85CC83xOibueW5Mrs788=", "createTime": "2024-08-15 14:55:30"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.611643+00 2025-12-17 13:50:00.611647+00 33179 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eSQco-SZ2YJ-uj2FRq3PDQhkblE=", "createTime": "2024-08-15 14:55:30"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.613548+00 2025-12-17 13:50:00.613552+00 33180 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DqlhWu4J1WguWcEMk1gvO5c9WgI=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.615464+00 2025-12-17 13:50:00.615468+00 33181 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ByBlinJS3dJzwoR6iP85SKc4FA=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.617571+00 2025-12-17 13:50:00.617575+00 33182 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tFt2nohGm2Nl7RxfMuiq8oB6c_w=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.619416+00 2025-12-17 13:50:00.61942+00 33183 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sm3TAx85o-Utvgi1P2lYziB1hw0=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.621473+00 2025-12-17 13:50:00.621477+00 33184 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ciylR7HI_TcC4z5anznt2baajbQ=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.623629+00 2025-12-17 13:50:00.623634+00 33185 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VdoJ7I1JNkrEJ4MyLSHdqGJNuRE=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.625693+00 2025-12-17 13:50:00.625697+00 33186 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Z1K00ay27Io3h4kf5Dub9NDLe8=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.627645+00 2025-12-17 13:50:00.627649+00 33187 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HlsdsKczc0WuJrd8rWNs_QdTKIc=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.629618+00 2025-12-17 13:50:00.629623+00 33188 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G-wIMzlH7cmOKnoBnZ_bnV5pLPE=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.631854+00 2025-12-17 13:50:00.631859+00 33189 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hhDX1XAyovUGzUj869hjR5WgAgM=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.63422+00 2025-12-17 13:50:00.634224+00 33190 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OVdMqmOSCx5IoyaQ9HS8ZDOswmw=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.636474+00 2025-12-17 13:50:00.636481+00 33191 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AnX-_LsE6eQ8-fJZWBx7ch2YX9I=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.638688+00 2025-12-17 13:50:00.638693+00 33192 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FR0vETA0G3QoO9st1kToizoL8Lg=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.640857+00 2025-12-17 13:50:00.640862+00 33193 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yjbaVVM-EtK_PXB8HXKac21-OZg=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.643+00 2025-12-17 13:50:00.643005+00 33194 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B7YnRiTlGyZN2iobJ26-O0T83Tc=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.645088+00 2025-12-17 13:50:00.645093+00 33195 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f-wIk2uHU3t-53l64m7FVgfQMjA=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.647196+00 2025-12-17 13:50:00.647201+00 33196 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JJvJ2CK_ON8Znqik5z1fETFVITM=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.649209+00 2025-12-17 13:50:00.649214+00 33197 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZuHeelhVLoBIPAFJLLlsSj0_Bgw=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.651169+00 2025-12-17 13:50:00.651173+00 33198 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lIqO7J_uyurtudtQOqVlG4G1upQ=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.653096+00 2025-12-17 13:50:00.653101+00 33199 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K_U2F44zG85v03L5mhkJke5hruo=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.654995+00 2025-12-17 13:50:00.654999+00 33200 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VUjIzZ1Sy72FvteZyYqZpTFsA8I=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.656887+00 2025-12-17 13:50:00.656891+00 33201 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mByW-hcyhut6fzTaHrg0Us38hsY=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.658849+00 2025-12-17 13:50:00.658854+00 33202 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aNTOobivw84De86sgkKx6Oa96yA=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.661218+00 2025-12-17 13:50:00.661222+00 33203 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oUheyWohmB6myXOHLxtvam4KbQQ=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.663285+00 2025-12-17 13:50:00.66329+00 33204 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n8i7LmaBMfMoKNYTSEozB8TWFqs=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.665253+00 2025-12-17 13:50:00.665258+00 33205 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-eijkPRVjtGvtzjRyYxh37xQ_GA=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.667159+00 2025-12-17 13:50:00.667163+00 33206 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:050bMPzuBTmGtCrQcO1QAH_Ny38=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.669059+00 2025-12-17 13:50:00.669064+00 33207 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OIUXjXTVqFootm8xNie-aENMMpw=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.670942+00 2025-12-17 13:50:00.670946+00 33208 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PnIt5Ky0WkskUKpzdeQTHuIepWc=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.67285+00 2025-12-17 13:50:00.672855+00 33209 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_BaQrV9uMum33E8xb3vfg7QSK1k=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.67499+00 2025-12-17 13:50:00.674995+00 33210 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qfj_wdk8rqd9JtdDPos5Ocx230U=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.677742+00 2025-12-17 13:50:00.677747+00 33211 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4XA7kC1tKB2vVslpZPIBl32gJOw=", "createTime": "2024-08-15 14:55:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.680778+00 2025-12-17 13:50:00.680786+00 33212 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:97Q2bjXaiFdOuJB8lG6fuBzlTvA=", "createTime": "2024-08-15 14:55:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.6835+00 2025-12-17 13:50:00.683505+00 33213 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ihp3AA34PeJDRJ_5ifB2D7FLPc=", "createTime": "2024-08-15 14:55:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.686062+00 2025-12-17 13:50:00.686066+00 33214 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CxLk3GCrJ92XWZ4J1wVHh48g2y4=", "createTime": "2024-08-15 14:55:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.689721+00 2025-12-17 13:50:00.689729+00 33215 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NAXtDS0-Kez6gkark_0HUrbHuSk=", "createTime": "2024-08-15 14:55:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.692765+00 2025-12-17 13:50:00.69277+00 33216 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sIoM62tAxRJFGZzBnIu79br-ZeA=", "createTime": "2024-08-15 14:55:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.695112+00 2025-12-17 13:50:00.695117+00 33217 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fkmWvv4NyNix5vjxARyhesRY_t4=", "createTime": "2024-08-15 14:55:33"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.697718+00 2025-12-17 13:50:00.697722+00 33218 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M56kJN54EOnXVEqgmYIxTPYGv3I=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.699916+00 2025-12-17 13:50:00.69992+00 33219 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OUvG1gIy2wrzpOUpQca39ZW0TCA=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.702034+00 2025-12-17 13:50:00.702038+00 33220 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3i4BD57MS71c-lrqTFYV1GGqGeU=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.705994+00 2025-12-17 13:50:00.705999+00 33222 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NZADOVEu1sFP8Vff49yZEuzafYs=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.717577+00 2025-12-17 13:50:00.717583+00 33226 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oELkSmMw4FQe1W_BiOmHDssWbKY=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.719595+00 2025-12-17 13:50:00.7196+00 33227 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aksHYOI-rwOm915Aywih9becRAI=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.704117+00 2025-12-17 13:50:00.704121+00 33221 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cDhWUytraj6HXejuqb_yujN_diU=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.710976+00 2025-12-17 13:50:00.710981+00 33223 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uJZxHmBdf0YYewNqBoNxzCewDcc=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.713139+00 2025-12-17 13:50:00.713144+00 33224 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_V4Wh_jfmjk2QFO3wPh5vSczlw4=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.715432+00 2025-12-17 13:50:00.715437+00 33225 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jCuuV_QxrMMEc1rCI2nAUsnjm9s=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.721604+00 2025-12-17 13:50:00.721609+00 33228 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DwmcdWlycR3Bmc7ajD2wSFwl8Fw=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.723619+00 2025-12-17 13:50:00.723624+00 33229 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gjtiupfABgRhviCZaIqITOVxduw=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.725601+00 2025-12-17 13:50:00.725606+00 33230 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fVB50zzPKRmRZ7KPO10mOQi53YQ=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.727558+00 2025-12-17 13:50:00.727563+00 33231 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C-AYOnCV3h3uesMWpnHRlXeSoXU=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.729649+00 2025-12-17 13:50:00.729656+00 33232 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XGcjoTdU4iikkIeczGAcY1G8T1A=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.731874+00 2025-12-17 13:50:00.731879+00 33233 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MucJhrcQM8ecOrbUa95lL3UeJBU=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.734066+00 2025-12-17 13:50:00.734071+00 33234 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J0qjrbg42cf2rK1FmHM33ptS9u4=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.736115+00 2025-12-17 13:50:00.73612+00 33235 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T3Zk-sQN-SmsP9JeLoxLzGz8JJw=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.738241+00 2025-12-17 13:50:00.738245+00 33236 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RC09erWyLiadDevZSk4XKnp_ik8=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.74043+00 2025-12-17 13:50:00.740435+00 33237 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tbXPTdHofmWsW0llEJ6q5TutzF0=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.742661+00 2025-12-17 13:50:00.742665+00 33238 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E1i6KMWhsc7DTS0NeZR9ZrDGoMc=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.744926+00 2025-12-17 13:50:00.744931+00 33239 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nFrmBPZCqxYazKItkU8R7299Zok=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.74752+00 2025-12-17 13:50:00.747526+00 33240 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mP2P9GzW-qRnPoCe0q0KQKUNrcU=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.749986+00 2025-12-17 13:50:00.74999+00 33241 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iB4P-KZvFI7X3MrukwAuIO5ujno=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.752447+00 2025-12-17 13:50:00.752452+00 33242 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LFln7wTogwpjl8LJE0q5dOFvyGo=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.754846+00 2025-12-17 13:50:00.75485+00 33243 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1wUqat2c9394UNNavvQ3kmh4xfk=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.757045+00 2025-12-17 13:50:00.757049+00 33244 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:22QgcHgNPKekB_S_cPbp0SZNkaE=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.759619+00 2025-12-17 13:50:00.759624+00 33245 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:35DrBD22s02YXZeKwjjcEE6CnVs=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.761805+00 2025-12-17 13:50:00.761809+00 33246 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uYTSK4LqQV4FBwhfQubEj4rzpEU=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.764202+00 2025-12-17 13:50:00.764207+00 33247 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4OKe9WxCtmkoC17YQTOn7_amsao=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.766525+00 2025-12-17 13:50:00.766529+00 33248 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DVkLWKxX5XXV5Sdty3CMAtmD9w4=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.768751+00 2025-12-17 13:50:00.768756+00 33249 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oDgQHnw7PsRg5p1fhgaee_-yVRM=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.77066+00 2025-12-17 13:50:00.770664+00 33250 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RaXsCs-gDItm5LlZTBl5wVO_Lho=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.772678+00 2025-12-17 13:50:00.772684+00 33251 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3TpGTCCDkYEmoCxrODUjjMJlHXA=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.775533+00 2025-12-17 13:50:00.77554+00 33252 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DcgBHCzfFdg2K6buXsidm724-6M=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.77818+00 2025-12-17 13:50:00.778186+00 33253 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O8cvwIhtEAFlachJEohu4KV-m0E=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.780748+00 2025-12-17 13:50:00.780754+00 33254 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MnzLkdrSSEXEC3Se0WAx9djHaH8=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.783269+00 2025-12-17 13:50:00.783275+00 33255 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WWGBv1IDDSGpesMoDmZo6kSPmhs=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.785582+00 2025-12-17 13:50:00.785588+00 33256 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cdWoYGVGZuZ1UQlTD9uCN1IgovY=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.787923+00 2025-12-17 13:50:00.787928+00 33257 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bX1tLTSK6EqFOkR69aLWzWH3c9A=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.790349+00 2025-12-17 13:50:00.790355+00 33258 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cg9Jvvj36shpLmQFLDIYwC-L_O0=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.792926+00 2025-12-17 13:50:00.792932+00 33259 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W3mu-C7wUh-loMajMGT1M4L3u5Q=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.795409+00 2025-12-17 13:50:00.795415+00 33260 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DcxkLpXHSjA6VdyJ56HyoXAK-yI=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.797782+00 2025-12-17 13:50:00.797787+00 33261 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gtok8kvgO6BI1DJjUn2PHeKkbgs=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.800204+00 2025-12-17 13:50:00.800209+00 33262 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wVKHmCZK5kylAECh5DqTEHt2USk=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:00.802383+00 2025-12-17 13:50:00.802388+00 33263 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=1766065799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a6w8GGMPUx07KNDHWpT9weLP7cU=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.027761+00 2025-12-17 13:50:02.027771+00 33264 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PvGcbaZygwFPDUjKrgCbFh4V8_E=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.030502+00 2025-12-17 13:50:02.030509+00 33265 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:olI_0b8fM3iyqn8Wb7TdWWAdaJo=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.033206+00 2025-12-17 13:50:02.033213+00 33266 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rOIpwVvzzShXPHJ8QCKiNGAkrnk=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.035581+00 2025-12-17 13:50:02.035588+00 33267 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yWp7lxEIrQ-yrt8nm8mSKTb_jYo=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.037977+00 2025-12-17 13:50:02.037982+00 33268 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R80PsI279ojIk-qt9Tf7jOnlqWw=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.040121+00 2025-12-17 13:50:02.040126+00 33269 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lHyjndSUpIXyDfp16VtojZTb8Ew=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.042643+00 2025-12-17 13:50:02.042649+00 33270 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J3Lk0Y8VahD8Yn_Ee2rKJHTHFXA=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.045103+00 2025-12-17 13:50:02.04511+00 33271 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZMFF0-VopXKHGZwlWqzBa2yC3tk=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.047369+00 2025-12-17 13:50:02.047376+00 33272 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n4-40U724eHAzy1056t4EIgsnjE=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.049857+00 2025-12-17 13:50:02.049863+00 33273 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GKRXuosCXgvwke-LRZuMvxpNnIg=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.052264+00 2025-12-17 13:50:02.05227+00 33274 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YYrfryh9XSNwUxBcK4dgeNWO948=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.054586+00 2025-12-17 13:50:02.054592+00 33275 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ALuRnhNHnijiBVR9Bq5fdGP3Uro=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.056935+00 2025-12-17 13:50:02.05694+00 33276 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dQjclxE2vMvCLvL9xQ9bro7xQC4=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.059505+00 2025-12-17 13:50:02.05951+00 33277 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xlsCTz67rC6CfvHCJi_S13GCDEM=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.062008+00 2025-12-17 13:50:02.062013+00 33278 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wGRQhhIJsjkrTGqjNq4oVx1mwgs=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.064467+00 2025-12-17 13:50:02.064473+00 33279 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nq800_lrBR0qcV-AvKgg1kaN5rA=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.066931+00 2025-12-17 13:50:02.066937+00 33280 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N4rFcpxwj5Mj3Qpxuhr8qD2leDk=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.069434+00 2025-12-17 13:50:02.069439+00 33281 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GijMjvOrioVtNiFe95kmFeB4V1Q=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.071836+00 2025-12-17 13:50:02.071841+00 33282 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mfiz93Xn57shvyBt4XKJMvamky8=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.074232+00 2025-12-17 13:50:02.074237+00 33283 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XUu0QD6Lzi9l_Fcw9E_7s8lImdc=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.086288+00 2025-12-17 13:50:02.086294+00 33288 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dj2vB3NRQHBL0LpHfVMlcDm9cM4=", "createTime": "2024-08-15 14:55:41"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.076494+00 2025-12-17 13:50:02.0765+00 33284 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m_PBpxg95BDrqYRE1DkK1LRzKi8=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.078988+00 2025-12-17 13:50:02.078993+00 33285 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oATNoryfptuz1U1UvqA6DPQuCRs=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.081441+00 2025-12-17 13:50:02.081446+00 33286 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hjvkzo56FpFO1K7lFcTBE7A1aFg=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.083912+00 2025-12-17 13:50:02.083918+00 33287 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aBGLQ3yQcLLSk4gZLFA-8LbYOUI=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.08842+00 2025-12-17 13:50:02.088425+00 33289 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s643s3oVW8OLzUHoOe79sIAr3BA=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.093045+00 2025-12-17 13:50:02.09305+00 33291 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kaQeuRBIReD0eCMUK52wnOkSoxU=", "createTime": "2024-08-15 14:55:41"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.095286+00 2025-12-17 13:50:02.09529+00 33292 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cu7BrZHog7IGJ-6eyam8ZfH2zQY=", "createTime": "2024-08-15 14:55:41"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.097457+00 2025-12-17 13:50:02.097465+00 33293 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qf61J4OGLzuiMqDFN1zViqKMb2w=", "createTime": "2024-08-15 14:55:41"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.09996+00 2025-12-17 13:50:02.099965+00 33294 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bEUKYKcI0EGnMKRh2SzBrxjWTns=", "createTime": "2024-08-15 14:55:41"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.090548+00 2025-12-17 13:50:02.090553+00 33290 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_zXHvOpGK3E94mMoFjui0vFop4Q=", "createTime": "2024-08-15 14:55:41"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.104355+00 2025-12-17 13:50:02.104359+00 33295 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MA8ke8KiQDEWwFn0aT6vmviKLu4=", "createTime": "2024-08-15 14:55:41"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.106307+00 2025-12-17 13:50:02.106311+00 33296 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QfCjQ4quKbwhD6R_PmVu8WobS3Q=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.108317+00 2025-12-17 13:50:02.108322+00 33297 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9jOmMHJwOy4Z8-ZmOYtozhyrXE8=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.110332+00 2025-12-17 13:50:02.110336+00 33298 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h-lH0xdDYHZhb_KOnhbSVH3N_RA=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.112268+00 2025-12-17 13:50:02.112272+00 33299 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i5NQwDg7Pb-YwOPmBRDMgEj305s=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.114377+00 2025-12-17 13:50:02.114383+00 33300 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wNFIbhiikTyNZAv5jFbBvEsFEXY=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.116797+00 2025-12-17 13:50:02.116802+00 33301 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i5XWixBBQAqqeK0yRTI1hPoNmsU=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.119068+00 2025-12-17 13:50:02.119073+00 33302 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h86-WYq2VtQ9-D_Zp2APN6SzhgA=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.121225+00 2025-12-17 13:50:02.12123+00 33303 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O1pd0wBufbZBIlUa0LICfDNfdRM=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.123365+00 2025-12-17 13:50:02.123369+00 33304 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F-KGYwxdR6HEwusCuxdLDh4E3-A=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.125334+00 2025-12-17 13:50:02.125339+00 33305 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kQPa0gVGeNZcUmNMUio1PAknGdo=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.127729+00 2025-12-17 13:50:02.127734+00 33306 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PrcYxQM4NoRCXmRLzE1Y6F_0nWs=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.129833+00 2025-12-17 13:50:02.129838+00 33307 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:16wZLUnhFd0vshq-yb0hFtRk2UM=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.132119+00 2025-12-17 13:50:02.132124+00 33308 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8r4kkCRybEnNdUhBwRlsabDUzHA=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.134282+00 2025-12-17 13:50:02.134287+00 33309 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p2Zz2BmtcTLC_y9cicpm-jasGNE=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.136434+00 2025-12-17 13:50:02.136439+00 33310 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m94R7S2UepSRPJ-bBYKGl6lKWoI=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.138369+00 2025-12-17 13:50:02.138374+00 33311 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yOamYNyThfWZ9eK-8UWFlCJNtf8=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.140514+00 2025-12-17 13:50:02.140518+00 33312 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dr5Lz6SHkd7w7j_nLnaBrF8jn24=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.142608+00 2025-12-17 13:50:02.142613+00 33313 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sH8H8oV0EkQDH3tHHoZSZbjUKGM=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.144617+00 2025-12-17 13:50:02.144622+00 33314 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2DZeMcIH7zukrcRtb8DEyZCJtCM=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.146696+00 2025-12-17 13:50:02.1467+00 33315 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OWwSl1XwOvYxmOZt4tmAQ8ANJTo=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.148762+00 2025-12-17 13:50:02.148767+00 33316 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wpY5venNEdD9N0rgEiieNYWb2LA=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.150815+00 2025-12-17 13:50:02.150819+00 33317 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9D091FU-r79dc0FzXpl1TprfEpA=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.152746+00 2025-12-17 13:50:02.15275+00 33318 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5_j2mWd575nF9xwjupHIivaqoc=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.154693+00 2025-12-17 13:50:02.154697+00 33319 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qS6vv4-5xFhMe8Qc-GAnuyFeHTg=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.156587+00 2025-12-17 13:50:02.156592+00 33320 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JJqPbIwCT5m6IJ5in7UCP5hbHKY=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.158577+00 2025-12-17 13:50:02.158581+00 33321 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yBPH-03-HCsjEkvDDvf09S_1Sqg=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.160942+00 2025-12-17 13:50:02.160947+00 33322 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:isadBPIa0q1BaHq1ZZrmpVuWxpo=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.162929+00 2025-12-17 13:50:02.162934+00 33323 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e4sseN1fBBiWoRBjMdSKIXyS540=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.165036+00 2025-12-17 13:50:02.16504+00 33324 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rR-xUgkUL54wwxSCCrtrnMZiLwY=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.167047+00 2025-12-17 13:50:02.167052+00 33325 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UUCcF15CgNuAE2DY_aNi1b7uV6w=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.16899+00 2025-12-17 13:50:02.168995+00 33326 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3DSZah0-QR2l3hWFXJC-woApFSI=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.170931+00 2025-12-17 13:50:02.170935+00 33327 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xoZqRza4kV5NXjvVuwn1VURIAAg=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.172882+00 2025-12-17 13:50:02.172887+00 33328 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5UsyyHsszR1XmnLEjBAnMt4JiwI=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.174828+00 2025-12-17 13:50:02.174833+00 33329 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GNhUl09pcP9xHzHULZUUxtK_RS4=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.176979+00 2025-12-17 13:50:02.176985+00 33330 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mQlY4qvIl7YoB7sb-c-ub-u_ZuM=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.179316+00 2025-12-17 13:50:02.179321+00 33331 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sOlzaWRjctLnQhPyRn6wnVx08i0=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.181853+00 2025-12-17 13:50:02.181859+00 33332 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IlYA5HwnnuMFQ6DyPFWv-aQrNv0=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.186666+00 2025-12-17 13:50:02.186671+00 33334 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y_DrSBDh9iWQBJL51L-ZWlB_2ec=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.184286+00 2025-12-17 13:50:02.184291+00 33333 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Bg7u-iYPPxXGnjRRfXP7PWNoyU=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.191727+00 2025-12-17 13:50:02.191734+00 33335 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IzYUKYv2Znsfrl6hwGnaiP6gmv8=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.194247+00 2025-12-17 13:50:02.194253+00 33336 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ubFGxKG9u-j1rWnv2syQkBu1gDI=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.196796+00 2025-12-17 13:50:02.196802+00 33337 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QY1-c4FqqYF6uxqG4kL5mW9t3oA=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.19929+00 2025-12-17 13:50:02.199296+00 33338 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B4AlxY_5qpTmORfEWCBh7ZZHiCY=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.201745+00 2025-12-17 13:50:02.20175+00 33339 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GOtMhbbD_IWGOmzujrkThVqyaKk=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.204159+00 2025-12-17 13:50:02.204164+00 33340 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X7HEQMyLBQXR9hxPYpuVp1uS0fQ=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.206294+00 2025-12-17 13:50:02.206299+00 33341 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DxISbWKKzvAUA3f7xvHuKsKJ_gk=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.208839+00 2025-12-17 13:50:02.208846+00 33342 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EdJZsX4lyS0f2MAlaa6Ihnl4lDU=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.211407+00 2025-12-17 13:50:02.211412+00 33343 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bv_-ggjLMChwGEVTOnJKcFroMrA=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.214034+00 2025-12-17 13:50:02.214041+00 33344 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3dCSV7nZmdMA65DMItfEord-7T8=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.216473+00 2025-12-17 13:50:02.216478+00 33345 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zX0DMMq06U1NAv_48OF40ln4tes=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.21867+00 2025-12-17 13:50:02.218674+00 33346 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5GNxGJgOflebLLu4BUg90FjKKSY=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.220839+00 2025-12-17 13:50:02.220844+00 33347 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PhW6zgpAhTjrW_xkPyqQjb6Bqvo=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.222986+00 2025-12-17 13:50:02.222991+00 33348 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ajrc5dAytzHDz8jpG3pieQEmUo=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.225229+00 2025-12-17 13:50:02.225235+00 33349 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JnJPfCppX4Vyqbk0Q7u70Jd6tUA=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.229062+00 2025-12-17 13:50:02.229071+00 33350 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5SDgzfq8UQxVxzH-VspFH_Zatt8=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.232446+00 2025-12-17 13:50:02.232452+00 33351 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R8iVmb5RC8j4H2ZWi3ghKxEKZQs=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.235296+00 2025-12-17 13:50:02.235301+00 33352 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IyPK3NTE8ctoCJw6LBczVmRtrDc=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.237883+00 2025-12-17 13:50:02.237888+00 33353 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1sfzxDqH-HgKqs_XoopVropHiFw=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.240413+00 2025-12-17 13:50:02.240418+00 33354 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zZoOHeiyhZhCeGvEbhLOSD83RXQ=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.24264+00 2025-12-17 13:50:02.242646+00 33355 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KO09rGvTWHOUYwWDt5R7h6ytD1I=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.245148+00 2025-12-17 13:50:02.245152+00 33356 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Ovb4JwgTuKe1IGvBqpW3jcmGMM=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.247639+00 2025-12-17 13:50:02.247645+00 33357 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MFsDOrQAtYAGwPVAhdWuUYpCpoI=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.250246+00 2025-12-17 13:50:02.250251+00 33358 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:epr23GSVOWbAXLsn9Xcsk5uuTQk=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.252396+00 2025-12-17 13:50:02.2524+00 33359 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KVmPAW9fU7_v9HXf1TzoaAsCDpA=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.254272+00 2025-12-17 13:50:02.254276+00 33360 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i-JDE1VGpBjLS4WqofSFFEHuwNk=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 13:50:02.25612+00 2025-12-17 13:50:02.256124+00 33361 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=1766065800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H_u4ZTLx9qtR1ggMiWEwTuBGt8M=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.418624+00 2025-12-17 14:00:00.418632+00 33362 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:if5mTcNYRB00ru8-QzzXNKp-HQQ=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.422223+00 2025-12-17 14:00:00.422229+00 33363 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DMmaOxR8S5vk5IPi0fz4oQ0Lu80=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.424721+00 2025-12-17 14:00:00.424727+00 33364 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jdSIhn-8GTqsWvWyDWTpIivqY6c=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.427847+00 2025-12-17 14:00:00.427853+00 33365 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4fLa7wyZ60tbT42_ecuZw1cZGTA=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.430969+00 2025-12-17 14:00:00.430974+00 33366 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2nAdt0kHj2uc7Z8AWrQJTnt2S9U=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.433359+00 2025-12-17 14:00:00.433363+00 33367 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qqFy6ahVqvW6nuatcOMFuU4YxWc=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.435851+00 2025-12-17 14:00:00.435856+00 33368 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WMhZQgwXadnomDVS38Y6F9AaC-A=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.437871+00 2025-12-17 14:00:00.437876+00 33369 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XmKFHQAbg7J8jcpYnfURYxFDD_w=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.439892+00 2025-12-17 14:00:00.439898+00 33370 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lj68hxZbzf9q0his9MapjuVzu5w=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.442229+00 2025-12-17 14:00:00.442234+00 33371 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T3Y9gcRuv2-BQKagHbL5HRZuADc=", "createTime": "2024-08-15 14:55:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.444366+00 2025-12-17 14:00:00.444371+00 33372 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ElVPnm7Wy1lIZj23JoBA2DKF10=", "createTime": "2024-08-15 14:55:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.446679+00 2025-12-17 14:00:00.446684+00 33373 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mBOluqVi09NQ4oICy-5-s2rdydg=", "createTime": "2024-08-15 14:55:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.449035+00 2025-12-17 14:00:00.44904+00 33374 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HD45jkaPWhEk2EtZzSZQGVjhfW0=", "createTime": "2024-08-15 14:55:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.452071+00 2025-12-17 14:00:00.452077+00 33375 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HHh1fJI5y1FJOoVSxD9PKwHsAa4=", "createTime": "2024-08-15 14:55:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.454951+00 2025-12-17 14:00:00.454956+00 33376 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wUospAbFBcNYEgh-y31a1pyRxf8=", "createTime": "2024-08-15 14:55:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.457694+00 2025-12-17 14:00:00.457699+00 33377 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zMlDxFw3EXTKklFDBwWKeuPy3iU=", "createTime": "2024-08-15 14:55:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.460875+00 2025-12-17 14:00:00.460882+00 33378 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dNgMx8z7lQJy51kuGocqrSXCBZw=", "createTime": "2024-08-15 14:55:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.464276+00 2025-12-17 14:00:00.464282+00 33379 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WH8odKUO3BUcucSTpXu8AEu7yt0=", "createTime": "2024-08-15 14:55:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.468077+00 2025-12-17 14:00:00.468084+00 33380 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rInKTY0EBmFWjxKSwMCaQ_-ontA=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.471349+00 2025-12-17 14:00:00.471354+00 33381 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:txuU42PvHUiX5H2IvkUwqF43YIc=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.473859+00 2025-12-17 14:00:00.473864+00 33382 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lL0mhHC0rAcpF9pMAeTCbAVojD0=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.476133+00 2025-12-17 14:00:00.476138+00 33383 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VrmSXl6EWGO27AnPM_-fgCLbKt0=", "createTime": "2024-08-15 14:55:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.478189+00 2025-12-17 14:00:00.478194+00 33384 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oXr04PrPNE48QlvvSiw2D5b18bA=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.480664+00 2025-12-17 14:00:00.480673+00 33385 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dm_vQULrcf3BsppcMRBVPsDSVNg=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.484105+00 2025-12-17 14:00:00.484113+00 33386 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BKWBUdfHYsJnv60K0mrSy4HYuT0=", "createTime": "2024-08-15 14:55:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.487377+00 2025-12-17 14:00:00.487385+00 33387 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mdFtL_3lbNGcuW38mLGO7ehz8HY=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.489801+00 2025-12-17 14:00:00.489807+00 33388 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NUCdsOREUdfHD-tRQTITpe4oK7Q=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.492111+00 2025-12-17 14:00:00.492116+00 33389 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bBEBuEon9K9IEyVeLrCB_rfOkwU=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.494497+00 2025-12-17 14:00:00.494502+00 33390 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:unPFwTuxPd8wo2QNZOs9Ialc8MM=", "createTime": "2024-08-15 14:55:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.496866+00 2025-12-17 14:00:00.496872+00 33391 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Raw2OUbHw_cBO_rY0bUITOHIpWg=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.499239+00 2025-12-17 14:00:00.499244+00 33392 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YL8BNzT_uVbwka0JTk6ymGg1m-0=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.501543+00 2025-12-17 14:00:00.501549+00 33393 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BQfXSW6Cu_0-WVyvpvfw9uEmNEQ=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.50415+00 2025-12-17 14:00:00.504157+00 33394 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tak7rr2QjsbFOg1Yw4PiJBinF-E=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.506628+00 2025-12-17 14:00:00.506634+00 33395 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z8KBK2ErZzEFGvtRDWP68Xa7sSo=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.508964+00 2025-12-17 14:00:00.508969+00 33396 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O36kYmaC1T8F4fgpyV2wZ3d33L8=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.511386+00 2025-12-17 14:00:00.511392+00 33397 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HsoGf4RYx4FqcrBHzG41I1cXr18=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.513681+00 2025-12-17 14:00:00.513687+00 33398 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OBlDty4fAoqWHVRyrxh2pHtMlYQ=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.516052+00 2025-12-17 14:00:00.516058+00 33399 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5RSohKnof3HskqhNmeGiQoK6osk=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.518715+00 2025-12-17 14:00:00.518721+00 33400 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7tIS7WhkgJabH88Ers84M5enF6s=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.521201+00 2025-12-17 14:00:00.521206+00 33401 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uv31Ezjd8fJwOtbvC5jn9WYyZuw=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.523645+00 2025-12-17 14:00:00.523651+00 33402 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XJTjVIFIvNBEOBpGvp6RTT1mrxc=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.526045+00 2025-12-17 14:00:00.52605+00 33403 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NudRVm58G_icy445IoaGHRLw6no=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.5283+00 2025-12-17 14:00:00.528305+00 33404 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AXk0Ox6OVV7VSMYKIZqfuvxKXKE=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.530379+00 2025-12-17 14:00:00.530385+00 33405 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:leBi8lWUQKeZRY1H4povqKzqQlU=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.532576+00 2025-12-17 14:00:00.532581+00 33406 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5aDlPXCLdk6MJwIWNqX9uglfSlM=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.534831+00 2025-12-17 14:00:00.53484+00 33407 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2vZYRAp1RoWkeD7_xaRa1oT0yNE=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.537477+00 2025-12-17 14:00:00.537482+00 33408 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sv3fQiNKL5cxHXUIPOH88HdbdQ4=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.539929+00 2025-12-17 14:00:00.539934+00 33409 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aRMWX8pVot8Wz94KUQI78wVT_uo=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.54246+00 2025-12-17 14:00:00.542467+00 33410 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m08hw5Ahr25jTEcfJJJ5TY0PFz0=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.544975+00 2025-12-17 14:00:00.544981+00 33411 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CGhwBS4LodRFg2Hw0NrBl903VlI=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.547505+00 2025-12-17 14:00:00.54751+00 33412 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RwonAWtbnWLgzFCEJTYFPh4MBEs=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.549767+00 2025-12-17 14:00:00.549771+00 33413 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lw1NH5VBL9TYA7IYfjeSx7mTe7o=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.552753+00 2025-12-17 14:00:00.552759+00 33414 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lv-VKTIMgfsnCS9jJFGGCXBW9zc=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.555345+00 2025-12-17 14:00:00.555351+00 33415 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Us_KH9CU7Fo9F1Vf_jh1TiigtlE=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.557583+00 2025-12-17 14:00:00.557588+00 33416 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vtzoXCEKwsQ2Ib0kGnbYA2zNn5U=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.559557+00 2025-12-17 14:00:00.559562+00 33417 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VUNVDPkrVSt9noSsZhYIILArDrY=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.561544+00 2025-12-17 14:00:00.561549+00 33418 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3_v49shCU57R_lymGUNMsHHd9bc=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.563722+00 2025-12-17 14:00:00.563727+00 33419 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OvyAh2c3ifc1JXMHIWaGLr2kzsM=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.565725+00 2025-12-17 14:00:00.56573+00 33420 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s4ZFeI9V3Xj4PCgUZuLhDeLOhkA=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.59876+00 2025-12-17 14:00:00.598765+00 33434 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HfEWyBm6HPym-lSS_wonguhb298=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.567847+00 2025-12-17 14:00:00.567853+00 33421 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hozD05lfgjWhsaUrolRx0mKKWgQ=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.569973+00 2025-12-17 14:00:00.569978+00 33422 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PR9-v5Rf-WBXVg3kav8XWryxTrM=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.572403+00 2025-12-17 14:00:00.572409+00 33423 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LySNCOdSARv7LWIC2ALZZHXLCUE=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.575183+00 2025-12-17 14:00:00.57519+00 33424 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gy5Qrf1YORJH-6IbGsLRGs8RZCE=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.577747+00 2025-12-17 14:00:00.577751+00 33425 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KuHB7L_WXZuLAv5A7Qdm_Tn8IKA=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.580074+00 2025-12-17 14:00:00.580079+00 33426 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qlFJFR3DENLsbwlkocmAUm65zMY=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.582271+00 2025-12-17 14:00:00.582276+00 33427 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hVXX9iW9KiWNcaZx5BMkQszqqcI=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.584775+00 2025-12-17 14:00:00.584782+00 33428 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V0Z1686elOADUAw9p6IeONDosFM=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.58739+00 2025-12-17 14:00:00.587396+00 33429 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qtpz8BbayKB6JK6hfd41ZZHsiKg=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.589842+00 2025-12-17 14:00:00.589847+00 33430 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ufgQMcTGt1G3Tu_-cH5UEqIsU4c=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.592074+00 2025-12-17 14:00:00.592079+00 33431 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1LyKblWRakTqz8ocFvwOIAGd8z4=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.594314+00 2025-12-17 14:00:00.594318+00 33432 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JlO5FFXHmUc8U6yNbSgEIYdHP8s=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.596594+00 2025-12-17 14:00:00.596599+00 33433 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AzaKbqB_4sXJeTycnQ-ZyLzRwkY=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.600845+00 2025-12-17 14:00:00.600851+00 33435 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PyTKLJqM49MWVqhIkzBmyK7Y4a8=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.60312+00 2025-12-17 14:00:00.603125+00 33436 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8sCy9d3v7DRCqPZ4ei2lfNd-cRU=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.605511+00 2025-12-17 14:00:00.605516+00 33437 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UsZL_UjqkW-IsKiqlNo9BNSsFmc=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.60774+00 2025-12-17 14:00:00.607745+00 33438 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8UDFcYQdAOXlRJMY5ckuMZExDIY=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.610116+00 2025-12-17 14:00:00.610122+00 33439 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DAsh9eErXERMmKNpC7eFSlf9X8k=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.612225+00 2025-12-17 14:00:00.61223+00 33440 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rle193LVWKoC9PZWckvDAUTDL_o=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.614477+00 2025-12-17 14:00:00.614482+00 33441 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CfOH61yj2xjsD__keoNWRtE-a34=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.616658+00 2025-12-17 14:00:00.616663+00 33442 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UbkWDSV6-Bh8MECKAbuTF0VVyyo=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.618974+00 2025-12-17 14:00:00.61898+00 33443 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5S2B2-UtPnGT9xxaSXaWAkp3jsY=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.621183+00 2025-12-17 14:00:00.621188+00 33444 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IQixoVJyDEiTc60BLploIO7nLyc=", "createTime": "2024-08-15 14:55:58"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.623194+00 2025-12-17 14:00:00.623198+00 33445 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zpTZD2sjZChPOSNYYFF0u_rLsdU=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.625299+00 2025-12-17 14:00:00.625304+00 33446 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zpz4cBSrI9uRCGoReZNDCuxFxJA=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.627627+00 2025-12-17 14:00:00.627631+00 33447 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7pLYTV1z6fE4jvbtxDd0F074gmY=", "createTime": "2024-08-15 14:55:58"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.629851+00 2025-12-17 14:00:00.629856+00 33448 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SsAtFi1Y6ptIjXebPPpIVPKnvFU=", "createTime": "2024-08-15 14:55:58"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.63204+00 2025-12-17 14:00:00.632044+00 33449 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8fcrs71xROesDikm4Y8D5FLOKSo=", "createTime": "2024-08-15 14:55:58"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.634008+00 2025-12-17 14:00:00.634013+00 33450 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fT23c8IpV4lwdHlG_2XPxYmDJ6M=", "createTime": "2024-08-15 14:55:58"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.636081+00 2025-12-17 14:00:00.636085+00 33451 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VQmn0wBIq6fZi8IYzTtWYZbUKwQ=", "createTime": "2024-08-15 14:55:58"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.638078+00 2025-12-17 14:00:00.638083+00 33452 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nq0s3jLP6bzc-pHYkGQHJM4xGjk=", "createTime": "2024-08-15 14:55:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.64017+00 2025-12-17 14:00:00.640175+00 33453 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dzr9iixNlcWRPULxNOIi__OqAkg=", "createTime": "2024-08-15 14:55:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.642237+00 2025-12-17 14:00:00.642242+00 33454 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WgBGVuSr8rP3M74ofoZ8Qf5Qq3Q=", "createTime": "2024-08-15 14:55:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.64457+00 2025-12-17 14:00:00.644575+00 33455 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QKFhH-Pl030oFgugkUwE8w_1I10=", "createTime": "2024-08-15 14:55:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.646994+00 2025-12-17 14:00:00.646999+00 33456 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_hsOAsD3AAE8sHj2rJGVt9xs5UE=", "createTime": "2024-08-15 14:56:00"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.649233+00 2025-12-17 14:00:00.649238+00 33457 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ui25F9TEtoNuOBn-9dZyV3pW6oU=", "createTime": "2024-08-15 14:56:00"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.65139+00 2025-12-17 14:00:00.651396+00 33458 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q9fbVLD2jAFAAE4kEhAQxrq9m_U=", "createTime": "2024-08-15 14:56:00"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.653934+00 2025-12-17 14:00:00.653939+00 33459 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_eo7PK4eV-9teJ_QwZPznmdWqCM=", "createTime": "2024-08-15 14:56:00"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.656192+00 2025-12-17 14:00:00.656197+00 33460 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tp2BiM6YCwReBpljSfsyRgvbAMc=", "createTime": "2024-08-15 14:56:01"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:00.658972+00 2025-12-17 14:00:00.658978+00 33461 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=1766066399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QGAzU5nEYufkyrV8MdoRw3DdXmk=", "createTime": "2024-08-15 14:56:01"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.027517+00 2025-12-17 14:00:01.027526+00 33462 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uziyL3ZkhYH2erBvnaTQE_v4Uso=", "createTime": "2024-08-15 14:56:01"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.03094+00 2025-12-17 14:00:01.030946+00 33463 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CdLiuvNdx3_MVzCUMCufPshobaw=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.033396+00 2025-12-17 14:00:01.033401+00 33464 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9PONKCBELOLHUrBXMYhwIElYRbw=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.035879+00 2025-12-17 14:00:01.035885+00 33465 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RfXPZBYYWJ17L3gjhEirR1TbVQM=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.038328+00 2025-12-17 14:00:01.038333+00 33466 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tpq6rHWnqbw0X7IeBdNKcu6UDrE=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.069345+00 2025-12-17 14:00:01.06935+00 33480 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BpJZGBXw-sOu4OyP897e-Dozrz8=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.040664+00 2025-12-17 14:00:01.040669+00 33467 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lbt9vV69TmUoOsftVixL1oFg-RI=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.043027+00 2025-12-17 14:00:01.043033+00 33468 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:smnN7ENJNvD0A8pgyKCMFFM0PQc=", "createTime": "2024-08-15 14:56:01"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.045553+00 2025-12-17 14:00:01.045558+00 33469 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dT9Fjj9BtxuzEJVAYi1Wx0Eau3Y=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.047888+00 2025-12-17 14:00:01.047892+00 33470 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TUkELyiIvG0BRLJVAutzql2W0is=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.050121+00 2025-12-17 14:00:01.050126+00 33471 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RthxA004SyRnZjncFNgWSaO9p0Q=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.052283+00 2025-12-17 14:00:01.052287+00 33472 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oXTIKZ4kdnyhni2JAzRbnpLSBJU=", "createTime": "2024-08-15 14:56:01"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.054408+00 2025-12-17 14:00:01.054412+00 33473 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ugYyCyJyHP9TAly7G0H07HEVxa8=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.056401+00 2025-12-17 14:00:01.056406+00 33474 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9cX2rdCefjo4a2LSe3oyEjvO6UE=", "createTime": "2024-08-15 14:56:01"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.058361+00 2025-12-17 14:00:01.058366+00 33475 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NfHunKxBGc9rkpNl-fm-B0oq9ko=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.060541+00 2025-12-17 14:00:01.060546+00 33476 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ARLHHreoI3kPzCZbsylrhtEHEOo=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.062963+00 2025-12-17 14:00:01.062968+00 33477 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w8mBcbqn4CS6Nk7y37yUjKyvQnk=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.065114+00 2025-12-17 14:00:01.065119+00 33478 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BA9jqULrz4dL5yps70goaKnbhGM=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.06728+00 2025-12-17 14:00:01.067285+00 33479 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FFVQ9BGjZZNldDmw6bM4f5gmN1I=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.071371+00 2025-12-17 14:00:01.071376+00 33481 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PbAFmmyJAkR_7wj-8AxWjyI_qWI=", "createTime": "2024-08-15 14:56:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.074025+00 2025-12-17 14:00:01.074031+00 33482 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:csl-QasPLuZRXeb0ZNPTCVl6BrQ=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.07662+00 2025-12-17 14:00:01.076626+00 33483 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZqjF3uXVXcS4cQEmjsj-NK5P3IE=", "createTime": "2024-08-15 14:56:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.079089+00 2025-12-17 14:00:01.079095+00 33484 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:453OEJR63d2AqG6LQ2ylJnkJW_o=", "createTime": "2024-08-15 14:56:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.081267+00 2025-12-17 14:00:01.081271+00 33485 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yb11MQo2E4frIDAr62gqnh8RH94=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.083262+00 2025-12-17 14:00:01.083266+00 33486 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FfPY07sLpYtRT0B5W-wtYYs3RaU=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.085381+00 2025-12-17 14:00:01.085386+00 33487 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8q6nTzkPJQas7pgsBnGkaVMvdKA=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.087736+00 2025-12-17 14:00:01.08774+00 33488 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8NkbyGRtgYwwT2XeorvipAznlFE=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.089967+00 2025-12-17 14:00:01.089971+00 33489 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Abt4aHJV-4ajk3XuJ2nvwfiSnMQ=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.09229+00 2025-12-17 14:00:01.092296+00 33490 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H5Dl10aedXkrMHphZVb2wDeFwOI=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.094959+00 2025-12-17 14:00:01.094963+00 33491 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BmTTc28h2H5vGMKbEyS4IJLMKxw=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.097243+00 2025-12-17 14:00:01.097248+00 33492 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e7BYQZEiBCpZILcHtg1V5lBmIsU=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.099465+00 2025-12-17 14:00:01.099469+00 33493 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BiEDBK12lRwUOuMz9zzrlPQD99g=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.101473+00 2025-12-17 14:00:01.101477+00 33494 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tvVvuUwKl5zBJjR8cA49mkhZhlA=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.103516+00 2025-12-17 14:00:01.103521+00 33495 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_58h8DtseEBViSeXXpLT_5tA0-8=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.105479+00 2025-12-17 14:00:01.105483+00 33496 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BW8VcLVCXCiuKrNhSGCpttzv3mA=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.107441+00 2025-12-17 14:00:01.107445+00 33497 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g8oQG8ophVOPOSFx4MZYT7loGLw=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.109471+00 2025-12-17 14:00:01.109476+00 33498 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mc3MJRV_sA2SBJLG6Bf0SJaiH20=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.11216+00 2025-12-17 14:00:01.112165+00 33499 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VEPJmlDPwbiMOaQ1cVKmvzd0zac=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.114701+00 2025-12-17 14:00:01.114705+00 33500 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Md2Dwj5SAsoNYoO0KvWkjsDtU28=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.117026+00 2025-12-17 14:00:01.117032+00 33501 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N5H1i2AjfCRaBbr5c-BFsk7l9Jo=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.119693+00 2025-12-17 14:00:01.119698+00 33502 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NmA7ZsT7EYeAo1ctZzeccfI_UHE=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.122071+00 2025-12-17 14:00:01.122076+00 33503 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HVB5sISng_6F47NpwVbouoOiNFI=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.124501+00 2025-12-17 14:00:01.124505+00 33504 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DkX_sV2HkZq50CNHjh2HF6nQRqw=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.127308+00 2025-12-17 14:00:01.127313+00 33505 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sIFIfdmLOdLXDXTjatcCCUwKeBI=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.129869+00 2025-12-17 14:00:01.129874+00 33506 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SIWGfca1C_7toKe2uv8EpGyABBg=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.131823+00 2025-12-17 14:00:01.131828+00 33507 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ej7ajR-eG26NLubcRpql_VJpqyE=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.133748+00 2025-12-17 14:00:01.133752+00 33508 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:anKBC0Unx-GCGUkQNT-OEkPvSvY=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.135968+00 2025-12-17 14:00:01.135974+00 33509 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k0nDD5GFp07nVqcW5H1wipPeZcc=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.138269+00 2025-12-17 14:00:01.138275+00 33510 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AcRkaGZ1fYeGZGfDf4XkYdLfAlY=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.140717+00 2025-12-17 14:00:01.140723+00 33511 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0PH4orRsgKddqiPeJTKtDD5ru3g=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.143185+00 2025-12-17 14:00:01.14319+00 33512 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VFWrM8DVhjfkJ7L8FOvC52kFIOQ=", "createTime": "2024-08-15 14:56:06"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.145589+00 2025-12-17 14:00:01.145594+00 33513 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wR-4svH_Bk-8IgzOPxDVfs1sjCI=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.147996+00 2025-12-17 14:00:01.148001+00 33514 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gb26wZgPwjUWUw1JDgpAqguV_yY=", "createTime": "2024-08-15 14:56:06"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.150153+00 2025-12-17 14:00:01.150159+00 33515 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:38vrIg2uciOVB8o_BsMD5RX7BLY=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.152712+00 2025-12-17 14:00:01.152718+00 33516 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:If6y8mWbh19i-4lv-CxNVe882zM=", "createTime": "2024-08-15 14:56:06"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.155227+00 2025-12-17 14:00:01.155232+00 33517 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G-d1AJvh6tdh9vCpQDOftPzeAAo=", "createTime": "2024-08-15 14:56:06"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.157659+00 2025-12-17 14:00:01.157664+00 33518 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IVCiU1zuN2j7O8yqJkNIvQJJllw=", "createTime": "2024-08-15 14:56:06"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.160013+00 2025-12-17 14:00:01.160018+00 33519 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FamzG7XR3axLa1xrZrlC3g8Xz0I=", "createTime": "2024-08-15 14:56:06"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.16222+00 2025-12-17 14:00:01.162225+00 33520 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BGsKzoyNrQw2PTbVAkWiwp_tO1E=", "createTime": "2024-08-15 14:56:06"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.16479+00 2025-12-17 14:00:01.164795+00 33521 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7p2_sbw4tQPkXa5YtycRYuPKgXw=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.167124+00 2025-12-17 14:00:01.167128+00 33522 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CODZqoLog9TKXB93Z8VS1mi8tIk=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.196788+00 2025-12-17 14:00:01.196793+00 33535 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g_6e-ZF0hGMbBSIMvwk1gEdUVYs=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.169391+00 2025-12-17 14:00:01.169397+00 33523 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XZIQRAZlS-aUZWp8vIEz6m6H3PU=", "createTime": "2024-08-15 14:56:08"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.171796+00 2025-12-17 14:00:01.171801+00 33524 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x193gPBD8m3gafyE6nEJ4TlmQ6I=", "createTime": "2024-08-15 14:56:08"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.174094+00 2025-12-17 14:00:01.174099+00 33525 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PfAkK6w8GEzEHlhthjxSC-1YNO0=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.176516+00 2025-12-17 14:00:01.176521+00 33526 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ATkBm0eBfasu-irXN8ox4RH9Hfg=", "createTime": "2024-08-15 14:56:08"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.178961+00 2025-12-17 14:00:01.178966+00 33527 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9eNLjXTzc9i-2gUg-NlcX4rfBe4=", "createTime": "2024-08-15 14:56:08"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.181241+00 2025-12-17 14:00:01.181245+00 33528 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K6HqcleUMobrc6qwb4hRN1AolI4=", "createTime": "2024-08-15 14:56:09"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.183197+00 2025-12-17 14:00:01.183201+00 33529 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cVZKK31e_pnmYfv-jTJEErk8W2U=", "createTime": "2024-08-15 14:56:09"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.185724+00 2025-12-17 14:00:01.18573+00 33530 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Vr9snCB_vyeuORuht00WMLbxHI=", "createTime": "2024-08-15 14:56:09"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.188193+00 2025-12-17 14:00:01.188198+00 33531 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KGqIs6MSMfKNDV1nmxcpCN0hRVo=", "createTime": "2024-08-15 14:56:09"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.190255+00 2025-12-17 14:00:01.19026+00 33532 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OVSW2_Gk7x6kNPOUceVP-Vhuq14=", "createTime": "2024-08-15 14:56:09"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.192355+00 2025-12-17 14:00:01.192361+00 33533 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DagH5xkcQlh6xbjl2Kik7vc6bkc=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.194507+00 2025-12-17 14:00:01.194512+00 33534 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_tjxHOIAAvnkoLmxUE7f0uMYGtM=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.19898+00 2025-12-17 14:00:01.198985+00 33536 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2N5ISXFjmZHh1LV0uOaSEJtXxIs=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.201411+00 2025-12-17 14:00:01.201416+00 33537 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ntp_ePh7MigzWWlVse5g8fF77Jo=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.203526+00 2025-12-17 14:00:01.20353+00 33538 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YqUlR0aLWVUXaR2-LmQYoFSlSaw=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.205607+00 2025-12-17 14:00:01.205613+00 33539 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6MnkLSZb2h-A06hB5IgoGiXIPDA=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.207946+00 2025-12-17 14:00:01.207951+00 33540 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZPMh-RC23AagLsCF0q4GsIpehTg=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.21057+00 2025-12-17 14:00:01.210575+00 33541 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vd2mdfQZub4EJ2RnA_cmHMkKBUI=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.213032+00 2025-12-17 14:00:01.213036+00 33542 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4MJy_F19lthlCeJjeqqZ0vixBRM=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.215254+00 2025-12-17 14:00:01.215258+00 33543 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xPR4_hCPSs7M8WhnJ7LJxa-NBbU=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.217439+00 2025-12-17 14:00:01.217444+00 33544 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8X32qYYUzxdBg1LNBTIH3Lmw1m4=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.219701+00 2025-12-17 14:00:01.219706+00 33545 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fPWJV_SN70Z1KbxpAuwcxWJ7zbQ=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.222111+00 2025-12-17 14:00:01.222116+00 33546 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p3A4q4jP5aG1kAE_lJYVIKhHwY8=", "createTime": "2024-08-15 14:56:09"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.22444+00 2025-12-17 14:00:01.224444+00 33547 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8cCQaZD2FpvSmJaRQKCl5FEtzuk=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.22708+00 2025-12-17 14:00:01.227086+00 33548 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9mEGPFH1JSqlSwfx8FPZqysZL0I=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.230282+00 2025-12-17 14:00:01.230289+00 33549 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iyaNnPUQTDr4Xhd13TA-dUmt1M8=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.233368+00 2025-12-17 14:00:01.233373+00 33550 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e2WKJLd047TsacR3p_EDwzo42UQ=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.236069+00 2025-12-17 14:00:01.236076+00 33551 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bfBlGnqAQkXbNSjW7wLSJKQMOnk=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.238502+00 2025-12-17 14:00:01.238508+00 33552 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mhgjvpgBzOAljCCA8r43ClS7UB0=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.240725+00 2025-12-17 14:00:01.24073+00 33553 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R5vdvZyOIzhRleWuwmYLYGpufQY=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.242811+00 2025-12-17 14:00:01.242816+00 33554 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QQwFOmvPwAMdWybmKcVqkn90yjo=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.245181+00 2025-12-17 14:00:01.245186+00 33555 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ihSgHe0KarfPfxLfqfBSJhxjeKA=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.247516+00 2025-12-17 14:00:01.247521+00 33556 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oR9tkzbLe9844UrW6uGDyCkGDuI=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.249578+00 2025-12-17 14:00:01.249582+00 33557 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a-BfrmmlwWGQqkv6qWFzfYMm4SQ=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.251697+00 2025-12-17 14:00:01.251703+00 33558 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5crV_jXPNONMBko91dbTvriTG3U=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.253841+00 2025-12-17 14:00:01.253845+00 33559 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:owquVj83UJWkiCqW19cGl6Ogulk=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.25593+00 2025-12-17 14:00:01.255935+00 33560 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fXCntQQW7FNa2_R6l5CYXe6jxfQ=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:00:01.2579+00 2025-12-17 14:00:01.257904+00 33561 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=1766066400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_EGSSeIeF5RDh_OeknJO7mJ2WCw=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.568821+00 2025-12-17 14:10:00.568832+00 33562 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K18AbAwfAkpUsK-JkWLAuoKHqRE=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.572636+00 2025-12-17 14:10:00.572642+00 33563 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4py_2V9ZLUZxEYPvsgErbZYV8ZQ=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.575227+00 2025-12-17 14:10:00.575233+00 33564 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QhtpdhLYO7nB4A135QGiFdaspVc=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.577494+00 2025-12-17 14:10:00.577499+00 33565 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DuisMPQzHvmWHhfHwU5LdOsbHHY=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.580084+00 2025-12-17 14:10:00.580088+00 33566 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WKFuBMaOr_m8wdMbJe4ZyE-9GCk=", "createTime": "2024-08-15 14:56:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.582075+00 2025-12-17 14:10:00.58208+00 33567 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S81qqQ6LQHvaMI7iBoeXsmP_Apg=", "createTime": "2024-08-15 14:56:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.584011+00 2025-12-17 14:10:00.584015+00 33568 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4nZiqJBYhvL-3E_aYPnkx-YUI8E=", "createTime": "2024-08-15 14:56:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.585932+00 2025-12-17 14:10:00.585936+00 33569 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xN6wE4sNHjzBa0grI368gawkGW8=", "createTime": "2024-08-15 14:56:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.587864+00 2025-12-17 14:10:00.587868+00 33570 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wPbLtAPGKlzzVSowbLcMoZa5Gxg=", "createTime": "2024-08-15 14:56:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.58981+00 2025-12-17 14:10:00.589814+00 33571 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p7KMyQk5rUcu5tYqdzeLjL1Uwbc=", "createTime": "2024-08-15 14:56:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.592066+00 2025-12-17 14:10:00.592071+00 33572 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NQOnfHpujeHdH6WVfA6JeTJzUwM=", "createTime": "2024-08-15 14:56:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.594089+00 2025-12-17 14:10:00.594094+00 33573 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gu2nM4UrQmZmgdBbZ7tUtHfBT3Q=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.596109+00 2025-12-17 14:10:00.596113+00 33574 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mhI8kYb3HvPrHCJJDq7pmlsCsfw=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.598074+00 2025-12-17 14:10:00.598078+00 33575 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ogFbBWCoIV45I1i1x430Sk5w2PY=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.599985+00 2025-12-17 14:10:00.59999+00 33576 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bklx_7-ZbH0kXPpbmPqMOptCAHU=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.604179+00 2025-12-17 14:10:00.604184+00 33578 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MCGVZuGqj03tz6qVOjmjgNDNqB0=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.606151+00 2025-12-17 14:10:00.606156+00 33579 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CzXBtVSUPSniEGghPNsE27pNejE=", "createTime": "2024-08-15 14:56:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.608071+00 2025-12-17 14:10:00.608075+00 33580 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_8nXZfyTWDQOdX_wZ45wYJ_gqLU=", "createTime": "2024-08-15 14:56:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.609952+00 2025-12-17 14:10:00.609957+00 33581 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1NBaPd9knRnAGDFBaT7shGBiKgY=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.61211+00 2025-12-17 14:10:00.612115+00 33582 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dcj_uFmGlIUy3MqQBE0RzlR_Qr0=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.614046+00 2025-12-17 14:10:00.61405+00 33583 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HzDZLQi_z3yAAdgRfopTadLfQ30=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.616179+00 2025-12-17 14:10:00.616183+00 33584 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E5LhKlH9QH0V8PnuP-1DM6pr5bU=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.618084+00 2025-12-17 14:10:00.618088+00 33585 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AVfalEZpB-wW0bhhKr9_iNujgf0=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.619951+00 2025-12-17 14:10:00.619955+00 33586 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VxSDtzjZu3j0GS7I0Qpi-vnEVuU=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.622114+00 2025-12-17 14:10:00.622118+00 33587 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qHf59ZEtgcuRUzyCyozoELQkOgk=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.601913+00 2025-12-17 14:10:00.601917+00 33577 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jvNpYFNRN1rir0DIp8CmEhPHr3A=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.627428+00 2025-12-17 14:10:00.627438+00 33588 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FmaWpKOjDwxi-IlMsAZr3H5wuFE=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.630098+00 2025-12-17 14:10:00.630104+00 33589 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KISvXWo0U7dW770zUFjd9Ig5ZCQ=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.63244+00 2025-12-17 14:10:00.632445+00 33590 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N4W_93B59DLpaDBghUmFVh323z4=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.634429+00 2025-12-17 14:10:00.634433+00 33591 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HH3kU7Ob6_XYwtQqXAVje39zWZk=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.63644+00 2025-12-17 14:10:00.636444+00 33592 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tIMWBx2JjtXXSBhNcKbzPAfK-U0=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.638465+00 2025-12-17 14:10:00.63847+00 33593 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0w6xcUIb1naLdBfEtVYCJ7CgZr8=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.640504+00 2025-12-17 14:10:00.640509+00 33594 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fr2pSEWTU0qcA8Z_kmfnfjVQud8=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.642462+00 2025-12-17 14:10:00.642467+00 33595 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7g5U3ZrP-YhusjKUPQ_acLfgxJY=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.64447+00 2025-12-17 14:10:00.644475+00 33596 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jfb0Y7yWqpz6RnmeD2AyrpiD14E=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.646447+00 2025-12-17 14:10:00.646451+00 33597 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JwnU2NTAf8O4926xKk4c2EP29xc=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.648416+00 2025-12-17 14:10:00.64842+00 33598 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cCFTlJPatd8VFoQtrkekBi8D79Y=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.65043+00 2025-12-17 14:10:00.650435+00 33599 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rgw7qddeiId9XYqqUnQo0iW0ap0=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.652449+00 2025-12-17 14:10:00.652454+00 33600 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T6VRxKJe-67eI26EV2o7VyWsu-M=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.654436+00 2025-12-17 14:10:00.654441+00 33601 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8fbEtlb0lXjg1i2JzmuluTcgjjI=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.656479+00 2025-12-17 14:10:00.656484+00 33602 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qxMqcacjvrIeiCb-GWhGQ2LG-eI=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.658483+00 2025-12-17 14:10:00.658488+00 33603 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B_y0P1BWCSIDyQIpTGhonGZmokQ=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.660491+00 2025-12-17 14:10:00.660496+00 33604 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_-EO3bqyrDlopPiLrwRluUrRetQ=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.662475+00 2025-12-17 14:10:00.66248+00 33605 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jUuHs0Buln0M_6lRZMd_zwYQ_To=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.664434+00 2025-12-17 14:10:00.664439+00 33606 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SYTphqB3iU2zM4YkwluZJJVcjQU=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.666359+00 2025-12-17 14:10:00.666364+00 33607 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UBaEzdpIEbmZ4yLKjSh0UctcVOY=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.668527+00 2025-12-17 14:10:00.668531+00 33608 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:up-bhKO4jWY__4g1likdxjSgcvk=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.670748+00 2025-12-17 14:10:00.670752+00 33609 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZD_H34tp3l4BT3SFVDoMfDZb7lU=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.673174+00 2025-12-17 14:10:00.673179+00 33610 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CfGT7Jo_LAfpWwOMNfRrehXVfj4=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.675892+00 2025-12-17 14:10:00.675898+00 33611 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AuxlD3Al4c1V1kqpnGpZhUgdjA0=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.678778+00 2025-12-17 14:10:00.678783+00 33612 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:STZMBk9EEsP-nOXh7VpcqJFQ-7o=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.68182+00 2025-12-17 14:10:00.681827+00 33613 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KfWgR-BDeZgTYmcxSyB7D3SSdNw=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.684737+00 2025-12-17 14:10:00.684742+00 33614 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2UiPeiu6dc47Pw-dfsvvfxY7gKA=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.687837+00 2025-12-17 14:10:00.687845+00 33615 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NQyd3nZS8yfjkIK0Shzg3hrQy7w=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.690977+00 2025-12-17 14:10:00.690984+00 33616 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o7B-qPE8o0IC75clroxOhPJBGWI=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.693748+00 2025-12-17 14:10:00.693754+00 33617 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EXeD19_PypkdJDfzVkvR6rQ9REY=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.696293+00 2025-12-17 14:10:00.696298+00 33618 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UT6PPpP_Ft98Wmyc2zc9CwhwyI8=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.698595+00 2025-12-17 14:10:00.6986+00 33619 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LwPGnjwidNZAgDZmGAnSax_t9Cw=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.700796+00 2025-12-17 14:10:00.7008+00 33620 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gfDJC06JsyRufvRVJ_jc6UDtWgw=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.70276+00 2025-12-17 14:10:00.702765+00 33621 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xuxu9OHJR6inPyf2rDXoZ3VUTXg=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.70479+00 2025-12-17 14:10:00.704796+00 33622 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Be0nsnTafWf_GPbgOKVoWpf9EzE=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.707076+00 2025-12-17 14:10:00.707081+00 33623 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x7oayuU2YK02biqg5pxMQpQ95pY=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.709106+00 2025-12-17 14:10:00.709111+00 33624 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o4e9EquiGWFVtT31HxGvDVN2lmU=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.711173+00 2025-12-17 14:10:00.711177+00 33625 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pl8OXFEDl0YSCNv59kyH9EYrFBg=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.713199+00 2025-12-17 14:10:00.713203+00 33626 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zLSNut20_Na4hWmjfldLEINQ8mA=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.715321+00 2025-12-17 14:10:00.715326+00 33627 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZqlrMOtzQED5c_p2iglRaGe8xjc=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.717612+00 2025-12-17 14:10:00.717617+00 33628 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YuQO5iX8iNbSCNowDMEhYdE8Sbc=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.719838+00 2025-12-17 14:10:00.719842+00 33629 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:COnmyePD97uOOOshJbEyCLXxZVk=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.722093+00 2025-12-17 14:10:00.722099+00 33630 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C-RH3rWbp7qb5-ffcMEF5GoSe_A=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.7241+00 2025-12-17 14:10:00.724105+00 33631 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:olJ3kEkpHnlnYG1_L3VeCNuQIi8=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.726093+00 2025-12-17 14:10:00.726098+00 33632 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DfcDkn9asHsjyWAoLZl9yylw384=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.72814+00 2025-12-17 14:10:00.728144+00 33633 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ma-vWzhTqPaN8GuCl8bWDr05lbc=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.730148+00 2025-12-17 14:10:00.730153+00 33634 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FIprLA7FKg6DfHtcoqKfJSGbbX8=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.732095+00 2025-12-17 14:10:00.7321+00 33635 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QkGgKdZTfPad1T5ZvQPjdC3gvBw=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.73404+00 2025-12-17 14:10:00.734044+00 33636 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x0rLnsLd8BfGghTXa6wkE24r82Q=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.73604+00 2025-12-17 14:10:00.736046+00 33637 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ig6WKSM_1rVGJ6a3XdE-MGtwN48=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.73802+00 2025-12-17 14:10:00.738024+00 33638 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eVXRh8ag3UyEACSNLVWJ8t1m-TE=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.740263+00 2025-12-17 14:10:00.740267+00 33639 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sHxXxn12e6IyhxgWa2Lo6IUVTWE=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.742267+00 2025-12-17 14:10:00.742273+00 33640 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f08my0qfr8gTCL7Iamm2R2H4x1I=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.744513+00 2025-12-17 14:10:00.744519+00 33641 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sL7mJOR4l1x-zjpJsNtVAdBkRaw=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.746953+00 2025-12-17 14:10:00.746957+00 33642 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cY5upZodiRJ5PYq4rH1Kevnj5jo=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.749218+00 2025-12-17 14:10:00.749222+00 33643 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PzGq9dfU3T5Cu5ifNio_YvuuS_E=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.751174+00 2025-12-17 14:10:00.751179+00 33644 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:moKZ5HgJekB3lhIo4x5n-eMQTGo=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.753141+00 2025-12-17 14:10:00.753145+00 33645 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tU7p7TTghS6yJO1iOSjzYpuSB4Y=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.755195+00 2025-12-17 14:10:00.7552+00 33646 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r3H1iIhtJ9kkCg1bYnQqyj_aKCE=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.757485+00 2025-12-17 14:10:00.75749+00 33647 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bDovWQcqaioIMDfPt8Sfb9_4bR8=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.759516+00 2025-12-17 14:10:00.759521+00 33648 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PHPUMqnIVUkGpRbJpdAiXwB3TtA=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.761605+00 2025-12-17 14:10:00.76161+00 33649 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tYGLcLSd_gbV8mYb1rh9MB34W2g=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.763643+00 2025-12-17 14:10:00.763647+00 33650 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rDrEpNUgevo_Ur4pC-UXNaQw1jo=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.765604+00 2025-12-17 14:10:00.765609+00 33651 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3eTihnQqUmJkqkcsLflOm4_5zE0=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.767533+00 2025-12-17 14:10:00.767537+00 33652 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M905VO8aF_9KeZvKo9RtrNgEubA=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.769505+00 2025-12-17 14:10:00.76951+00 33653 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IaDT6ROuGEZ10tcDk5bne6L68OA=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.771623+00 2025-12-17 14:10:00.771629+00 33654 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:slhLzjFCmbIoWOCICa9QQ4aZdsk=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.774248+00 2025-12-17 14:10:00.774253+00 33655 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9fb7hcl-crYA3Rb4WE6CSXAu9qo=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.776661+00 2025-12-17 14:10:00.776665+00 33656 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AsAq62yf5ZBre_R_QzQ_8t4kjwE=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.778803+00 2025-12-17 14:10:00.778808+00 33657 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KbsQAlXqvGBKp9hNP-blo0f6HbE=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.781131+00 2025-12-17 14:10:00.781136+00 33658 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZdthjDQpTaPGcfo4NzJdHEog9V8=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.783338+00 2025-12-17 14:10:00.783342+00 33659 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YfxpUa96geiUsMTJwnGoJdNdsFc=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:00.785548+00 2025-12-17 14:10:00.785553+00 33660 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=1766066999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5YMr55cigMzL_6_aFCs_ZtGMprY=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.121743+00 2025-12-17 14:10:01.121752+00 33661 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MBIdWbAD5o2tXtUhx9uq8sAJ-bY=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.125317+00 2025-12-17 14:10:01.125324+00 33662 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oa_6aZYWvu8Htrk7PNr1rkJXqOo=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.128094+00 2025-12-17 14:10:01.1281+00 33663 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J6DmPc5sDCnkbLoBOctn5mUHwxs=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.13051+00 2025-12-17 14:10:01.130515+00 33664 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ky3mcoww8WDM_evhLSJue18w6lQ=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.132734+00 2025-12-17 14:10:01.132739+00 33665 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uH1hnDHo6DEhGicnI4i8tSXlzU0=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.134918+00 2025-12-17 14:10:01.134922+00 33666 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ts77dB5ELcn8fFz_AaII4HDF6lw=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.136901+00 2025-12-17 14:10:01.136906+00 33667 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qCQSmp03vYa57AGW_PTDkrQuC1I=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.139147+00 2025-12-17 14:10:01.139152+00 33668 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tdjL6KYmaEFyqKtrYaAl2Ek9cAs=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.141178+00 2025-12-17 14:10:01.141182+00 33669 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c7D4TpKI69Dhf0nifdg-pdOs4HA=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.143206+00 2025-12-17 14:10:01.143211+00 33670 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gUGFTL2frN0h8S0aIKgA7NhKFqs=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.145636+00 2025-12-17 14:10:01.145644+00 33671 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q1mtnQ3o2qIJ0u2s2Yj624i3bNY=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.149374+00 2025-12-17 14:10:01.149382+00 33672 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ru6Zwvpa3CA7LwUeJlmSavysOyQ=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.152812+00 2025-12-17 14:10:01.15282+00 33673 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VGkpyTSS5TvuipzA8R-AEqVQYlw=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.156017+00 2025-12-17 14:10:01.156023+00 33674 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MYNVJMJYPU6uCsQZKFMHf8EJmog=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.158745+00 2025-12-17 14:10:01.158749+00 33675 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5eqr9hWXW54X33NjgeIT99nMSiM=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.161108+00 2025-12-17 14:10:01.161113+00 33676 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CljPggbXNWzcT8b0Dm8BntodmDs=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.163372+00 2025-12-17 14:10:01.163376+00 33677 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ismp3pILyIdcTbpN-759k4mEof8=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.165401+00 2025-12-17 14:10:01.165406+00 33678 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-TloPtB3cu9Z4M9oruGQucXX2BI=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.167527+00 2025-12-17 14:10:01.167532+00 33679 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Alk-v71cPhoZvUeICQD6nrV-6g=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.169482+00 2025-12-17 14:10:01.169486+00 33680 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1oxTCia9uu9xC2D8jD9F4u-N7iw=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.171953+00 2025-12-17 14:10:01.171958+00 33681 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fi39CQKxUwcceiZBEQZqmIzcBmg=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.17451+00 2025-12-17 14:10:01.174514+00 33682 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DctFwtIX-KGBJOjL6Wnet1TGN4o=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.176609+00 2025-12-17 14:10:01.176613+00 33683 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:97k7z-buUSszSLxfVl_vYuoi9U0=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.178641+00 2025-12-17 14:10:01.178646+00 33684 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cSKYvPViCNPkz_oR3TqQvD3RA_E=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.180591+00 2025-12-17 14:10:01.180596+00 33685 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GwQSrrn1aLzjXRKfdAj_HW5xWto=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.182734+00 2025-12-17 14:10:01.182743+00 33686 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AZQjxbpgfbPep9tGc_Roda35upU=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.185522+00 2025-12-17 14:10:01.185526+00 33687 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yD_fyPESdaZkHH0vq-0ke124NIk=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.188337+00 2025-12-17 14:10:01.188344+00 33688 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vA9oCtP9anWMWlmW8aYiqc_u5Gs=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.190975+00 2025-12-17 14:10:01.190981+00 33689 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mWgV11Nf0hn4aeWqoFh5DbQSSjA=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.193342+00 2025-12-17 14:10:01.193347+00 33690 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HzuaJIwvO0QPSjOWhVXj1EFK-kE=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.195726+00 2025-12-17 14:10:01.195731+00 33691 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ME7EUj_c9wENjqSdc6VXziwrsCU=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.197777+00 2025-12-17 14:10:01.197782+00 33692 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E2A1Au3C-iGuQ2KXyP7Vvhz17Ds=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.199749+00 2025-12-17 14:10:01.199753+00 33693 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o2yCnPi5Tqbol258PvRdwBXHRA4=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.201726+00 2025-12-17 14:10:01.20173+00 33694 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZtAc9utRSyqh760tC0L_5r9q5Fs=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.203804+00 2025-12-17 14:10:01.203809+00 33695 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:55DN-zc85rHQLt5Q2YOXS1r4wcg=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.205926+00 2025-12-17 14:10:01.205932+00 33696 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-9XT5OIskTFVw0VsaoAqEyx60cc=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.208266+00 2025-12-17 14:10:01.20827+00 33697 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JygnyEBv3zOtZwK3WtidxnQRWWM=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.210442+00 2025-12-17 14:10:01.210448+00 33698 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cmSjSQ9fvKoq2qyYpUOfK68PxfM=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.21279+00 2025-12-17 14:10:01.212795+00 33699 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D0DeJSjQ129uw9-2n3YI2t_YzVs=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.214962+00 2025-12-17 14:10:01.214968+00 33700 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ri4tgn-ewFtJv_Mhz4x-ba3gTd4=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.217278+00 2025-12-17 14:10:01.217283+00 33701 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ex6TaklkB15aZF4UBkwJzOi6Fy0=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.219454+00 2025-12-17 14:10:01.219459+00 33702 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yEW3GuZC6HkAxkqWwW2LDBqfAM8=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.231728+00 2025-12-17 14:10:01.231732+00 33708 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xJpIP9u_OsnG30rSyJjfWnoHX14=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.221648+00 2025-12-17 14:10:01.221653+00 33703 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9vhFHrrv6dj7z9hZEqGRzY8uSes=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.223727+00 2025-12-17 14:10:01.223732+00 33704 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YFIuVl5PxOGLNuQoie2HY6oltWs=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.225719+00 2025-12-17 14:10:01.225724+00 33705 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y29t7oeQKyd7rIAROoTLj5_Drro=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.227673+00 2025-12-17 14:10:01.227677+00 33706 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4tjMhVo-Uf4EdPa7E3oe_fJ7M4I=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.229602+00 2025-12-17 14:10:01.229606+00 33707 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4rE7f1iVQJfIOHYkBZOdZc-2X5s=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.233612+00 2025-12-17 14:10:01.233616+00 33709 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lQr5n_HQfvP0p8fZ7kNHWYaCahg=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.235765+00 2025-12-17 14:10:01.23577+00 33710 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IXvPGQhzenbuvpd9DF26oK8h0Wg=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.237787+00 2025-12-17 14:10:01.237791+00 33711 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FaQIt6GKQ7EpUaFqrTEPdDhbODw=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.24001+00 2025-12-17 14:10:01.240015+00 33712 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D-9uYEWy23z1GVC4tROE7rO3B8o=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.242153+00 2025-12-17 14:10:01.242159+00 33713 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jvgHJzBABfLfXYMJkHCu177zs2Q=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.24422+00 2025-12-17 14:10:01.244225+00 33714 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ovRlPrFI6Cg2Ofb-Lvl8Bj91N4=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.246524+00 2025-12-17 14:10:01.246529+00 33715 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mVvT4u4sCePf5UEjEx2nKNPts4k=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.248729+00 2025-12-17 14:10:01.248733+00 33716 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RD29jxyUKn-F0605Zuc6UbrAKwE=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.250923+00 2025-12-17 14:10:01.250928+00 33717 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aybFkugPeVq6vYw_koPNZx99EvA=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.252998+00 2025-12-17 14:10:01.253002+00 33718 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vVdyEpy-GTHfBOi0OLnxascdlqk=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.255004+00 2025-12-17 14:10:01.255008+00 33719 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k4BktmCooo7wOW3Df0Y_C5ikl6M=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.257738+00 2025-12-17 14:10:01.257744+00 33720 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r_hTZjOybVEix2fYMsc_wvfH2t4=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.26078+00 2025-12-17 14:10:01.260786+00 33721 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YsmJKNhLPBWOYJKfMvy32kK94fQ=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.26388+00 2025-12-17 14:10:01.263887+00 33722 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lo-qXimCXuYO_4iJ7w8bhegG-bk=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.267153+00 2025-12-17 14:10:01.267159+00 33723 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VmnIyejN7bHbXA7XcykPXkZo7pU=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.270031+00 2025-12-17 14:10:01.270037+00 33724 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lMpKv5IYQzmlg9NkmJay2tCApkc=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.272386+00 2025-12-17 14:10:01.272391+00 33725 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FLERNBkDvEtyGJ-x9lkZe2O1MlE=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.274369+00 2025-12-17 14:10:01.274373+00 33726 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yv-kTbmz5X7eXJV_86JOG4oaaV8=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.276298+00 2025-12-17 14:10:01.276303+00 33727 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j3yvS9EdkiEc2KQ9JxqLY4ld1vY=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.279861+00 2025-12-17 14:10:01.279869+00 33728 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mwJQnDN9TyZnrLNOIHMtr1O8nrU=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.283504+00 2025-12-17 14:10:01.283512+00 33729 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aYAmrpYo1CLmI_T_6No4I2KKqyE=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.286459+00 2025-12-17 14:10:01.286463+00 33730 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vb8V1qPklJCt4xwhzUHQWpvM180=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.288772+00 2025-12-17 14:10:01.288777+00 33731 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AB-LE18xERZnAhkO7rerB_UIqgc=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.291674+00 2025-12-17 14:10:01.291679+00 33732 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6_fYKUs0ENM3Dh0KaW4T2ccvZ_A=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.294174+00 2025-12-17 14:10:01.29418+00 33733 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4tAMx89YoUh8jKlGWoItHne2yto=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.296869+00 2025-12-17 14:10:01.296873+00 33734 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8_nHcl0UDugtwC6RhQO_N6F6rS0=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.299368+00 2025-12-17 14:10:01.299372+00 33735 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fO6QRV8T_SJnpWIraLhHJbdnPk4=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.301577+00 2025-12-17 14:10:01.301582+00 33736 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UCktR9u6wuJYyjTcxBgMz0MQarc=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.303777+00 2025-12-17 14:10:01.303781+00 33737 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Rx0lvWnVOE0HJ3Gu55R-SCLlLg=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.306259+00 2025-12-17 14:10:01.306264+00 33738 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H3YMp9OxKausQqhnogLi6Lkl0SA=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.308824+00 2025-12-17 14:10:01.308829+00 33739 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ascUcxvFStYlM_UiBwFeq-l_XM=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.319289+00 2025-12-17 14:10:01.319293+00 33744 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rSwXNLwYasT_2_wIWIH3k1ck6gI=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.311371+00 2025-12-17 14:10:01.311376+00 33740 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:esBLXMXjChApcu_LngaHieHt9TI=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.313612+00 2025-12-17 14:10:01.313617+00 33741 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:27UjDVH_eUlEQXWQLQSHeecSt7U=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.315517+00 2025-12-17 14:10:01.315521+00 33742 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fh_MLrSsGV0ouXXRm7BTtJB2_zw=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.317413+00 2025-12-17 14:10:01.317418+00 33743 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cOaycSQvUymzWIwRMDTaqocbUDc=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.321186+00 2025-12-17 14:10:01.321191+00 33745 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9j70d4MP8JipraE9SBCVqnKIk9k=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.323292+00 2025-12-17 14:10:01.323296+00 33746 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rwrzXkEr5CfsqFD194iMDr-J_ZQ=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.325309+00 2025-12-17 14:10:01.325313+00 33747 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rQSER9RI0mY7WCYZggQlpC5ARG4=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.327434+00 2025-12-17 14:10:01.327439+00 33748 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pNoLyp8hQyteNMA_Y3nXHYGefRY=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.329375+00 2025-12-17 14:10:01.32938+00 33749 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-pQ1wVNV9mDpl2SRVgKWTXGN-Xg=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.331494+00 2025-12-17 14:10:01.331499+00 33750 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jqHu5n8BM0PPksCfuZsAu2tcDBQ=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.333406+00 2025-12-17 14:10:01.33341+00 33751 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sqm95VmalOR4rgJRDCPoH3AcPtU=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.335303+00 2025-12-17 14:10:01.335307+00 33752 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gZkuT1g1dRCuPDhzfOPNaQ2a3PQ=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.337405+00 2025-12-17 14:10:01.33741+00 33753 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2d1sHCjn0jMDSBtVIk1T0bfLUrk=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.339567+00 2025-12-17 14:10:01.339586+00 33754 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FXo_SjmMXYIyguwoL-cOA18NlvY=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.342249+00 2025-12-17 14:10:01.342253+00 33755 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I_SB-Z_I3Pfmli80xDsckVgo03Q=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.344617+00 2025-12-17 14:10:01.344622+00 33756 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wwAiWit0kITUWBKP1QF_u1Xqczw=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.346801+00 2025-12-17 14:10:01.346806+00 33757 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dq0LPJTswu3fl5XOStWNAt9zj7k=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.348713+00 2025-12-17 14:10:01.348717+00 33758 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xq0d5BahoeS_yU1P9ML12_BJi4M=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.350588+00 2025-12-17 14:10:01.350592+00 33759 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oNirRkfrV8vyjZ1TXRekw2jivzE=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N +2025-12-17 14:10:01.352481+00 2025-12-17 14:10:01.352485+00 33760 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=1766067000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KYbylDqmLUNMAKb1HpMYgqFwkGc=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.363024+00 2025-12-17 14:20:00.363036+00 33761 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1beaA4zSeAuK7iokRXkdc247hTc=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.367707+00 2025-12-17 14:20:00.367713+00 33762 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PYtPyCdyDk_zIF0cYzWXCT29iak=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.370647+00 2025-12-17 14:20:00.370653+00 33763 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6bXpaEeah6DWlgl_dXrZOR2fISI=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.373313+00 2025-12-17 14:20:00.373319+00 33764 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CXh_WCLAb6aqgfhEZaSoSC0kxxM=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.376008+00 2025-12-17 14:20:00.376014+00 33765 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DDqes-ryjQivVZQntblogbAfsmA=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.378448+00 2025-12-17 14:20:00.378453+00 33766 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fsZcw_yOA0ocSwG_cJ0luojCKDY=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.38091+00 2025-12-17 14:20:00.380915+00 33767 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SDwdFkCKpFdFNZ1WUtRM4yhnbWo=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.38311+00 2025-12-17 14:20:00.383116+00 33768 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1iSb_82rPMaEISRR_2Tf4fv774c=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.385659+00 2025-12-17 14:20:00.385665+00 33769 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zvbTaOMNWFpdLCc1FJnK6EdixMM=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.388341+00 2025-12-17 14:20:00.388345+00 33770 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W-fgAP4mZs1rOzKCfUfdAXYd344=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.390795+00 2025-12-17 14:20:00.3908+00 33771 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k18kJCXVq6YXUkYUjTfbPFCY3QA=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.39308+00 2025-12-17 14:20:00.393085+00 33772 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w6a7pXltdcK6wI4D_oyvcGq0XfI=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.395377+00 2025-12-17 14:20:00.395381+00 33773 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kYqXekNqfktHuyFpLq-f4v00f_Y=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.397692+00 2025-12-17 14:20:00.397697+00 33774 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bbbNhu5zCY1Do7M-cSs_JfoBD8M=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.400264+00 2025-12-17 14:20:00.400273+00 33775 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jv_VSi537lMn6wlQT7RV6z538IM=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.404032+00 2025-12-17 14:20:00.404042+00 33776 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RH0sxYXn8zqLIBJpqcGZ1F81UZU=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.406958+00 2025-12-17 14:20:00.406963+00 33777 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xu-einTcZfJ95UY0ex2UMhuKKF8=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.409417+00 2025-12-17 14:20:00.409422+00 33778 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ui0w0zkX-MJCYy109bgyxQq2Mgc=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.411843+00 2025-12-17 14:20:00.411847+00 33779 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8qX3RVmfrX0GzfMDkqTZsxxTrMA=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.41421+00 2025-12-17 14:20:00.414215+00 33780 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zr0z51l4E5G3hE84yuMxzhskPX8=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.416652+00 2025-12-17 14:20:00.416658+00 33781 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pqKGvXV-Asq_W5G_yURrKLBX6C0=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.419141+00 2025-12-17 14:20:00.419147+00 33782 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N_pMN9_WN9Ytgaqs9wtN4W0buJk=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.422061+00 2025-12-17 14:20:00.42207+00 33783 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qWqBrdYn32DpW4qbF65GDWqHdHM=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.42514+00 2025-12-17 14:20:00.425146+00 33784 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_TDUdKTWeQhwnj6bHvpvLeH9Uws=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.428053+00 2025-12-17 14:20:00.428059+00 33785 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HVRv1ZCQcC1DWPixlBxJfOF2_4w=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.430622+00 2025-12-17 14:20:00.430628+00 33786 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7B-3qjXxWz_eDd7FKAw28x1S6YA=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.433012+00 2025-12-17 14:20:00.433018+00 33787 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UftBJKKBDEVwZXnc1Bi4vpbvbUo=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.435387+00 2025-12-17 14:20:00.435392+00 33788 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z8uWzRhuFqUlj0nK8C3IiCQwriM=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.437567+00 2025-12-17 14:20:00.437572+00 33789 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:itu58ZbiOqj0e70lKXaETXhtK48=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.439901+00 2025-12-17 14:20:00.439906+00 33790 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kk7OMNPagO5Pnbxm_aTO0FLF5zI=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.442417+00 2025-12-17 14:20:00.442421+00 33791 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fn0sMRKmVTcXQzusCn9v2EpGkFA=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.44469+00 2025-12-17 14:20:00.444695+00 33792 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ufnIbVGi5vBf-f1gs5RJMVpUtt4=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.447219+00 2025-12-17 14:20:00.447224+00 33793 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l7ltFL309Y3PG7lKn5TIKKQ1ur8=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.449522+00 2025-12-17 14:20:00.449526+00 33794 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WmBwRoq9M57DRB6-LXA0toOP1ws=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.452268+00 2025-12-17 14:20:00.452273+00 33795 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qS0xVFwznPT5owTJiijVctSNozo=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.455171+00 2025-12-17 14:20:00.455177+00 33796 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:davNBa48BtdLaupePq3KDloPnFQ=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.458056+00 2025-12-17 14:20:00.458061+00 33797 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7RVoDA3RxUO18F0VBPo-EvoMeZ0=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.460821+00 2025-12-17 14:20:00.460826+00 33798 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_1AhXTv650RhWfqbQRw8XN-ovXc=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.463252+00 2025-12-17 14:20:00.463257+00 33799 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kYNJgtlj_IPWCr14vm3x4wqOjHE=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.46562+00 2025-12-17 14:20:00.465625+00 33800 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ka_KTHCcCBDfdl2FXAy94SK5fMo=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.468109+00 2025-12-17 14:20:00.468114+00 33801 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:We-tfBHWkIddu50-Ec9wYDuRmEg=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.470938+00 2025-12-17 14:20:00.470944+00 33802 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wIy3YVZxZ2s5PEOs8YVdG0s5Wk4=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.473701+00 2025-12-17 14:20:00.473707+00 33803 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CmE9jni9-U_lkC8W31c8XyHWoqY=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.476219+00 2025-12-17 14:20:00.476225+00 33804 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YGK5SkO_4yoWZwsuk4w1y7COW38=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.478668+00 2025-12-17 14:20:00.478674+00 33805 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tCXOVUAFSyEfQiWxBWa9O4RaPF8=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.481161+00 2025-12-17 14:20:00.481166+00 33806 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jbxb-WwiSyhFRMHUeDdsZsZjsps=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.483582+00 2025-12-17 14:20:00.483587+00 33807 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1izyuZlEZy75VaxKRXjM4GoOJJQ=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.486008+00 2025-12-17 14:20:00.486013+00 33808 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wLa-4Q6qX8u585pNrScaoqcEmNY=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.488676+00 2025-12-17 14:20:00.488682+00 33809 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gjuYFHuTRYaEPYg6NtbApQROYd8=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.491233+00 2025-12-17 14:20:00.491239+00 33810 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g1uPYNvzdh4fRIL7zXc40_8OjRQ=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.493585+00 2025-12-17 14:20:00.493591+00 33811 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TEJKDZCv_oSTFoQnODGGeNMLFSA=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.495931+00 2025-12-17 14:20:00.495936+00 33812 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hqcl-p_XdC-mu4e2dU_3vFFw4Ko=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.498389+00 2025-12-17 14:20:00.498394+00 33813 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9RETQiJ7KhswqPoZ4DCVkmG05Ss=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.500733+00 2025-12-17 14:20:00.500738+00 33814 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4DRrMOEph9CZkb5dYld5e2H7XqQ=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.502884+00 2025-12-17 14:20:00.502889+00 33815 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:okDz85F8wyg0LFAzFhoc_gp1tY0=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.505131+00 2025-12-17 14:20:00.505136+00 33816 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:auOc-Y5OHPxp5EdaEA98X7JLoiI=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.507445+00 2025-12-17 14:20:00.50745+00 33817 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4RQlfUy0CyTFsyg6I2CQ_NwPH7g=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.509714+00 2025-12-17 14:20:00.509718+00 33818 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DP0fHQN4C76BoL7Z1qIEDqNtex0=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.511743+00 2025-12-17 14:20:00.511747+00 33819 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u1KxZISe3n6Ln8qJZnGbTETSrUs=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.513714+00 2025-12-17 14:20:00.513719+00 33820 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ou_ktwixlWYs7SGrBleH6jqbiGI=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.515663+00 2025-12-17 14:20:00.515667+00 33821 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r2Mqh69kuzg7HxclPBfkGMMl2Wg=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.518436+00 2025-12-17 14:20:00.518442+00 33822 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c_skN-nXsBKES83brDG65mQlbl8=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.521395+00 2025-12-17 14:20:00.521401+00 33823 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ek5FAKJngbN_eXnUCtV2G4PgDNI=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.52392+00 2025-12-17 14:20:00.523925+00 33824 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rdsc13_Ufw-ItUY3T-9v_RGW7sE=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.525997+00 2025-12-17 14:20:00.526001+00 33825 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y6-jro4dUL4QB49aCJbPD1ZXdHA=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.528021+00 2025-12-17 14:20:00.528026+00 33826 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eZm7FjYbCKniusLZ9Rkf14VJmY4=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.530095+00 2025-12-17 14:20:00.530099+00 33827 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uifaKR97qH7x1y5Q9bu0jGaYMGM=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.532722+00 2025-12-17 14:20:00.532726+00 33828 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Su6-L9-uwc0qM0naRfFtEDf4SUY=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.53564+00 2025-12-17 14:20:00.535647+00 33829 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PFzaxwm4RMXOqtMSEwx5bzXsyuc=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.538517+00 2025-12-17 14:20:00.538523+00 33830 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tPTnE_vM2rZQ86M9y9kPQezSDzc=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.541164+00 2025-12-17 14:20:00.54117+00 33831 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IPXJPWI4A_Bz3d1GzZLoy8D6km4=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.543581+00 2025-12-17 14:20:00.543586+00 33832 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:InvJNj7G0DN0XxvNvia_9pp-Ggk=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.546831+00 2025-12-17 14:20:00.546838+00 33833 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Bo-u0_3-yCrchvE8johYyG0yOo=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.550156+00 2025-12-17 14:20:00.550162+00 33834 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rij51ap5qwXEmIvY7toYP10Hc2w=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.553001+00 2025-12-17 14:20:00.553007+00 33835 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EhBjRYTaQWOzU70LiuDAvOEWSec=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.555729+00 2025-12-17 14:20:00.555735+00 33836 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R3_CKYPsbTNWVjFaXEBNuUxATsY=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.558301+00 2025-12-17 14:20:00.558305+00 33837 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rbC7cLwZT02Qkg0kHNRbB3O-R78=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.560333+00 2025-12-17 14:20:00.560338+00 33838 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zR2Np-WxAKF4uuMG_Pwk_WyffXE=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.562318+00 2025-12-17 14:20:00.562322+00 33839 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LAJNWkKm1LblTqIZQyJeFbBTj7g=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.564344+00 2025-12-17 14:20:00.564348+00 33840 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n4HRYSF-YRIhUPau_KP3SPAemjE=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.566359+00 2025-12-17 14:20:00.566364+00 33841 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EJrkWJ5xwLIjnnysZCFNOF_jCvA=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.569086+00 2025-12-17 14:20:00.569091+00 33842 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dkWghvrVQxVzq3uzWytP_DafZoY=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.571623+00 2025-12-17 14:20:00.571628+00 33843 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QUBlbb_mwKgVNXyPWObqAmyIIlo=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.573843+00 2025-12-17 14:20:00.573847+00 33844 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u8YyKtXjsUyb6Qwm9IyBQR58A6g=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.576007+00 2025-12-17 14:20:00.576011+00 33845 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F67hegDC2nNgwRc3qVn07b9BXms=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.578158+00 2025-12-17 14:20:00.578163+00 33846 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9JutAc2J1g6xjN5CTQaxT6e2a4g=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.580069+00 2025-12-17 14:20:00.580073+00 33847 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f58FT0aCQykrZZGKScXfpZK1eHM=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.581992+00 2025-12-17 14:20:00.581997+00 33848 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:83nl2w8VPUN2MoHO7SJXXXWVWAI=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.584667+00 2025-12-17 14:20:00.584671+00 33849 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6H02HMBo_mcnXUkH22EfSOLwUZA=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.586939+00 2025-12-17 14:20:00.586944+00 33850 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_k91iYHk4ds8qU_1Ee0RSmoK0nQ=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.589162+00 2025-12-17 14:20:00.589167+00 33851 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QeI8XWQ7poJcO8ofmlzlg9w3yS8=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.591112+00 2025-12-17 14:20:00.591116+00 33852 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ekCMaYDsfM0mrUTfv_ojqdl1838=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.593266+00 2025-12-17 14:20:00.593269+00 33853 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t8JTWDqB0v_obzQuoHkbuQ-ALrY=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.595197+00 2025-12-17 14:20:00.595201+00 33854 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4PXW62XgqyN_mz-4SyIXNHgmhzA=", "createTime": "2024-08-15 14:56:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.597119+00 2025-12-17 14:20:00.597123+00 33855 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ee8Cdl0PhJdtnvcCJTR37j-JdAc=", "createTime": "2024-08-15 14:56:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.599247+00 2025-12-17 14:20:00.599251+00 33856 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:phHdd19x3u-SztGxfS71ff0qx74=", "createTime": "2024-08-15 14:56:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.601247+00 2025-12-17 14:20:00.601252+00 33857 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4QfUgz3PI6ljL9LgFnV8ZSI4DvU=", "createTime": "2024-08-15 14:56:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.603733+00 2025-12-17 14:20:00.603738+00 33858 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:axZhVpLTtlcatJeLKwkplkX4HZU=", "createTime": "2024-08-15 14:56:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.606089+00 2025-12-17 14:20:00.606094+00 33859 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lzz58KlHJyZr-bPuxGhA8__hXVQ=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:00.608371+00 2025-12-17 14:20:00.608376+00 33860 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=1766067599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-qs5ZYorQyJPtI5jek-vcGU-b7A=", "createTime": "2024-08-15 14:56:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.048182+00 2025-12-17 14:20:01.048191+00 33861 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fqIO7MuLu_33bYqMgUELh1wpxjs=", "createTime": "2024-08-15 14:56:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.05144+00 2025-12-17 14:20:01.051447+00 33862 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8h7gYzQqHKTHp9M58Y-2cRuKH9g=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.054169+00 2025-12-17 14:20:01.054176+00 33863 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KwbkpWMp2w3FtaEtwp1kM48Qnho=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.056786+00 2025-12-17 14:20:01.056791+00 33864 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UnmMLFUpPzCofwV9t7dGepYmKME=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.059204+00 2025-12-17 14:20:01.059209+00 33865 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:10XobZ21HcJ5KfYedLy7uK0TtbU=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.061471+00 2025-12-17 14:20:01.061476+00 33866 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EDEuBRbMUsUaxEsPE_d-o_ASZy0=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.063718+00 2025-12-17 14:20:01.063722+00 33867 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H1Jn9h88ng8_-oiBxLG6o_Im8e0=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.065695+00 2025-12-17 14:20:01.065699+00 33868 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TmH570IOpLyNFVHsP1rwbFMxpXw=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.068277+00 2025-12-17 14:20:01.068286+00 33869 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yt5pcbfy3D5mVKSlGZqJdHrVxW4=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.070931+00 2025-12-17 14:20:01.070936+00 33870 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mKjhKGQq1-q04Jns31LZ6q2CsCI=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.073366+00 2025-12-17 14:20:01.07337+00 33871 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H9a5glAh21n-ODtVzLppcRKwnws=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.075589+00 2025-12-17 14:20:01.075594+00 33872 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wYZHv0qvRirYZEUgFW3uYcISO_8=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.077821+00 2025-12-17 14:20:01.077827+00 33873 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXQVufIS50nVEXnbRyVh0Xbo6bw=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.07983+00 2025-12-17 14:20:01.079834+00 33874 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3jUNjWQzv6KmSFbllZJZEOiQxbU=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.082037+00 2025-12-17 14:20:01.082041+00 33875 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MQuaivAnWGgVPgiHdSDJRZBMTOk=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.083984+00 2025-12-17 14:20:01.083989+00 33876 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cO1YqUShvAIuh5bTI--pRB4m570=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.086226+00 2025-12-17 14:20:01.086236+00 33877 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wQFb193J29NOb2rZ1odrwaVQiuQ=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.089532+00 2025-12-17 14:20:01.089539+00 33878 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vuKkPhT_G_AaI7thRt9-6rHa-2Y=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.092728+00 2025-12-17 14:20:01.092735+00 33879 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i2IdWNlF2_uj2G-S7xMxDWSWuL0=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.095398+00 2025-12-17 14:20:01.095404+00 33880 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NrTaP8nMIAXCAfq2E55yV1dE8d0=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.09769+00 2025-12-17 14:20:01.097695+00 33881 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rY9lIRF8jqpt9uizB1P6UWbjZWs=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.099973+00 2025-12-17 14:20:01.099978+00 33882 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4wNi4k39PDua4IeUlwCc3KDzzIQ=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.102302+00 2025-12-17 14:20:01.102307+00 33883 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kmkoYsNmT1cLdVEfXKYXeeYBfxA=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.104415+00 2025-12-17 14:20:01.10442+00 33884 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IegASOSC_mADGXN_sHOAinSusVE=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.106479+00 2025-12-17 14:20:01.106484+00 33885 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zrPsil79V55Sg-OZXk_fQzNKlj4=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.10866+00 2025-12-17 14:20:01.108665+00 33886 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F-nlHEjddH4twDAJsoRYp1ve9NQ=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.111212+00 2025-12-17 14:20:01.111218+00 33887 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3GW3TACjgVztUcn-g9QhWkscZ_E=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.113597+00 2025-12-17 14:20:01.113602+00 33888 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ienkiiR-Hy83gA8ogcFB3wt2IyU=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.11595+00 2025-12-17 14:20:01.115954+00 33889 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xPz_b1WvfrZLIvuB0bZxgJBnXXI=", "createTime": "2024-08-15 14:56:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.118289+00 2025-12-17 14:20:01.118294+00 33890 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C9h_mdvVCQmLSLqAn175xfSUk8M=", "createTime": "2024-08-15 14:56:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.120384+00 2025-12-17 14:20:01.120388+00 33891 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SF8hCpUSjpNbZ9RfG-fOBY9R6zU=", "createTime": "2024-08-15 14:56:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.122438+00 2025-12-17 14:20:01.122442+00 33892 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:--RzxlwK5kLPBzQPniLu38Q9xRU=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.124778+00 2025-12-17 14:20:01.124783+00 33893 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EztdlfrycCjtEteZgqdwV9o2aQE=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.127509+00 2025-12-17 14:20:01.127515+00 33894 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6VnV86AkAAdwzeSe7Hpa6_q0DJo=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.130101+00 2025-12-17 14:20:01.130106+00 33895 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1qKYRUcc_HRsosty7ude-hNPxfM=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.13233+00 2025-12-17 14:20:01.132334+00 33896 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hyfLuZvN-5czKOLygUN5UOEgI8U=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.134351+00 2025-12-17 14:20:01.134355+00 33897 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jxGQ1abdlqJ9TJtCzH8tFopesVY=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.136437+00 2025-12-17 14:20:01.136442+00 33898 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N99HN1UYUv2RK8vxxZoJLsmST1g=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.138493+00 2025-12-17 14:20:01.138498+00 33899 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pAALfO1Z3Q4-jyjph205LqoZIYM=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.140513+00 2025-12-17 14:20:01.140518+00 33900 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n7zSs65K3Zo4cdeLgLJl_SOLdF8=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.142572+00 2025-12-17 14:20:01.142577+00 33901 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6zX8NSVQn1WYfeek2d9YYUq6zEc=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.144558+00 2025-12-17 14:20:01.144562+00 33902 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QBJ_J89VgzuuBPKAm3JwfEiGbwY=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.146538+00 2025-12-17 14:20:01.146542+00 33903 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L0Mfck6llr939iSSfTOVXNoX8zk=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.148504+00 2025-12-17 14:20:01.148509+00 33904 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GviuDhYNxLKax2ft22gUmIJqMi4=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.150499+00 2025-12-17 14:20:01.150504+00 33905 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OaA-HBIpHm1smsJDOFg7flFChZk=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.152714+00 2025-12-17 14:20:01.152719+00 33906 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CV2wJokZN7QkM032AoBqelBHi1c=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.155525+00 2025-12-17 14:20:01.155532+00 33907 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XWWAcToqmCgQxuFnXePL6YWJFUc=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.158119+00 2025-12-17 14:20:01.158125+00 33908 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oA_Loz1HM_0jkYfv1KZ4a1kS8WY=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.160676+00 2025-12-17 14:20:01.160685+00 33909 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VL4Ndt05gxNjx2OvKz7S7L4cWBA=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.163179+00 2025-12-17 14:20:01.163188+00 33910 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k5emqecA_Arpn6s_iGX7TlA2kuI=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.165733+00 2025-12-17 14:20:01.16574+00 33911 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6WIlHFj6GbtUSkgpwOf0JTRhXcw=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.168329+00 2025-12-17 14:20:01.168335+00 33912 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J5cGzsS5VeF1EFoF71r14fsxsLY=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.172276+00 2025-12-17 14:20:01.172282+00 33913 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:99af6_mALaESD4YPa98x9LpS_cM=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.174792+00 2025-12-17 14:20:01.174797+00 33914 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1UxV1MRhdAawdWfeJyoBIxqHXZ8=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.176851+00 2025-12-17 14:20:01.176857+00 33915 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:05rEIyul0qw9OKeJusJ0KNe5Xx4=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.179132+00 2025-12-17 14:20:01.179136+00 33916 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AGbfJ5NUxJ0fj_-_mT8EyXVk9FM=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.181627+00 2025-12-17 14:20:01.181631+00 33917 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QA9JPU8AZ46rVnPlw0D6-J9nWL4=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.183852+00 2025-12-17 14:20:01.183857+00 33918 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u3g72fe7yuVye8rPoDXQ9U08IJ0=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.186244+00 2025-12-17 14:20:01.186249+00 33919 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hxNCOTgMN1r321XnGrX28RxKdUA=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.188891+00 2025-12-17 14:20:01.188895+00 33920 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oq2yOodbL_qFFPnArKh7lKbmMSw=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.191364+00 2025-12-17 14:20:01.191369+00 33921 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lGW7i1qRpzyDMX0v_YZmYASWwpE=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.193921+00 2025-12-17 14:20:01.193926+00 33922 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:emRlU8q9QlO2jQx8o6VfFnt50bs=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.196203+00 2025-12-17 14:20:01.196208+00 33923 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NGcSO6uySb6gezexlC8yqTdV_rc=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.198403+00 2025-12-17 14:20:01.198407+00 33924 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tCVQoKHUa1irbx5Mv4smNkPSevY=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.200623+00 2025-12-17 14:20:01.200628+00 33925 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y9l0ZkdIN6aMmTTROGJDOBOD7B8=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.203075+00 2025-12-17 14:20:01.203083+00 33926 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RXc9rfkfyIJNXXtWZUV4sUrXFIA=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.205876+00 2025-12-17 14:20:01.205883+00 33927 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mfUkyZ1_hDez6UVbCWhVD0r-cCo=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.218992+00 2025-12-17 14:20:01.218998+00 33932 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g4sV6Q8MDusVAIM28Tq_MH5OX4o=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.208515+00 2025-12-17 14:20:01.208523+00 33928 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TW-7wGnfPLQnW2a35u7a6KLFI00=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.211232+00 2025-12-17 14:20:01.21124+00 33929 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zSMhgWAdcFh3BsbO3kW30uzxsiI=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.213799+00 2025-12-17 14:20:01.213806+00 33930 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xNybjsXoKZdxgJJMworOVIp_IVo=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.216376+00 2025-12-17 14:20:01.216383+00 33931 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uAPHNacw1dnXXwwxs-cQlKHD4ts=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.221765+00 2025-12-17 14:20:01.221772+00 33933 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YxJurcP5Qjr0Lnsl1jhK8GoB9o4=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.224339+00 2025-12-17 14:20:01.224345+00 33934 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SWRSCR1mDeDGD9zeHfHr7efLYwI=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.22692+00 2025-12-17 14:20:01.226928+00 33935 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7PPvtwhsBOL9n_J947MjtbytB1g=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.229535+00 2025-12-17 14:20:01.229543+00 33936 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Pf3pSp1d7Reo7uDn9OE1EJpDoA=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.232102+00 2025-12-17 14:20:01.23211+00 33937 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DQV1shNPFQexG_RWd9ciaiaNLmk=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.234785+00 2025-12-17 14:20:01.234792+00 33938 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OBKK29a71fp5R4F-I0cTHIkzFRw=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.237761+00 2025-12-17 14:20:01.237768+00 33939 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KcdrS05gxblwOBDPJdSPxUO26-Q=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.240518+00 2025-12-17 14:20:01.240523+00 33940 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wmAhX7HjSl-npSHPqOS-JtiqBmw=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.243034+00 2025-12-17 14:20:01.243039+00 33941 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F9REKB94mnmG-pEvXux2Ad7BFrQ=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.245362+00 2025-12-17 14:20:01.245367+00 33942 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zH_xd_SSTpGtnJ90CoWOfjKZCwM=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.247343+00 2025-12-17 14:20:01.247348+00 33943 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qoGB-MQc5C-widS3WT-1JOsHFvU=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.249298+00 2025-12-17 14:20:01.249303+00 33944 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TxzEPuqRXMuvMF9NfsPVSXabA34=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.251285+00 2025-12-17 14:20:01.25129+00 33945 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kOV2zAX-1ScE6GQrEAaU7lX_dGU=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.253356+00 2025-12-17 14:20:01.253362+00 33946 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NEbShLH5WKKG8TPWZS1ZVM8pc6M=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.255448+00 2025-12-17 14:20:01.255453+00 33947 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2TP35oMN-OFa3iaR2xhLCzKgwR8=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.257479+00 2025-12-17 14:20:01.257484+00 33948 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vs2dgM269TA38elLORtXeBCbIcg=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.259509+00 2025-12-17 14:20:01.259514+00 33949 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I51bSwhaECV-_5rWUR2y9N0T96s=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.261596+00 2025-12-17 14:20:01.261601+00 33950 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BZtfnBYm54s-I62o0fitBn4Mg1s=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.263905+00 2025-12-17 14:20:01.263909+00 33951 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OMi6p77p1Cughm84tzh49wA6rRQ=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.266137+00 2025-12-17 14:20:01.266142+00 33952 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dHs78UISIQldBq6wI94Tbfk6y2k=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.268862+00 2025-12-17 14:20:01.268868+00 33953 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yjT7shilfwRJjCNK0awV6brIVBA=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.271346+00 2025-12-17 14:20:01.271351+00 33954 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bYF_v3eMyhMXQwTewSobuyaKZak=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.273646+00 2025-12-17 14:20:01.27365+00 33955 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:myWCMoc7cJJOnTxLld_bLtjJ7vY=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.275681+00 2025-12-17 14:20:01.275686+00 33956 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lq2vjzkucj0bWjRDHLzo1XVwl1Q=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.277971+00 2025-12-17 14:20:01.277975+00 33957 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7tWw2s-exfABC2dnngtSQFEN7Qc=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.280138+00 2025-12-17 14:20:01.280142+00 33958 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q9bPj4FdC07srMmDIx1C4QIdBVg=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.282292+00 2025-12-17 14:20:01.282297+00 33959 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r7cAdA0Ksq_d9g_X2WDd6d2LZBI=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:20:01.284692+00 2025-12-17 14:20:01.284697+00 33960 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=1766067600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sSO13Fvat13u6oIsDMqZXdFJalA=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.362239+00 2025-12-17 14:30:00.36225+00 33961 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aoiK2VDh7ve75idr02ngYk2GrEA=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.366242+00 2025-12-17 14:30:00.366249+00 33962 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SNrdacGs5ex-2xhYJfN0m4ga8GY=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.369057+00 2025-12-17 14:30:00.369063+00 33963 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XGHI7YEgohFiGmSJbwZa6-SwpJs=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.371399+00 2025-12-17 14:30:00.371404+00 33964 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jO6EuXrygIzO7ygA13uhGXVFRUk=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.374224+00 2025-12-17 14:30:00.374229+00 33965 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TdEMLMqBxoQWaF5s9e_LvyLAsWU=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.376619+00 2025-12-17 14:30:00.376624+00 33966 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-GuXIhJRh7HOYD7qnS3Bm2pspjM=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.379115+00 2025-12-17 14:30:00.379121+00 33967 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TgY0nhJnJxRigs1BjVrMLtW2amI=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.381819+00 2025-12-17 14:30:00.381825+00 33968 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vZGTlU5UEZp1icGNM0uasGw4d0o=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.384278+00 2025-12-17 14:30:00.384283+00 33969 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RoW0MTCRerSdBe6OClfI6sdEqQc=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.386515+00 2025-12-17 14:30:00.38652+00 33970 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p2WEUXCGgMhrAsBSyghkFyvEF5E=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.38879+00 2025-12-17 14:30:00.388795+00 33971 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8HLkfHhf-o0BJRE4uKIHwCIRIts=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.400054+00 2025-12-17 14:30:00.400059+00 33976 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u5dabnr8g87hDyrH5HXp4mUGYGE=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.390821+00 2025-12-17 14:30:00.390826+00 33972 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DJKt_EzPYGm2Smk3bnAM5g6yInE=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.392826+00 2025-12-17 14:30:00.392831+00 33973 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZYf2m1TqYlYttdQuIVuSC8n6Jb0=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.394877+00 2025-12-17 14:30:00.394882+00 33974 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9c8Pzy-VjPPr6c6i30h-IH3Heok=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.397366+00 2025-12-17 14:30:00.397372+00 33975 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IQc1Cm1qvI97t9s05VC_BeUcBjw=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.402605+00 2025-12-17 14:30:00.402611+00 33977 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vL7OUdfyNjTpJZUR0drPkA5LozA=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.405128+00 2025-12-17 14:30:00.405134+00 33978 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4yBvfZHR16CvLsLAXZcaXLDbrok=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.407601+00 2025-12-17 14:30:00.407606+00 33979 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RIiBUl_cMxPDwu0tTYcBN8NWAs0=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.410037+00 2025-12-17 14:30:00.410042+00 33980 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uo353FIIjsNuVGfCNhYYsF8qeq0=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.412272+00 2025-12-17 14:30:00.412278+00 33981 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zokfkuiv0NbwKmWcaXjj_Au3XkQ=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.416291+00 2025-12-17 14:30:00.4163+00 33982 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wu6sSDiLMYnpJyPtK2Hw0g8-Lhw=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.419814+00 2025-12-17 14:30:00.419819+00 33983 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vb2yQ_GG3QaEtRtPRDv22DcyfHI=", "createTime": "2024-08-15 14:56:47"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.422415+00 2025-12-17 14:30:00.42242+00 33984 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uZuF1yiA6GFApW_Yt6Uefl0FN1M=", "createTime": "2024-08-15 14:56:47"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.424905+00 2025-12-17 14:30:00.42491+00 33985 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hntU5bdqUYNbFqHk9bajVy0PGkM=", "createTime": "2024-08-15 14:56:47"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.427952+00 2025-12-17 14:30:00.427959+00 33986 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3a3qD9gt3LblnelJUZe-L0GOHdA=", "createTime": "2024-08-15 14:56:47"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.431058+00 2025-12-17 14:30:00.431064+00 33987 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V_MUaGpUi3wzpNrgQoExnwk_vXs=", "createTime": "2024-08-15 14:56:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.433821+00 2025-12-17 14:30:00.433827+00 33988 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oXurbBx6eUV6gMGhV-IsXgh_n7Q=", "createTime": "2024-08-15 14:56:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.43623+00 2025-12-17 14:30:00.436236+00 33989 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vHA1ZxLh9rMby0dsRg1bWw3hxP0=", "createTime": "2024-08-15 14:56:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.446459+00 2025-12-17 14:30:00.446465+00 33994 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FQbxKB_RnQucPteIk-tUbH4MLjo=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.438297+00 2025-12-17 14:30:00.438302+00 33990 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tqQnSjLd3uTEwqeHoqYgWy1oEXI=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.440327+00 2025-12-17 14:30:00.440332+00 33991 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yL9nKuzwb8J2A9eW4cfzF7QoIO8=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.442315+00 2025-12-17 14:30:00.44232+00 33992 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k8uo8QEJNkJ9r32_zsvR5V6FsKI=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.444299+00 2025-12-17 14:30:00.444303+00 33993 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5R0uQ-JFKz1GTU-V8t-XUJ0PezM=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.449246+00 2025-12-17 14:30:00.449251+00 33995 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c4MgQJx7mKFzUXc3lZPkGQf4rzU=", "createTime": "2024-08-15 14:56:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.451779+00 2025-12-17 14:30:00.451783+00 33996 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wvkOzfSo7v3S0AXCVQgRbsThRZQ=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.454236+00 2025-12-17 14:30:00.454241+00 33997 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eTraYUL4rcXinlZLAAqY5KuQ3xE=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.456605+00 2025-12-17 14:30:00.456611+00 33998 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lRF6-vSNn78RlIdMBM0hlyTJngM=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.460107+00 2025-12-17 14:30:00.460113+00 33999 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kvc9l5f077g4N-gZ9cG3OEx0PNo=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.463501+00 2025-12-17 14:30:00.463508+00 34000 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d6yLiQNfo-_-FZKGR9p1N8cYP9o=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.466796+00 2025-12-17 14:30:00.466802+00 34001 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b-kFyshormJEVPo0Ly4Rb3VatMQ=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.469831+00 2025-12-17 14:30:00.469836+00 34002 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0XDKo1gSsZB9UD22Ut2yfwgkVZg=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.472452+00 2025-12-17 14:30:00.472457+00 34003 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uUitALvEd7cSWEZFkH_--pQunbw=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.474816+00 2025-12-17 14:30:00.474821+00 34004 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yddD1K2JrA7r9ygw4FfYLqg1k-M=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.477362+00 2025-12-17 14:30:00.477372+00 34005 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zgZPS2IGAuI-ghqgylkpMYVomI4=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.479606+00 2025-12-17 14:30:00.479613+00 34006 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FbdbhitnxTzUrr-HJzP7DJ3Q_Oo=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.482143+00 2025-12-17 14:30:00.482148+00 34007 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:274bPtUv-5xKtHSq_QVfyvsTqC4=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.48448+00 2025-12-17 14:30:00.484485+00 34008 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YZnQF8mox3DYz8t6js2gucjQdFA=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.486484+00 2025-12-17 14:30:00.486489+00 34009 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MJfaOEm9eHUOfJtqmw858wkZe8U=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.488491+00 2025-12-17 14:30:00.488495+00 34010 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kaPhlU26QaUgiazlm8R6NoUc3_Q=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.49048+00 2025-12-17 14:30:00.490484+00 34011 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZB3y-8Ul2SrCiHH8Q2C3YRG-v-k=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.49248+00 2025-12-17 14:30:00.492485+00 34012 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IPJldsPI1s5vbtVi2LmH4j7-rGg=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.494695+00 2025-12-17 14:30:00.494699+00 34013 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jLUD1eXFjKYskBl5Se5Nap4w84M=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.497164+00 2025-12-17 14:30:00.497171+00 34014 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M3l098aghRI8jb4TBJuvJgzBHXo=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.499823+00 2025-12-17 14:30:00.499829+00 34015 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DDcDC8MI8QSLADvQpHIQHS7uFUk=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.502333+00 2025-12-17 14:30:00.502339+00 34016 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SyxPWz6PzZs6dEJwXjzn58JzTHA=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.504817+00 2025-12-17 14:30:00.504823+00 34017 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QJhSFgi3_70hC8l02nfZBcfdhh4=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.507253+00 2025-12-17 14:30:00.507258+00 34018 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tGqnEzTu48l10V4jEhVrNTKez-w=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.509692+00 2025-12-17 14:30:00.509697+00 34019 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5shHW7R3ER4NBeUeXjjQ-Mfzvc4=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.511904+00 2025-12-17 14:30:00.511909+00 34020 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j2Fh67Qbl9wQTPTRS3mRjocnnE4=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.514666+00 2025-12-17 14:30:00.514672+00 34021 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:62unXmhNMjbL8yOeQ5Eh-3t_WDc=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.517305+00 2025-12-17 14:30:00.517312+00 34022 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w67g6cMMhEV2IwpEgFJbvrvxLNU=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.519909+00 2025-12-17 14:30:00.519915+00 34023 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XHbIKvLwRX6Hq8c7B3WS3BLnrSo=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.522453+00 2025-12-17 14:30:00.522458+00 34024 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PHCPXJ-geamPWn7JdBps8HdKjDM=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.524969+00 2025-12-17 14:30:00.524975+00 34025 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3nrojDllEtYkefaokaDu-TOE1Ow=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.527526+00 2025-12-17 14:30:00.527531+00 34026 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hYG_yaU0SWSiPWF5lBbEjMsSeBI=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.530426+00 2025-12-17 14:30:00.530432+00 34027 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lnB2SYyIVt1L5xU2j5V2TbJ6eCA=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.533039+00 2025-12-17 14:30:00.533044+00 34028 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wF-VZ_2Se4VZ0rueFQKzdBQ7sNc=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.535379+00 2025-12-17 14:30:00.535384+00 34029 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WbQIOj5e5V4WHPaDGYVFIX2x89Y=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.537663+00 2025-12-17 14:30:00.537668+00 34030 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P8UZW0JXD6jmmUiLACNlvhHK42Q=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.53989+00 2025-12-17 14:30:00.539895+00 34031 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pevcc80YNgFXTOVP1uyyy3AXGDA=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.541875+00 2025-12-17 14:30:00.54188+00 34032 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_JOngOISA3hwo3urMep2YL_cbRI=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.543872+00 2025-12-17 14:30:00.543878+00 34033 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I4XboUQkvmAOzvqJZHzOVGmCNiA=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.54704+00 2025-12-17 14:30:00.547048+00 34034 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mB4WB0-Na9S0Di2LVmRycbdZS2g=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.55028+00 2025-12-17 14:30:00.550286+00 34035 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rJx6pQg7y_FrHOIfVOc1mHMYqhU=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.553372+00 2025-12-17 14:30:00.553379+00 34036 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vlh2kfS6uwKKXb96FbQEvVI0DJk=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.556134+00 2025-12-17 14:30:00.556141+00 34037 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DNNooO8mWRMlKSlhxxuc2fyZFws=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.558649+00 2025-12-17 14:30:00.558656+00 34038 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ftYn3PZoa0oJ1jqYc_ylEkslDj4=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.561139+00 2025-12-17 14:30:00.561145+00 34039 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KKpR9JIPq7RbxQSY_pk4oA6pUAk=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.563885+00 2025-12-17 14:30:00.563891+00 34040 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AkVi2OZzH4JsLmCLP9EHix8tb4E=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.566262+00 2025-12-17 14:30:00.566267+00 34041 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tccnMwqL8zOLZGZx944UtVrT0Zs=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.568613+00 2025-12-17 14:30:00.568617+00 34042 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:spH_tDQylEAdzghz97RwRc2Bav4=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.570842+00 2025-12-17 14:30:00.570847+00 34043 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IZGtW9TsdoQCEx-yG5TiICRinG8=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.572982+00 2025-12-17 14:30:00.572988+00 34044 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q0znMR_U-SOeKVCU10h3tg9QeuE=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.575149+00 2025-12-17 14:30:00.575154+00 34045 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f1Oi2M75IqHXoakaK1reururV1M=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.57721+00 2025-12-17 14:30:00.577215+00 34046 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6JbMUiaHTt0BqcRfONKZmty4Cq4=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.579295+00 2025-12-17 14:30:00.579301+00 34047 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G9pa3w-zaWjV7LApcVWAJ9i-70c=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.581819+00 2025-12-17 14:30:00.581824+00 34048 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f6lDWcLyaX5fuNVOwK2DtiDzUp8=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.584242+00 2025-12-17 14:30:00.584247+00 34049 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oGANa-nSAAUdKwg6iE56TnKGYiU=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.586421+00 2025-12-17 14:30:00.586426+00 34050 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ccgEecjp9EjtOgScbmGt_p7nIME=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.588738+00 2025-12-17 14:30:00.588743+00 34051 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9h2o11NMPXoE8-yvQCrAVcuUhJw=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.591011+00 2025-12-17 14:30:00.591015+00 34052 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uz2YoMNUWyIY9X95xchImL8AdI4=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.593248+00 2025-12-17 14:30:00.593252+00 34053 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t6sDk2yG8KyvbwcYdxkdwbUNkmI=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.595247+00 2025-12-17 14:30:00.595252+00 34054 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:djX28Y5dz1ivMizoc7J__LsLS-U=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.597698+00 2025-12-17 14:30:00.597703+00 34055 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fYzh_TT_nKUQzMTvQr4bi_54G3c=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.600156+00 2025-12-17 14:30:00.60016+00 34056 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y7HduvPLGajxVSp1GrMtI4uoqtk=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.602455+00 2025-12-17 14:30:00.60246+00 34057 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aOCbM-0kdDAvdUKnmRINgboRVRQ=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.604811+00 2025-12-17 14:30:00.604815+00 34058 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-D5kih1DA4875vaWYAjrpaliLL0=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.607063+00 2025-12-17 14:30:00.607068+00 34059 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1QDo9KxdsTnWXRVW1pBNoydhtks=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:00.60931+00 2025-12-17 14:30:00.609314+00 34060 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=1766068199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h-LhjVNHp7yVmC_k8-YHg_FPS_g=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.007603+00 2025-12-17 14:30:01.007615+00 34061 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:as6ymzXxlctaWbBcuwEXu76f_cQ=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.010852+00 2025-12-17 14:30:01.010858+00 34062 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:to9QElqztvL6meIoG-u06F755sI=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.013484+00 2025-12-17 14:30:01.013492+00 34063 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AZUR2LzoUthKWYkpuxfw67fV9hM=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.017487+00 2025-12-17 14:30:01.017496+00 34064 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1zwce2ILjjQ8ixhBDlqSgyBxNdM=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.021011+00 2025-12-17 14:30:01.021018+00 34065 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RorfN7djq-z95cU8hhM0UHTgwuE=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.024339+00 2025-12-17 14:30:01.024346+00 34066 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nFswSOyEiX5yNdOA75vISYj-V5Y=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.027661+00 2025-12-17 14:30:01.027667+00 34067 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fYBJHGnULgZ6b5EYyXGYyM8So4M=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.030735+00 2025-12-17 14:30:01.030741+00 34068 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M6xSueFIvkRCHu7MuFkEV27j4gQ=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.042181+00 2025-12-17 14:30:01.042186+00 34073 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cZ6yZS8qc7Qe5Wp_jW5gJB0vyOg=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.033591+00 2025-12-17 14:30:01.033597+00 34069 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lmTEio8nsLd8xAnjlTLSbcEU6Og=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.035984+00 2025-12-17 14:30:01.035989+00 34070 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_tNKPa1ydl6oblVQJSD7nkv08jQ=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.03818+00 2025-12-17 14:30:01.038185+00 34071 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:etPCECPWmSyZBZA3FVYkmBfNXVg=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.040186+00 2025-12-17 14:30:01.040191+00 34072 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s_RfGsU5aSGsB3BlXHj_6mrZEi4=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.044146+00 2025-12-17 14:30:01.044151+00 34074 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RXvylGzVe_UrRyadYSxjyIkdQic=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.046513+00 2025-12-17 14:30:01.046518+00 34075 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HivjQEeaZQ7kje3qq0eRoZesK-o=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.048595+00 2025-12-17 14:30:01.0486+00 34076 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8P62wN_dAN7uSpDtEiKbfIaQ1_A=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.050567+00 2025-12-17 14:30:01.050571+00 34077 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nWDATsCatGuR1CAtERGKo6CL5WI=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.052515+00 2025-12-17 14:30:01.052519+00 34078 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t3Vu-SLH_DBaMkxvbJtW7EumOn4=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.054437+00 2025-12-17 14:30:01.054441+00 34079 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H99mdChSxX28lvEgyGGEyt3gpD4=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.056374+00 2025-12-17 14:30:01.056378+00 34080 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b_rSa2t-3mjM4UKmtc0Ts_a8qUg=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.058346+00 2025-12-17 14:30:01.058351+00 34081 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FDmNpGhMEYIO8eKbHQQUht11c-k=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.060356+00 2025-12-17 14:30:01.06036+00 34082 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aXtQU_0TPTtRU3U2-SxBS-_yknk=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.062329+00 2025-12-17 14:30:01.062334+00 34083 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uP6sPkuH6fuSbGroc4-C6C51EnQ=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.064551+00 2025-12-17 14:30:01.064555+00 34084 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uM3G3wbGzJTZBLXr71pMPYsLnyo=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.066559+00 2025-12-17 14:30:01.066566+00 34085 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z9O3TMao5Vw_wG9MAQmG9y85peY=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.068492+00 2025-12-17 14:30:01.068496+00 34086 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:skHPyctdPB8FtwUXajIrNZNTX6A=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.070413+00 2025-12-17 14:30:01.070417+00 34087 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:he_QR6OEh36YAR1m2SAJQt37YEo=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.072345+00 2025-12-17 14:30:01.072349+00 34088 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6cNuvPV-G8PNQyE-q4pDjDNZZ0k=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.074278+00 2025-12-17 14:30:01.074282+00 34089 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QDpmCmRNxdnd6ZYRBplW5kvf-iE=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.076413+00 2025-12-17 14:30:01.076417+00 34090 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dRFN--DU79TqpB7GTfH5KrUM5FE=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.078461+00 2025-12-17 14:30:01.078467+00 34091 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jJxnkT2k3h1eIbFB5fcfEdzIctg=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.08956+00 2025-12-17 14:30:01.089566+00 34096 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kjM2A9yayQ0C3VwFNzDfchDjLN8=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.080914+00 2025-12-17 14:30:01.080919+00 34092 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-KCR65Bm05oUls5czeAmzAIYtns=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.083164+00 2025-12-17 14:30:01.083169+00 34093 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jtFjYvhhhyBLTBksfW771Uq5k7Y=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.085372+00 2025-12-17 14:30:01.085377+00 34094 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7WfFYDRZYJolqirt0xDag-yQpT8=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.087569+00 2025-12-17 14:30:01.087573+00 34095 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f-nTVPxPBMimz3Q-63hGyiuB6vo=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.091557+00 2025-12-17 14:30:01.091561+00 34097 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:brk1EHYDbhOdDb02ryZM6Z-4ETQ=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.093566+00 2025-12-17 14:30:01.093571+00 34098 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gNfOH3ieeh44ReabZMejYYvzamE=", "createTime": "2024-08-15 14:57:00"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.095801+00 2025-12-17 14:30:01.095806+00 34099 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9_9lG3Gzcuw66uF2wKDVwfjQ0m0=", "createTime": "2024-08-15 14:57:00"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.098047+00 2025-12-17 14:30:01.098052+00 34100 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MpcbeOk-WO7yudyxk0VcdFnLXLU=", "createTime": "2024-08-15 14:57:00"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.100538+00 2025-12-17 14:30:01.100542+00 34101 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6KJeUNSeJJ1c1dDWO6JeQ3xLjtc=", "createTime": "2024-08-15 14:57:00"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.102869+00 2025-12-17 14:30:01.102873+00 34102 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yQnOMCPFF08MA4VZn_qwYQeiGjQ=", "createTime": "2024-08-15 14:57:00"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.104863+00 2025-12-17 14:30:01.104868+00 34103 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Otjvq9irOaMR-FRMehwsxOIXds=", "createTime": "2024-08-15 14:57:00"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.106846+00 2025-12-17 14:30:01.10685+00 34104 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NX5blt66EDgb3MH7hOoAZPAn4lQ=", "createTime": "2024-08-15 14:57:01"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.108876+00 2025-12-17 14:30:01.108881+00 34105 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cRv-2ghYcitc7wc8Mom4FFtvSgI=", "createTime": "2024-08-15 14:57:01"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.110886+00 2025-12-17 14:30:01.11089+00 34106 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DXhbnYGwJeFjriwPT9cCONO99ko=", "createTime": "2024-08-15 14:57:01"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.113116+00 2025-12-17 14:30:01.113121+00 34107 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VzZVlm3Aid7Z3iyHklr1_-INHVU=", "createTime": "2024-08-15 14:57:01"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.115623+00 2025-12-17 14:30:01.115628+00 34108 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IqGjHXZyUHqhYboNdNcj2PWaVyg=", "createTime": "2024-08-15 14:57:01"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.117888+00 2025-12-17 14:30:01.117892+00 34109 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_TegwCtc2bdPkuHX7q4MD0H18fM=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.119936+00 2025-12-17 14:30:01.119941+00 34110 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jyh6v5KLHTgmR3d8yi1W4nDi49s=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.121982+00 2025-12-17 14:30:01.121986+00 34111 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sQUApXS7cQEPW-VUSby6Mmqw_zA=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.123972+00 2025-12-17 14:30:01.123977+00 34112 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BFgxka6cUetcCJUOoJSnst62lXU=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.12593+00 2025-12-17 14:30:01.125934+00 34113 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JWim0vw8vsm9uUlPPatEcNZ7j8U=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.127955+00 2025-12-17 14:30:01.12796+00 34114 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p3SotBuioBWbHitPKteJfX2R5js=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.130107+00 2025-12-17 14:30:01.130112+00 34115 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ep01uUPhU9N0ok_z94A4ZM9hapw=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.132529+00 2025-12-17 14:30:01.132534+00 34116 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qi2fXRU2xvmsNfnV0FZqiRa5vEQ=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.13513+00 2025-12-17 14:30:01.135135+00 34117 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kofrn5rrpTnJlM7QyM6-dTz-p1U=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.13727+00 2025-12-17 14:30:01.137275+00 34118 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UrjeO0ID9v-vkiYffwEMosJABjc=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.139561+00 2025-12-17 14:30:01.139567+00 34119 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wMKXzQu5xJoykmxF48H0W7fbKVY=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.141699+00 2025-12-17 14:30:01.141704+00 34120 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bhNioT_tONF9tCdt7mjZ8uFPU7k=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.143923+00 2025-12-17 14:30:01.143928+00 34121 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3LyRXl4Z5GILeayqxywch9hqGDk=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.145902+00 2025-12-17 14:30:01.145907+00 34122 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kLPtGPpqyiIBPs0lkXWSVVNefr8=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.148682+00 2025-12-17 14:30:01.148689+00 34123 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tHdEByIaWh0LcLkyiMb9nRKL5sk=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.151655+00 2025-12-17 14:30:01.151661+00 34124 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lfH1Hnb_IisMZ9PPft8nv719AdA=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.15431+00 2025-12-17 14:30:01.154315+00 34125 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9J6YIJQR8p8QiF3gPx-yxcY2w88=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.156653+00 2025-12-17 14:30:01.156657+00 34126 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KOOT2j1Uj31rXbNffBWVGw8VtTA=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.159189+00 2025-12-17 14:30:01.159194+00 34127 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:juKM64Y8AZXVuzraiOenW9O137U=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.16147+00 2025-12-17 14:30:01.161475+00 34128 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6OgA7gZ0v6ktDb_DVbuQ7LRa5Vo=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.164503+00 2025-12-17 14:30:01.164509+00 34129 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IVrD4AGZodF3lGgY0B-no9eCcZ4=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.167338+00 2025-12-17 14:30:01.167343+00 34130 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bC3ECw9UtVCVT32FpWbSYca8I-M=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.169381+00 2025-12-17 14:30:01.169386+00 34131 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lILt_L9mVjwQ0iVsr5hBvI3d8DM=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.171417+00 2025-12-17 14:30:01.171422+00 34132 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mONK_EBu0NOT_GSErOY03_R13Rc=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.173457+00 2025-12-17 14:30:01.173462+00 34133 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sUwCUqrLMVfFMo01wWPuCvQ6yr0=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.175496+00 2025-12-17 14:30:01.175501+00 34134 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:96YSHvM6q5mG32luQqpwDnK3A68=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.177573+00 2025-12-17 14:30:01.177578+00 34135 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UhjWoBEX69VbtmbM1xcEkmqekkA=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.18039+00 2025-12-17 14:30:01.180397+00 34136 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:enEzA7C_c4tb9G4F05bWpkwoaKs=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.183074+00 2025-12-17 14:30:01.183079+00 34137 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JwWFq0VazW2I_D1oQR9LNR94Gp8=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.185416+00 2025-12-17 14:30:01.185421+00 34138 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6UJvFi_PUetu9lazHIkSghVKE5M=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.187473+00 2025-12-17 14:30:01.187478+00 34139 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1jVSTT3zAH9UwRTcAwZ7zoH5JL4=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.189529+00 2025-12-17 14:30:01.189533+00 34140 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZHr7fJ_A3XgYTEHB-FQnLiTeJN0=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.191595+00 2025-12-17 14:30:01.1916+00 34141 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Neks1J6d3WQzjNxvGl6qi_Jip_A=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.193608+00 2025-12-17 14:30:01.193612+00 34142 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rw6qE2bcDTPgk1JwzvFS-M35ohU=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.195603+00 2025-12-17 14:30:01.195608+00 34143 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i5uJJtJ_N1OXxy6BGBcYqUOpNGo=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.197884+00 2025-12-17 14:30:01.197889+00 34144 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cVOukerpY-MHCqyNokLlVZrrdp8=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.200473+00 2025-12-17 14:30:01.200478+00 34145 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vkt8BaPphWWXhii9v-5Akvtecfw=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.2028+00 2025-12-17 14:30:01.202805+00 34146 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gqmMBWs5SxzdKA6oOe67mhvkcSM=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.205028+00 2025-12-17 14:30:01.205032+00 34147 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:32bEVsyJMpSD4OHNYiOAgDkdjPs=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.207331+00 2025-12-17 14:30:01.207338+00 34148 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RxfceFZunCcN3mwLa1KMLiTRe84=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.21004+00 2025-12-17 14:30:01.210045+00 34149 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8X5YhIFOL-iPiXU5HOT9Oj3dL18=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.212746+00 2025-12-17 14:30:01.212752+00 34150 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4uwdG3SfpiLBcwXQnxVhJPQfDRY=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.215428+00 2025-12-17 14:30:01.215433+00 34151 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mn9R77Hl58m6S8EIs2nJp-rAk7s=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.218025+00 2025-12-17 14:30:01.21803+00 34152 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UWVhjQ68jrXR5JOeEZhdgdiJInk=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.220347+00 2025-12-17 14:30:01.220352+00 34153 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_yrqQBUZRtqqCTKJUF36zAXeMec=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.22258+00 2025-12-17 14:30:01.222584+00 34154 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:khzJAUegEnfWaU_UkfDHdGrSiOw=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.224576+00 2025-12-17 14:30:01.224581+00 34155 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t9NcQA0UNsyhwWIDYgSCF2qKqY8=", "createTime": "2024-08-15 14:57:06"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.226544+00 2025-12-17 14:30:01.226549+00 34156 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HqbrI_HW18X0InKW8RvCPBQrknY=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.228557+00 2025-12-17 14:30:01.228562+00 34157 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mJ9oZShD8H6X9wPDO43vi4teyXU=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.230851+00 2025-12-17 14:30:01.230857+00 34158 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rPRwOUGjd0p_H8z7PFoKlDLKTI8=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.233061+00 2025-12-17 14:30:01.233066+00 34159 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2jkUSIk3GVikArRLSHFAvnVMBNU=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:30:01.235356+00 2025-12-17 14:30:01.23536+00 34160 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=1766068200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p9lG-s0xHHrDtht7faRASB6gdJo=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.392124+00 2025-12-17 14:40:00.392136+00 34161 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SFNYgYioYTqWfcCmts_FnkSm-1s=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.395699+00 2025-12-17 14:40:00.395707+00 34162 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:66JRN-8Q836-wssFC16iIiO5ZQ0=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.398365+00 2025-12-17 14:40:00.398371+00 34163 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hfWw11786e4ZdAIjZquQh6-xIIY=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.419471+00 2025-12-17 14:40:00.419475+00 34172 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WE9mjJtZTbKxe2RuPVmqszmR4C0=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.400676+00 2025-12-17 14:40:00.400681+00 34164 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IoU6sofVgoE3n-X3jAC4WfooZsY=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.403048+00 2025-12-17 14:40:00.403053+00 34165 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SSsQ8cm5DF1o2_e-M0_hQZ6oLgI=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.405724+00 2025-12-17 14:40:00.405729+00 34166 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6VrcB1qiYVlSHc5mezyBqXBA-_Q=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.408224+00 2025-12-17 14:40:00.408229+00 34167 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fXs-khNMMip84JhdV7aMLWHUmbU=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.410651+00 2025-12-17 14:40:00.410655+00 34168 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Qh9Mi8kdPpgec88lVUmVwNWxZU=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.412714+00 2025-12-17 14:40:00.412722+00 34169 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7gRgpkVlqYpNiPd0jrd2YE4PoRw=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.414823+00 2025-12-17 14:40:00.414827+00 34170 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WZENsps-sAqaP4uEXvc_Uu2qhuM=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.417187+00 2025-12-17 14:40:00.417192+00 34171 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nbw3wqDPDodcRM6v8BNj78N7X3A=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.421509+00 2025-12-17 14:40:00.421514+00 34173 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TPKxlEDKyzMWnp3od3GCYXdbWbM=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.424375+00 2025-12-17 14:40:00.424381+00 34174 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Nc1SE9Kazof08978HAOu_Cai0A=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.427709+00 2025-12-17 14:40:00.427717+00 34175 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8zmOcHCMi1MqNP6KYSgeV_k07Co=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.431538+00 2025-12-17 14:40:00.431544+00 34176 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mSqXCLF1L93CjyK5QMGC4Ouk0C8=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.434104+00 2025-12-17 14:40:00.434109+00 34177 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ifAcGkCHC3OA2tNCHXhjOUUb3Rg=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.436537+00 2025-12-17 14:40:00.436542+00 34178 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A6LsBf7lGsvMsiEDHW5UwhB7FFc=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.43898+00 2025-12-17 14:40:00.438986+00 34179 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-IqcHdAlKX-_Hyzs0nGbjVCQBv8=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.441351+00 2025-12-17 14:40:00.441356+00 34180 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nl2Z-TOv_gAeaIR1kkrzvvje5Y4=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.443904+00 2025-12-17 14:40:00.44391+00 34181 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xdZuyfDPyozvK_hTtm2FIGGoKXg=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.446738+00 2025-12-17 14:40:00.446743+00 34182 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2EM7aPLaBasREcjJM46Ax8DVO3s=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.449085+00 2025-12-17 14:40:00.44909+00 34183 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZqIdBGf094giBEQPFGPUW4M-kZw=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.451335+00 2025-12-17 14:40:00.451339+00 34184 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FEErbIt6ZRDzmrv_ZYvYh40oIkE=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.45356+00 2025-12-17 14:40:00.453567+00 34185 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FzZdIfKDFSGAW5OIgBfbFZzIfxc=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.455909+00 2025-12-17 14:40:00.455914+00 34186 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mtFadLSF0HiKdFwjKNpb8FAz10Y=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.458098+00 2025-12-17 14:40:00.458103+00 34187 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JipjvFY-uRu_QGPKGVtMyYkZNRY=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.461027+00 2025-12-17 14:40:00.461034+00 34188 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iRGEwM2DJIcC6ukAOiBB9DNMSnQ=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.463729+00 2025-12-17 14:40:00.463734+00 34189 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yS4Xfqu_yRSEyx8vJO966TFsI7c=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.466435+00 2025-12-17 14:40:00.46644+00 34190 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cOIM67pIOycoC4sCB5QTc7RVrkk=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.468705+00 2025-12-17 14:40:00.468709+00 34191 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w_awDLjoR3whW0yhwyYthi47yJk=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.470933+00 2025-12-17 14:40:00.470938+00 34192 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YwLlNldU53scAzDW4Htzt3fQBVM=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.473493+00 2025-12-17 14:40:00.473499+00 34193 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bgw9wK99ASoU6eaVYhumzFizFsU=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.476658+00 2025-12-17 14:40:00.476666+00 34194 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yM0YZDkjCvpgV4PeWtABDrM9pbE=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.479898+00 2025-12-17 14:40:00.479904+00 34195 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-L6TiJAPSX51FQwtcVHaobquwZ8=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.482828+00 2025-12-17 14:40:00.482833+00 34196 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qnvvMsaL8vibd53w2zHmZ3sKRIc=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.485415+00 2025-12-17 14:40:00.48542+00 34197 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qQja1A_XU700wbAv0N4lykN1QgI=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.488049+00 2025-12-17 14:40:00.488054+00 34198 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WD--F-slOGpr9MPlyW-SUbYHvf8=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.490621+00 2025-12-17 14:40:00.490626+00 34199 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-0tA7cHd63pFBkosO8PpP-_mqaE=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.493385+00 2025-12-17 14:40:00.49339+00 34200 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:maJYm7dFS5e3IqWBr3_TeFfoNgc=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.49578+00 2025-12-17 14:40:00.495785+00 34201 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lfOwjDuporMRBeVp8oplirwwFgg=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.498099+00 2025-12-17 14:40:00.498103+00 34202 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ovkqx3Ewv_uq1kQMKKoK9gyHwA=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.50012+00 2025-12-17 14:40:00.500124+00 34203 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ORWU-8VnrOW_AsQbKjmWLBrZQ1w=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.502135+00 2025-12-17 14:40:00.502139+00 34204 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tbrOnV9Tlbo0M3qVh7r1gmddNXs=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.50421+00 2025-12-17 14:40:00.504215+00 34205 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WsJ_vKrMAmDIBw59x8LkkcR3va0=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.506755+00 2025-12-17 14:40:00.50676+00 34206 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZRHguyKA-NcwqZ5dW7UF4BDWcCk=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.509246+00 2025-12-17 14:40:00.509251+00 34207 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GtaYFrgDyZFEFRy-Va33ULSt3DI=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.511852+00 2025-12-17 14:40:00.511858+00 34208 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OWeju5iiy1_hqFxFQCoD8plsRPg=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.51469+00 2025-12-17 14:40:00.514696+00 34209 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6qPAqqIlrHQR1tbnIJYxIENwdnw=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.517361+00 2025-12-17 14:40:00.517365+00 34210 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pyMcSM69FbRIgdYK5OcLaPYl91U=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.519732+00 2025-12-17 14:40:00.519736+00 34211 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:25R50wzbF01VapLZemtLE_6xjek=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.522015+00 2025-12-17 14:40:00.522019+00 34212 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3CDMizjbxlfbTsuP-KkMSYilKsM=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.524371+00 2025-12-17 14:40:00.524375+00 34213 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I7f0BAzo9x_NfDDCQn1alQLhu7A=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.526894+00 2025-12-17 14:40:00.5269+00 34214 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zh24wVEA32M2TZ4XtLi9mVYmhmg=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.529212+00 2025-12-17 14:40:00.529216+00 34215 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vg569aE2DYeCoVzK84aQhb5FGOY=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.531511+00 2025-12-17 14:40:00.531516+00 34216 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KOOVNKJzGOeptND6RKO6EJMxSN0=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.552818+00 2025-12-17 14:40:00.552823+00 34225 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WhDHYwoNtK2LyvpRjDq5n-P0F7Q=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.533496+00 2025-12-17 14:40:00.5335+00 34217 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cQvpnxr1WeWgwULDpT-c7jG6_X8=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.535516+00 2025-12-17 14:40:00.53552+00 34218 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YcVtkIKpRuVF84sjY3CdOaEE-VM=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.537525+00 2025-12-17 14:40:00.537529+00 34219 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:27Q9CeWpYXkQ3x48oG5J9h7o9oo=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.539843+00 2025-12-17 14:40:00.539847+00 34220 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yjcYnkAP9C5x_utClUjC8QbTOa8=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.542387+00 2025-12-17 14:40:00.542392+00 34221 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ylNWEnxg_uLXWbWfCLY7CGsze58=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.545302+00 2025-12-17 14:40:00.545307+00 34222 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gU4F3CjkQqFyPahhRZ6r3oZdNV0=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.548033+00 2025-12-17 14:40:00.548038+00 34223 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J-65CVoEPuW3m2YnWA-WItEAUEU=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.550626+00 2025-12-17 14:40:00.55063+00 34224 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ga5UFoJBBJn4zXp2MOiGtGO-wn0=", "createTime": "2024-08-15 14:57:14"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.555195+00 2025-12-17 14:40:00.555199+00 34226 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:requyXy0PiG9lLZmaIAJKRU7iKM=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.558744+00 2025-12-17 14:40:00.558748+00 34227 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V9DTNI3zYGN98BGsIhdywaztbfE=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.561125+00 2025-12-17 14:40:00.56113+00 34228 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FRgMqmofvS9FZrrxg4yWd5DFNEQ=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.563472+00 2025-12-17 14:40:00.563477+00 34229 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tiv-RpGnLuFY7d0jFQ7bNHrvsW0=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.566005+00 2025-12-17 14:40:00.56601+00 34230 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L6tqtZIV_kP4goB71NnwFh8pRdw=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.568393+00 2025-12-17 14:40:00.568399+00 34231 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:swfepTeSCthAlu-pAxWIbU9HNuA=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.57081+00 2025-12-17 14:40:00.570815+00 34232 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:arGb3lecJbhT2z1Kl_XuY_QyAtE=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.573012+00 2025-12-17 14:40:00.573017+00 34233 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mHu5CRLI6L1TBDGcKZYDl06-VQE=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.575419+00 2025-12-17 14:40:00.575424+00 34234 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KIetktRzvteivw7d-9soc0eksIk=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.577822+00 2025-12-17 14:40:00.577828+00 34235 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DyqOuRLc0SO14kLqUu8ARRdbd8s=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.57996+00 2025-12-17 14:40:00.579964+00 34236 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2O3LnvwpFU-y_kJrfhOoh_xJSBw=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.582252+00 2025-12-17 14:40:00.582257+00 34237 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pcMP5GMSwKvqvqvyrtMBmIjpZpE=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.584783+00 2025-12-17 14:40:00.584787+00 34238 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bFghA_6q0Jz7xFceNjvxrmNIS4A=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.586857+00 2025-12-17 14:40:00.586862+00 34239 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3aozUziEcrCsAi9vfnw1XDj2B0c=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.589063+00 2025-12-17 14:40:00.589069+00 34240 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uSEV8Q10MiaB4fFQyL18ANYFSXU=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.591556+00 2025-12-17 14:40:00.591562+00 34241 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0-q44oP8FcpCr6KG0hmeNxk4ARg=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.594712+00 2025-12-17 14:40:00.594719+00 34242 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jDdjTx94aQz2TgWm204E8rwNU6w=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.597622+00 2025-12-17 14:40:00.597628+00 34243 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xN8nhfNUx2X6n8VltQ9fYKPo1f8=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.600057+00 2025-12-17 14:40:00.600062+00 34244 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M56TjqMeeFkCIpTpQ5Lfb8dEFWo=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.602366+00 2025-12-17 14:40:00.602371+00 34245 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4nfjm4Ye31FHrZIf8MKgt9_3_h0=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.604975+00 2025-12-17 14:40:00.60498+00 34246 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TC_C17g_YZn_tXHIyZp-BSZgYXg=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.607104+00 2025-12-17 14:40:00.607108+00 34247 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CFlm8lwY0YFGh-IZif-05_2wWDU=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.609241+00 2025-12-17 14:40:00.609247+00 34248 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QZeJRbMVDRpsvCwRE9BPQeDqOH0=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.612211+00 2025-12-17 14:40:00.612217+00 34249 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JvGoCiEBB6mh2RtVX1cNhRZwjLw=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.615166+00 2025-12-17 14:40:00.615172+00 34250 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f1-N2B8gx9bsOVJGM7lY4PJFmf4=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.617851+00 2025-12-17 14:40:00.617857+00 34251 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y5Yo7O9zbd_KokrGmLyOXTsFHe8=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.620322+00 2025-12-17 14:40:00.620326+00 34252 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KPl6K6RgesHkdmlwrghx5u8zEjo=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.62266+00 2025-12-17 14:40:00.622665+00 34253 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DXok_Vkelsz8ojK8f-m0RbnX8Lg=", "createTime": "2024-08-15 14:57:17"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.625253+00 2025-12-17 14:40:00.625257+00 34254 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YJaODDyaZTBvWsIfs-_S-C9zohM=", "createTime": "2024-08-15 14:57:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.627622+00 2025-12-17 14:40:00.627626+00 34255 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cxgj4i5UmPnDc4ve98jd9OMNydw=", "createTime": "2024-08-15 14:57:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.629903+00 2025-12-17 14:40:00.629908+00 34256 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VsMKpZT25dKCzujikpqOngisqwA=", "createTime": "2024-08-15 14:57:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.632125+00 2025-12-17 14:40:00.63213+00 34257 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uvnDPOH2RB3V_d-_LQpqls2-83Y=", "createTime": "2024-08-15 14:57:18"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.636179+00 2025-12-17 14:40:00.636184+00 34259 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S9QbtspaQ3PODfAYheq5kNJ8_gc=", "createTime": "2024-08-15 14:57:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.638193+00 2025-12-17 14:40:00.638197+00 34260 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=1766068799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MogwsMY-mymf-G_jP1So0jW6tGU=", "createTime": "2024-08-15 14:57:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.634159+00 2025-12-17 14:40:00.634164+00 34258 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4JcXjOUt47Z7RYab-zugdBxHMZE=", "createTime": "2024-08-15 14:57:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.988735+00 2025-12-17 14:40:00.988744+00 34261 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xoqSr_SnxAMfYGa8S1g_8LFQOEk=", "createTime": "2024-08-15 14:57:19"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.361614+00 2025-12-17 17:00:00.361622+00 36951 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tiaKx_d6tImqGXuN02VU4_t9bCM=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.993916+00 2025-12-17 14:40:00.993922+00 34262 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zW5Tr5-OdKv3U-vIfh2V7G98fYQ=", "createTime": "2024-08-15 14:57:19"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.996334+00 2025-12-17 14:40:00.996339+00 34263 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Kizab8VHWEr7rUcJj06VYOhWk0=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:00.998875+00 2025-12-17 14:40:00.99888+00 34264 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6EtiX0eEPO3OCInfAhN_HAbgTyw=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.001573+00 2025-12-17 14:40:01.001578+00 34265 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WQM2Me8cjTClev_pGaD8NySEVL4=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.003687+00 2025-12-17 14:40:01.003691+00 34266 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3xmV2L0H4oaO8KnuLeLXdVxur5s=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.006026+00 2025-12-17 14:40:01.006031+00 34267 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xM8CC26cyM9_dVqqm8dOpWy-qq0=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.008361+00 2025-12-17 14:40:01.008365+00 34268 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pKQlYflflis5VTNOCuR_w2qaoxY=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.010772+00 2025-12-17 14:40:01.010777+00 34269 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eaS9g4zGhikozPWN96xia6pZzT8=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.01288+00 2025-12-17 14:40:01.012885+00 34270 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oAXb3qtgHuD3WCYNB3HEh2LtWjQ=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.015537+00 2025-12-17 14:40:01.015542+00 34271 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ev2FUT1tG3udzw_5dxIGVjDbK2c=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.01798+00 2025-12-17 14:40:01.017984+00 34272 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g9CXuc2wV0K2GddRXIBLtC07FMs=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.020528+00 2025-12-17 14:40:01.020532+00 34273 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OuedD5wzcze3XY_fDPe0ccXAlXU=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.022746+00 2025-12-17 14:40:01.02275+00 34274 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sW2glaNktqsCowH9yruQspgx4bg=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.024773+00 2025-12-17 14:40:01.024778+00 34275 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lixXce1WMUyaXVxoVkRh5Ibr11U=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.027323+00 2025-12-17 14:40:01.027329+00 34276 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VD0iy_q0NrjcWgvfgnhiuQjlUc4=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.030006+00 2025-12-17 14:40:01.030012+00 34277 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8WBHLV7Y_j6qtxAsMbripuzkxBA=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.032327+00 2025-12-17 14:40:01.032332+00 34278 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iztY_E5VqyZRdB0CPFvJmI4RIsI=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.034588+00 2025-12-17 14:40:01.034592+00 34279 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7AeYbcuGEyRI2RytL7LY0clQ3Dc=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.036603+00 2025-12-17 14:40:01.036607+00 34280 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r4_-PhobK3FPmj35O_hVKUx8-VM=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.039217+00 2025-12-17 14:40:01.039223+00 34281 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yiNgBFD7mKDglH1zInYdSrww8FY=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.041581+00 2025-12-17 14:40:01.041586+00 34282 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OAakjAp__c9ITGlTkZi6aI9uzJw=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.043915+00 2025-12-17 14:40:01.04392+00 34283 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xqIHKIlJVZSdaiwTP2plmvYKRPo=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.04605+00 2025-12-17 14:40:01.046056+00 34284 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8L8xwUZumZiiKiqlGueSMfWRv7s=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.048709+00 2025-12-17 14:40:01.048715+00 34285 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dhEylXPTFIzPFZLKoVE2qV0DXgY=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.051071+00 2025-12-17 14:40:01.051075+00 34286 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mJjocuTl6jAsxaDQ4i1LR9pa3SQ=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.053094+00 2025-12-17 14:40:01.053099+00 34287 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G-B6V2vZdIP6IDUZHpPUy4z0I2I=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.055253+00 2025-12-17 14:40:01.055258+00 34288 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3yANjd0lAB0tlcWgMe5nZQum_NU=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.057941+00 2025-12-17 14:40:01.057946+00 34289 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rzHP9F_PXVfIPDWfJp9gCq_qXB0=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.060531+00 2025-12-17 14:40:01.060536+00 34290 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZCIJijhiZClNGLRi7QXb-JvzC78=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.063202+00 2025-12-17 14:40:01.063208+00 34291 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b3xj6vN4yMIJkC84u4fymNczjZY=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.06567+00 2025-12-17 14:40:01.065674+00 34292 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z5xAZQPaLt8QqUrO3inEV76zsGY=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.067949+00 2025-12-17 14:40:01.067954+00 34293 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PWWbvbkkAEF6icoIduahaLXL7H0=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.087276+00 2025-12-17 14:40:01.087281+00 34302 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OROvy2eK9hMZ2znv-HVl5TY7ljU=", "createTime": "2024-08-15 14:57:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.069949+00 2025-12-17 14:40:01.069954+00 34294 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bZxbBaNwFC6aFS4DOdzqcNgMd2o=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.071972+00 2025-12-17 14:40:01.071977+00 34295 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3FU57VP3JYHACPA6UGC66nWSVDc=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.073968+00 2025-12-17 14:40:01.073973+00 34296 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o55szXkd9Bn7t6Su2ZzuKQkjqMA=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.07624+00 2025-12-17 14:40:01.076245+00 34297 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zNk740cDWRKIeQIAbMYGL-U_34I=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.07835+00 2025-12-17 14:40:01.078354+00 34298 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8J6707Wa1eaCQcBvhdGInFNb7uM=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.080786+00 2025-12-17 14:40:01.08079+00 34299 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ppJALJdD9mPlfmp1b7D__K0QBT4=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.082936+00 2025-12-17 14:40:01.08294+00 34300 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-j8xPoPS4O4wv4E7oUgXFqLCBV8=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.08523+00 2025-12-17 14:40:01.085235+00 34301 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fVzBQPaV2LlIxxFjzU3ntqm-B90=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.089408+00 2025-12-17 14:40:01.089413+00 34303 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DJEsqZn4hEPmNSEOu4v5Rr7fHvg=", "createTime": "2024-08-15 14:57:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.091939+00 2025-12-17 14:40:01.091945+00 34304 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CNyE5eyXMHkzqXYpvKm5wPnlvuI=", "createTime": "2024-08-15 14:57:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.095173+00 2025-12-17 14:40:01.095178+00 34305 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2fbIvfZCkdHyMlCxv29_7pXavT4=", "createTime": "2024-08-15 14:57:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.097964+00 2025-12-17 14:40:01.097969+00 34306 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Yu3DawFfNJAKfSRxS514HWv7hM=", "createTime": "2024-08-15 14:57:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.100422+00 2025-12-17 14:40:01.100426+00 34307 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wOxDIIve0wBkiiSudL-viC3dGUE=", "createTime": "2024-08-15 14:57:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.102675+00 2025-12-17 14:40:01.10268+00 34308 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:45vgihpU6A3tthK0D6I_7GRaC9w=", "createTime": "2024-08-15 14:57:23"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.105103+00 2025-12-17 14:40:01.105108+00 34309 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XBzPy2NBRjII6y3pi3_BDKC8BRU=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.107482+00 2025-12-17 14:40:01.107487+00 34310 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hv_6AKi5QmX7_r9pJkUjHoZq2_4=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.109612+00 2025-12-17 14:40:01.109617+00 34311 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VgbZzGm8QK67t_VIfwZlEJZyC9Y=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.112196+00 2025-12-17 14:40:01.112201+00 34312 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zZS75UX2YcPvrr-h_hnwiw2jPk8=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.114945+00 2025-12-17 14:40:01.11495+00 34313 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:csgkowehxjlQJ0x4txXukd32NRQ=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.11728+00 2025-12-17 14:40:01.117285+00 34314 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w1WN1VR0HuQqAkZybQf-KmsPGCs=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.119429+00 2025-12-17 14:40:01.119433+00 34315 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iHElrUxuirZg7SWVAwaq_eE68Ug=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.121771+00 2025-12-17 14:40:01.121775+00 34316 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CeU-tsIfun550hdRya5B0KA3GgI=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.124482+00 2025-12-17 14:40:01.124487+00 34317 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-CykZvGLErpH1TNB1mgK-Zy5nFY=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.127435+00 2025-12-17 14:40:01.12744+00 34318 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mhykMIzgn6BOfyFYmnP1aw1a_Zw=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.130142+00 2025-12-17 14:40:01.130146+00 34319 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NLgGZx8M9lQNZGOzp3MfH9I8wNs=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.132735+00 2025-12-17 14:40:01.132739+00 34320 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-fFYHmyUmkDpO665S4BqnYqdks=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.135282+00 2025-12-17 14:40:01.135287+00 34321 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZyaHoR8g37qnlEIlHx1mI2RY2uk=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.137808+00 2025-12-17 14:40:01.137812+00 34322 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pkHo7qUZQIA4dH4dhK8vWLOi9nQ=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.140496+00 2025-12-17 14:40:01.140501+00 34323 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CJ9ZxPSGg9FTnO78ZyZjL2gRZtQ=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.143113+00 2025-12-17 14:40:01.143119+00 34324 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EffH0W7WvwkBFoorMEoB9Bf1xNk=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.145733+00 2025-12-17 14:40:01.145738+00 34325 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FKxhhxkqg78pzBC6q8JxMden0Pw=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.148287+00 2025-12-17 14:40:01.148292+00 34326 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DAZroMUJAHPJJBWeZ4AQoqS_VZA=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.150784+00 2025-12-17 14:40:01.150789+00 34327 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iu4clbeEYfepkSBLXihdPl4iSdU=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.153255+00 2025-12-17 14:40:01.153261+00 34328 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hOC-rhVGb_2u7xsLpLJb3y9RuYc=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.156095+00 2025-12-17 14:40:01.1561+00 34329 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WS8oLnvPGtmcJ-qEojT3hDWggBw=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.158692+00 2025-12-17 14:40:01.158698+00 34330 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0dGMZJsSdVEc5xUHRf6reizKBVg=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.161201+00 2025-12-17 14:40:01.161206+00 34331 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b7LhGkvaiHRasG1l92vcbl73k24=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.163746+00 2025-12-17 14:40:01.163752+00 34332 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D79_HQ7jMTQUVIVOJXUMhX0eOtI=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.166241+00 2025-12-17 14:40:01.166247+00 34333 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HIt4QsZrdk2lgJHlYPBedf1y5SE=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.168668+00 2025-12-17 14:40:01.168673+00 34334 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YsNbUnV3y7Rl1VyTVjEBp_aVZkc=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.171153+00 2025-12-17 14:40:01.171158+00 34335 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xWU8_gJTeBfTHggYf3Gwwv9OVc8=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.173737+00 2025-12-17 14:40:01.173742+00 34336 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uzv07_Mr5_5bl06U4-vZb2yLw3M=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.17655+00 2025-12-17 14:40:01.176555+00 34337 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M-97zDZKYiylOebZw4AFpr1yi_U=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.179274+00 2025-12-17 14:40:01.17928+00 34338 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3w9jhfAX0qICoehEkxYH8U6rgSo=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.182119+00 2025-12-17 14:40:01.182124+00 34339 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M4uHcpY0i05Glt10TJ8Rh37Ont4=", "createTime": "2024-08-15 14:57:26"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.184628+00 2025-12-17 14:40:01.184634+00 34340 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hYASCbk22rLkjVrwlOKNmatZ9xQ=", "createTime": "2024-08-15 14:57:26"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.187101+00 2025-12-17 14:40:01.187106+00 34341 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qrqdBlr2GJjZ4x2kauS0z0lka5g=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.189889+00 2025-12-17 14:40:01.189895+00 34342 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KUoYZXMtFEfQtEngkR2n5-J8Q00=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.192528+00 2025-12-17 14:40:01.192534+00 34343 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b_c7N-HoZASKZ1A8V6mGjqLyqBg=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.195177+00 2025-12-17 14:40:01.195182+00 34344 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sBUK1_4rC6LQn2B8xp0hc86tj7A=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.197994+00 2025-12-17 14:40:01.197999+00 34345 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4QxIf8stdJOst_UGgz-jDykUdJM=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.200251+00 2025-12-17 14:40:01.200256+00 34346 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Ck4zLcUhbp2pieMOutiRePQsWA=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.202981+00 2025-12-17 14:40:01.202987+00 34347 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e4hrehz9nK-75bxS3vy8JB1N4S4=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.205456+00 2025-12-17 14:40:01.205461+00 34348 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c2LFLX4HNM_m5uJ1Q_EO7wCruMo=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.207812+00 2025-12-17 14:40:01.207817+00 34349 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IqEbJzyghyxtjtSXBoZz6mEmqjU=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.210368+00 2025-12-17 14:40:01.210373+00 34350 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wEmsswtLr25SLoTOQ-zsj9HDGy0=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.212776+00 2025-12-17 14:40:01.21278+00 34351 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YsESFsQPH4NBhKJSLhCp1XBaLow=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.215135+00 2025-12-17 14:40:01.21514+00 34352 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BpxtF4nzYiUQzug3fkeyoztrmnw=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.217507+00 2025-12-17 14:40:01.217512+00 34353 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8xgWCDKJjjxEsMnRDkGEdo7ou3Y=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.219794+00 2025-12-17 14:40:01.219798+00 34354 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p4W7YRcXdOpgqfKcWFLSewdnoYc=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.222104+00 2025-12-17 14:40:01.222109+00 34355 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nnx74mJOqdnMRHORmw19vOzbOkI=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.224226+00 2025-12-17 14:40:01.22423+00 34356 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NCovOF9kZIJ4qNQXHKMI7l5egAw=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.226351+00 2025-12-17 14:40:01.226357+00 34357 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0YVJ-oaT5Z2R9ezc4KXtID-Ncx4=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:40:01.228821+00 2025-12-17 14:40:01.228826+00 34358 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=1766068800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2tTGT2BI_gTfujecqi9A7Daz9M0=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.357383+00 2025-12-17 14:50:00.357391+00 34359 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wcS22bUQ8VXZId_kW-MkYuYw-lA=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.360755+00 2025-12-17 14:50:00.36076+00 34360 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xxTJxrCoiLXe57_-HKbc2ePEJ0k=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.363231+00 2025-12-17 14:50:00.363236+00 34361 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KdOTD1FQ5UmkK7w59qeGXOZ9raU=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.365656+00 2025-12-17 14:50:00.36566+00 34362 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M9vxwJpzPnMi9ZQEvNgjfNrt2jQ=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.368114+00 2025-12-17 14:50:00.368118+00 34363 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u8iNle--yNCUZN_9yOQb0u0uo-g=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.370471+00 2025-12-17 14:50:00.370475+00 34364 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9clZvKbvofA7DqG6jRUA2IK6kvg=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.372892+00 2025-12-17 14:50:00.372897+00 34365 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v1InQH_OiqAR2lHhwBYJNmMEr_A=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.375275+00 2025-12-17 14:50:00.37528+00 34366 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZDwAnuY56GtmcHXJALVF1KVuZkw=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.37759+00 2025-12-17 14:50:00.377594+00 34367 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:avg28UzTyRMxHZt3ZhCzvUozaTs=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.379638+00 2025-12-17 14:50:00.379642+00 34368 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yo8cnkQ94C5CUNREc0iOwFW1WHM=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.382171+00 2025-12-17 14:50:00.382177+00 34369 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6CQ-jYYFDCpNsr4eUybBbR4E87I=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.384799+00 2025-12-17 14:50:00.384804+00 34370 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9uVdrUvkm3svkYtHNszXjWn7exk=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.387343+00 2025-12-17 14:50:00.38735+00 34371 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FjV2QoifJH1EtGnHnPsv2Tt2o0c=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.391098+00 2025-12-17 14:50:00.391104+00 34372 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WksUG6qYZKt50zs_txB8slqz3Fk=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.394324+00 2025-12-17 14:50:00.394329+00 34373 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kU09gvwoz847BqH9wYo2DHGrJ_A=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.397191+00 2025-12-17 14:50:00.397196+00 34374 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1QwpuDtjWdP7hb8vzf2hS0nFkfQ=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.39993+00 2025-12-17 14:50:00.399934+00 34375 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fsp2Rmn3s2_SgoYQsRkdxzwAJPQ=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.402315+00 2025-12-17 14:50:00.402319+00 34376 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Z5LA5eABP8glr2m9nQwr4XWbNk=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.404894+00 2025-12-17 14:50:00.404899+00 34377 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mdywgi9CLE5DHAr7FUNY62KsgDI=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.407604+00 2025-12-17 14:50:00.407609+00 34378 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gWJWIYn2Akupl-4iH_8UN3JCbc8=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.410468+00 2025-12-17 14:50:00.410473+00 34379 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hSqCKO6hpAkclw3rLMxkh7sQJI4=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.413244+00 2025-12-17 14:50:00.413248+00 34380 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HiTxIcD4DaHqDJLvTtVb6Z12dl8=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.416098+00 2025-12-17 14:50:00.416104+00 34381 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GcMlJ5Sfm5-3Ci6ZRKgydHzf7_U=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.419085+00 2025-12-17 14:50:00.419091+00 34382 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tojewNPg3Nw3FfFcXWGzq5KNfwk=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.42216+00 2025-12-17 14:50:00.422166+00 34383 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:baw8wPIZqBpWbW_0JSY82qNxMiI=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.425616+00 2025-12-17 14:50:00.425623+00 34384 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KPKutKxQand4WXHNAOAWkxNydRU=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.428824+00 2025-12-17 14:50:00.42883+00 34385 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dmEjJUkRwVNQjMQVVFPQVVgHD3A=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.431882+00 2025-12-17 14:50:00.431888+00 34386 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zfCnxAoQd7BvL4RxKPWxanTdQTc=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.434401+00 2025-12-17 14:50:00.434405+00 34387 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:irkEuMBUiCC4kJUhAJqAxIw2hes=", "createTime": "2024-08-15 14:57:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.43683+00 2025-12-17 14:50:00.436835+00 34388 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pPEJ2vRVRa5CE00hHrAEBgqTQdo=", "createTime": "2024-08-15 14:57:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.439294+00 2025-12-17 14:50:00.439301+00 34389 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pSBilII8aTOfDj74u-juxVE-XxU=", "createTime": "2024-08-15 14:57:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.442522+00 2025-12-17 14:50:00.442528+00 34390 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1h2hJEDktI4W1D1lohq09aKu8CQ=", "createTime": "2024-08-15 14:57:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.445422+00 2025-12-17 14:50:00.445428+00 34391 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CG_CdlzJe_fwrGeYTszgL7IJS7M=", "createTime": "2024-08-15 14:57:30"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.448304+00 2025-12-17 14:50:00.44831+00 34392 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AmHiNbaHAhQt50Wkfbm_87dPI1Q=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.450824+00 2025-12-17 14:50:00.45083+00 34393 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8F2N_3Xo0gjXTjWbTkxhCvjxyMg=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.453182+00 2025-12-17 14:50:00.453187+00 34394 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-9KJh5QRvyCJDRsiHYhh0kbkGqI=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.455248+00 2025-12-17 14:50:00.455252+00 34395 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LUvtXzYZSsAIUqGq4rKEQ6hgPi4=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.457358+00 2025-12-17 14:50:00.457363+00 34396 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vwLWIQQcEZTd3kZjR2oNEmI3Jps=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.459418+00 2025-12-17 14:50:00.459423+00 34397 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VC9Md-C1XdCHhEhdNWQlFUzmM8U=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.461791+00 2025-12-17 14:50:00.461797+00 34398 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QWumY00Ama1myTiKhwds91r3o6E=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.464264+00 2025-12-17 14:50:00.46427+00 34399 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XxHGN3Dqq7PrstWgDUlDCG5YqGA=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.466773+00 2025-12-17 14:50:00.466777+00 34400 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vPUGp-qaJ2SJtxJ1L2QR7QTrtX0=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.469292+00 2025-12-17 14:50:00.469297+00 34401 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SAWtfBCuzrN54F1hjKWFu7JmeXg=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.471635+00 2025-12-17 14:50:00.47164+00 34402 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bGmHl43CtGruvkAoTr6FVDxox1o=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.474974+00 2025-12-17 14:50:00.47498+00 34403 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ycrf-biVj-exyND8z-L9prCDfl0=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.478211+00 2025-12-17 14:50:00.478218+00 34404 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eokICyfH3Sam1Pxl9-D71EubldU=", "createTime": "2024-08-15 14:57:33"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.48076+00 2025-12-17 14:50:00.480765+00 34405 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_r4m4ZjB3OWLSZbDMaWuHGf4Gjg=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.483406+00 2025-12-17 14:50:00.483412+00 34406 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ex3bVWJ-rGN4rwt50ZNRK5rk-A=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.485842+00 2025-12-17 14:50:00.485847+00 34407 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CpU9hg1zaOdG_LP-L-XI2I42Z4c=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.488139+00 2025-12-17 14:50:00.488144+00 34408 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3jxNABrIZcCu8ICoOQMcxt3xDfQ=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.490684+00 2025-12-17 14:50:00.490689+00 34409 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7rfNDdl31tQPHMhify9Go9qzeQU=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.49314+00 2025-12-17 14:50:00.493145+00 34410 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SsdKVe8KN0Y0tfUhCB4c47ArrxI=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.495369+00 2025-12-17 14:50:00.495373+00 34411 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aWU87ovqUenajQNFkJl-KlLvpG4=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.497348+00 2025-12-17 14:50:00.497352+00 34412 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zI59TDCKhtxgK41jdvY3ID1DMPE=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.499762+00 2025-12-17 14:50:00.499767+00 34413 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vKR_57aJyPGMnfDLveB9N7FlZGQ=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.501887+00 2025-12-17 14:50:00.501892+00 34414 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kSiDWTRqxEPKjbo1oLPtbbqSV4w=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.504199+00 2025-12-17 14:50:00.504205+00 34415 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lwVaBFMUC4pwHNvSghI0fk-3qmY=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.506808+00 2025-12-17 14:50:00.506814+00 34416 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dM9miBTBwGndUm6upM42XT160cU=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.509153+00 2025-12-17 14:50:00.509158+00 34417 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yZAMiemZydbpYABltiTGVRQYmi8=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.511425+00 2025-12-17 14:50:00.51143+00 34418 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ZtDeIuVJkp0OePXAuIl0sfJ0vw=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.513667+00 2025-12-17 14:50:00.513671+00 34419 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Hysu_eza5tgRYU7bGHJci7Q_kE=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.515859+00 2025-12-17 14:50:00.515864+00 34420 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kQ4JcgubO2ujKGnGQY3u2jD4lkE=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.518039+00 2025-12-17 14:50:00.518044+00 34421 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xfTH-bZtaizC_SD5ImwFrx3ZgaM=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.520402+00 2025-12-17 14:50:00.520407+00 34422 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dIMuSoFZpxfSUztGHq0poGgH6qA=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.522929+00 2025-12-17 14:50:00.522934+00 34423 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CsBavtQd7EkTGth5_cpVGwl-PkE=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.525124+00 2025-12-17 14:50:00.525129+00 34424 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7khKDH9bnIuBckzfp2-9aTTXUZo=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.52745+00 2025-12-17 14:50:00.527455+00 34425 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gnw7OTeXQrpSDMt9N4FI-HapD3c=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.529677+00 2025-12-17 14:50:00.529681+00 34426 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ae5QV_adKmKbHjSdls5R0oubhg=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.531739+00 2025-12-17 14:50:00.531744+00 34427 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7T2gvn4DVtxpCeueFgCynjWB2Ag=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.533874+00 2025-12-17 14:50:00.533879+00 34428 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_XBGZ-ZaOna3FAf9VZV3oohpKrk=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.536049+00 2025-12-17 14:50:00.536054+00 34429 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t9xGUB2Oz--rSSS425KqALmYI9U=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.538499+00 2025-12-17 14:50:00.538505+00 34430 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1MIgwn1g5CEeHy5Xv_2oJIkR20A=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.54092+00 2025-12-17 14:50:00.540925+00 34431 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XqqGIBjyODIuMm31KRspYGdLI3c=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.543197+00 2025-12-17 14:50:00.543202+00 34432 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yMNkPDtLEyPJlYIrJzFyeSBh6fQ=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.545819+00 2025-12-17 14:50:00.545826+00 34433 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Yowvyr10DoV4v_YDo7no3GtnGE=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.549338+00 2025-12-17 14:50:00.549344+00 34434 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mpNOZG552pMCzEI7CjHBwq6REw0=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.552467+00 2025-12-17 14:50:00.552474+00 34435 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NOfM--g1ldYvL8SPFGj-TQeTc0M=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.555883+00 2025-12-17 14:50:00.555889+00 34436 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5owmxNQ4RD9eXMsl9sO4W7dz4zA=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.559296+00 2025-12-17 14:50:00.559304+00 34437 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CFQ_lec-sF84SYlNGswReMnqbTw=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.56227+00 2025-12-17 14:50:00.562275+00 34438 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jmmUneB1DKtGHrL6bP2KqqsAn9E=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.564758+00 2025-12-17 14:50:00.564764+00 34439 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GjFx5vTlFCB4Jv0gAahwMQuWy-g=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.56718+00 2025-12-17 14:50:00.567185+00 34440 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y86UrzWiL1KU6aD5zaxF-yjuh-A=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.578452+00 2025-12-17 14:50:00.578457+00 34445 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cqzBinURPt7I0oDWQxsF5CVaPxk=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.569289+00 2025-12-17 14:50:00.569294+00 34441 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PzfcG9MNikqby21CqSv8KKyxLSg=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.571396+00 2025-12-17 14:50:00.571401+00 34442 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gRTjo0ECfvB5hhxS5GDJs7AuPoM=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.573753+00 2025-12-17 14:50:00.573758+00 34443 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xKDhIN9AHdVdQfEe1-RndxfVeqc=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.576061+00 2025-12-17 14:50:00.576067+00 34444 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g9I_LGclgXLFboOo1iCR_9rMQlo=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.580976+00 2025-12-17 14:50:00.580981+00 34446 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fzxiJh2HY1eofH77k3arPQJBCTs=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.583848+00 2025-12-17 14:50:00.583853+00 34447 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HIOf_q3DhJxd1mQwe1jNUKzacoQ=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.586432+00 2025-12-17 14:50:00.586437+00 34448 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OSMahW2bVtjibRQWHyiiW4rRWDw=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.588683+00 2025-12-17 14:50:00.588688+00 34449 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GEFD3EvFpnxmQEHJRusWRCg5im0=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.591233+00 2025-12-17 14:50:00.591238+00 34450 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pNhiXqaD2_4Q6X8z3bEmjPbK_NY=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.593812+00 2025-12-17 14:50:00.593817+00 34451 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OtbWHQhsqPNzeVxx46vHBaAIOlI=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.596293+00 2025-12-17 14:50:00.596298+00 34452 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OhhilAVC4--bKVp6QxlwukduPcg=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.59865+00 2025-12-17 14:50:00.598656+00 34453 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J2cpYzmmtjGTjRiaGEF6CjLTdkc=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.601219+00 2025-12-17 14:50:00.601224+00 34454 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:enIeXbOZsuRzebG67WhdQn0vweQ=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.603747+00 2025-12-17 14:50:00.603752+00 34455 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RK1EKjEVBDGTHCFI5Zc_Hg4Oqdg=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.606314+00 2025-12-17 14:50:00.60632+00 34456 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZtmjtDUds9yB_80rASn063pJ99I=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.608856+00 2025-12-17 14:50:00.608862+00 34457 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r3D_i0IsFZEv4472WKrXHV_vsHw=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:00.611395+00 2025-12-17 14:50:00.6114+00 34458 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=1766069399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8nQPlOaRAhLcNXDBe6YQrzRyue4=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.001292+00 2025-12-17 14:50:01.001301+00 34459 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mSX0iTLu15G3S-5ipBh-81fUTWU=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.004977+00 2025-12-17 14:50:01.004984+00 34460 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gk9Ncsrp0uhLCnfcBEDQYQkEvA0=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.007768+00 2025-12-17 14:50:01.007774+00 34461 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TQihngerVJzrgankyme5pyIzSoA=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.010218+00 2025-12-17 14:50:01.010223+00 34462 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ArjjN6vKsAaaGHY50krqsSzKDe0=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.012541+00 2025-12-17 14:50:01.012545+00 34463 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ugGJNN545VZ5BkEof4EZDqyrdWo=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.014626+00 2025-12-17 14:50:01.01463+00 34464 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w_MYnNkUZZILOLkCFfHYkaDRexM=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.016781+00 2025-12-17 14:50:01.016786+00 34465 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KG9ZBj4v6o2_xboZKS_fDx2EzXw=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.019156+00 2025-12-17 14:50:01.01916+00 34466 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IxMBwkXW8Mx3VhT_YLFyW8fvkng=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.021512+00 2025-12-17 14:50:01.021517+00 34467 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s6xcCys-1JkLLzt75QPwNhUcwFs=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.023813+00 2025-12-17 14:50:01.023818+00 34468 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B1zZCAkiwuqEjIfIh38JPrpuqhU=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.026821+00 2025-12-17 14:50:01.026828+00 34469 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PqITLt7y3G_GJQSrTI5RlwRx3xI=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.029883+00 2025-12-17 14:50:01.029889+00 34470 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tbJ4W4wZ28wy0pIkLv8DfrihYro=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.032566+00 2025-12-17 14:50:01.032572+00 34471 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VklUR9EldHlTVENZDq3tPPycH_k=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.034942+00 2025-12-17 14:50:01.034947+00 34472 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KMt1zRC1Lkx79ZGqJFzKOWLhfGc=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.037512+00 2025-12-17 14:50:01.037517+00 34473 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2NHl70FxFhPsOMpEZs6wCkn_AOQ=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.04011+00 2025-12-17 14:50:01.040115+00 34474 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NYipBlX7o1IKvhqHfB5JZK7k-rY=", "createTime": "2024-08-15 14:57:39"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.042685+00 2025-12-17 14:50:01.042691+00 34475 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t7pBVS-W3ooVHPOy9FgxusIHXbQ=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.044947+00 2025-12-17 14:50:01.044952+00 34476 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:42yxP-2-J1MYChI_JBgMY2tCc18=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.047425+00 2025-12-17 14:50:01.04743+00 34477 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4YgxOPr1EqsAxuhjhr_4oVyyfK4=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.049987+00 2025-12-17 14:50:01.049992+00 34478 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U4hxWzouvzr57QONB3fQb_Veb9g=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.052589+00 2025-12-17 14:50:01.052594+00 34479 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RitcxbPZVcTvLwt1nTUHYTahjqE=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.055146+00 2025-12-17 14:50:01.055152+00 34480 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9R6Y_tTwL7jHY2x9fIlrm95Z8VY=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.058524+00 2025-12-17 14:50:01.058532+00 34481 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y9s4315V9IVYOjKR0pbIXRuJCSU=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.06152+00 2025-12-17 14:50:01.061526+00 34482 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:__xqZmeDbzk-JD7xjPLsV2sBMy8=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.064202+00 2025-12-17 14:50:01.064208+00 34483 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q1hXhG6zGaAznQpsm5ePunvidP8=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.066715+00 2025-12-17 14:50:01.066721+00 34484 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5pA2k4gaRmBllfXWYlD3H-FZk7Y=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.069158+00 2025-12-17 14:50:01.069163+00 34485 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a-qndp3rZdicDFhzrwnHlue_L-c=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.071455+00 2025-12-17 14:50:01.071459+00 34486 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iaJzbUPvNrDuXtZK3TGvG7N9Gek=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.073834+00 2025-12-17 14:50:01.073839+00 34487 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Vj1-Lpy4kJB_B_8bBkQMg6rfV4=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.075955+00 2025-12-17 14:50:01.075959+00 34488 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OSAepdcuwBUrGD5Bsz9bz3ne9Vo=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.078175+00 2025-12-17 14:50:01.078179+00 34489 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_13urtMQho3AIJW8dh8ynZ7UHIQ=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.080401+00 2025-12-17 14:50:01.080405+00 34490 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OBhEHk97UipeIJ_4V-KeZuLUO_s=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.082829+00 2025-12-17 14:50:01.082833+00 34491 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0qGWocNOXnQGIGtGGtqjKPbHH9Y=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.085248+00 2025-12-17 14:50:01.085252+00 34492 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PfyIffrW0zINADAGZ7urbW0XMXU=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.087568+00 2025-12-17 14:50:01.087572+00 34493 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JVvW5JPdYCfP1I5sPHFD1tGqSWU=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.090082+00 2025-12-17 14:50:01.090087+00 34494 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f-kcvUgpwH2j-uqU9-Dk1kL3XM0=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.092782+00 2025-12-17 14:50:01.092791+00 34495 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oRNYZ4FtvcQ6ghS6uMynUKnZ1ro=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.096368+00 2025-12-17 14:50:01.096376+00 34496 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WFz_UGRUCu4gDv7b756M37MxQ_4=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.099423+00 2025-12-17 14:50:01.099428+00 34497 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gFlOT5pN3Mduhp5-smixrrP3uTE=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.102157+00 2025-12-17 14:50:01.102162+00 34498 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXJjUi2TewvH-jrXZMz5ob561QQ=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.104523+00 2025-12-17 14:50:01.104528+00 34499 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qZrzpdGPospVcEK9YRv3kjPzk7k=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.107269+00 2025-12-17 14:50:01.107274+00 34500 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fvwb-87oxv9AtZbsRdrGx1vI3Bo=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.109695+00 2025-12-17 14:50:01.1097+00 34501 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6bSQI0reJpL6vMKWT5e6SCSGQ6o=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.112268+00 2025-12-17 14:50:01.112273+00 34502 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Is8LRa2p4WYVoNdyXJQRe4P_W5E=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.114625+00 2025-12-17 14:50:01.11463+00 34503 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZDuQmO3zS0dqiPNoO3vhH7fYy8g=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.117414+00 2025-12-17 14:50:01.117418+00 34504 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tZgtfDl1X5EV9J-7jeB_Sob_LyQ=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.119803+00 2025-12-17 14:50:01.119808+00 34505 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_RTTACiwrAk_le5_jqogEq-fyCs=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.12227+00 2025-12-17 14:50:01.122276+00 34506 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:78d12Fkf49hnah93v9hqh4QwBJI=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.124905+00 2025-12-17 14:50:01.12491+00 34507 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AdjkHQquC7yYy0_SnMjpdCETc3I=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.127177+00 2025-12-17 14:50:01.127182+00 34508 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NwI4_DVOUuttOXTDmxbIQzTQ9Eo=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.129167+00 2025-12-17 14:50:01.129171+00 34509 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4gxbt2btDRYT2xxaQgYJl6moNsU=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.131133+00 2025-12-17 14:50:01.131137+00 34510 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nPQeo8ETBs4IR_lLOi7rRB_sFKk=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.133137+00 2025-12-17 14:50:01.133142+00 34511 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KdaJKLXmsaNJh6VLRXf3Gf2P7AE=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.135144+00 2025-12-17 14:50:01.135149+00 34512 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QGUM2Ag8Wa1VoF4OXsiVBkiaK-A=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.13733+00 2025-12-17 14:50:01.137334+00 34513 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L6TrUvcesQY-xHGnhX1ZVQhY4tg=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.139308+00 2025-12-17 14:50:01.139313+00 34514 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fjp2Z1loTlDEv5uA6_1-V8nxuyU=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.141368+00 2025-12-17 14:50:01.141373+00 34515 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:76cz2Y-ojJ0N3pNWkIGF5scZHCI=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.143476+00 2025-12-17 14:50:01.143481+00 34516 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KAgac-VXVPDZWvp6Vf8baqcqEEQ=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.145497+00 2025-12-17 14:50:01.145502+00 34517 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xiBv9KD4ppzouUDEJohTD_8nE_8=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.147614+00 2025-12-17 14:50:01.14762+00 34518 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eua_MANfsg61Ze30EUu7b1HJZRM=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.150207+00 2025-12-17 14:50:01.150213+00 34519 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4u-501-sd387BPxeZroltfYxdDY=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.152558+00 2025-12-17 14:50:01.152564+00 34520 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1OgZcHIXJuRaG1Mfxloh86tTJ5g=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.154569+00 2025-12-17 14:50:01.154574+00 34521 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jnt6EYc8aPWTWNbfNR5oljoYbSc=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.156575+00 2025-12-17 14:50:01.15658+00 34522 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BwQtvLi3sZEEGh7HYr6IfyODU5Q=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.158583+00 2025-12-17 14:50:01.158588+00 34523 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G1ygwclDsSmqOqEEMsyV8yfX4Ec=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.160708+00 2025-12-17 14:50:01.160713+00 34524 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4FtwpjSPeBmkZ2uBwdG5XtlcHSI=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.162874+00 2025-12-17 14:50:01.162879+00 34525 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:irT7Izvl9RF7CAaYP8el-IQ_8AY=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.165175+00 2025-12-17 14:50:01.165179+00 34526 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:omWtIuttsTIzgbemItDtp-qm7-o=", "createTime": "2024-08-15 14:57:45"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.167525+00 2025-12-17 14:50:01.167531+00 34527 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cN-Qow18JKbh7fIVRm1ad5fCXTk=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.169741+00 2025-12-17 14:50:01.169746+00 34528 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0gGvHoSRoKvvlJZbnx381Jhjus8=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.171976+00 2025-12-17 14:50:01.171982+00 34529 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:luE5UYkMq7NPhvlyqRlVWu9BMns=", "createTime": "2024-08-15 14:57:47"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.174565+00 2025-12-17 14:50:01.174571+00 34530 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YgqkbjCk3XxiqOyLAYJBiMlpt24=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.177072+00 2025-12-17 14:50:01.177077+00 34531 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z38O-2hedyphlOln_IRYCW0cS3Y=", "createTime": "2024-08-15 14:57:47"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.179586+00 2025-12-17 14:50:01.179591+00 34532 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-uh5ZQkxompKFw8qPBfqvsjF6pU=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.182078+00 2025-12-17 14:50:01.182083+00 34533 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2MCz0evjGBAnomy7Rl83H8MdpcM=", "createTime": "2024-08-15 14:57:47"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.184496+00 2025-12-17 14:50:01.184501+00 34534 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bt-vPamkA12pq4I26BSeH8StCNQ=", "createTime": "2024-08-15 14:57:47"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.186887+00 2025-12-17 14:50:01.186892+00 34535 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wkZkZazAwl80-Pyn4USV8DtTdLg=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.189121+00 2025-12-17 14:50:01.189127+00 34536 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SN2MmgLNsg1TpjZvfpdSBUED1XI=", "createTime": "2024-08-15 14:57:47"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.191915+00 2025-12-17 14:50:01.191921+00 34537 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OypLOUsWtAaY9RWHdBERo9KNO_4=", "createTime": "2024-08-15 14:57:47"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.194157+00 2025-12-17 14:50:01.194162+00 34538 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RVY6LlEhWrCC1DGt7tpMMLbK1bM=", "createTime": "2024-08-15 14:57:47"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.196427+00 2025-12-17 14:50:01.196432+00 34539 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:28nZ_WYrs4VI-b7egEWZE-HO2Xc=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.198803+00 2025-12-17 14:50:01.198809+00 34540 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tYKg1eX2sdqPPohsx_NzIay2VOU=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.201008+00 2025-12-17 14:50:01.201012+00 34541 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-VzmeoNyg3HbngO7f724SB3b8ho=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.203124+00 2025-12-17 14:50:01.203129+00 34542 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yfz9n3pKPwN_mmo9brQ8uolnyxE=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.205536+00 2025-12-17 14:50:01.205545+00 34543 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VqbDkB06eDHkvBFM69qsClQMDfk=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.208198+00 2025-12-17 14:50:01.208203+00 34544 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AuhfLJjLh28fkSRHYx6bZmfcUIY=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.210943+00 2025-12-17 14:50:01.210948+00 34545 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:est4gfxt5jMQgrS2sj-tQ68H2bg=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.213536+00 2025-12-17 14:50:01.213541+00 34546 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_hmtlnOouRnNIYHDq_z6pfxUWgI=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.216199+00 2025-12-17 14:50:01.216205+00 34547 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zBfSp94C8N8uk59lC6vpKt_oAG4=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.218834+00 2025-12-17 14:50:01.218839+00 34548 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7YOtRMW9fTtLKEPl2XUrEZEkJXU=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.221365+00 2025-12-17 14:50:01.22137+00 34549 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O5Hr4X_GHyf5FeVd8fk-9KB6Fvs=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.223937+00 2025-12-17 14:50:01.223942+00 34550 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OhMykFuSKeQ3FWNZVnRAsKI0_dE=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.226537+00 2025-12-17 14:50:01.226542+00 34551 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jvYpn6zDUbvVWt8cpVOLlnS_sLI=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.22913+00 2025-12-17 14:50:01.229135+00 34552 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c6ihi9uFFLna2B4n1ISz3zGVimg=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.231464+00 2025-12-17 14:50:01.23147+00 34553 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HUYrxYtbHjse4gkcy-j9Pt7Eii8=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.2341+00 2025-12-17 14:50:01.234106+00 34554 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s_6Uk3a0GeYSHpnTwJ5NIc2u4zU=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.236722+00 2025-12-17 14:50:01.236728+00 34555 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wdwaasz0Tg7tik3XwQrkliUbzT0=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.239207+00 2025-12-17 14:50:01.239213+00 34556 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DQyES9vNEwstDNsSOUFLjsni4Zs=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.241562+00 2025-12-17 14:50:01.241572+00 34557 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UX93a-m7rlgM3V9M60g-5Xa_SC0=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 14:50:01.244109+00 2025-12-17 14:50:01.244114+00 34558 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=1766069400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uPONjwaVO8gVcp1nkMaqjbUbewY=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.695972+00 2025-12-17 15:00:00.695981+00 34559 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:axTDJ2K8gndF0RXbpHgjnucsm2M=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.699561+00 2025-12-17 15:00:00.69957+00 34560 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hN8SJwvmH9SxQrsCopBFhsjlZzQ=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.702168+00 2025-12-17 15:00:00.702173+00 34561 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vv_TqjUQujleDjtqAav1GHo-Dn4=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.704476+00 2025-12-17 15:00:00.704481+00 34562 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mNmohlYIPg4IH991LpOCr2kQakA=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.706796+00 2025-12-17 15:00:00.706801+00 34563 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jeb-FZX-wE7o-c_8tKpmWYqzh-A=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.709204+00 2025-12-17 15:00:00.709208+00 34564 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5pdZuDwQ1SUu6QqPh1cm-v8fB3w=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.711568+00 2025-12-17 15:00:00.711573+00 34565 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ub9zAGaWfwtrempd8bdS29KmFo=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.713633+00 2025-12-17 15:00:00.713637+00 34566 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jOqOQFgrBIzsrAvL6G6OqL7X7eA=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.715696+00 2025-12-17 15:00:00.7157+00 34567 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P6xb7LoXGDATTqvYKjx3qJljzdY=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.717864+00 2025-12-17 15:00:00.71787+00 34568 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DxdVuH-i7OMsyoJTp6MgT2C3lTY=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.720332+00 2025-12-17 15:00:00.720337+00 34569 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YaozYcy0loFPQs3gKtM-q9XzHQw=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.72268+00 2025-12-17 15:00:00.722685+00 34570 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GI0ED681ZFifqHS4WrFcnY2gKiM=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.724805+00 2025-12-17 15:00:00.72481+00 34571 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wz-XdiEeBLgyzp7_tmjpfcaJ4NM=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.726949+00 2025-12-17 15:00:00.726954+00 34572 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4g5fsDWNRyGb_TQSspZ1xEdFPmE=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.72927+00 2025-12-17 15:00:00.729275+00 34573 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:obirzZ0wyroan6lDCaVVEAd14r4=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.731545+00 2025-12-17 15:00:00.731549+00 34574 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hOsOHMY4mm-BzBm1SDRTD-wVu8k=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.733845+00 2025-12-17 15:00:00.73385+00 34575 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ee1ncWBt2NTbzQBPoK4mVomMtSg=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.736025+00 2025-12-17 15:00:00.736031+00 34576 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FuBSRFenMzlIH6sm7nceu1oXqEs=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.738482+00 2025-12-17 15:00:00.738486+00 34577 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YeKKc32YpI0hWHAu75UabHQVFi4=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.740907+00 2025-12-17 15:00:00.740912+00 34578 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B3cbWOp5clgo6fQVtjy3eHEyMkY=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.743048+00 2025-12-17 15:00:00.743053+00 34579 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HmgrhaVYcDXVVe0aM_zmJDYBjUk=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.745388+00 2025-12-17 15:00:00.745392+00 34580 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZT9mVC8SSvKKmZ4BPtdtw9k0iUc=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.74767+00 2025-12-17 15:00:00.747674+00 34581 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H7jhEkXot4d1rKLarjB6HCgdgVg=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.75001+00 2025-12-17 15:00:00.750015+00 34582 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YXGbSHwOSOpKL-Y7xS0m0Tdgi5Y=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.752663+00 2025-12-17 15:00:00.752668+00 34583 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0fy0Z4xYjbhUUk2D_E-B7vLW-U4=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.755116+00 2025-12-17 15:00:00.755121+00 34584 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:akEYDD1y8MLxY0mSAwWyVy4WaQY=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.75771+00 2025-12-17 15:00:00.757716+00 34585 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZWLcHPtChh2pg2XVZcFl9S8V9cw=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.760175+00 2025-12-17 15:00:00.760179+00 34586 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zZAUhwzhQLspUoIx-layTGl3Zfo=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.762569+00 2025-12-17 15:00:00.762574+00 34587 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U_4CedF2mCnnM8bmHnsJqrASIdI=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.76489+00 2025-12-17 15:00:00.764894+00 34588 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5fma76hGSjNwUQJILmw7ZDNjmbw=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.766961+00 2025-12-17 15:00:00.766966+00 34589 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6U7CHKyyDbvpuou-nIDxlq5pArw=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.769098+00 2025-12-17 15:00:00.769102+00 34590 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bfHSY_-gl_KaLABe0ieM9oN3uxc=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.771344+00 2025-12-17 15:00:00.771349+00 34591 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7PVHBLEGmHHTh9sN2witX7yTTTw=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.773655+00 2025-12-17 15:00:00.773659+00 34592 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OG9JKCWi_vP5MFgUOlZ05gvoLj0=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.776143+00 2025-12-17 15:00:00.776149+00 34593 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rrysO8r7dedjbJnwBArQUU3lDpM=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.778502+00 2025-12-17 15:00:00.778507+00 34594 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XFqNqq0I-BOf8SvRHvyAKEOWj18=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.780942+00 2025-12-17 15:00:00.780947+00 34595 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j1IGQVTCoRXX2-fuiWsYYtz3IXQ=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.783231+00 2025-12-17 15:00:00.783235+00 34596 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bu56KsZk9ri_KkXGM26JJHsQS2Q=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.785532+00 2025-12-17 15:00:00.785538+00 34597 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YuIGyPrq6akttvd2_LdHdqs1ZFo=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.788086+00 2025-12-17 15:00:00.788091+00 34598 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k8D0Dvxi9EH-tNOMm-q5PhppydE=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.790596+00 2025-12-17 15:00:00.790601+00 34599 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GWxrUn6mcAbwC8jxIfloxv3Du1o=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.793096+00 2025-12-17 15:00:00.793101+00 34600 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ld3YbwbC0agJt2jcPyCQgDgbqU=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.795478+00 2025-12-17 15:00:00.795483+00 34601 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VAH-M1h7gmYB0kMW89OrOQumgWI=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.797786+00 2025-12-17 15:00:00.797791+00 34602 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XMUsZ_FO1DKCj5LHcJ4TCbkFdzQ=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.800237+00 2025-12-17 15:00:00.800243+00 34603 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eVtO2UjYF85G_1ComDEeE3Zmt8g=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.802704+00 2025-12-17 15:00:00.80271+00 34604 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2RTUek3q6lLuGXQ7eHh2gx4B7N4=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.805247+00 2025-12-17 15:00:00.805252+00 34605 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ePVLkUbiuSxyaqZHjfGu-5dkrr4=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.807714+00 2025-12-17 15:00:00.807719+00 34606 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JTErU8_tww4Xy_p9OKB6r6-xwYE=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.81045+00 2025-12-17 15:00:00.810455+00 34607 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hybRL0AltyIGydcwL8TBW_lPL9I=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.812585+00 2025-12-17 15:00:00.81259+00 34608 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rr9EKfy6T0CI8C0L5hvet5HJvZM=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.814877+00 2025-12-17 15:00:00.814882+00 34609 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pr18mrQEy-6SMUDlp4tzkjsPnxo=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.817233+00 2025-12-17 15:00:00.817238+00 34610 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m9zegt50iT4Utrhw_fDtq4r0JKg=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.819949+00 2025-12-17 15:00:00.819954+00 34611 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0DLFlTNnel2frHyjMasAA6C6jqI=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.830611+00 2025-12-17 15:00:00.830616+00 34616 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sYG6I5GT_mH6oZaL5CmjnmoNlao=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.822186+00 2025-12-17 15:00:00.822191+00 34612 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FDQthuq7CVlPIMB8CoSEpqs0UPw=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.824468+00 2025-12-17 15:00:00.824474+00 34613 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gL7itxJE3WcwY1nalD6KobY8dU0=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.826576+00 2025-12-17 15:00:00.826581+00 34614 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e8nkKZw6t6RS7xXC8C0EgnXcJ2M=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.828616+00 2025-12-17 15:00:00.828621+00 34615 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UQkkpgGdrhMBISbwd7a50uCwMFE=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.83261+00 2025-12-17 15:00:00.832614+00 34617 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tBuJZ1NzuSA0M7u91CCZ-WXuqao=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.834708+00 2025-12-17 15:00:00.834713+00 34618 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pdfpj-53oCY5IjHhjnc5V0T-4xQ=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.837293+00 2025-12-17 15:00:00.8373+00 34619 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H4xprqorhJvnE8xN0-iJqERoOaE=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.839857+00 2025-12-17 15:00:00.839862+00 34620 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:466Q55RlVn2zHEVRUce3wFrBzx8=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.842236+00 2025-12-17 15:00:00.842241+00 34621 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0una2aBsiQo5ITwTnnRjj-wcpnI=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.844502+00 2025-12-17 15:00:00.844506+00 34622 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bfI2M4rZ7qi6Um0bV9k0_YISSnI=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.846504+00 2025-12-17 15:00:00.846509+00 34623 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a6NdfqVnxUc8HIA0fd3q79cV1V8=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.848542+00 2025-12-17 15:00:00.848547+00 34624 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TbgIjEnQZMwTyn93dv3v4rHK7HM=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.850707+00 2025-12-17 15:00:00.850713+00 34625 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oVOPiD_PfdTYEbZdb5MbEeSMh4U=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.852983+00 2025-12-17 15:00:00.852988+00 34626 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4-7vkt4KezzFh3cmqnaw2NFX2xo=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.855357+00 2025-12-17 15:00:00.855361+00 34627 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pbGYFTBwa4ygFs8dm13ZBP4fHNo=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.857697+00 2025-12-17 15:00:00.857702+00 34628 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zp1RR3Fgewxv-d0v2NFaGQ-s4nE=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.859899+00 2025-12-17 15:00:00.859904+00 34629 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j0ISVU5m09zeqqdN2294HMGI-yU=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.862266+00 2025-12-17 15:00:00.862271+00 34630 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jg7UsgERQIcTQh3Dq2CrH_8Aqyo=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.864587+00 2025-12-17 15:00:00.864592+00 34631 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zHORQATfL_ieabLpceMOzlkKqJ4=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.866749+00 2025-12-17 15:00:00.866754+00 34632 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qcZNJvM7VrVSknzi4ghB4E0_oQw=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.869187+00 2025-12-17 15:00:00.869192+00 34633 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eg6A_1Bo4sg6_epq7EA7vEXbIDA=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.871546+00 2025-12-17 15:00:00.871551+00 34634 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Slms6_VTQaFg3NeU3CdCm9elrEw=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.873768+00 2025-12-17 15:00:00.873772+00 34635 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tO5ngA6yI9JmXFbZ86pI9KDXWjM=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.87595+00 2025-12-17 15:00:00.875954+00 34636 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4egYnBrCjHyeaAa-hyhCfwpCHQc=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.878118+00 2025-12-17 15:00:00.878123+00 34637 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:veruF7Zb7zxGj_1Hpf1b-5gsSnY=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.880419+00 2025-12-17 15:00:00.880424+00 34638 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nZSBOZFi0NygP0aNVr1Wu4Nd_0o=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.883128+00 2025-12-17 15:00:00.883134+00 34639 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RQ111yKVlOXS9LW4z9CGDom7GHo=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.885788+00 2025-12-17 15:00:00.885794+00 34640 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:siMvNR-Dnl8jYOXTkTGD7NtwRrY=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.888442+00 2025-12-17 15:00:00.888447+00 34641 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UQUZgIOBQOCDfTaguioVXy-6YNE=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.890808+00 2025-12-17 15:00:00.890813+00 34642 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pW82KSEhmZCv7T1lO_2NOMfpe_Q=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.893263+00 2025-12-17 15:00:00.893269+00 34643 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jzrgEa_EUMn1_7bP6SdW6C225fY=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.895622+00 2025-12-17 15:00:00.895628+00 34644 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FFKsCZ2OlO1i0xvTglLY_jpi1JM=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.897975+00 2025-12-17 15:00:00.897979+00 34645 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mAooyVtWV-EBwxHE9Fwt3XvCW6E=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.90045+00 2025-12-17 15:00:00.900454+00 34646 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XjV54GLW-KM9u1YGShrYRiKcuug=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.903279+00 2025-12-17 15:00:00.903284+00 34647 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bJQ2h_MRNRaHVQTuSCZoIpOaR_Y=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.905954+00 2025-12-17 15:00:00.905958+00 34648 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IprWisVoxgjvpAwBtyFXNxVfBZ0=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.908391+00 2025-12-17 15:00:00.908396+00 34649 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FbfIf9Ga4XXwMPPJqmXdkXst9z4=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.91112+00 2025-12-17 15:00:00.911125+00 34650 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XsbvdXyB8as0yYD9TzwjJo57vNU=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.913505+00 2025-12-17 15:00:00.913509+00 34651 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nNVInIHnIDeWJUK9gCBqdViCTrU=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.916105+00 2025-12-17 15:00:00.91611+00 34652 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cBo2HyLkm8XW_yajaTi_XQAc9IA=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.919303+00 2025-12-17 15:00:00.919309+00 34653 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-fFKSVk4B_WuS27lLAB3YWEgIjM=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.921801+00 2025-12-17 15:00:00.921806+00 34654 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BTiPcUNqS8BChpWn4jJwqHzrE6I=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.924206+00 2025-12-17 15:00:00.924211+00 34655 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NYcWlbxRP5okIH52c2Mv166CfoY=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.926399+00 2025-12-17 15:00:00.926404+00 34656 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-X-Ylu8nph0WMziu8HwgKipcr4s=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.928822+00 2025-12-17 15:00:00.928827+00 34657 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yssh5fkPX0-h0xapiGsg0GnIP_4=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:00.931101+00 2025-12-17 15:00:00.931105+00 34658 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=1766069999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-_X2JZf9fAcOLWqmBgv4WakS3O0=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.355614+00 2025-12-17 15:00:01.355624+00 34659 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UzZGEZROSnHVpSZyRgPPuvuwQPs=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.360277+00 2025-12-17 15:00:01.360284+00 34660 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O8S5CAo3jIwoJIWjg1lyYSl7MT4=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.3632+00 2025-12-17 15:00:01.363206+00 34661 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y7g8SemkUADo_Whzaf30IKs06tI=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.365893+00 2025-12-17 15:00:01.365899+00 34662 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MvHmDnEUVDNyAX4Jxh6ydtImdX4=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.368534+00 2025-12-17 15:00:01.368539+00 34663 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cXUhGx5Coo2AVgob5sLXaibDmeY=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.371153+00 2025-12-17 15:00:01.371159+00 34664 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Be_C3bmgKedB0IwTTGEjJ2dn1ZM=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.374082+00 2025-12-17 15:00:01.374089+00 34665 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bY5OFBptAgSD_FUIYr2h16FSrPs=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.376767+00 2025-12-17 15:00:01.376773+00 34666 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tN4Rhy-gnL6jC9MBwgPiURcpBsM=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.379307+00 2025-12-17 15:00:01.379312+00 34667 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YkY0jh2VGmFBE82VGklwOXcCCkw=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.381761+00 2025-12-17 15:00:01.381767+00 34668 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MgtyVIksqDtaCzcgWloS0gCfEjE=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.384276+00 2025-12-17 15:00:01.384282+00 34669 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-qVWzR3qB4d3HZfxliiJ-nRVyBQ=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.387393+00 2025-12-17 15:00:01.387399+00 34670 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xA2lV2obsNjW8Hfxah44yX5FJUU=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.390399+00 2025-12-17 15:00:01.390407+00 34671 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F3BLanPyRKbDGk9skZNooRd2OwU=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.393196+00 2025-12-17 15:00:01.393202+00 34672 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2LCCzINVdGj-365n7Y06c58zdz8=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.395726+00 2025-12-17 15:00:01.395731+00 34673 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZxaYBUhqnkV_2oMOvvGl9uXdwOs=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.398103+00 2025-12-17 15:00:01.398108+00 34674 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XRrb2OX6pMU2kJZw9ODsVoqpivc=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.40043+00 2025-12-17 15:00:01.400435+00 34675 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sSe1KlH15km2VUIDbKJ2jW1WMrc=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.403084+00 2025-12-17 15:00:01.403089+00 34676 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z93hVIzTgz7vdtyzIoA2YA-ds7Y=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.406027+00 2025-12-17 15:00:01.406032+00 34677 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SCe_zW35s20H5cMHpxWmoKqAd4w=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.40866+00 2025-12-17 15:00:01.408666+00 34678 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fil3-cgKWgzooyQpPMDsvtDn3mI=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.411133+00 2025-12-17 15:00:01.411137+00 34679 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fiVLFEywTPIlrV47IDFCrfpLmrQ=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.413654+00 2025-12-17 15:00:01.41366+00 34680 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YjQ14bBtT1296PBlMZELx3ZqcBA=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.416261+00 2025-12-17 15:00:01.416267+00 34681 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZSP3dmY5h2IR_7t_EHaUId2LRQk=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.41885+00 2025-12-17 15:00:01.418856+00 34682 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AiZnXLms04jr3ncF3AvnFvAHYCw=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.421347+00 2025-12-17 15:00:01.421352+00 34683 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KloLK2E1XmaNqY9dL03JU-iZVus=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.424185+00 2025-12-17 15:00:01.424193+00 34684 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1_1U9RN-tyzkhhv2jlgBC5C6xK4=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.427482+00 2025-12-17 15:00:01.42749+00 34685 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0zvtqnEbv_VvyNYk6WQa1S-xK88=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.430514+00 2025-12-17 15:00:01.430519+00 34686 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ghWeL-WrS8VLqnmpqPX7W8rAOxw=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.433097+00 2025-12-17 15:00:01.433102+00 34687 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:upW-nx5tB_q_gknPtUEFu6_f1go=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.435625+00 2025-12-17 15:00:01.43563+00 34688 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XW2L80HgXDCIuTeQjRzxSkj6Z_4=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.438228+00 2025-12-17 15:00:01.438234+00 34689 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6mboaulaNK3vAOX6VhfyQbfv6No=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.440759+00 2025-12-17 15:00:01.440765+00 34690 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sUjPvhf5-cxBdNcfkziWvLm9y_s=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.443226+00 2025-12-17 15:00:01.443231+00 34691 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fiLtTPwt9P7TjLF7DORKMOpwBR8=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.445407+00 2025-12-17 15:00:01.445412+00 34692 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b324BnM3e5d7FpWtmxczntOvDdU=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.447708+00 2025-12-17 15:00:01.447712+00 34693 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B7jljOXJyBKteF6KEdsh-KAWTEs=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.449986+00 2025-12-17 15:00:01.449991+00 34694 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aWrdAChEGVRJYmeNaw2a_7w8ITg=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.452653+00 2025-12-17 15:00:01.45266+00 34695 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dvOcdk5fXh-fLfb-D1SGH6CGEFk=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.455573+00 2025-12-17 15:00:01.455578+00 34696 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-LlGBAEGkJRqL72n3NI47H4ZTp4=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.458398+00 2025-12-17 15:00:01.458403+00 34697 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7vTSEwSnNPgIbpbqErsyHWGnWw=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.460883+00 2025-12-17 15:00:01.460889+00 34698 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sPs-reTWTRWXou3hYuUrLixhVSQ=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.463264+00 2025-12-17 15:00:01.463269+00 34699 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vyU2S11fAJSkvJlmvNoPhFVx5pQ=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.465377+00 2025-12-17 15:00:01.465382+00 34700 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WVlSN2MGm8kcKprUnIERShDYfKo=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.467607+00 2025-12-17 15:00:01.467613+00 34701 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f1ehHhDCNNcs_2Z0YYO7IMM3Btk=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.470249+00 2025-12-17 15:00:01.470254+00 34702 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dw-xjuO9jdL0R3E3CiDPIqJu100=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.472555+00 2025-12-17 15:00:01.472559+00 34703 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uN_9JZI3NfuvlKf5aun1xTypPvw=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.47496+00 2025-12-17 15:00:01.474965+00 34704 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cI5RD_Hw3YeofLL9pJOWW0l9nvQ=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.47733+00 2025-12-17 15:00:01.477335+00 34705 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B6Womi_ROz_U3-jALj_wBkR7LTI=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.479509+00 2025-12-17 15:00:01.479515+00 34706 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D5hYwTAabIzfVufuA_p-rFP2AMg=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.481686+00 2025-12-17 15:00:01.48169+00 34707 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ir6aXjHf8h82SeU47bhXlIpyqA8=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.484059+00 2025-12-17 15:00:01.484064+00 34708 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:plFDbWhQjXJJAEYKTbmcbqq7_qE=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.486502+00 2025-12-17 15:00:01.486508+00 34709 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4CxWlznJ2CFv4q4010qzvzyySFg=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.489222+00 2025-12-17 15:00:01.489228+00 34710 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:asbpg7yGxqojPK9R5avNJuwNvdc=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.492101+00 2025-12-17 15:00:01.492107+00 34711 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m8zvqMVhujhJdezUd0huzvd8xSw=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.494554+00 2025-12-17 15:00:01.494559+00 34712 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GYbNNBTZegpMru38o60YKT61BJY=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.496813+00 2025-12-17 15:00:01.496819+00 34713 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EaflOpahunH32G_kAlHTVoofTEM=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.499115+00 2025-12-17 15:00:01.49912+00 34714 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:quyz5zLvGyPJ631X-J9aGUAvJLQ=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.501288+00 2025-12-17 15:00:01.501293+00 34715 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zsq5o-DcHY-XXBWpEVs3crCTOrs=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.503672+00 2025-12-17 15:00:01.503677+00 34716 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hTIiWKp_I7boO0UKb__IguH3TPA=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.505912+00 2025-12-17 15:00:01.505917+00 34717 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aDqq0IAwIevRWGAOSfS4v3LBMnY=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.508407+00 2025-12-17 15:00:01.508413+00 34718 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:087zovmE80jQZNEzZyJ_1bUOo0k=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.511339+00 2025-12-17 15:00:01.511346+00 34719 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V16zmX8AOCe8-5aTXwpYl0K5n6k=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.514412+00 2025-12-17 15:00:01.514422+00 34720 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zh_LzSqrQ9EGagqEQIUIy4JTsJE=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.517484+00 2025-12-17 15:00:01.517491+00 34721 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hyHfYLpehjNDoQ8ufqQxOzMnqnM=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.520459+00 2025-12-17 15:00:01.520466+00 34722 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SzeADxl8nrrHUzsvFLlb0umg4Lo=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.523902+00 2025-12-17 15:00:01.52391+00 34723 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sTmQsRlyKn4L-teDvoelg_gPnNQ=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.526894+00 2025-12-17 15:00:01.526901+00 34724 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_-RV3lDy94ADnkLfnwihoJsGLIA=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.529526+00 2025-12-17 15:00:01.529531+00 34725 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1sjk0znYp5SW47QJDP8KMR9UPKM=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.531959+00 2025-12-17 15:00:01.531964+00 34726 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RPzB7kYZNKT3XVFqjHRLygUy0no=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.534092+00 2025-12-17 15:00:01.534097+00 34727 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QC9sAPE7sGW-MdHeCC75jhu7cT4=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.536956+00 2025-12-17 15:00:01.536963+00 34728 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:itJJvHQYVoNesX25YOSI8pJuhY8=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.540018+00 2025-12-17 15:00:01.540024+00 34729 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gggzqwVZTseHT-JiUh5X5KP8AXc=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.542922+00 2025-12-17 15:00:01.542928+00 34730 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5q8BxFePO4QM7A8__6QMN6K_6Bw=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.545771+00 2025-12-17 15:00:01.545777+00 34731 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f9zi4a8OBKR2Y-2-QpK8A6bGSq8=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.548528+00 2025-12-17 15:00:01.548534+00 34732 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vywB6X7oMiTKy8HrmOsBhPBIyXY=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.551147+00 2025-12-17 15:00:01.551152+00 34733 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mU_mXGNRT-apthfcKpyHIgd9Qbw=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.553729+00 2025-12-17 15:00:01.553735+00 34734 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hG9Pcr5IaSvQJZiVodKE2mrZj78=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.556309+00 2025-12-17 15:00:01.556315+00 34735 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b6DpNcK1bkZGyD-Qngwk2xeqWCs=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.559076+00 2025-12-17 15:00:01.559082+00 34736 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1AneuEjihPCL9dRnBQvia9Sw6C0=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.561667+00 2025-12-17 15:00:01.561673+00 34737 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ny_yuV_375TnKBAX63hyNa6f-Tw=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.564197+00 2025-12-17 15:00:01.564203+00 34738 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ACIz4F0eouLTHb2QgGRh67d5Y68=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.566747+00 2025-12-17 15:00:01.566752+00 34739 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:No5SNIbQtUCVJNa2heVn4L6z5sc=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.569345+00 2025-12-17 15:00:01.569351+00 34740 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ST6jJ9YjNFS8bAQ5mwlaJ204Apw=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.571924+00 2025-12-17 15:00:01.571929+00 34741 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mOuXDW8bJ26SsJhagmKgbydbFro=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.574615+00 2025-12-17 15:00:01.574621+00 34742 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8nUnJ--hqHf8tPh0oE0n6hXFxcE=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.577145+00 2025-12-17 15:00:01.57715+00 34743 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rGQZeq9ZdVbdTG7VT03gDxDLIKI=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.579533+00 2025-12-17 15:00:01.579538+00 34744 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nM4-DRYEHh_1IBqSNNfYBTbFnbQ=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.581841+00 2025-12-17 15:00:01.581846+00 34745 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZJ1f7MfIuTxG3eIXVb6hZ_ryRso=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.584141+00 2025-12-17 15:00:01.584146+00 34746 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7dqD4jJpGuTVn3j8d-JitLnAvXA=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.586435+00 2025-12-17 15:00:01.586441+00 34747 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F00hvy1vngMzPkAHrUuuHBl1nX4=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.589583+00 2025-12-17 15:00:01.58959+00 34748 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vT22BS_11eXY_4_uirW8n4LMDpw=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.592654+00 2025-12-17 15:00:01.592661+00 34749 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R42BI-Uz0A6Cj_dgSaaXiL8lJwo=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.595242+00 2025-12-17 15:00:01.595247+00 34750 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yE194e27nurveRl9j_4rXWztQ1g=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.59765+00 2025-12-17 15:00:01.597654+00 34751 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yU1gTsDFw2Iriz-4JbDNlVCf7FI=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.600109+00 2025-12-17 15:00:01.600115+00 34752 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U44Ho1Lal-UT_IiEcYEWpAcQRVM=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.602809+00 2025-12-17 15:00:01.602815+00 34753 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sibmvD10SEoG5-D_nlDe4Jm6wKg=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.60538+00 2025-12-17 15:00:01.605385+00 34754 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FKDmLr3SYFf2h8PyxShwVN-rRN8=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.608153+00 2025-12-17 15:00:01.608159+00 34755 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YLiljUK9PA_qwVUVr9vHtCNzrEg=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.610772+00 2025-12-17 15:00:01.610777+00 34756 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IwK_M8yyQQfdQEZtoEiMnrcmaIU=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.613156+00 2025-12-17 15:00:01.61316+00 34757 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LxNHhdk2HgJ1Ep5xFo0gOstgqsU=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:00:01.615456+00 2025-12-17 15:00:01.615461+00 34758 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=1766070000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3gCJc47L9l4vVRoOgThgACnOgLc=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.365544+00 2025-12-17 15:10:00.365552+00 34759 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:arEKLH76MMZ3Z_SF9qjrbqP5dFo=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.369664+00 2025-12-17 15:10:00.369671+00 34760 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zPLcUn0eyaZOtlbIvkTpGleOr6w=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.372816+00 2025-12-17 15:10:00.372821+00 34761 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YKlJa9GsKxBuEf3FX-oB-_20MEs=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.375608+00 2025-12-17 15:10:00.375613+00 34762 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9MR_J2j0HTFyGH-vd4teSrIWXMo=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.377802+00 2025-12-17 15:10:00.377807+00 34763 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C8bhO86RtvUgavX2LhbSQYGOOfw=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.38027+00 2025-12-17 15:10:00.380276+00 34764 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6uj-RFTlAFZmQm_28jx0DgYKlUI=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.382857+00 2025-12-17 15:10:00.382865+00 34765 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EL616CcDtfOTAteGf3d3VVfIQoE=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.386931+00 2025-12-17 15:10:00.386936+00 34766 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qe2RVkocv9LonjUAHaKnsyyrYCw=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.389798+00 2025-12-17 15:10:00.389803+00 34767 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7TJz4kEcsLQavylLZJ8C0nteoKQ=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.392236+00 2025-12-17 15:10:00.39224+00 34768 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iw_CmR7lCw4mySYNSH8TgyKxsuI=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.394574+00 2025-12-17 15:10:00.394579+00 34769 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XhikBpXjmx-uTinlVGzHMO2SFgA=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.396686+00 2025-12-17 15:10:00.396691+00 34770 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rx60SFzB4vVbgPcQcKZZys_4RoE=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.39895+00 2025-12-17 15:10:00.398955+00 34771 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wqyfjVoI9ja4zWTJ2v-s-MZUn8s=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.401577+00 2025-12-17 15:10:00.401583+00 34772 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AO7YrtuoBXrVFaIN-9X5dqfqTM0=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.404079+00 2025-12-17 15:10:00.404083+00 34773 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-6mnyL_wh5rsZUIsInPvawOwUso=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.406476+00 2025-12-17 15:10:00.40648+00 34774 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sb90agvHrFjdn0Gtm6AGcs_L5kQ=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.408842+00 2025-12-17 15:10:00.408847+00 34775 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nzhppjKIMnur9Tm1h-EAK43wEF8=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.411005+00 2025-12-17 15:10:00.41101+00 34776 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MfcDx14cKurIhay7Mi5yExv2OnE=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.413437+00 2025-12-17 15:10:00.413442+00 34777 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ac5kBaEcYugn5nCAEEBDUiKUcQ=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.415853+00 2025-12-17 15:10:00.415858+00 34778 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MohKCA-JGRmFdbbAj1cN13LWjIU=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.418106+00 2025-12-17 15:10:00.418111+00 34779 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iwND2wpf_wNp8AyYQbAxbB_u584=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.420536+00 2025-12-17 15:10:00.420541+00 34780 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:anp59zKu69wZ0or5DEyUtJPHZ6s=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.423125+00 2025-12-17 15:10:00.423131+00 34781 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sHhDdLBhRFf3JE34HIkTosu-MFc=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.425807+00 2025-12-17 15:10:00.425815+00 34782 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8zTSF0SOa8JmytOMY3tF2SaaH7A=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.428781+00 2025-12-17 15:10:00.428787+00 34783 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KtSzPhXAs1TN0LNcbq9EZhj8uxw=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.431767+00 2025-12-17 15:10:00.431773+00 34784 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jU7iuFH14cum9ACSK9CmQdrjJwU=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.43455+00 2025-12-17 15:10:00.434556+00 34785 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6FNpty54s1hJ6v3LJLsGAynB4xI=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.437163+00 2025-12-17 15:10:00.437168+00 34786 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n0awytzwBQ0UOS8EMpp6STQ0TRA=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.439581+00 2025-12-17 15:10:00.439586+00 34787 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gKSdmOiAq5LIYoUIA-ZVeTqAdQM=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.441917+00 2025-12-17 15:10:00.441922+00 34788 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:my1AOl5ClJtjljO3OMHwyau1a1w=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.444001+00 2025-12-17 15:10:00.444006+00 34789 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lWCc3_Je44ZEeaUKCWHhHrxfBAQ=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.446076+00 2025-12-17 15:10:00.446081+00 34790 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DgWIVHK92w_M4caags1VVmK3NT8=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.448357+00 2025-12-17 15:10:00.448363+00 34791 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fd8R_zE6YmBKv8WRTRsFMV11vMQ=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.450954+00 2025-12-17 15:10:00.45096+00 34792 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OFdoayb77_myRlI6Vq_Af4H_fE4=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.453433+00 2025-12-17 15:10:00.453438+00 34793 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kHW1LubE3kcuV1G-CGSgDIyfsts=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.455778+00 2025-12-17 15:10:00.455782+00 34794 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7pY8X9vwv3a2XF2QETPxmPFdtV8=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.458067+00 2025-12-17 15:10:00.458071+00 34795 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eBAnV5CXkq_svakNskI9r8lAWPM=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.460122+00 2025-12-17 15:10:00.460127+00 34796 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xfFfpTJZpV4kQ0AUrzUXdFxF53A=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.462218+00 2025-12-17 15:10:00.462223+00 34797 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sL8UaVfCpapJ_AEG3M7_rnFO4o4=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.46494+00 2025-12-17 15:10:00.464949+00 34798 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3p0qde8ISd7Fkg3gyNAno_wTDYU=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.468089+00 2025-12-17 15:10:00.468096+00 34799 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s6kzNbkKdHINKShR6CZ3tL5KjCg=", "createTime": "2024-08-15 14:58:06"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.470916+00 2025-12-17 15:10:00.470921+00 34800 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pWKKmre54ZY-W6wV9fbXWwlpxa0=", "createTime": "2024-08-15 14:58:06"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.473294+00 2025-12-17 15:10:00.473299+00 34801 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:75fWR4RM9SImVUTvoLMQshuKRrs=", "createTime": "2024-08-15 14:58:06"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.475413+00 2025-12-17 15:10:00.475417+00 34802 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8GRIBLZXuL6lvGYdaQV9zJklo74=", "createTime": "2024-08-15 14:58:06"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.477507+00 2025-12-17 15:10:00.477512+00 34803 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Lory9TOFIxNx29YUVpW9btvzUA=", "createTime": "2024-08-15 14:58:06"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.479942+00 2025-12-17 15:10:00.479947+00 34804 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PRaqlD6bd6DKBdLPDvzLW0CShs0=", "createTime": "2024-08-15 14:58:06"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.482524+00 2025-12-17 15:10:00.482529+00 34805 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pC0f-wKFq2bDprpq6bxvC5grhVU=", "createTime": "2024-08-15 14:58:06"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.485114+00 2025-12-17 15:10:00.485119+00 34806 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-Lfa9Xefy_W85k0r9j4JY4NVfM=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.487655+00 2025-12-17 15:10:00.487661+00 34807 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r0lZ4dQCx_3RTJb3oq90Y9flgpc=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.490047+00 2025-12-17 15:10:00.490053+00 34808 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:USCXpttVDVxl1eFb2MgnikvSIlc=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.492415+00 2025-12-17 15:10:00.492419+00 34809 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GDSy9x2NmaulkX3DOdVuLpZm_PQ=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.494489+00 2025-12-17 15:10:00.494494+00 34810 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lkSlckY1HRK8zs6jAKAD9sguLtg=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.4967+00 2025-12-17 15:10:00.496705+00 34811 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zOgWPfuYqmpi7w5_Y1JUTmt-Mz0=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.499603+00 2025-12-17 15:10:00.499609+00 34812 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X6Lf3ddAvrsq_lX6mDhuRZoZ2BM=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.50245+00 2025-12-17 15:10:00.502456+00 34813 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cAguB6YdXgBPfRRalqmrxvyk7SE=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.505196+00 2025-12-17 15:10:00.505202+00 34814 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u4cgJwptSHimlRaoRIESzSpfcNE=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.507795+00 2025-12-17 15:10:00.5078+00 34815 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JAjEUQNjI2WyzxGZ7DaEj2ahphY=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.52097+00 2025-12-17 15:10:00.520975+00 34820 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Uonp8trIACoMM7vPU9rD_rx2fs=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.510324+00 2025-12-17 15:10:00.510329+00 34816 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f9bPZgarS2lLQq3mMaeoEVzud9s=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.512981+00 2025-12-17 15:10:00.512986+00 34817 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F2DjN8vd-UmB8f2qJX9Rtq59GVA=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.515601+00 2025-12-17 15:10:00.515607+00 34818 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3eLISqlMt7nS4PEKce1a6gW_Dq4=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.518315+00 2025-12-17 15:10:00.518321+00 34819 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2YdK058-dPH07wAqxauL9SWBqY4=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.523539+00 2025-12-17 15:10:00.523544+00 34821 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Esb3IweK2GcUIS9L3onWBCSGsE=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.525976+00 2025-12-17 15:10:00.52598+00 34822 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DbmUqOJ_S0HWcAA1lpb5L-9V5Hc=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.528326+00 2025-12-17 15:10:00.528331+00 34823 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0llAhsjQ-Whn9FZj876WYpX6MjM=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.53084+00 2025-12-17 15:10:00.530846+00 34824 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XvDikGqX0u5oxMp9O_3NQE0b9eo=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.533424+00 2025-12-17 15:10:00.53343+00 34825 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pEMKDCoUu9tSGnKy9oqtHYJCHT4=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.535984+00 2025-12-17 15:10:00.535988+00 34826 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UB2DPnDRT1klI0-ZJP48eJJZI7Y=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.538411+00 2025-12-17 15:10:00.538416+00 34827 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nf6T6_uHQ4hlWdDHGvPxhNPGIBM=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.540953+00 2025-12-17 15:10:00.540958+00 34828 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z73DRtWZfu1SETdWHrPDEm9MdzE=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.543431+00 2025-12-17 15:10:00.543436+00 34829 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p-rpufCKnT4hp_FqHd-aePKJ7cs=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.546249+00 2025-12-17 15:10:00.546254+00 34830 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AfXJwofPiizCV5AAVYZ_ZCdqzxQ=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.549049+00 2025-12-17 15:10:00.549057+00 34831 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BRbaC29nANhKgzKT07DiPfTATVQ=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.552179+00 2025-12-17 15:10:00.552185+00 34832 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y9qUGQ_zX3n9AVG16WkxRv5wQNg=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.554955+00 2025-12-17 15:10:00.55496+00 34833 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N346-YUqD2VCcLg7h-lQItZ9RgI=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.557336+00 2025-12-17 15:10:00.557341+00 34834 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dgV0-5P0FXnwrLWV2MeVOFsjqAk=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.559672+00 2025-12-17 15:10:00.559677+00 34835 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1aLDIA1oisQTTt1MF1wOKGfNXaY=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.561956+00 2025-12-17 15:10:00.56196+00 34836 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8sKKDSyAbdCEtc7w8U2T8h_AM2I=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.564316+00 2025-12-17 15:10:00.564322+00 34837 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EXzJ4soNnGzyPFLCD1bfAXSTndQ=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.567023+00 2025-12-17 15:10:00.567029+00 34838 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qcVtyp2r6NWGzXQND_mZuzXYDJw=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.570481+00 2025-12-17 15:10:00.570487+00 34839 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e3uJpWWjsZjPhmsEckKX5KmTHJQ=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.573092+00 2025-12-17 15:10:00.573096+00 34840 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0q86KJ5esnzqnjK-piM6HAFgLmY=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.575234+00 2025-12-17 15:10:00.575238+00 34841 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NMC4SiboQBk8Xtz50lqGPsYlGEo=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.577582+00 2025-12-17 15:10:00.577587+00 34842 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1_02_PZ-lClBqZEY4QegswCBKg8=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.579898+00 2025-12-17 15:10:00.579903+00 34843 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IGpmZlx01jNO7XQr7Ipm8xvGlsE=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.582018+00 2025-12-17 15:10:00.582022+00 34844 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3UXO7452FVHqpR_7KwYtGynTcrw=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.584202+00 2025-12-17 15:10:00.584207+00 34845 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GE2RiJooxSOBAoYxlEcgI5haubQ=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.586347+00 2025-12-17 15:10:00.586352+00 34846 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tkFU0aXdfJQzPlqHN9poWgSbixw=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.588727+00 2025-12-17 15:10:00.588732+00 34847 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EHrWXDNjtPOQNI3cLbtCgQLZuVg=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.591332+00 2025-12-17 15:10:00.591337+00 34848 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mUg-7lxP8j9XyRrVnKCGJP7RrS4=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.593755+00 2025-12-17 15:10:00.59376+00 34849 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:px_FY-qTkhcTgaR3jtV-kD5sIDE=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.596035+00 2025-12-17 15:10:00.59604+00 34850 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LYeSS-USKIf6y6CnekQ-HfAN7qA=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.598227+00 2025-12-17 15:10:00.598232+00 34851 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GGhdkDPN69OCRL_hf2lo8IxdSb0=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.600557+00 2025-12-17 15:10:00.600562+00 34852 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PpWG7HVn25LBJiKaARkVzapxM-4=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.602952+00 2025-12-17 15:10:00.602956+00 34853 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aniesqgWG1b7y_ZrR1yJt7QupIg=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.605234+00 2025-12-17 15:10:00.605239+00 34854 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2P9WWh0IbjndmRg9M6pMcAXvYG4=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.607337+00 2025-12-17 15:10:00.607342+00 34855 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6H0dmQfxm99VvDI1IZKmojf3vXA=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.609416+00 2025-12-17 15:10:00.609421+00 34856 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aLGqWGfcCMj8CuydkjjXDi6NyqM=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.611645+00 2025-12-17 15:10:00.61165+00 34857 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ecpYqVgU8BZ0bA2tTuN-U_NdsOM=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.614166+00 2025-12-17 15:10:00.614171+00 34858 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=1766070599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c6OH6ZPvCOlNQvVkaj3d-QXO_T8=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.95263+00 2025-12-17 15:10:00.952639+00 34859 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AF5OXskRjzQu_FAaDh7fKds7ZCo=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.956052+00 2025-12-17 15:10:00.956058+00 34860 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dpRZ6I_3VOl50FuemSJs1dP1YDs=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.958808+00 2025-12-17 15:10:00.958814+00 34861 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8yuIFEXVQnnaUPTNzVWV1htUSjs=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.961341+00 2025-12-17 15:10:00.961346+00 34862 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sC-1mKGAiFvzIscBvPyKbFOc4fY=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.963725+00 2025-12-17 15:10:00.96373+00 34863 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nuI5NbAAk_hABD5nIPY5GJ3sZJY=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.966244+00 2025-12-17 15:10:00.966251+00 34864 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lb0ygibXfZ_nS7sOnOuSMsQDlFg=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.968897+00 2025-12-17 15:10:00.968902+00 34865 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QsO6xzOUpBhb-baqly1q3GmIMkI=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.971383+00 2025-12-17 15:10:00.971387+00 34866 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tIhB-sHS1o54ZmKan4yXXVl1xug=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.973779+00 2025-12-17 15:10:00.973783+00 34867 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pZoB6M6hLe-5N0JH4RCeqn4quw4=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.97618+00 2025-12-17 15:10:00.976185+00 34868 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s1Tc-3WshSDXGWThTDqorHpyMXg=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.978262+00 2025-12-17 15:10:00.978266+00 34869 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_5g1EZsRbno3SRFsI6nGySW7xnA=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.980835+00 2025-12-17 15:10:00.98084+00 34870 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oa_sHluYtnsj-OOzm3kuGDHdM2E=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.98334+00 2025-12-17 15:10:00.983345+00 34871 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NouUkQzAbsd7_vIcCaKFXnlMO0I=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.98573+00 2025-12-17 15:10:00.985735+00 34872 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jHJ-Z6sFIdgix6fZcaUsHR0hItc=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.988292+00 2025-12-17 15:10:00.9883+00 34873 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o7u3_3ztawMQYhvVdCmXcuB5Lx8=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.991351+00 2025-12-17 15:10:00.991356+00 34874 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WiGOeO-iLYiPimrLlFL48_IxriA=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.994197+00 2025-12-17 15:10:00.994202+00 34875 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gf2JoxjBYpLejc1Tdt_XO0orHAE=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.996749+00 2025-12-17 15:10:00.996755+00 34876 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oqcPW49YNdFDTEd0UsUo46np8vk=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:00.99922+00 2025-12-17 15:10:00.999224+00 34877 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pf_SDm3f1Bpwm4i6G9SuOuhysc4=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.001813+00 2025-12-17 15:10:01.001818+00 34878 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z0BE6pmxKPLdfOaJP8k7t1tMabs=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.004419+00 2025-12-17 15:10:01.004425+00 34879 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jgnE97ltLVplg7p-eYD3mt7y5ng=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.007323+00 2025-12-17 15:10:01.007328+00 34880 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:awrTPy8EzjT5xiJNGd-UTCUN0Ng=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.009874+00 2025-12-17 15:10:01.009879+00 34881 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:55TXEUFCGOvtyqD-Jk1sHkyKq5w=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.012661+00 2025-12-17 15:10:01.012666+00 34882 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:du2dlkOUdFIzRsmHxECoAH9TL6E=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.015532+00 2025-12-17 15:10:01.015537+00 34883 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MiOMcbcrXXeVQdYV4DwvFAbGD4k=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.018429+00 2025-12-17 15:10:01.018434+00 34884 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jJITHCEi33X_3ni6Qj6-gzpXzbc=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.021183+00 2025-12-17 15:10:01.021187+00 34885 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DRF4XoqVAz_dtTw29wr9OgZ9f14=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.023886+00 2025-12-17 15:10:01.02389+00 34886 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QzNa02kHeC2vmJqOzN-JPeKQkTo=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.027294+00 2025-12-17 15:10:01.027301+00 34887 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1e9dsydjx7wJDHdSiPt5nHQ1rJM=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.030224+00 2025-12-17 15:10:01.03023+00 34888 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rY0qqjdE-sic44B5tiJ2UNbiPA0=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.032927+00 2025-12-17 15:10:01.032932+00 34889 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9X6kM7prwqu4tEERydT7KRXKV78=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.035467+00 2025-12-17 15:10:01.035472+00 34890 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4mgDSIZKZyfJD5E1V9b6tS9PieI=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.037888+00 2025-12-17 15:10:01.037893+00 34891 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cZvArvRkBs8omR7EhGI8yhX_hvc=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.040441+00 2025-12-17 15:10:01.040447+00 34892 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PeVuUMucekArNGacEUTVvLfkacE=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.043014+00 2025-12-17 15:10:01.043019+00 34893 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7YxZE7bE3OZSOSm5SxATL_9svdE=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.045606+00 2025-12-17 15:10:01.045612+00 34894 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PjlpzHgwQmv1rX2K15hGsgmXWpM=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.048252+00 2025-12-17 15:10:01.048257+00 34895 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ah4z2sFGTUNsknxIvAo6X2HA4sY=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.051035+00 2025-12-17 15:10:01.051041+00 34896 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R-N2xreWtkiW_DTDjjPPa333G7k=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.053703+00 2025-12-17 15:10:01.053709+00 34897 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ALqDkxGpiNzN3sP_RC70A-f_crg=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.056241+00 2025-12-17 15:10:01.056246+00 34898 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X8oX-eKpfs0E585mG1qs2R_qlAU=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.058809+00 2025-12-17 15:10:01.058814+00 34899 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RFIqt1J1wwg2lOeG5rcm0Ou-sII=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.061414+00 2025-12-17 15:10:01.061419+00 34900 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yfbRX1L79AtQhSLGWXxvHip1-4E=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.064061+00 2025-12-17 15:10:01.064067+00 34901 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y2R9PgQuZfT0eN0ExkPzX9a9rio=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.066693+00 2025-12-17 15:10:01.066699+00 34902 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:leYdcMcqMVt3aHr5zFZei4SE-0c=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.069438+00 2025-12-17 15:10:01.069444+00 34903 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lCl1Af83LXZ8lFttN3XUNPG0dyI=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.072103+00 2025-12-17 15:10:01.072109+00 34904 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FTVE6-MWxCE0irdtfpQJQYxqigY=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.074685+00 2025-12-17 15:10:01.07469+00 34905 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w-83Wch99dZS8j0A_N5cx86Bq_g=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.077313+00 2025-12-17 15:10:01.077318+00 34906 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9PJHWiDb5eZ63TkwNC9m5CeDn0Q=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.079944+00 2025-12-17 15:10:01.07995+00 34907 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bt-fVDwamw9kIr3_nf0Dv8SGWvg=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.082706+00 2025-12-17 15:10:01.082712+00 34908 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tTygswaRjsODKy-OhlMTegrqmt4=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.085506+00 2025-12-17 15:10:01.085512+00 34909 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SfxHYFfRfKKIcp15dvPD7S1znCk=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.088214+00 2025-12-17 15:10:01.088219+00 34910 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9mBWBYTo_MMZNRBk5xM8vXu3isU=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.090874+00 2025-12-17 15:10:01.09088+00 34911 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dv-icTnMjWdga7GZKB8wXHWy1k0=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.093461+00 2025-12-17 15:10:01.093466+00 34912 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MQi3Xg1Gq3jkLNd4_MDHCFNTaak=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.096034+00 2025-12-17 15:10:01.096039+00 34913 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8SY6GL7l3rM53nh4Xeitq9y7OxA=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.09869+00 2025-12-17 15:10:01.098695+00 34914 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5QGbFf4LApyLy0-siFOaQURH1_8=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.101299+00 2025-12-17 15:10:01.101305+00 34915 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vMzwS6dOQmMxhHcQlcw6Ed2UyT8=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.116153+00 2025-12-17 15:10:01.116161+00 34921 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XW6DpKmqhHW9uU7qqr1pT8Lf2Xk=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.103813+00 2025-12-17 15:10:01.103818+00 34916 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uC2jy-KBPpAYz9FNde1SIV3oCM4=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.106224+00 2025-12-17 15:10:01.106229+00 34917 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NCtGUkwzYIGXVgRKIqngSBidaNE=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.108325+00 2025-12-17 15:10:01.10833+00 34918 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fKopSoNOmRR1D-KG98BgbmwEb2A=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.110615+00 2025-12-17 15:10:01.110619+00 34919 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P3Gumb4vogWJqCHHguW-7hBK9yY=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.113002+00 2025-12-17 15:10:01.113012+00 34920 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DVz2ZoWlb_ffCL14CgQ5r6EE2p0=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.119134+00 2025-12-17 15:10:01.119139+00 34922 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EHzA2Pk6j7UIkyglhUCizdWKMCQ=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.121683+00 2025-12-17 15:10:01.121688+00 34923 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PeDKXzhGwjZd8AZ042QWTGGnR9Y=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.124024+00 2025-12-17 15:10:01.124028+00 34924 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I9a2xXaIR58jeEmMqrviS-dA-18=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.126346+00 2025-12-17 15:10:01.126351+00 34925 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zd29s_QbsMfXq-Z2Z-j8o6E7gI4=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.128396+00 2025-12-17 15:10:01.1284+00 34926 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vFROaIZ1K-qXE3X4FkzeGcrUHAI=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.130721+00 2025-12-17 15:10:01.130726+00 34927 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V6ZV41wJduPRBpqyZCV_etG-sFk=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.133066+00 2025-12-17 15:10:01.133071+00 34928 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eq1ttXe3c6gofA7KZYrJr7fCM2Q=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.135976+00 2025-12-17 15:10:01.135981+00 34929 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fttSIYx1jzv6CpZ0hCegv1S9eJs=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.138589+00 2025-12-17 15:10:01.138595+00 34930 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g9xyweqMXji4MAi--q0J8ZBZus8=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.140836+00 2025-12-17 15:10:01.140841+00 34931 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qItVB6OsSBlx1Bk-GbVkEziWHAQ=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.143088+00 2025-12-17 15:10:01.143092+00 34932 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1_wlncE-8k0LUqxWm9PbKn6sG2k=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.1453+00 2025-12-17 15:10:01.145305+00 34933 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w_VL_rj64-jhwlI7IyFhP6RWAug=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.147305+00 2025-12-17 15:10:01.14731+00 34934 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ObKPqSTJ4-L8DqTIe-3xLD02QRI=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.149473+00 2025-12-17 15:10:01.149477+00 34935 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HNvQWxI6VqhDd1binZX542b3TD4=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.151607+00 2025-12-17 15:10:01.151612+00 34936 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S36-EWBaCbK9f952PxqgMGDi_fs=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.153892+00 2025-12-17 15:10:01.153897+00 34937 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bN3QWdRIKTmRY0VgnwfCvcXubS4=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.156182+00 2025-12-17 15:10:01.156186+00 34938 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ljs6qrbfXkqdSTD9iTyVp3HFc8g=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.158554+00 2025-12-17 15:10:01.158559+00 34939 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jPYqUi7Neg9XkerWjZaNFqvVOEM=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.161037+00 2025-12-17 15:10:01.161041+00 34940 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5M4jDQOeRMdgo4Aa4hg9VYPQfxM=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.163418+00 2025-12-17 15:10:01.163423+00 34941 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LCHzAgrvmOTCaKJHoKOPITcPe98=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.165771+00 2025-12-17 15:10:01.165778+00 34942 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B-7gz8HRhVWq8IGTZXmOFQWzGH8=", "createTime": "2024-08-15 14:58:19"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.168513+00 2025-12-17 15:10:01.168519+00 34943 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:heRsFlfJc_1W5P38YrD3NAtgV0E=", "createTime": "2024-08-15 14:58:19"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.171158+00 2025-12-17 15:10:01.171164+00 34944 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ty-scZ357IMW_u_2N8AhWhx57a0=", "createTime": "2024-08-15 14:58:19"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.17372+00 2025-12-17 15:10:01.173725+00 34945 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jvqvFgSqbEY7ooo-vuZGc1859Mo=", "createTime": "2024-08-15 14:58:19"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.176247+00 2025-12-17 15:10:01.176253+00 34946 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q163zIhAjMW3za7UjvhIOOre4nw=", "createTime": "2024-08-15 14:58:19"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.178804+00 2025-12-17 15:10:01.178809+00 34947 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n20KoFlALwtiV0XFFtxrnltllQ4=", "createTime": "2024-08-15 14:58:19"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.18141+00 2025-12-17 15:10:01.181415+00 34948 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lRGMmYpPzIRSjGPaymQoD-V4P0Q=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.184055+00 2025-12-17 15:10:01.184061+00 34949 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vJHlUT7M8A6qI6fp047mAZsn-yM=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.186637+00 2025-12-17 15:10:01.186643+00 34950 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9p8f_Hjrmwi1cD6SVDycBo2zzhM=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.189238+00 2025-12-17 15:10:01.189244+00 34951 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1_chxRA2in1vmYQ3z4ry27v_FNk=", "createTime": "2024-08-15 14:58:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.191819+00 2025-12-17 15:10:01.191824+00 34952 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Po9Hk4WskVOEsNaexaAzFzU2SM0=", "createTime": "2024-08-15 14:58:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.194454+00 2025-12-17 15:10:01.194459+00 34953 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:65RfRRM3LA3cfW5Ij7VhaU029yg=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.19708+00 2025-12-17 15:10:01.197086+00 34954 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WxaUFP2x62eFWzUhOOW_NPAjN40=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.199929+00 2025-12-17 15:10:01.199935+00 34955 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kCt5PofWwkqx6oAC2umRkCvHj2M=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.202788+00 2025-12-17 15:10:01.202794+00 34956 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tMO9uPgVEzI-z6lW4HuSnZDvrVY=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.205492+00 2025-12-17 15:10:01.205498+00 34957 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IVZM8GTc0AGV7JQlMqeiT1VW51o=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:10:01.208085+00 2025-12-17 15:10:01.20809+00 34958 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=1766070600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JA2H-9GjkRys3CAuEE27k6vFbIs=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.573491+00 2025-12-17 15:20:00.5735+00 34959 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aji7C-CS9kr28K37H8y_HfgGuHw=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.577546+00 2025-12-17 15:20:00.577553+00 34960 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dMrkH8PORc9u4XZZ9-NH6Sx9zGo=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.580568+00 2025-12-17 15:20:00.580574+00 34961 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0QHURteR9Kx72tzMJv8S6mlxYj8=", "createTime": "2024-08-15 14:58:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.583602+00 2025-12-17 15:20:00.583607+00 34962 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tGYKKQF1wxNEpAGxzvbNIGqDnpw=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.586245+00 2025-12-17 15:20:00.58625+00 34963 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1rf4K9XOFl166rnJ5SOxW_GZM5g=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.588735+00 2025-12-17 15:20:00.58874+00 34964 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QgGFjeVUrlHJM1DzvNj3fjYi_aI=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.591161+00 2025-12-17 15:20:00.591165+00 34965 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VAw4g4D3sc3CVSQCNvDrbXWP-Z4=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.594083+00 2025-12-17 15:20:00.594088+00 34966 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DIkPeQ8-XHfdYYcA0HAPwUSN0Vo=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.596642+00 2025-12-17 15:20:00.596647+00 34967 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jx0Eg9Hsqvsus4Wjy_hMOTopJqQ=", "createTime": "2024-08-15 14:58:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.598991+00 2025-12-17 15:20:00.598995+00 34968 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:orvPPeJTJghkdT5cnciSh-4tUfY=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.601311+00 2025-12-17 15:20:00.601316+00 34969 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eckk6jSkt0j6y7cjGcSirGDbgO4=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.603477+00 2025-12-17 15:20:00.603483+00 34970 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2YGNUWiHsn9yMeF-E-YMAK4xqvE=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.605661+00 2025-12-17 15:20:00.605667+00 34971 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:todMiceQiVSa4OcbauXwEruR3eQ=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.608171+00 2025-12-17 15:20:00.608175+00 34972 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AEMC-AlUDQXqDTzKXK1WqjWUiJk=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.611201+00 2025-12-17 15:20:00.611207+00 34973 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c9A5jFZ_Hg5mgYNo2D9mFOpYSNw=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.614184+00 2025-12-17 15:20:00.61419+00 34974 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LtxrtDazZWxk9Zlu5oJItLiX1WA=", "createTime": "2024-08-15 14:58:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.616855+00 2025-12-17 15:20:00.61686+00 34975 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nRgGpCSM8c9sbMpH5AA_tXS97Y8=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.619463+00 2025-12-17 15:20:00.619468+00 34976 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MOzmzDNQah2EUE6Jyv_il10Thh0=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.621967+00 2025-12-17 15:20:00.621972+00 34977 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sIQTPkVE1ltG86VorKmByyYK2XU=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.624459+00 2025-12-17 15:20:00.624464+00 34978 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Js3Oojt925vjxoGTU0d3T8rq3DE=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.627462+00 2025-12-17 15:20:00.627467+00 34979 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pC7JSTd1pnhCsSr4VSLCZghlEKo=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.630118+00 2025-12-17 15:20:00.630124+00 34980 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DuMOXQuqKeTk0xgHMN43GzTZGgg=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.632547+00 2025-12-17 15:20:00.632552+00 34981 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HcoHykSDb1v-lMU-5_wnw-8GUkE=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.634939+00 2025-12-17 15:20:00.634944+00 34982 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KFYl-e3sY8_lbrGeKA44KyucaH4=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.637324+00 2025-12-17 15:20:00.637329+00 34983 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M6mW09LKiRdov7ISFlmYsN8ulek=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.639638+00 2025-12-17 15:20:00.639642+00 34984 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vv_yzzna1QpdOfxi_XbCQOlQduU=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.641737+00 2025-12-17 15:20:00.641742+00 34985 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SfRH5fU2gQX3d4CgVob2YFqd5h0=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.644308+00 2025-12-17 15:20:00.644314+00 34986 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ckkg1idLPMN7XpYXz1HYpkDuDXw=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.646885+00 2025-12-17 15:20:00.646889+00 34987 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aVyJGjk_B8r7W6Q13XxANkMNPCw=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.648997+00 2025-12-17 15:20:00.649001+00 34988 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dmaYO2GbEnMHyUIiT-VIO0w3Gr8=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.651336+00 2025-12-17 15:20:00.651341+00 34989 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AbNpJ1qXK1shNmHCiYdh_Up8Ujs=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.653575+00 2025-12-17 15:20:00.65358+00 34990 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0riTMiC0k7-rxt2Z5oEPcmD3bec=", "createTime": "2024-08-15 14:58:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.656329+00 2025-12-17 15:20:00.656335+00 34991 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zUzmRalCOiozpZ4zRZhXVXCkx2U=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.659105+00 2025-12-17 15:20:00.65911+00 34992 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HqjWz9Av5q-_-qj2FYRtz9Nlq4c=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.661628+00 2025-12-17 15:20:00.661632+00 34993 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5OJEWcG5Hw9YUqetfiUqrLfLDu0=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.663973+00 2025-12-17 15:20:00.663977+00 34994 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cc1gN9UcRYgFbqeubO0AaL8L180=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.666011+00 2025-12-17 15:20:00.666016+00 34995 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XSilNu0eMK5P_9nk28QpXpXOHEA=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.668132+00 2025-12-17 15:20:00.668137+00 34996 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h53mOuB2aJl7fjE9yVy1zqE1eVU=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.670642+00 2025-12-17 15:20:00.670648+00 34997 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7DQaocZFI_uN-w1Qebgkbc9dcXI=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.673191+00 2025-12-17 15:20:00.673197+00 34998 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N34vzGGxqrlHRTrkk0wxnTnls98=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.676109+00 2025-12-17 15:20:00.67612+00 34999 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4-MpBzTbPCTau3JqumjIcKDZqeI=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.679568+00 2025-12-17 15:20:00.679574+00 35000 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eLwoSKTlvQhrl2W27pPUhyGCE7o=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.68318+00 2025-12-17 15:20:00.683185+00 35001 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fo9OCbwIYNd2XrmIyGKw9ist1js=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.685839+00 2025-12-17 15:20:00.685844+00 35002 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I0FoC9X_53X-zS6dbJCKnGEo3so=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.688308+00 2025-12-17 15:20:00.688313+00 35003 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mdrhOA2cvqDfeD7fcU57qt2lB6U=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.690684+00 2025-12-17 15:20:00.690689+00 35004 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4QiaqZ8GXrEhUWe4SC8TRo5W4Lw=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.693251+00 2025-12-17 15:20:00.693256+00 35005 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:36Uw3rt98YzwyIdWlWBJcCUhjIE=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.695763+00 2025-12-17 15:20:00.695768+00 35006 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e8MPQPTvzKl_CqayMO_iRo9hZes=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.698436+00 2025-12-17 15:20:00.698441+00 35007 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UiOTju_2pkxeZNvSYnmfhcI4NTg=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.701148+00 2025-12-17 15:20:00.701153+00 35008 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b0E11VCp-WFmCl--zxfWn70Aw64=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.703545+00 2025-12-17 15:20:00.70355+00 35009 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZHzvM4o1ozLqq_K5LxGw9cWPjUI=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.70578+00 2025-12-17 15:20:00.705785+00 35010 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:osTKVXzcYNSJwk-f4BxGYJZsIJw=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.708016+00 2025-12-17 15:20:00.70802+00 35011 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:reKSTR6lyVlG9OF2HLNurp4BOsU=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.710364+00 2025-12-17 15:20:00.710369+00 35012 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FQzFFuf2LWbRcLAi4OzQ_SuVk38=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.712499+00 2025-12-17 15:20:00.712503+00 35013 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TVrzcaelBdVsk0OCqM3djQP5jRo=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.714881+00 2025-12-17 15:20:00.714885+00 35014 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Njg6JHn5L0wyvKuPAUnkLdzmtQ=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.717217+00 2025-12-17 15:20:00.717222+00 35015 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MwB6FZq9usLki1pGw9b2N7K8rqs=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.719515+00 2025-12-17 15:20:00.71952+00 35016 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WdjNkHwk7zQ4L2UdZg3En4pAKIA=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.721651+00 2025-12-17 15:20:00.721656+00 35017 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:820SzJpxQLUHztgSmuE3wnX9sDE=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.724296+00 2025-12-17 15:20:00.724301+00 35018 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FeIfUwNF5rDwFNTAxc7h-UY3LJE=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.726885+00 2025-12-17 15:20:00.72689+00 35019 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WjWS5D0gcPu6jssiakhfw_LCI6Q=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.729654+00 2025-12-17 15:20:00.729659+00 35020 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UTsWND1eaHe4_lrRcqVVXNj-4LY=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.732996+00 2025-12-17 15:20:00.733002+00 35021 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t_P23PMNahIDqg6BMau8ryKM_FA=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.736427+00 2025-12-17 15:20:00.736433+00 35022 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jls7eE5eTxxqQ7U_CXDhJj1DF8s=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.739533+00 2025-12-17 15:20:00.739538+00 35023 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1P_1wmuRcqnuyhPqg6LwyyzzX98=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.742662+00 2025-12-17 15:20:00.742669+00 35024 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OcRRECXemRj8FPEmA_WNN_TweR8=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.745683+00 2025-12-17 15:20:00.745688+00 35025 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wgPw0pkV_k--10CaDUeEQkZs2HU=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.748337+00 2025-12-17 15:20:00.748343+00 35026 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BmzHEJpHK4LcF3J_KXbGqwmez0g=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.750823+00 2025-12-17 15:20:00.750828+00 35027 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Itk40JSPO8aVVNWyp88MhSgrRNg=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.753246+00 2025-12-17 15:20:00.753251+00 35028 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5EPKYKn1YT0k5DDfPpauU9fkky4=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.755592+00 2025-12-17 15:20:00.755596+00 35029 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9nKve3IoJ7NlIJJwMXKufe3gwnQ=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.757699+00 2025-12-17 15:20:00.757704+00 35030 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OXur19wjzdkXJuAx4KsbgC0ivic=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.760185+00 2025-12-17 15:20:00.760191+00 35031 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zDjZbxjjQTctX6lQ2fNEJiL5nMg=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.762713+00 2025-12-17 15:20:00.762717+00 35032 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YnJJadIzSUJV64_tI-qWdOVqXeg=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.765068+00 2025-12-17 15:20:00.765073+00 35033 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4JXTixFbwewUTPGWe3kliKQl3oA=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.767419+00 2025-12-17 15:20:00.767423+00 35034 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Oh777ak8ZqO-pJNARUWjWncbeg=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.769824+00 2025-12-17 15:20:00.769829+00 35035 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ng6jcDpcN4HUJWTh_KuSjp7YAno=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.772001+00 2025-12-17 15:20:00.772006+00 35036 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GhnJUBQ7po24RA2ZVyolZIpRH_g=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.774365+00 2025-12-17 15:20:00.77437+00 35037 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6mXjRrhQhrI71Md0wj8si1AqjiI=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.777074+00 2025-12-17 15:20:00.77708+00 35038 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hk0h_jpgpGxOIEZaOgLv7LqIx8Q=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.77974+00 2025-12-17 15:20:00.779745+00 35039 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qKVVk7eOOThcglQi-PlChrdL-aU=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.782258+00 2025-12-17 15:20:00.782263+00 35040 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lM2laD8G9nMi6zpgiJd0MmOST4k=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.784619+00 2025-12-17 15:20:00.784624+00 35041 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UBoXZuTxW_HO_rpRxSSqqc6BZGE=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.786962+00 2025-12-17 15:20:00.786967+00 35042 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iA8J6VzWb7F1SA2tuColvz6HrZ0=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.789043+00 2025-12-17 15:20:00.789048+00 35043 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nWCxfvl7lNSWMKKgAtIkGmoC69o=", "createTime": "2024-08-15 14:58:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.791159+00 2025-12-17 15:20:00.791163+00 35044 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zh6MeUcJW-4Bu3di_zbjSHvAulU=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.793884+00 2025-12-17 15:20:00.79389+00 35045 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N_5lRnV2mR9hzAdfc_Xs0LT_4hw=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.796445+00 2025-12-17 15:20:00.79645+00 35046 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fn498zLb5iOWLsV47ka_3ai1I9g=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.798878+00 2025-12-17 15:20:00.798882+00 35047 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9OuMVuxiSFmtxcvTHGsU_IGav9c=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.801239+00 2025-12-17 15:20:00.801243+00 35048 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1EyDf7C56-Vd7oLyilGkDsUZ0Cs=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.803585+00 2025-12-17 15:20:00.803589+00 35049 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hnBstFZDWQAOP_ESk9HXMbR6Q7A=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.805923+00 2025-12-17 15:20:00.805927+00 35050 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VKFMT2ln6wAbE6eys8KFzv9Y9sE=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.808067+00 2025-12-17 15:20:00.808072+00 35051 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MHz2fWsQG4TAqlGZ2gQK4BsYlyU=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.810533+00 2025-12-17 15:20:00.810537+00 35052 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P5lbRlBOxw5ofB_t3QMSQ2z0V34=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.813046+00 2025-12-17 15:20:00.81305+00 35053 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NJBYRDFQZ8NVD2Wj8WepsNW9uV4=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.815407+00 2025-12-17 15:20:00.815411+00 35054 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6CSYXKUfE4MsIWc-f0T6aAc7OL0=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.817756+00 2025-12-17 15:20:00.81776+00 35055 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0qu8g5oz4KIfa0i8GGiCKAzfBtc=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.820113+00 2025-12-17 15:20:00.820118+00 35056 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RJyQtYuTZO11LXXbEYQl6xTqhac=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.822211+00 2025-12-17 15:20:00.822216+00 35057 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C-TfJmqu9S5k8i8_WmArssex7FA=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:00.824298+00 2025-12-17 15:20:00.824302+00 35058 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=1766071199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JizcqZjpZDQS2neEWTQ7G666X14=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.270763+00 2025-12-17 15:20:01.270768+00 35071 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2EoabNw6WFIZlB58CpXK7qypRyU=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.240072+00 2025-12-17 15:20:01.24008+00 35059 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:87e79Pb_ucCSGN9JFessOB6nhbM=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.243146+00 2025-12-17 15:20:01.243154+00 35060 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k-eD0zR1lEB0HlV9Qn0IUDp65uw=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.245923+00 2025-12-17 15:20:01.245928+00 35061 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sVjz7rI0doYnDBkT16E-CXwAnlk=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.24857+00 2025-12-17 15:20:01.248575+00 35062 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pCaDLnQHYfXiYNRRyjM8EmjmLds=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.273025+00 2025-12-17 15:20:01.273029+00 35072 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-iDfsfAL9ngQsiI2nNWqpu6pFBM=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.251006+00 2025-12-17 15:20:01.25101+00 35063 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9tP19T3o1JThJlCKN5F9GO0UhVA=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.25346+00 2025-12-17 15:20:01.253465+00 35064 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZFJ67c1iQHHgBm7fPyIZnZE9LcQ=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.255604+00 2025-12-17 15:20:01.255608+00 35065 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OnHbOTGdPieHIasTyhRZ9oaccEo=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.257785+00 2025-12-17 15:20:01.25779+00 35066 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AaT1L1uUqTGZa1mDnkmelFUJdY0=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.260519+00 2025-12-17 15:20:01.260526+00 35067 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k8Z3lxghuCuEtFzPwLXGhiZ-JUk=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.263479+00 2025-12-17 15:20:01.263484+00 35068 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:njT4MWDwwhupolTLCeyi8gFaQ14=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.266092+00 2025-12-17 15:20:01.266096+00 35069 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_trjG4VlpKoqBXzZkZCjMF19b0s=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.268636+00 2025-12-17 15:20:01.268641+00 35070 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZBByNgT0GgHy2u9RgApzQMec9Qw=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.275408+00 2025-12-17 15:20:01.275413+00 35073 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TEU59tdeFsf-GvKMA4Q2Y9j841Q=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.278295+00 2025-12-17 15:20:01.278301+00 35074 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X65w3vWp8EsMKwcHlmeMOX3iSl8=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.280982+00 2025-12-17 15:20:01.280988+00 35075 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m0b9VfE1URa6urPA2zQpdUWYZoM=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.283356+00 2025-12-17 15:20:01.283361+00 35076 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sVXGv3OUkvuL-2h-4ppczAKVWr4=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.285885+00 2025-12-17 15:20:01.285891+00 35077 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gBiH3-6aNzchMX3PYVg3kO2xc7Q=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.288454+00 2025-12-17 15:20:01.28846+00 35078 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YnEuVuFM5PKjVGRQ4KsZrUr5-1U=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.291017+00 2025-12-17 15:20:01.291022+00 35079 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TyK275iqnEAAC1e5sFo38-szmGA=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.294151+00 2025-12-17 15:20:01.294156+00 35080 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kreUb5JT3sj-rkAsG_2QYkO_-2g=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.296804+00 2025-12-17 15:20:01.29681+00 35081 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6XXaihTkJFwe0PUN8lhoV7xKy80=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.299479+00 2025-12-17 15:20:01.299486+00 35082 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vwv4LWpBzy59PewhOltmUixFZk0=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.302321+00 2025-12-17 15:20:01.302326+00 35083 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H6uA2wHNR86lqP7kHpdz9a3z5nk=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.304958+00 2025-12-17 15:20:01.304963+00 35084 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qx1nNuA2bggU4xbbzN-BCcjKrPs=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.307406+00 2025-12-17 15:20:01.307411+00 35085 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9lq3UAnPgbgTP2wMovnp87pXMdk=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.309946+00 2025-12-17 15:20:01.309952+00 35086 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xunxoDF6xFvlpwH42Iq2RT2QxJw=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.312736+00 2025-12-17 15:20:01.312741+00 35087 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Br0fG854jBAuOPyHvOwC1DXa1Iw=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.315271+00 2025-12-17 15:20:01.315275+00 35088 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SFsjYYjVBYyvNlMgyL6K7_efXSc=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.317574+00 2025-12-17 15:20:01.317579+00 35089 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bBL8pS_vcR_ylx6j7iRrIZqI9Ng=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.319908+00 2025-12-17 15:20:01.319912+00 35090 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bkkb1C88ZHF6NmZkPqBv_7cw5EI=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.322018+00 2025-12-17 15:20:01.322022+00 35091 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7wDNELxXgr8K_r4G0DKzkm-aUVc=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.324117+00 2025-12-17 15:20:01.324121+00 35092 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SuMBfq0v04PM9H7TJ9uSBlWKEw4=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.326401+00 2025-12-17 15:20:01.326407+00 35093 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XIE_xNwXm0l8D-1ecsOQX99Ahaw=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.329133+00 2025-12-17 15:20:01.329138+00 35094 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dO8-HSrsAmSzGWAkRvQ0tUMqVrk=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.331704+00 2025-12-17 15:20:01.331709+00 35095 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:prMkV1P_uHbtdxJL1vEhrWHU0Gw=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.334172+00 2025-12-17 15:20:01.334177+00 35096 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:faNQB1jMvPybK6M3rzQ2pPL95_U=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.336302+00 2025-12-17 15:20:01.336307+00 35097 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oGFAyQF99lQxKOw-dKPP6QkNzgo=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.338806+00 2025-12-17 15:20:01.33881+00 35098 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jPBHSKQzFpY53zFrkJXdG9-8t4M=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.341099+00 2025-12-17 15:20:01.341104+00 35099 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SxojsszAh_0z-LJ1MzpqtVKdcDQ=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.343627+00 2025-12-17 15:20:01.343633+00 35100 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hIl-6mNre4lzOPdKxjR72EGNJo0=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.346478+00 2025-12-17 15:20:01.346483+00 35101 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ko24uzeZGAKGjsVom_TmTDM4nYM=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.349232+00 2025-12-17 15:20:01.349237+00 35102 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_08oFUDqV8eYjrXSvYIaB4wK6_k=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.351725+00 2025-12-17 15:20:01.351729+00 35103 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aMZqkzRRpD6R3Qbw4iSAwAlDNdQ=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.354133+00 2025-12-17 15:20:01.354138+00 35104 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v8KBaalrbEc4dLzWJvtFTEzNt14=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.356455+00 2025-12-17 15:20:01.35646+00 35105 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BTn8VBD3PmqoYTC9Dkpf4Dzg74s=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.358849+00 2025-12-17 15:20:01.358854+00 35106 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9_OhfKgtvVU7MtWtvN8z9Xg5UdQ=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.361657+00 2025-12-17 15:20:01.361662+00 35107 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T2VlIbUqWAyZD9QFQmjJlTeow3Q=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.364437+00 2025-12-17 15:20:01.364443+00 35108 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AeYf6urgRSDPiVIekbD86FVBLTo=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.366884+00 2025-12-17 15:20:01.366889+00 35109 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VHcBvh9WWTJlwQ5qMfVstVKvS2Q=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.369235+00 2025-12-17 15:20:01.369239+00 35110 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rGQT_3w8biGgziqXLBLpG4lgxbs=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.371618+00 2025-12-17 15:20:01.371623+00 35111 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oc8qsqr_uIJ3A2bDVlsmNSBp_Aw=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.374167+00 2025-12-17 15:20:01.374173+00 35112 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0bYMpwpk6ZFAvER6frlpFQRuVnc=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.377027+00 2025-12-17 15:20:01.377033+00 35113 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_5DH7mgckoyZ8IS6HvksMK6RsR4=", "createTime": "2024-08-15 14:58:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.379822+00 2025-12-17 15:20:01.379828+00 35114 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mukxoBbiehnozNz5jWCS6XxrJJ8=", "createTime": "2024-08-15 14:58:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.382486+00 2025-12-17 15:20:01.382492+00 35115 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZetIC0SRioQFAtgevK7SHEKrvwU=", "createTime": "2024-08-15 14:58:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.396159+00 2025-12-17 15:20:01.396165+00 35120 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6nxob23HXBXlJCYp28XQ0jr5pQY=", "createTime": "2024-08-15 14:58:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.385096+00 2025-12-17 15:20:01.385102+00 35116 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Hi3uctiVHt6YMINoZhr5kW67zI=", "createTime": "2024-08-15 14:58:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.387847+00 2025-12-17 15:20:01.387852+00 35117 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AMHbwubRpWNdIeoJ-0scvLe0z1o=", "createTime": "2024-08-15 14:58:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.390583+00 2025-12-17 15:20:01.390589+00 35118 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tE0Ji-V1IG3uEIVfp0oSTHlqaQk=", "createTime": "2024-08-15 14:58:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.393309+00 2025-12-17 15:20:01.393316+00 35119 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yonxWVHn0mbMlh_wk1kIsr3wIL4=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.398884+00 2025-12-17 15:20:01.398889+00 35121 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ICA0HO4SsoToMSJlwuTPbm1Bb8=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.401498+00 2025-12-17 15:20:01.401503+00 35122 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K72z3v0oY9jxMz8e9KMGL5cmrSc=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.404075+00 2025-12-17 15:20:01.404081+00 35123 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PLZibyQ_ph2shTuUdYJaf8AxefM=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.406644+00 2025-12-17 15:20:01.406649+00 35124 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:55qFQZQ-1UcAgeH-fXTkF3zoyCE=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.409283+00 2025-12-17 15:20:01.40929+00 35125 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:afLYjvbakhlrSQb8dUmdN_H0fHk=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.412165+00 2025-12-17 15:20:01.412171+00 35126 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kkb13Vm2l70R28l08GFqPvpcoAQ=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.414818+00 2025-12-17 15:20:01.414823+00 35127 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9QHTUB_WBYdtxnUAbt_64izEHVI=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.417208+00 2025-12-17 15:20:01.417213+00 35128 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I35HpkSSFc6dDHOiaQ3UimPWlAw=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.41964+00 2025-12-17 15:20:01.419645+00 35129 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j-aCfQdKlLeFE3JCnrDDgjbZ_a4=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.42203+00 2025-12-17 15:20:01.422035+00 35130 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gvzD-1bttiti64ddiD1rvr57t-o=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.424475+00 2025-12-17 15:20:01.42448+00 35131 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KEmO1Tj_cIsMYluPoTAKjUbgAbY=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.428224+00 2025-12-17 15:20:01.428232+00 35132 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tQd-oB-hhHw97CqLh7M-R1M8VeQ=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.431541+00 2025-12-17 15:20:01.431548+00 35133 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nXAxiWGaZK4_Cf8488okTRBzYU4=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.434309+00 2025-12-17 15:20:01.434315+00 35134 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bzQwxnqVdeGdEfg1a6BAG7NQNAk=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.436998+00 2025-12-17 15:20:01.437004+00 35135 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GwvV3NIVv0mD0gvhl54_PQiNRaw=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.439687+00 2025-12-17 15:20:01.439693+00 35136 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P3PzkPxceQNxRAZEzwQpUGllk-Q=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.442307+00 2025-12-17 15:20:01.442313+00 35137 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ZNqVU-E48mhsrOl-plB2ZKdkV4=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.44537+00 2025-12-17 15:20:01.445376+00 35138 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-FC-j-UrHgm8MuQEIf1pXYgPARY=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.448286+00 2025-12-17 15:20:01.448292+00 35139 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_1h_8XKB7eOzc3zSsiE8IQGZT6Q=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.450896+00 2025-12-17 15:20:01.450901+00 35140 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qfZQ0JtevV3wqpT2MJREVJp6nt8=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.453532+00 2025-12-17 15:20:01.453538+00 35141 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6DY5vipIAVNNuNuQy1t8MVdLIu8=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.457993+00 2025-12-17 15:20:01.457999+00 35142 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MEKmgp-m9CYJon7xusVkPI0ZJL4=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.461278+00 2025-12-17 15:20:01.461284+00 35143 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nzssDphQQUZb_SYlX2MtMfTDh_c=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.464583+00 2025-12-17 15:20:01.464589+00 35144 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5AgGj-YATuK7PpM5Kki1JCBcymU=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.467544+00 2025-12-17 15:20:01.46755+00 35145 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:imUDVItUyuc0B_iV1XzH9qRFVeo=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.470427+00 2025-12-17 15:20:01.470432+00 35146 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XTIf6FsvFJF5kaZy8OyNVwh9jg8=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.473349+00 2025-12-17 15:20:01.473354+00 35147 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9iOApDmtca8WDRlW8MmoztW74jo=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.476436+00 2025-12-17 15:20:01.476442+00 35148 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qdpFCjbo0LiEeNwhBe17Tt02FW0=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.479535+00 2025-12-17 15:20:01.47954+00 35149 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XXc_wIahI0pMwQwRnHABr3RDnYg=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.482306+00 2025-12-17 15:20:01.482312+00 35150 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JX3QpgwunivBPainwxtxpBX99dc=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.485024+00 2025-12-17 15:20:01.485031+00 35151 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QtMv8uqOviyVZyll3UY02pFQ-S0=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.487595+00 2025-12-17 15:20:01.4876+00 35152 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WiOx327YyGFLh403mzgO4FiNsAs=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.490008+00 2025-12-17 15:20:01.490012+00 35153 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gIIoepC3YCFNvyEgIeWp_FSsXgo=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.492475+00 2025-12-17 15:20:01.49248+00 35154 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C3U2zuJTgXOariDHboAyD40VO0g=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.495407+00 2025-12-17 15:20:01.495412+00 35155 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zxifbbINaDgHhbMk6D5QQNkH6Jo=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.498697+00 2025-12-17 15:20:01.498703+00 35156 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ks2jN_JsmThLs31iWjwnNRqqpI=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.501706+00 2025-12-17 15:20:01.501712+00 35157 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NnLysi5uEXZ60du1hDMzBn1KsP0=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:20:01.50434+00 2025-12-17 15:20:01.504346+00 35158 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=1766071200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dMqn3NNyCJiPlK1MS82DHetWVWA=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.42266+00 2025-12-17 15:30:00.422669+00 35159 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dBjQHR6RZDyCbt_m0XubcaoH63c=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.426497+00 2025-12-17 15:30:00.426506+00 35160 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HUV2MGHU_9Dpaz0FSFD8lS9btqE=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.429798+00 2025-12-17 15:30:00.429804+00 35161 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VTY9za0RZ6UD7gVx8QMnH4HxN40=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.432775+00 2025-12-17 15:30:00.432781+00 35162 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UX6K2cSLHRKZpGyfy5oTf3kJZ5Y=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.436551+00 2025-12-17 15:30:00.436557+00 35163 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bFSkDkKZZK9dZuskQROq15OzaAE=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.43932+00 2025-12-17 15:30:00.439326+00 35164 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Z_fiH2O9xgGLH5BCMxxB1rZ60I=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.442018+00 2025-12-17 15:30:00.442023+00 35165 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qmsU1woSKqsLkujZRSMM_DsR7fU=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.444448+00 2025-12-17 15:30:00.444453+00 35166 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HlsV-H2Yh0TTjYvhqh1FE2PhFMs=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.446867+00 2025-12-17 15:30:00.446871+00 35167 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kLSFzSe3jx5DvOB4dDVKi5dEWAA=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.449209+00 2025-12-17 15:30:00.449214+00 35168 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r_ZKJrghZw5tQD2ZGtH0SPgLQso=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.45155+00 2025-12-17 15:30:00.451554+00 35169 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ysZ1LBjOipVEb6J-RINqOYUH8MA=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.454331+00 2025-12-17 15:30:00.454338+00 35170 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fYigmbnuCzKzT65_RuZFiHnrWzI=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.457495+00 2025-12-17 15:30:00.457501+00 35171 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9I9TgW6FWolxlbWjqqrKwC-j57w=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.460337+00 2025-12-17 15:30:00.460343+00 35172 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MfIso65jKKooOuDybP_HQzjX09g=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.462965+00 2025-12-17 15:30:00.462971+00 35173 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H7U6BQqSlIEN-vtm5GAbFabGcMs=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.465653+00 2025-12-17 15:30:00.465658+00 35174 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qXS7-blLLnUUmGDgy1ACkppYIbQ=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.468517+00 2025-12-17 15:30:00.468525+00 35175 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nVVocTUbyuoI_rrr42zdYbFLljo=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.4718+00 2025-12-17 15:30:00.471808+00 35176 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JRZxTj8Lys9trKv-88BdU9IJcRo=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.475283+00 2025-12-17 15:30:00.47529+00 35177 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9gLnGbZTD1NRoFGTqPzyiSVDA2Y=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.478878+00 2025-12-17 15:30:00.478884+00 35178 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UB92vUO1dfjXmQp04asRKggntHU=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.481737+00 2025-12-17 15:30:00.481742+00 35179 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eWOIRxft8aIgRBFxHHi8A02pUNs=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.484134+00 2025-12-17 15:30:00.484138+00 35180 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nLFgCCayga3ST5ftrDHTXvg-RRQ=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.486685+00 2025-12-17 15:30:00.48669+00 35181 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sURLCMAUAHdmbMSdOfmnc0Kb1Yk=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.490083+00 2025-12-17 15:30:00.490092+00 35182 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a62C1X4ZhIt1JUMqQwmHzemnqWc=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.493876+00 2025-12-17 15:30:00.493884+00 35183 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mDqwSl2SCuAJLmQA38Z_sFJYLJ8=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.496737+00 2025-12-17 15:30:00.496742+00 35184 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nWIRfqa-29jFOmoB1dnER_Ajnn8=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.499151+00 2025-12-17 15:30:00.499156+00 35185 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:35eQU9q3E3z6mMIbo1syxkTvi00=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.502096+00 2025-12-17 15:30:00.502101+00 35186 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n0I22zmbSUJ0-oNVdllt61h5Xs4=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.505068+00 2025-12-17 15:30:00.505073+00 35187 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZvNL0-VRbxxL5gn_1LyO0c2rt6w=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.507876+00 2025-12-17 15:30:00.507881+00 35188 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5WKof8rF1NZo5jkJ4oXxK4P0M3U=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.51038+00 2025-12-17 15:30:00.510385+00 35189 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SUtMtlj04oqNMcppnrvtTfF518k=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.512925+00 2025-12-17 15:30:00.512931+00 35190 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QWGdZtccx5uPOSIWGLBPIy4x_9A=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.515316+00 2025-12-17 15:30:00.515321+00 35191 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BLKdRKtYXqnl4jRpDg31PzJBXmU=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.51776+00 2025-12-17 15:30:00.517765+00 35192 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nqudMNTphX2VZZx2X-KQnq_xyQ0=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.520377+00 2025-12-17 15:30:00.520382+00 35193 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AjBJU0mj_EVoWhCPLf1O1_9dg4w=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.523496+00 2025-12-17 15:30:00.523502+00 35194 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SDphh0QvtTx2aLOnbJ7qmt6l4xM=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.526388+00 2025-12-17 15:30:00.526393+00 35195 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:leghyCrBYKXLKksuxXARvUd0pNA=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.52914+00 2025-12-17 15:30:00.529145+00 35196 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g5knxDHhunE62Qp6oJ-j2YLknY0=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.531712+00 2025-12-17 15:30:00.531717+00 35197 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C7DDVFwt42sDsBog0HxvXILVSR0=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.534416+00 2025-12-17 15:30:00.534421+00 35198 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6a6IIiSswZ_H8kcq4E-27QG77aE=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.537616+00 2025-12-17 15:30:00.537622+00 35199 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X1KT3_iy7A-x-4XFUWG4W8rWq5Y=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.541332+00 2025-12-17 15:30:00.541338+00 35200 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FnnlUW3JZAbdU9-tnOLWWnMY7g8=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.544834+00 2025-12-17 15:30:00.54484+00 35201 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tuXOlnNJiGEnC3JrLvNlvX8lMqE=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.547948+00 2025-12-17 15:30:00.547952+00 35202 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NXi3O1OM-lZwUIxhOQE-kTKFAmM=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.550961+00 2025-12-17 15:30:00.550967+00 35203 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Vat-w6Dcm2_5pKlxMvDPSRbZtw=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.55393+00 2025-12-17 15:30:00.553935+00 35204 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GomEldqbNlWmZ9AOfk8L9B-JNjg=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.556926+00 2025-12-17 15:30:00.556931+00 35205 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z0uUf3O1wBbxVtODRA730whY7Qg=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.559401+00 2025-12-17 15:30:00.559405+00 35206 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dcToQ6eysLaVpMlHDWrbPI8n0nk=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.561501+00 2025-12-17 15:30:00.561506+00 35207 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IA7q_G2oG3mDfq3a3v2sn9zowOM=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.563914+00 2025-12-17 15:30:00.56392+00 35208 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SxRdY7rqZ9uhVTM_9NZgvfc4zXY=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.566518+00 2025-12-17 15:30:00.566524+00 35209 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9j5IZ-ybhjHKBf43SWQN-NADb-c=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.569833+00 2025-12-17 15:30:00.569838+00 35210 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xEAC0Q29mHzFc-fLl1ymnR5AZBs=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.572834+00 2025-12-17 15:30:00.572839+00 35211 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OyqQTJhutO0Ds1Wdzo6LNMQoLSI=", "createTime": "2024-08-15 14:58:45"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.575317+00 2025-12-17 15:30:00.575322+00 35212 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lOp87RtAe7IRFjsfPdzlBXH1aDs=", "createTime": "2024-08-15 14:58:45"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.577767+00 2025-12-17 15:30:00.577772+00 35213 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FatjDXuma4mj4oSgysAtpPT8g0E=", "createTime": "2024-08-15 14:58:45"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.580113+00 2025-12-17 15:30:00.580118+00 35214 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ea8welLuJrBn3oMssZ9qyjWVMnk=", "createTime": "2024-08-15 14:58:45"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.58247+00 2025-12-17 15:30:00.582474+00 35215 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y67Pr0eqUmC_PuVo9_NA0F-eBeE=", "createTime": "2024-08-15 14:58:45"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.584678+00 2025-12-17 15:30:00.584683+00 35216 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G9wyOLOAEBes2IwsQO-lXa9nLds=", "createTime": "2024-08-15 14:58:45"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.587536+00 2025-12-17 15:30:00.587541+00 35217 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j_CO59LkkFWz6inpyfqAUWD0jig=", "createTime": "2024-08-15 14:58:45"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.590767+00 2025-12-17 15:30:00.590772+00 35218 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uFXo6yvP0MQUXO8z0st-1R2tACg=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.593668+00 2025-12-17 15:30:00.593673+00 35219 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iUJUeIWBjbxZgyvOkXV6h18APvA=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.596099+00 2025-12-17 15:30:00.596104+00 35220 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HXtpHmuqW7_v5BF5Gz3rpw2K1VE=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.598445+00 2025-12-17 15:30:00.598449+00 35221 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cpp0sb0cc6VDTvBoAZfP1OCMHEE=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.600821+00 2025-12-17 15:30:00.600826+00 35222 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LR7GXgOPirocoaL5MbJdfU6qtdk=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.603393+00 2025-12-17 15:30:00.603399+00 35223 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ilnYdFaFjz960S76Ah4wC17aFI=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.606323+00 2025-12-17 15:30:00.606329+00 35224 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cVZhopg6yIeho9aLMX3SDtCHhss=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.609125+00 2025-12-17 15:30:00.609131+00 35225 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v0y5pz9vURj-wBH9kjDeKnLVYG8=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.612137+00 2025-12-17 15:30:00.612142+00 35226 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZMb90FrEwVRE5MS7F0Yv7BHiC84=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.615018+00 2025-12-17 15:30:00.615024+00 35227 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZxdjbwnnGocErqzxa2rjOCGPFjc=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.617593+00 2025-12-17 15:30:00.617599+00 35228 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bz-3qnS_ILKx3Ky-KnvCYlaVCGw=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.620354+00 2025-12-17 15:30:00.620359+00 35229 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8wpywALKnqJlmo5hB6hJOzdxS3I=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.623162+00 2025-12-17 15:30:00.623168+00 35230 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tb8iFyZrmOgAGjcmJ0tdr9UUp8g=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.625697+00 2025-12-17 15:30:00.625701+00 35231 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0KxtWvGE4uzwggQXLll0TAdNZRE=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.628077+00 2025-12-17 15:30:00.628081+00 35232 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XUZFVtzc7XiYV9yJiVzwdSbYsVw=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.630655+00 2025-12-17 15:30:00.630662+00 35233 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4182bzEtfjDTAV-4nf3Z4tiuifQ=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.633854+00 2025-12-17 15:30:00.633861+00 35234 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z2879LagIDLu6jA8JYyh_DKVry8=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.63802+00 2025-12-17 15:30:00.638029+00 35235 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pVv7FuhZN52QOvkUhrl-Nsg_1fc=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.641959+00 2025-12-17 15:30:00.641967+00 35236 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qKPN8gO7y583oyw6pDakCfIos7Y=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.645633+00 2025-12-17 15:30:00.645642+00 35237 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4nmm1JYLO3nhiG0AJ0jsBwXLYnY=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.648669+00 2025-12-17 15:30:00.648674+00 35238 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tCAhGhC5lDF2ACS8TXI5rNn8DKc=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.651215+00 2025-12-17 15:30:00.65122+00 35239 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pcYKgrsWbjoeFDcoBUB3awRcCAo=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.654+00 2025-12-17 15:30:00.654005+00 35240 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lJmZ6-Cb_gX0NnOHmSW3JD7Qb18=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.657044+00 2025-12-17 15:30:00.65705+00 35241 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ke0ak_JkbSp_9NZiNu4vlzcL6ZI=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.660224+00 2025-12-17 15:30:00.66023+00 35242 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MfeE9ZLuUVJFHc55ra_yszpuJao=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.663424+00 2025-12-17 15:30:00.66343+00 35243 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z61GN5vqH1GglltcFt3VDHfB91k=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.666078+00 2025-12-17 15:30:00.666083+00 35244 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_deaEVbkZUCp7GbZqhicUCjCz90=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.668591+00 2025-12-17 15:30:00.668597+00 35245 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rijQhGN7Z8kQrXwrBo-jmAgegH0=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.671298+00 2025-12-17 15:30:00.671303+00 35246 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ztmlxLC-BT28Qw4nRC5WG1-DZb8=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.674133+00 2025-12-17 15:30:00.674139+00 35247 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_kEtwLjYD8YQsRM2M5Bf5P3eHgQ=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.677115+00 2025-12-17 15:30:00.677121+00 35248 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5yb75BmsyTfN5C1MkMjz78t0fgY=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.6799+00 2025-12-17 15:30:00.679905+00 35249 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:egGavhZvzQ1KIxnd5I-goiDsYOQ=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.682976+00 2025-12-17 15:30:00.682982+00 35250 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VW96KWg_lvGdA1M5XBlQwMT-vMY=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.687057+00 2025-12-17 15:30:00.687067+00 35251 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7LrDI6WXp06pYmiY2ji4Dk4rAFU=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.690999+00 2025-12-17 15:30:00.691004+00 35252 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Np81y3v2wnNZxb5bLH7JzMJJPpk=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.693778+00 2025-12-17 15:30:00.693783+00 35253 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xbz6J1-gKJzhnTGDd_bdXRs7DRE=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.69611+00 2025-12-17 15:30:00.696115+00 35254 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5TmIHRr8g6DsC8xOnTC0VZlOGuc=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.698516+00 2025-12-17 15:30:00.698521+00 35255 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4XN3axH68noqYdxXYAc_y4cJEds=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.701028+00 2025-12-17 15:30:00.701034+00 35256 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Th4-KjttQ4NPUw8_fr5Gif6AzDA=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.703495+00 2025-12-17 15:30:00.7035+00 35257 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AqY5-AiWn1Vn3yZZo2a4-njIH6Q=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:00.705943+00 2025-12-17 15:30:00.705948+00 35258 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=1766071799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8iS2juiWIM-DRjiwjeMvx1QQ9bM=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.067771+00 2025-12-17 15:30:01.067783+00 35259 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2pLvj9uhpa2Y6wcd75ReLUx9rOQ=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.072047+00 2025-12-17 15:30:01.072055+00 35260 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:knET0qsDzzMuYJF2HQq3uhXO_VY=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.075255+00 2025-12-17 15:30:01.075262+00 35261 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C0vSo_2P9MYy39HnHzVT7zHd5PM=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.078017+00 2025-12-17 15:30:01.078023+00 35262 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gum6EQVVNAG4k2PvttJOrqqEV9Y=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.080754+00 2025-12-17 15:30:01.080759+00 35263 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OTj9C9vBK9peuVATikfIkJrDb7U=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.083409+00 2025-12-17 15:30:01.083414+00 35264 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H4GbKk1mYsbVaqKs6LDqSrTuU_U=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.085907+00 2025-12-17 15:30:01.085913+00 35265 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yThjtU2PLa81Ior00PNkvMi4XBA=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.088326+00 2025-12-17 15:30:01.088331+00 35266 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5zGZOtpm_4ZnOJbRDzlfsn0YWoU=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.090988+00 2025-12-17 15:30:01.090993+00 35267 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_V2jyeJJOGPlYa60Knt4NALqQ7M=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.093509+00 2025-12-17 15:30:01.093514+00 35268 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_wKo7VfgvHAqI5AM5X71jgq3PAI=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.095958+00 2025-12-17 15:30:01.095964+00 35269 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-RIkGwMiJtSbsK6jYg1Ob1rBG5g=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.098362+00 2025-12-17 15:30:01.098367+00 35270 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GWFb_eK2x2cA6JjcoMk3z1zQXoY=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.100844+00 2025-12-17 15:30:01.100849+00 35271 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:68Zulb1tYZ9Jba_PaeknUkUogXA=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.103768+00 2025-12-17 15:30:01.103773+00 35272 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C7i4xW16frrVrfGQOQJnwgBpI9o=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.106517+00 2025-12-17 15:30:01.106522+00 35273 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kvDPdlEKZNGBujtIXScjfc2hVzg=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.10905+00 2025-12-17 15:30:01.109055+00 35274 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OHd7TAwaOm6RBY4yOU7qyxe8x_Y=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.111432+00 2025-12-17 15:30:01.111437+00 35275 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wubf5Lh8Mlt_dN00gmUz1lZjSu8=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.113529+00 2025-12-17 15:30:01.113534+00 35276 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s9ogAmnbXD9dg_PAX8P9ACiL1TM=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.115771+00 2025-12-17 15:30:01.115776+00 35277 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0vsslc-n01v8Bq_tuaEPYtM22KQ=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.118274+00 2025-12-17 15:30:01.11828+00 35278 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jkTOzIHwNL43bxgzJsUp4zCujUo=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.1212+00 2025-12-17 15:30:01.121204+00 35279 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3jJ8y7bXh3wYMFiHrgeLemx0Dzw=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.124195+00 2025-12-17 15:30:01.124201+00 35280 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eq-F7GG3fJ20N961xiRi1iTgThY=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.126752+00 2025-12-17 15:30:01.126757+00 35281 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fdNzFWqATWarWCNBTDazw7awPBU=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.129292+00 2025-12-17 15:30:01.129297+00 35282 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hnPEG99IvHAX0NSYQZvCMmCwUBw=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.131806+00 2025-12-17 15:30:01.131811+00 35283 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vzxM2ftse2dcKElY5xN5_GlT2HA=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.134427+00 2025-12-17 15:30:01.134432+00 35284 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:poReH0jPmuI1rSM916RQ5SgbGJc=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.13716+00 2025-12-17 15:30:01.137165+00 35285 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EgS_tPIPKEQ1ZfO-5zrLEMxeMfc=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.139896+00 2025-12-17 15:30:01.139902+00 35286 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-oR0R3-UrLeZ40DG9gSZSstchO8=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.142826+00 2025-12-17 15:30:01.142832+00 35287 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vDHVSITDRkRDjoLBkUvTLyVlgFo=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.145691+00 2025-12-17 15:30:01.145696+00 35288 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rZkBQWYv-RX_-VUAoablbBFJNuw=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.148067+00 2025-12-17 15:30:01.148073+00 35289 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VkasWFxd_2pNXYjYTbcQSaSq6ck=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.150629+00 2025-12-17 15:30:01.150635+00 35290 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BTVBi623Lg4KQ-AQ-EybFX2Z9oY=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.153199+00 2025-12-17 15:30:01.153204+00 35291 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ekCdynYxdOfjSqdzPDqZEwWejLI=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.155891+00 2025-12-17 15:30:01.155897+00 35292 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FMpppZjYpUxT4PxBnpwMgtE2ECk=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.158548+00 2025-12-17 15:30:01.158553+00 35293 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9aYEdLu1ts_IDHRb6yZjuKv5n1M=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.16114+00 2025-12-17 15:30:01.161146+00 35294 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4nZaJseE0jU15pHG8Wt61S7hMWU=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.164023+00 2025-12-17 15:30:01.164028+00 35295 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GvZg6zRNA7LFy4BXSQOAVM_Uwbk=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.166872+00 2025-12-17 15:30:01.166881+00 35296 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jShU7L3RMWmFpisGlzWEdZ5O8L0=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.169376+00 2025-12-17 15:30:01.169382+00 35297 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fr4mQjNQY5MakW-xo0hLK5-cdig=", "createTime": "2024-08-15 14:58:53"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.172163+00 2025-12-17 15:30:01.172169+00 35298 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K3AlPte4fNT978j-xYATd7z4Zvc=", "createTime": "2024-08-15 14:58:53"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.174893+00 2025-12-17 15:30:01.174899+00 35299 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RkH1fRSiBgPoj_QlwhsYD7aOrqQ=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.177576+00 2025-12-17 15:30:01.177581+00 35300 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tCs1Hi4cY_IYKivNH5yJi1myh_M=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.180179+00 2025-12-17 15:30:01.180185+00 35301 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MNkWdqZouqwSNf2xH27EvbbIEF8=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.182896+00 2025-12-17 15:30:01.182902+00 35302 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1iILk4gm123GmymRjGFYXd90nwc=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.186098+00 2025-12-17 15:30:01.186104+00 35303 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rIcPs4PMrdkY5OJAkN7oTh_Q0Zg=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.189162+00 2025-12-17 15:30:01.189167+00 35304 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jNxD08ZwNKynH3wzD8lqpQJlrFk=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.191965+00 2025-12-17 15:30:01.191971+00 35305 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zXEQhNPZFBBJlKvvXd0QRdtT9MI=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.19472+00 2025-12-17 15:30:01.194725+00 35306 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ahy55T7R-p9kPHZ72_qPRuKvfw=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.197335+00 2025-12-17 15:30:01.197341+00 35307 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZiJv0Ub0AdSkfetsNke7UrDx0IA=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.19993+00 2025-12-17 15:30:01.199935+00 35308 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Io8yqL7n5Scuz7LS97ASv9ND4Ow=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.202668+00 2025-12-17 15:30:01.202674+00 35309 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5OnU1i0J-3ZP0KZGwdofp-Ob9Og=", "createTime": "2024-08-15 14:58:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.205423+00 2025-12-17 15:30:01.205429+00 35310 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2FLC1F3ikQ9JoaRIRHrO96OugQA=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.208398+00 2025-12-17 15:30:01.208403+00 35311 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NxjP1wF6cU33-dYX8z3UFqQ1dxw=", "createTime": "2024-08-15 14:58:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.211319+00 2025-12-17 15:30:01.211324+00 35312 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2CSgAlKYF7vNke5qbd9b6i4GmNc=", "createTime": "2024-08-15 14:58:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.213899+00 2025-12-17 15:30:01.213904+00 35313 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mkai5QekgfsiAIy1waCgqWS5My0=", "createTime": "2024-08-15 14:58:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.216519+00 2025-12-17 15:30:01.216525+00 35314 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JPLlJZBzgTW8kMInWxy273GEFxs=", "createTime": "2024-08-15 14:58:56"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.219166+00 2025-12-17 15:30:01.219173+00 35315 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_osyjHaaRjoYh8v83ox-pD_OrQc=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.222223+00 2025-12-17 15:30:01.222232+00 35316 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rJEBD9n78qYKisx4ksTm1miBxgE=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.225278+00 2025-12-17 15:30:01.225284+00 35317 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VOQeMwms7BzzcL1gULjRjVY9VHA=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.227863+00 2025-12-17 15:30:01.227869+00 35318 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7kG7sfHpAWbV_N3sUXr06G2yaxE=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.230539+00 2025-12-17 15:30:01.230543+00 35319 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OFFxwTSXA8mkJ-tFW57BtTrzZz0=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.233127+00 2025-12-17 15:30:01.233132+00 35320 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cXi1iWbs7Wt_ZCBtur3gTXWx1BQ=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.235833+00 2025-12-17 15:30:01.235838+00 35321 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nwtOqYRACf7SOyZqubg_EqN4rV8=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.238539+00 2025-12-17 15:30:01.238544+00 35322 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G_eSPmxLZJ_r42kuOt42uEdTmZ4=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.241286+00 2025-12-17 15:30:01.241291+00 35323 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TPJRrKfQAuF_j75wb5oBX3ff6YQ=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.243913+00 2025-12-17 15:30:01.243917+00 35324 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QCIL0dQTCyc0A-ebS_mBgxo1BYQ=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.246569+00 2025-12-17 15:30:01.246574+00 35325 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o6G5lWnvrHYgo8F9MqBfhvY4smg=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.249405+00 2025-12-17 15:30:01.24941+00 35326 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S6e6fh5zXc582ofs5voDDBR_SQY=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.252432+00 2025-12-17 15:30:01.252438+00 35327 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2dodX2tQRtJuQs46YJ73VEgdJOI=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.255297+00 2025-12-17 15:30:01.255302+00 35328 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xFkxcX1b5FWAChFLfE1oxj8K0Jo=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.25785+00 2025-12-17 15:30:01.257855+00 35329 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IQmDlf4GW6NEEu9YaKjvkpGibGI=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.260408+00 2025-12-17 15:30:01.260413+00 35330 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2GrSG-kmvKlO5Sa33frgwapdPkM=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.262782+00 2025-12-17 15:30:01.262786+00 35331 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jOBgnW8d1ujbJielzrng24_tUEM=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.265138+00 2025-12-17 15:30:01.265143+00 35332 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gr363ARJyz_1m31JFZto_z0X778=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.267533+00 2025-12-17 15:30:01.267539+00 35333 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EyjtFgbnh1v9W2txMOx-xx57Qho=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.270057+00 2025-12-17 15:30:01.270063+00 35334 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ULNpZPHA0BR-da4dM_yK3wZNY7o=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.273093+00 2025-12-17 15:30:01.273099+00 35335 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NFzQ_5EsO_JC5H4f7kD3KGU_xZI=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.275897+00 2025-12-17 15:30:01.275902+00 35336 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eK5nDvMyNmXUsKShpTh8QVpQv40=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.278402+00 2025-12-17 15:30:01.278407+00 35337 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:63KiE8Xk9Rw_qsyPNZhgMQscH9w=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.280948+00 2025-12-17 15:30:01.280953+00 35338 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hc45XSAe6p2eE7vNY0RBjuJ3IUk=", "createTime": "2024-08-15 14:58:59"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.283414+00 2025-12-17 15:30:01.283418+00 35339 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I7D-gUmlxp-_cOba4rmwXIAQwZk=", "createTime": "2024-08-15 14:59:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.286004+00 2025-12-17 15:30:01.286009+00 35340 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C0MPmHVPSp9CIwL_X7d6iZ4m5FI=", "createTime": "2024-08-15 14:59:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.288622+00 2025-12-17 15:30:01.288627+00 35341 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P7JdWwYq31QtnG52ZDKEUTVDKeA=", "createTime": "2024-08-15 14:59:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.291219+00 2025-12-17 15:30:01.291224+00 35342 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bwsj8BggdwewHwcOL3Lwa3wwoKU=", "createTime": "2024-08-15 14:59:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.293993+00 2025-12-17 15:30:01.293998+00 35343 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y8FKWfy9BgKAMJ6j16NsL4eEFog=", "createTime": "2024-08-15 14:59:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.296794+00 2025-12-17 15:30:01.296799+00 35344 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HRCft0HqFaYnKtLoqExbaeGHXNM=", "createTime": "2024-08-15 14:59:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.299002+00 2025-12-17 15:30:01.299007+00 35345 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dcZ7AinGT8jNG80GWbdjn5s6rEM=", "createTime": "2024-08-15 14:59:00"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.301393+00 2025-12-17 15:30:01.301397+00 35346 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jn4WG08tD1IlwpVHAQwxPZVlXTc=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.304165+00 2025-12-17 15:30:01.304169+00 35347 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aXSHIwQCdimb9QGpyIsw65X2fkQ=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.306775+00 2025-12-17 15:30:01.30678+00 35348 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YjrBcocFTmsDC0XsgIdo3wBVCk8=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.309206+00 2025-12-17 15:30:01.309211+00 35349 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OxCtC3oEuRpH_d2MPowFa3KmduM=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.311594+00 2025-12-17 15:30:01.311598+00 35350 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fnUQ-TJnATSLVwl03Zske2TVi2A=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.314273+00 2025-12-17 15:30:01.314277+00 35351 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RAIwVKslnytjLNx5h7uFzw1AS04=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.316922+00 2025-12-17 15:30:01.316927+00 35352 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:twZgDaxSiO5W2cx5X6oCCQiLGrY=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.3194+00 2025-12-17 15:30:01.319405+00 35353 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C48RirjtPnuk6mFTxXEB5HOtd1M=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.321928+00 2025-12-17 15:30:01.321934+00 35354 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GMADOjLvdZQnorNh9sWT6qUEJi0=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.324459+00 2025-12-17 15:30:01.324463+00 35355 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UEqB5o7V0U5pVc9Y9PJtruMrsaY=", "createTime": "2024-08-15 14:59:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.326903+00 2025-12-17 15:30:01.326908+00 35356 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BHLyIhdYAg2fl-1ZDXJS0Ws6Sns=", "createTime": "2024-08-15 14:59:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.329245+00 2025-12-17 15:30:01.329249+00 35357 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DFVbD4N33XcA55qtO1bq2YYwSZc=", "createTime": "2024-08-15 14:59:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:30:01.33164+00 2025-12-17 15:30:01.331645+00 35358 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=1766071800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJUo_55HcN_CsSRZvymuFm9Mv9U=", "createTime": "2024-08-15 14:59:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.366142+00 2025-12-17 15:40:00.36615+00 35359 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m26cfA902OWKXEH1EuMAZc7DqSY=", "createTime": "2024-08-15 14:59:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.370101+00 2025-12-17 15:40:00.370107+00 35360 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yd542B0j0JBPd_A9t9BW4tjmplM=", "createTime": "2024-08-15 14:59:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.37288+00 2025-12-17 15:40:00.372887+00 35361 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fJyqhvN_p7iWnojclwtxSYqEWUI=", "createTime": "2024-08-15 14:59:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.376235+00 2025-12-17 15:40:00.37624+00 35362 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UK7kwiiN8QlecRddpFVn2qfNLLc=", "createTime": "2024-08-15 14:59:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.378688+00 2025-12-17 15:40:00.378693+00 35363 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pgg29YTByUAfSKI-tWJEh7ykVvw=", "createTime": "2024-08-15 14:59:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.381191+00 2025-12-17 15:40:00.381196+00 35364 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FxJa1ifg9xAWed6u9CjdtdfzVKA=", "createTime": "2024-08-15 14:59:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.383591+00 2025-12-17 15:40:00.383596+00 35365 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uMBkk6XJj_2z1M2WwphP3_TUIRY=", "createTime": "2024-08-15 14:59:02"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.386142+00 2025-12-17 15:40:00.386147+00 35366 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gSRNeutIezP3wVImyixnSSR5I0g=", "createTime": "2024-08-15 14:59:03"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.388646+00 2025-12-17 15:40:00.388651+00 35367 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lZWk7nonOiJteH8Jewr4zwPsGPY=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.391041+00 2025-12-17 15:40:00.391046+00 35368 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bp1Czq-hPFrgK2m2q1zsZQ1f4B4=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.393965+00 2025-12-17 15:40:00.393974+00 35369 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ai4mX697Ux-T05DitAwwm_wbtHg=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.398781+00 2025-12-17 15:40:00.39879+00 35370 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GvQ78qGHISE2u7j47Uauxb3NXuk=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.402052+00 2025-12-17 15:40:00.402056+00 35371 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXBnYvV06uw_PT-bT5-adsa4f-0=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.404604+00 2025-12-17 15:40:00.404609+00 35372 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MgcVUiyrk8AsVb3QmdeZ1LOz76Q=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.406983+00 2025-12-17 15:40:00.406988+00 35373 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z_7-L3u7EwkWOOkE3E5jLFsGdmk=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.409752+00 2025-12-17 15:40:00.409759+00 35374 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LU7brLLcPOYH4uLaiRmzCEg-8JM=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.412715+00 2025-12-17 15:40:00.412721+00 35375 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nvBp9UbqARvd0cKFVFt2MIb7edM=", "createTime": "2024-08-15 14:59:04"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.415394+00 2025-12-17 15:40:00.415399+00 35376 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JgtdUB86knpGIFMK_z_13_Bt4MY=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.41871+00 2025-12-17 15:40:00.418715+00 35377 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oS5_W_Lp9VqUrhyY3yHyZe9i5qU=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.421653+00 2025-12-17 15:40:00.421659+00 35378 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nc-qjEkggCq58zNEO9FgEU0o3tY=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.424255+00 2025-12-17 15:40:00.42426+00 35379 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:albp56JpAK-Xhp2-Jgf6Uf8GLwk=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.42762+00 2025-12-17 15:40:00.427629+00 35380 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQE1cO5AO2pF5Nst7soS5JBF60E=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.43081+00 2025-12-17 15:40:00.430816+00 35381 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VEBVzgw5m7k5wcktqinkWw7JKgo=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.433753+00 2025-12-17 15:40:00.433758+00 35382 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qa2d38eNX5g7K8c1yHXrtW7ej6c=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.436581+00 2025-12-17 15:40:00.436586+00 35383 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uZpGXnuYVkEUqTLZnQkgibvIfeA=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.439361+00 2025-12-17 15:40:00.439367+00 35384 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f5HZVlqG7yiWcnSz3HckPLiMSWE=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.442231+00 2025-12-17 15:40:00.442236+00 35385 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GOrczFzf5lfq-w8MWutIt_SMuw4=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.445212+00 2025-12-17 15:40:00.445218+00 35386 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4K_2j8-GtO8GjuobHdvbus1nyos=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.447941+00 2025-12-17 15:40:00.447947+00 35387 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tDw1ediN4M0o2ovn5CJvAJXH1MM=", "createTime": "2024-08-15 14:59:06"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.450782+00 2025-12-17 15:40:00.450788+00 35388 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lqyMz1kvnuhRjeMuo9Tf2Uc2M1Q=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.453595+00 2025-12-17 15:40:00.4536+00 35389 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0OTkcYufw9_ySd6o9VWitAGcUaw=", "createTime": "2024-08-15 14:59:06"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.456224+00 2025-12-17 15:40:00.456229+00 35390 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QITvnbnik2E7nog-pqJx2x8ZFzM=", "createTime": "2024-08-15 14:59:06"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.45864+00 2025-12-17 15:40:00.458645+00 35391 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:He_In9KambNqZS6e4nhGEsCemQE=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.461112+00 2025-12-17 15:40:00.461118+00 35392 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uFBz9QuEbMiLISaleJH4Iq975xE=", "createTime": "2024-08-15 14:59:06"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.464149+00 2025-12-17 15:40:00.464155+00 35393 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FULmPPkmqADIpDRfnYgrzvWo2DE=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.467186+00 2025-12-17 15:40:00.467192+00 35394 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g2-s26Tgz7EyjWeaNdQL2sv7n4U=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.470542+00 2025-12-17 15:40:00.470549+00 35395 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4KJyczkR3iw8nmPbjTHzULjDa0w=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.473775+00 2025-12-17 15:40:00.473781+00 35396 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ol72-k2SifY_dUkoEsErFHVlJ50=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.476505+00 2025-12-17 15:40:00.476511+00 35397 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_l4snnzBAVHDiefORWKHy2Yp_cw=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.479284+00 2025-12-17 15:40:00.47929+00 35398 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6VJD8RLEE7WgHgDdI-UV86xwMUo=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.482032+00 2025-12-17 15:40:00.482038+00 35399 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mUQOJiPkwsQHZVpFmtyJaRxx-fM=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.484716+00 2025-12-17 15:40:00.484721+00 35400 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eyk_U7qPYqhnjygUckRcX4a3qRc=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.48769+00 2025-12-17 15:40:00.487696+00 35401 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nr8u6rMANWFQP-ZL3crXDaFiDBk=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.490616+00 2025-12-17 15:40:00.490621+00 35402 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ssuYcsB0voDhHb8rYdXrPQwlNrg=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.493189+00 2025-12-17 15:40:00.493194+00 35403 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5dhyyXDWiKUnCVRHiE2ukZSPDjU=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.496418+00 2025-12-17 15:40:00.496426+00 35404 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d4yDG3brtQx_CToxkY8vSRqLrmg=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.499695+00 2025-12-17 15:40:00.499702+00 35405 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HpXPnqUiVWMiRiwdCEgg8_-BFWk=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.502832+00 2025-12-17 15:40:00.502838+00 35406 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SWpXKWrzR0oQzcPpl_zT6IPyDIo=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.505449+00 2025-12-17 15:40:00.505455+00 35407 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vDyjfvIjI0GCunqJneo3BzVDeB0=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.508086+00 2025-12-17 15:40:00.508092+00 35408 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZO3qNlv_nDoHr1g9ApfkoZ871gk=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.51098+00 2025-12-17 15:40:00.510985+00 35409 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bxbMOX_XUIn6qpGrmtqXPqzu_W4=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.514104+00 2025-12-17 15:40:00.51411+00 35410 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tR3nUjhkbtQx3mdyBkcPX39lM-4=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.516901+00 2025-12-17 15:40:00.516907+00 35411 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5GAXRpw1ol7uwk-GMvQD0f7ZsIE=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.51968+00 2025-12-17 15:40:00.519686+00 35412 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YR2ArJDNvgvFnKcGd-hgL1tBMqQ=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.522394+00 2025-12-17 15:40:00.5224+00 35413 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hgSQYmjNRt2MCOjPFtcCHmwxUbk=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.525099+00 2025-12-17 15:40:00.525105+00 35414 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nGGznTLU-4PVZz8VoWg6y2aDeSc=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.527721+00 2025-12-17 15:40:00.527727+00 35415 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aTIt_LPRHxLscHEncv7k0srmc_I=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.530475+00 2025-12-17 15:40:00.53048+00 35416 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GwDXawk4-Iy_e5jYV-Bn656hAz4=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.533497+00 2025-12-17 15:40:00.533503+00 35417 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1UEZ17sazWop9p7CWgHKkSelDtg=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.536464+00 2025-12-17 15:40:00.53647+00 35418 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S-plz3znKOnqWWr3BLYjzXOInwQ=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.539014+00 2025-12-17 15:40:00.539019+00 35419 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:16rOEvJVqCyg20tpIp2sxntUGHE=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.541405+00 2025-12-17 15:40:00.54141+00 35420 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:55LxYTKd_f0465M_O0zZkbJYZ_I=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.543789+00 2025-12-17 15:40:00.543793+00 35421 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fbvX_YhAnFwLM72xA3TpwiQw39A=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.547713+00 2025-12-17 15:40:00.547719+00 35422 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q2W9UDD3kt2z8S73Gpe7aQWVJi4=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.551628+00 2025-12-17 15:40:00.551636+00 35423 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0A2x6F-HFT61cm-U8SyEBrHf1EA=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.55472+00 2025-12-17 15:40:00.554726+00 35424 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UDJkdMWSLMtg9Qt92reDeVlxDTs=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.557939+00 2025-12-17 15:40:00.557945+00 35425 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KtOggpiOoGo33OlRX8ZeCtA4UQ4=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.560734+00 2025-12-17 15:40:00.56074+00 35426 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_O16Q5GIQAbE7FYT3Py4MfYO7Zk=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.563304+00 2025-12-17 15:40:00.563309+00 35427 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:723QYsZnvQT6qpg3iG95BFi0HUs=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.565576+00 2025-12-17 15:40:00.565581+00 35428 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7f9Oqc5JgWRM0TyG8bpBKDBVieU=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.568777+00 2025-12-17 15:40:00.568784+00 35429 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IYzF-s-uI5Ejg2oa6gHSyMkB04c=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.571808+00 2025-12-17 15:40:00.571815+00 35430 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AKe5sBudgI3MTpkY8FNsiYHWaDI=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.575401+00 2025-12-17 15:40:00.575412+00 35431 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3U4u93wmNPPjqmDe4DMqmnNz6Pk=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.579831+00 2025-12-17 15:40:00.579838+00 35432 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a63G_-vBPSGKUed5_4giuWr3FxM=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.582977+00 2025-12-17 15:40:00.582983+00 35433 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1hU6v2wEDG79HVuGFVbxBnHTA64=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.586009+00 2025-12-17 15:40:00.586015+00 35434 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6qSNiin38I6ncpjI_B1RxwKnWwA=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.588708+00 2025-12-17 15:40:00.588713+00 35435 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H0ejXI_N8n3ke28bOxhSFrPQnXo=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.591278+00 2025-12-17 15:40:00.591283+00 35436 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lvAYqo4ajvCqCionmg-qaToXpd0=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.593725+00 2025-12-17 15:40:00.593729+00 35437 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:He7dDqr4XfcJkyfQ8GN4eEiWm7s=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.596321+00 2025-12-17 15:40:00.596325+00 35438 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2AFWB9fZ6GBftAe18OZWZL6xHuk=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.600128+00 2025-12-17 15:40:00.600138+00 35439 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZPLY8gLLULZ1hn5LynVlpagGtPY=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.603385+00 2025-12-17 15:40:00.60339+00 35440 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZNZCYJ9nADY4j5r5qAbToMirxZY=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.606524+00 2025-12-17 15:40:00.606529+00 35441 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FiKxO93_hMPNXwrI2_-knnPhEYQ=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.609694+00 2025-12-17 15:40:00.609699+00 35442 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5frRghQ074DSAVq78QzblhDZowY=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.612415+00 2025-12-17 15:40:00.61242+00 35443 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BxIQ1-3ovieqCT02JFmDv-sm4LY=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.615119+00 2025-12-17 15:40:00.615124+00 35444 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mh3BAPp3EeD82Tyx3SI_1iY8s_k=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.617889+00 2025-12-17 15:40:00.617895+00 35445 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d2XX5JHKEGgTu8BRweU2B1TbirQ=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.620658+00 2025-12-17 15:40:00.620664+00 35446 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L8aHYVCIsfnQiJlG-iQA-Lq-E2U=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.623345+00 2025-12-17 15:40:00.62335+00 35447 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3XpweEp_FNYaz226vlrqsJlAidw=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.625971+00 2025-12-17 15:40:00.625976+00 35448 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DuFc6lSwN5y_YyZbswFRn3kwv2A=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.628956+00 2025-12-17 15:40:00.628962+00 35449 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5xNpYKtjPMKnBNvh1jg2MbKy_14=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.631959+00 2025-12-17 15:40:00.631964+00 35450 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P60dtDPHSDFfdJ-9Y09X-yln_Ks=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.634792+00 2025-12-17 15:40:00.634799+00 35451 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ls19BbVZXcNB7xBVxbVsfPIOA2A=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.637636+00 2025-12-17 15:40:00.637641+00 35452 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7_vZPWoqZsa6q1NsCKqVBVx3VwQ=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.640411+00 2025-12-17 15:40:00.640417+00 35453 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w5OSc5qL5IrIDlMc5evgDBZlAtk=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.643105+00 2025-12-17 15:40:00.64311+00 35454 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:829ZK2gM8LxGcXQJ8b26YWhUMlM=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.64586+00 2025-12-17 15:40:00.645866+00 35455 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xUjX0pEgam5P9DHPgbc2DAO-hVo=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.648601+00 2025-12-17 15:40:00.648607+00 35456 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YhffM5CH8U89aBOR_3_C3HhE72A=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.651619+00 2025-12-17 15:40:00.651625+00 35457 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QAD8OBEqhLLZ27MBXN7HjPkAgQI=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:00.654554+00 2025-12-17 15:40:00.654559+00 35458 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=1766072399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fbjT1O1S22QUhweG6ip1lUAs4a4=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.000116+00 2025-12-17 15:40:01.000127+00 35459 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FLgKrLyY5mGvwIfIj2w3XbSgblQ=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.003573+00 2025-12-17 15:40:01.003579+00 35460 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J4XzVkPVf5ugk-AHoJj9t_f6j6w=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.006215+00 2025-12-17 15:40:01.006221+00 35461 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TSe9VFLIDM9KTZWGFuYoXeSu0GI=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.00895+00 2025-12-17 15:40:01.008955+00 35462 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G-kEkz7yjF7d_MsGLZZ4H5g16mM=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.011801+00 2025-12-17 15:40:01.011807+00 35463 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N1a6ZtlaKn0nS0DDUkicHKlMKwA=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.014703+00 2025-12-17 15:40:01.014709+00 35464 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zNmUo01zl5KCvaHjCI0U_0uK5VM=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.017638+00 2025-12-17 15:40:01.017645+00 35465 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XpRir5nHOv_kBcXrZtaZyQliJdw=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.020663+00 2025-12-17 15:40:01.020667+00 35466 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bckF51EbWY61GD4SOeHMY7FwVec=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.023422+00 2025-12-17 15:40:01.023427+00 35467 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SeivF63uEGoLvSH5ah9ylFiVzCU=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.026357+00 2025-12-17 15:40:01.026363+00 35468 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eBz8QQi6C0dI1t4Yqi1BSiaoDpg=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.029709+00 2025-12-17 15:40:01.029715+00 35469 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xh0djM5G5Jeeyk6GNDpT8EwOVOg=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.032815+00 2025-12-17 15:40:01.03282+00 35470 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DaNy2mCXTpxJY6IO0gSxarwwWoY=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.035669+00 2025-12-17 15:40:01.035675+00 35471 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HA9HsAgxGLiG2P1Rlqyb8S8gz_M=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.038251+00 2025-12-17 15:40:01.038256+00 35472 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f63ACCYHqPTLwfq3235GYJL9Kdg=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.040772+00 2025-12-17 15:40:01.040776+00 35473 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qAboSA607KRr537CzHGGMwr1edU=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.043218+00 2025-12-17 15:40:01.043223+00 35474 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8WHncf-LO2VvSeHGT6bqR155uX4=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.045838+00 2025-12-17 15:40:01.045843+00 35475 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2eP_t6SL_hbthLqpsi6_C8rY_4k=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.048335+00 2025-12-17 15:40:01.04834+00 35476 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FfY9O2X4LLYlSO2v2QERc2PzGTk=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.050782+00 2025-12-17 15:40:01.050788+00 35477 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W5IZxekOiq4VIDav4WUfXfR3Ehc=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.053761+00 2025-12-17 15:40:01.053766+00 35478 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aZR5OevX2kd8cpRTUlk35rtJFvw=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.056581+00 2025-12-17 15:40:01.056587+00 35479 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q70LgDo6dkzOkx0Riahteiknw_I=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.058959+00 2025-12-17 15:40:01.058964+00 35480 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jHUHa7MD-igCnY52HzGlN6Gf_5o=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.064266+00 2025-12-17 15:40:01.064271+00 35482 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TiBEV0iTo__ThCUtPktuCSbKvbE=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.066967+00 2025-12-17 15:40:01.066972+00 35483 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BupH3yYMStxh3A7ndCRlOdY-Mj8=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.069728+00 2025-12-17 15:40:01.069734+00 35484 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jj8e80hd7zRT09XyvFGsfZR4L7s=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.061497+00 2025-12-17 15:40:01.061502+00 35481 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZOOc2dPXsfj8htpf7DIQswD1NGU=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.07564+00 2025-12-17 15:40:01.075646+00 35485 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xMkaCQbvD7oHi4mMXQiUElmMzDM=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.078623+00 2025-12-17 15:40:01.078629+00 35486 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UaGG7BLb2jDSMUcYitriVYBGupw=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.081329+00 2025-12-17 15:40:01.081335+00 35487 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HZZO-7wWW1fZ5h3Voso4NsYuBsU=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.083979+00 2025-12-17 15:40:01.083985+00 35488 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iBUmBWiDWBZaQ45EB87c3HEYdBo=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.086651+00 2025-12-17 15:40:01.086657+00 35489 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KxRJghcqfVGwemhBdKB5sx8Tc2Q=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.089348+00 2025-12-17 15:40:01.089353+00 35490 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rYtt99-uWxA3WU4MsEM66BRi0Mg=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.091884+00 2025-12-17 15:40:01.091889+00 35491 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HCGbsJ775rMRNaoVQfCaYRKqbWo=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.094391+00 2025-12-17 15:40:01.094397+00 35492 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FvWdnB_uqlmA85gYrsntj9o54Ck=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.097253+00 2025-12-17 15:40:01.097258+00 35493 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:owRc3eOAdRyxZ4SptWLTFQKN81c=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.100116+00 2025-12-17 15:40:01.100121+00 35494 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:upKJ7Ba1vCzHgSMPIPhyZAIOaDE=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.102832+00 2025-12-17 15:40:01.102838+00 35495 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RoK-mCnm2IoXDMjRHByKcHsCQYI=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.105583+00 2025-12-17 15:40:01.105589+00 35496 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fOuOPDnUEpoYJmSQhmjKiQVFoSQ=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.108251+00 2025-12-17 15:40:01.108256+00 35497 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:emn1tyEoTnYYEemnHPChljNkOlI=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.110672+00 2025-12-17 15:40:01.110676+00 35498 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Omm3JYvVEK2jdjI4bfRXwOBjUf4=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.11303+00 2025-12-17 15:40:01.113035+00 35499 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1MuE1IQOsGGY3CYPYu7jlot-s6I=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.115664+00 2025-12-17 15:40:01.115669+00 35500 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yepII7NHC78ZPLjlRoIKMED_XOs=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.118507+00 2025-12-17 15:40:01.118513+00 35501 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kpgs2kDxkuWlD2yh9JFV5OdgdCM=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.121528+00 2025-12-17 15:40:01.121533+00 35502 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eOeCShBo1JXIvcL9L1QScKtyjXg=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.124152+00 2025-12-17 15:40:01.124158+00 35503 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H1wrAfJMZuVJHpkVTpAvQXTxRFc=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.126536+00 2025-12-17 15:40:01.126541+00 35504 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z1yJPoHOGCalG5CKc-i0d0nOpEY=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.129132+00 2025-12-17 15:40:01.129137+00 35505 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ky8Il0Of3xSxtLEQ0_9EDQEi7TI=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.13172+00 2025-12-17 15:40:01.131725+00 35506 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yrvPCR0wYG8jljVpaJjEGX2NGNs=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.134292+00 2025-12-17 15:40:01.134297+00 35507 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J9ame-PJ_M3iAAeBH7Up1umxyQ8=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.137052+00 2025-12-17 15:40:01.137059+00 35508 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W_W1_bCLAx56v0X1rdgx5cSBD6Y=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.140205+00 2025-12-17 15:40:01.140211+00 35509 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sq54IN5UsQc4RmFGDzsgXKN89CI=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.143177+00 2025-12-17 15:40:01.143181+00 35510 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hlmY14QuMPkZZcb6HTv1c2HYLJk=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.146+00 2025-12-17 15:40:01.146006+00 35511 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Nlxmw6xo3EVCs3jxBnxeYSmByw=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.14868+00 2025-12-17 15:40:01.148685+00 35512 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QRKE37WA6Tb7DvTf8KIyFkaFIY8=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.151208+00 2025-12-17 15:40:01.151214+00 35513 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-IyGbfmNruHRvm6F28Ah8E2FXqE=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.153977+00 2025-12-17 15:40:01.153982+00 35514 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CvyF4amZnJ2o4WigYnZthotT9hg=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.156933+00 2025-12-17 15:40:01.15694+00 35515 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1UCdnUzjnBODLgjqcckjs3t1Ux0=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.159806+00 2025-12-17 15:40:01.159814+00 35516 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZfkKSbLU1UEaHNm5_jPRAlNo9RE=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.163056+00 2025-12-17 15:40:01.163062+00 35517 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HXJ60SmN-X0OC3e3U4Ab5KEboCs=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.166021+00 2025-12-17 15:40:01.166027+00 35518 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:efsHobvnC8j1Ebfn4I45rou-7xI=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.169116+00 2025-12-17 15:40:01.169122+00 35519 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6YFQfYQA4au1cI6zYgkGLojGIvY=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.171715+00 2025-12-17 15:40:01.17172+00 35520 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q3lejXupRyGSdGvI7OA8URHpRCk=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.174509+00 2025-12-17 15:40:01.174514+00 35521 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQM2rfbDrWQXZG4_gI36D35ygZc=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.177398+00 2025-12-17 15:40:01.177403+00 35522 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dFz9O_ThRWlb0URDJqb8FOIksMI=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.18009+00 2025-12-17 15:40:01.180096+00 35523 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QsqQtAZO6PcdSku0Jeva5-fJWho=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.182944+00 2025-12-17 15:40:01.18295+00 35524 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rYt5ZQ2H4nDYG7fUjBqV57Hq-H8=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.185849+00 2025-12-17 15:40:01.185854+00 35525 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6t6Ms3q5-avHvUPppMaVZH09p1k=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.188657+00 2025-12-17 15:40:01.188663+00 35526 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k6cdKu0GWOL44SbORGNpsG-ZSME=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.191257+00 2025-12-17 15:40:01.191262+00 35527 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EMCVodSCqJqk4TgZPcDkkeg7XQc=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.193668+00 2025-12-17 15:40:01.193673+00 35528 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1zmG9p2DGFtNnhouWJ6G29b6-rE=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.196419+00 2025-12-17 15:40:01.196424+00 35529 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XYY4UmYP9DxKpWs7LxOrMlK3QV8=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.199195+00 2025-12-17 15:40:01.199201+00 35530 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xO9PwytVueUiNinBinptuzz1PNM=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.202002+00 2025-12-17 15:40:01.202009+00 35531 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k7OUvMKvh3OIcpfgiyN2ags54-A=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.205086+00 2025-12-17 15:40:01.205092+00 35532 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o0gpNLiS_teOo-WnCOUa36Zeee0=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.208092+00 2025-12-17 15:40:01.208098+00 35533 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AwQKM1SI3nY7hOA654I2Pl159bU=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.210794+00 2025-12-17 15:40:01.210799+00 35534 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hqRF-EdWhJvyX2Y5wAf3USVsk7c=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.213634+00 2025-12-17 15:40:01.21364+00 35535 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6mYqZNN0C7aJgHOS0Um1XEGRsY8=", "createTime": "2024-08-15 14:59:19"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.216479+00 2025-12-17 15:40:01.216485+00 35536 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5mJR7nEKOe2TRJ-PiC1rJ_0oztk=", "createTime": "2024-08-15 14:59:19"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.219316+00 2025-12-17 15:40:01.219322+00 35537 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HpJj8soLIW_uliUN-DkB5XgxBfY=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.221966+00 2025-12-17 15:40:01.221971+00 35538 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NsjDPbzLWWow4fgcitJbAspkW_Q=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.224408+00 2025-12-17 15:40:01.224413+00 35539 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d6WlkWBT868Wjy_O2KVJnUAPRks=", "createTime": "2024-08-15 14:59:19"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.227106+00 2025-12-17 15:40:01.227111+00 35540 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ifxsXVlsH288u2eOGcm3T4JTJpI=", "createTime": "2024-08-15 14:59:19"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.230107+00 2025-12-17 15:40:01.230113+00 35541 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VWZZgu2Y76D2BjGnL70TRufPGkI=", "createTime": "2024-08-15 14:59:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.232941+00 2025-12-17 15:40:01.232946+00 35542 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cYJC190VHiQC8smTS_mGSvaCwn4=", "createTime": "2024-08-15 14:59:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.235738+00 2025-12-17 15:40:01.235744+00 35543 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NnL9O1zB2YAFlSAB7HMx1qLwClg=", "createTime": "2024-08-15 14:59:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.238466+00 2025-12-17 15:40:01.238472+00 35544 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LPicKfnDmDWs3ghJP_4PlhPLYlY=", "createTime": "2024-08-15 14:59:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.241151+00 2025-12-17 15:40:01.241156+00 35545 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L9UUXnzrTzctA1JU9KjjIJtDgwc=", "createTime": "2024-08-15 14:59:20"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.243779+00 2025-12-17 15:40:01.243784+00 35546 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u9-mnDxs1e3YHywbd29H33fo1yw=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.247113+00 2025-12-17 15:40:01.247122+00 35547 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MvciilRiMAY6fQ5ffQv-4Rb0Hug=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.250478+00 2025-12-17 15:40:01.250484+00 35548 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pv0SQBA5JxBXbBHx46QXOwdSdQE=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.253516+00 2025-12-17 15:40:01.253521+00 35549 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j4aJUz9fycZRElB3E8SXxyI43HE=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.25607+00 2025-12-17 15:40:01.256074+00 35550 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iJDV-zMHIIyHm9qmqkwhik4oGGw=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.258459+00 2025-12-17 15:40:01.258464+00 35551 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OrV-jY8Iv55HN-p68dxPv-yzR_g=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.260904+00 2025-12-17 15:40:01.260909+00 35552 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dZE6FMycNzLGFtHrWsqm2DB4vOk=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.263187+00 2025-12-17 15:40:01.263192+00 35553 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s4FPbuDTRi8C4PDXlKZcr-JSE8A=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.265689+00 2025-12-17 15:40:01.265694+00 35554 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AGLgTAEPaTq7LC_3SyuaUoer-Yo=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.268131+00 2025-12-17 15:40:01.268135+00 35555 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GlamzBTqpBGXSA-a5G7UbgNaY58=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.270913+00 2025-12-17 15:40:01.270918+00 35556 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d28bjXSV-4svPRCb8SiCar8w7ko=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:40:01.273709+00 2025-12-17 15:40:01.273715+00 35557 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=1766072400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J6CDjXRmGQ4-dBrAYxz-oHYyUR8=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.565911+00 2025-12-17 15:50:00.565921+00 35558 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Uh3w5iqKEiAmYbwrM21xQR97Pc=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.569851+00 2025-12-17 15:50:00.569858+00 35559 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Z4d6aCtsi4ryswHBPEgFHkEgWQ=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.572662+00 2025-12-17 15:50:00.572668+00 35560 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H1ujAwLuNJ94uGoEY1d26XTAWV8=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.57541+00 2025-12-17 15:50:00.575415+00 35561 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vrl9GUlRP_Fn2XFLpmJfKYy5gPc=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.578225+00 2025-12-17 15:50:00.578231+00 35562 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eRiCFGm8E3lzpNm1aKTuxNph_0I=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.581177+00 2025-12-17 15:50:00.581182+00 35563 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iHSY1sqmnwZw4KJ8XiE3obYEHks=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.584061+00 2025-12-17 15:50:00.584073+00 35564 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C401jAu8ZVmXvQj1VVNZidkqY38=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.586593+00 2025-12-17 15:50:00.586598+00 35565 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I8gb8EcZbJ8EKiEMMJam0_0ETNc=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.589378+00 2025-12-17 15:50:00.589384+00 35566 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cI1d2mAAQgiptg2OkxRX3_IcNLM=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.591972+00 2025-12-17 15:50:00.591977+00 35567 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UPz4BnbPhlC61M1JTD97O7PPEsY=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.594467+00 2025-12-17 15:50:00.594472+00 35568 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sGoVwAPR_MOkdZJcyGE-LHicXG0=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.597111+00 2025-12-17 15:50:00.597116+00 35569 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UwltdIvZucrLEIcOMPi7j-pFfCE=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.59976+00 2025-12-17 15:50:00.599765+00 35570 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h5DukT5l92bI9ay-bXphJwgG7ys=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.602602+00 2025-12-17 15:50:00.602607+00 35571 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nkl8UgOKLIncA0T-4HBJP4TCQuw=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.605525+00 2025-12-17 15:50:00.60553+00 35572 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oeU54cXpb3ZE3njcDXV0Dw632wU=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.608071+00 2025-12-17 15:50:00.608076+00 35573 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:65nJ7UyHqsFIZJ4eit21DLm_YzY=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.610266+00 2025-12-17 15:50:00.610271+00 35574 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ig5JmG3fOz_eX2da_EPpXH3ZNaY=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.612635+00 2025-12-17 15:50:00.61264+00 35575 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RQl2lamTjOMCtGfj9hhopPwh7y4=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.615233+00 2025-12-17 15:50:00.615239+00 35576 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q_mVsONv1kM3APg4HRV0WE4zh7Q=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.617996+00 2025-12-17 15:50:00.618002+00 35577 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ij8BAfJuBmN2Q6ZuESNhkopX7oA=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.620591+00 2025-12-17 15:50:00.620598+00 35578 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0_aRpjH8PQkwxzG_yvMDM6Q4W2U=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.623526+00 2025-12-17 15:50:00.623531+00 35579 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eYNOxy0mFvS0MpH2xmnORc0_btk=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.626454+00 2025-12-17 15:50:00.626459+00 35580 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7RkR85Xr-Y-IqdXoNJYAPE7DJ9o=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.62888+00 2025-12-17 15:50:00.628885+00 35581 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VHrLUlqnvoZS82CgMBXmEAb02SU=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.63141+00 2025-12-17 15:50:00.631415+00 35582 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2F3lnaV9pcQcmsnncnHstIv2LAI=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.633943+00 2025-12-17 15:50:00.633949+00 35583 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UnzbVryjoSf2JqxlXhL73zZTF3M=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.636489+00 2025-12-17 15:50:00.636494+00 35584 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cGq5O6Rp59sTB87bHBHvYlGzQS8=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.639365+00 2025-12-17 15:50:00.639371+00 35585 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8RFLt9nq3EuNy_VQMN01jy2jCYw=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.642124+00 2025-12-17 15:50:00.642129+00 35586 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SPJQUcsXe4j_z4Un1BFeT4OfsjA=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.644903+00 2025-12-17 15:50:00.644908+00 35587 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D39rSrw67mReE1SfYPJRiOG0doA=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.647678+00 2025-12-17 15:50:00.647683+00 35588 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RLzPzTR716X6l9xM7PkDjpD1O4E=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.650127+00 2025-12-17 15:50:00.650133+00 35589 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xCjdpWQYspq2parpDEU_owyUT3g=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.652539+00 2025-12-17 15:50:00.652543+00 35590 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lWrjCEWv-6xiKUMMMlOqXAobrEg=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.655149+00 2025-12-17 15:50:00.655154+00 35591 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SbdbDAhjOZGEsUz1DrXD4bdj5pk=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.657938+00 2025-12-17 15:50:00.657944+00 35592 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:opn5-STz2PSO_aKnDJxc0SelObo=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.660592+00 2025-12-17 15:50:00.660597+00 35593 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I4NGyksJnsomu1d0m2rV7AMg17s=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.663143+00 2025-12-17 15:50:00.663148+00 35594 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SkyQWI4s3nabH44O3zgjcVcnNBg=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.666151+00 2025-12-17 15:50:00.666156+00 35595 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tMAdD6wKdgqHRnnug_dPTcT4IgA=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.669048+00 2025-12-17 15:50:00.669052+00 35596 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wFHRR4ElSpdxSKCc_Kiq8SwAUCM=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.671659+00 2025-12-17 15:50:00.671665+00 35597 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2j-iDlbyQtWrLX6eyNLV55-mK1A=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.674324+00 2025-12-17 15:50:00.674329+00 35598 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KL3GjaNT4x6OmnVKil2lTfosNxw=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.67708+00 2025-12-17 15:50:00.677085+00 35599 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j898hAWPu1MZX3GTYq3iZEGR3a0=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.679766+00 2025-12-17 15:50:00.679771+00 35600 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l5BaTQKQBKMZcjekfQYldWjHRFU=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.683102+00 2025-12-17 15:50:00.683108+00 35601 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oe9Bvxaz-JDSv9K9UHy_aHcAlNs=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.686022+00 2025-12-17 15:50:00.686027+00 35602 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nmQCQFbyDTrgcSo8doXBuTKC2fs=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.689224+00 2025-12-17 15:50:00.68923+00 35603 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DtYNkjLEbazZrA5haru-OvoR8l0=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.692341+00 2025-12-17 15:50:00.692347+00 35604 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tQmz-3u1yonTFd-Ar56Ejp4g9dg=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.695015+00 2025-12-17 15:50:00.69502+00 35605 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r7Pw32pp8_IIX7aj-BmKWMyy4aY=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.697599+00 2025-12-17 15:50:00.697605+00 35606 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zJrMq8AliY_LmVEHOYay-eG95X0=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.699999+00 2025-12-17 15:50:00.700004+00 35607 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hEihuWLyYhonhL0tdq_gDWAwBbM=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.702386+00 2025-12-17 15:50:00.70239+00 35608 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o9DLykkAPCGmqxTCfrrewrFUOZo=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.704856+00 2025-12-17 15:50:00.70486+00 35609 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gSX_0UR3fwvoVB49ojKgc4_XP2E=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.72707+00 2025-12-17 15:50:00.727074+00 35618 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9eM5qHJpk8bwPaZXygKgOZPynI8=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.707335+00 2025-12-17 15:50:00.707339+00 35610 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i2MDGE56YmTZr0g-5jK8LpbSovQ=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.710012+00 2025-12-17 15:50:00.710017+00 35611 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G3hwczpBDdobGC_y0_hP5vd55wE=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.712652+00 2025-12-17 15:50:00.712657+00 35612 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K2ejwgjYuSMT0V_an95RTfQ9HzY=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.715056+00 2025-12-17 15:50:00.715061+00 35613 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bTWcBJrJkeUqLx3ZsDUOGxHJhyA=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.717463+00 2025-12-17 15:50:00.717467+00 35614 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o2bFxMW_ZPLS135O2Ae_ilGtni4=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.719929+00 2025-12-17 15:50:00.719934+00 35615 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2V_lglbY82wi6TnIfJeBDJM4Llo=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.722219+00 2025-12-17 15:50:00.722224+00 35616 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uk4SsdFI0Y2UG7TL5HgyAMFrZcE=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.724665+00 2025-12-17 15:50:00.72467+00 35617 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Mnb1d3O3p2KVlK-aIIK335J3yo=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.729741+00 2025-12-17 15:50:00.729746+00 35619 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qNGmPPxf2xajWhnS1yOwLbN1C-w=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.732476+00 2025-12-17 15:50:00.732481+00 35620 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sYdC5zeZJF328ndncvl49cDYYyg=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.734881+00 2025-12-17 15:50:00.734886+00 35621 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nw4Kf86hnQzgSvkiYT-xIjkGdHI=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.736998+00 2025-12-17 15:50:00.737003+00 35622 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C2bT_f99DDBRbpBlEMRopUnocsw=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.739371+00 2025-12-17 15:50:00.739376+00 35623 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:biCU6DMP7MFURuUEhIXUjIKuRVg=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.741916+00 2025-12-17 15:50:00.741921+00 35624 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PGswhjdxZtcvrUZZjJ4yJ3-UOiA=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.744212+00 2025-12-17 15:50:00.744216+00 35625 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uyctmksn3rAZySCvZhFxxsTpMr0=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.746575+00 2025-12-17 15:50:00.74658+00 35626 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r-Z3aR73_dYNkB8p7DMqb-pHtR0=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.749466+00 2025-12-17 15:50:00.749471+00 35627 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5KD7NPqad9WXbRgly4W9Tf6AACo=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.752404+00 2025-12-17 15:50:00.752409+00 35628 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LndC08eu0yr5EKsHUnSUdCGBrOE=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.755015+00 2025-12-17 15:50:00.755021+00 35629 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O8nv3qfD2TbN_s_L7Ka0EAy_JlQ=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.757559+00 2025-12-17 15:50:00.757563+00 35630 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JL_o6tYmMayGnl2qgSIWjqgtWw8=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.760021+00 2025-12-17 15:50:00.760026+00 35631 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y1RbCU03S2LA5ztiSPYH_qGNLpI=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.762486+00 2025-12-17 15:50:00.76249+00 35632 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EhtOhziO5NOEhuR7sLFiCeTvBQA=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.765181+00 2025-12-17 15:50:00.765187+00 35633 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r2GYF9tdAR3yBdFm1RtF6oUda1w=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.767864+00 2025-12-17 15:50:00.767869+00 35634 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bt_9Qa7zAWbmpLI7ndyzWvZcyEA=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.770792+00 2025-12-17 15:50:00.770798+00 35635 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VjCHQp_XmXr_u9jeclyayam-o0s=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.773784+00 2025-12-17 15:50:00.773789+00 35636 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lMVRb0uX1psjCGFH1VZHmyvnAsE=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.776365+00 2025-12-17 15:50:00.77637+00 35637 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ik-Zu5SLLYdlhxERyLMiHLNF5rk=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.778607+00 2025-12-17 15:50:00.778612+00 35638 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jb0iqbfEH1wC4NarPNUE1pGfq1g=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.781642+00 2025-12-17 15:50:00.781648+00 35639 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KSzmeh39OeMUVKm9TJJ7TH_Rsrg=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.784302+00 2025-12-17 15:50:00.784307+00 35640 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:makZCmW9ya3dokggrBE1JKRSaWM=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.786913+00 2025-12-17 15:50:00.786919+00 35641 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6U-tV9Bm5H-OsYloJl7qQGhlFz8=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.789924+00 2025-12-17 15:50:00.78993+00 35642 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6uEiKZhjUYuGGg785XfSQS_S7aQ=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.183269+00 2025-12-17 15:50:01.183275+00 35663 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cUsfO-NhQ-V8lc1sVPRySEK5HuQ=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.79312+00 2025-12-17 15:50:00.793126+00 35643 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3kKTMJ2rivAvnWwW5Iz7E3u2eq0=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.795979+00 2025-12-17 15:50:00.795984+00 35644 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6rzCfsgsFqzkf9jkZjjMYI6vkV0=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.798702+00 2025-12-17 15:50:00.798707+00 35645 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hAEnE1FTocp9TfbzOxfk30xRYCk=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.80127+00 2025-12-17 15:50:00.801274+00 35646 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8NCL10mKUe9utGJE8Xe5tv5LQVY=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.803839+00 2025-12-17 15:50:00.803846+00 35647 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6dHq9wW7qNjHoAPrOfWmZ9HvuQE=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.806756+00 2025-12-17 15:50:00.806762+00 35648 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BtFheNM7Sx_M5ljIyv5Ando1DtM=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.809595+00 2025-12-17 15:50:00.8096+00 35649 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lQ8iePbAEZiCDtICzqZc-xcgWGo=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.812257+00 2025-12-17 15:50:00.812266+00 35650 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ibdiQehnL0reffS-iXlSMAXCuY=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.815391+00 2025-12-17 15:50:00.815396+00 35651 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sLdtNsIPysH0Hv7LSKm1BMKbQlA=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.818335+00 2025-12-17 15:50:00.81834+00 35652 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lf0vFg3jnDJuskKplsIO3ysTEx4=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.820974+00 2025-12-17 15:50:00.820981+00 35653 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yXEJ1ajf0XXWQfpEVNn-EcD6byM=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.823519+00 2025-12-17 15:50:00.823525+00 35654 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TvA71ETpJmcYWeokR-ZQ0sn2MaI=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.825926+00 2025-12-17 15:50:00.825931+00 35655 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NzmQbt_tPQNxI6XFxF-tWGRdLEg=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.828333+00 2025-12-17 15:50:00.828337+00 35656 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v5A4_kXE-xeNjDOsyOi-GRXzJWo=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:00.830984+00 2025-12-17 15:50:00.83099+00 35657 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=1766072999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1QYI7rP0XGHoPbi3gr7rEUecY-A=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.168687+00 2025-12-17 15:50:01.168696+00 35658 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCt3vHMCnLnXnc3PEdHy2ExLj68=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.172424+00 2025-12-17 15:50:01.17243+00 35659 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_b_53izYVPOIPZeHcHdeqyrSls4=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.175246+00 2025-12-17 15:50:01.175252+00 35660 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ekfd4A_d9w_IW3sZTTTGDT8moDI=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.177882+00 2025-12-17 15:50:01.177888+00 35661 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e5IW-1-MegrwGNnzleSJR-1N4is=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.180578+00 2025-12-17 15:50:01.180583+00 35662 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9exuKuX1quyAouO6Po3VGOsBAwQ=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.18621+00 2025-12-17 15:50:01.186215+00 35664 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DwxtkhMI2oX3F1KHSLUsQXoOOs0=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.189141+00 2025-12-17 15:50:01.189146+00 35665 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ps5PNLNCbzSLI7VVf8WsoeRGeH8=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.191743+00 2025-12-17 15:50:01.191748+00 35666 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nqVT-t-dDInJzynMW0aiqTXthZM=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.194251+00 2025-12-17 15:50:01.194256+00 35667 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1-4oJ9rrQMI4eN07HjjPi7K4vE8=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.196699+00 2025-12-17 15:50:01.196704+00 35668 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dteC6zKcGopUhU2vvu__Z78uEqM=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.199493+00 2025-12-17 15:50:01.199499+00 35669 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:krJlo8oAwGKGJSpzLdDCj7ehVs8=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.2022+00 2025-12-17 15:50:01.202206+00 35670 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XrUxNrbiufsqUo_fHKb9KpWNOyY=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.20505+00 2025-12-17 15:50:01.205056+00 35671 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RKJhORG6gsr_rOYO4Bu7Fdq7y8Q=", "createTime": "2024-08-15 14:59:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.208155+00 2025-12-17 15:50:01.208161+00 35672 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1tkgMe-NJ9mrmHbGtcbDp3UgoN4=", "createTime": "2024-08-15 14:59:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.211187+00 2025-12-17 15:50:01.211192+00 35673 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GkPy8CxtgGjo1VFfcuB5SYZ9eGU=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.214361+00 2025-12-17 15:50:01.214367+00 35674 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gnLekI52P1-oQFA1N_IJsYhhHEE=", "createTime": "2024-08-15 14:59:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.217392+00 2025-12-17 15:50:01.217397+00 35675 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u1QOi5pye4btxVNnCAMfhPnacbo=", "createTime": "2024-08-15 14:59:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.232497+00 2025-12-17 15:50:01.232503+00 35680 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uVKcMBXatF_vrrEFyzHRG91GkFA=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.220329+00 2025-12-17 15:50:01.220334+00 35676 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:22Qe051n23jFWH2uapqbXBtKepk=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.223407+00 2025-12-17 15:50:01.223413+00 35677 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X4sgDouNZg5oyRe5lu5OmpwdxoM=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.226423+00 2025-12-17 15:50:01.226428+00 35678 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ru-ltFHiYfrQvDaEWLVIBfQIFwc=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.229418+00 2025-12-17 15:50:01.229423+00 35679 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Qg7xJfVqec_s1eiRHHnGogzlhg=", "createTime": "2024-08-15 14:59:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.235014+00 2025-12-17 15:50:01.235019+00 35681 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A5ATsgXPlmf3a1VSHxyL-7VbF9Q=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.237771+00 2025-12-17 15:50:01.237777+00 35682 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AAAg74gwzjXeeAFoBcrOawVQtvA=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.240427+00 2025-12-17 15:50:01.240433+00 35683 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AMeq_aVkef6mCrPKbvZboRYTuj4=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.243244+00 2025-12-17 15:50:01.24325+00 35684 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q4NWNHlthKOJsIqxGRij5KAfmu8=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.246005+00 2025-12-17 15:50:01.246011+00 35685 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H4ppTVMXQOBD0cXiNFqeQ9Il0zM=", "createTime": "2024-08-15 14:59:30"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.249098+00 2025-12-17 15:50:01.249103+00 35686 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x6Sr_7rIigeKRWeosN6mEbsGCwE=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.25211+00 2025-12-17 15:50:01.252115+00 35687 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6VcuBgAvKJSI6QPboN_YkjFYpQk=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.254893+00 2025-12-17 15:50:01.254899+00 35688 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:indAVgbwRRxhr5W0Sk6Otl3KDbM=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.25759+00 2025-12-17 15:50:01.257596+00 35689 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AGadU2CnXZRHv1L9h6OsfVx8aZ4=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.260273+00 2025-12-17 15:50:01.260278+00 35690 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z-3HEWa6j_Ae8kadaFaGOztWHHI=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.263019+00 2025-12-17 15:50:01.263025+00 35691 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6bJwpM-nGwHU9hNWFJq_h-ebNuI=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.265787+00 2025-12-17 15:50:01.265793+00 35692 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WKwz4S1FafCBc8c4WmmQcr2IcRM=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.268385+00 2025-12-17 15:50:01.268391+00 35693 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NuX7xW3EkeWPxzkPkOgUrrnJKMw=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.271366+00 2025-12-17 15:50:01.271372+00 35694 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ei_20SGLCCWxMs3MNbDBYhiA6EQ=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.274391+00 2025-12-17 15:50:01.274397+00 35695 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:THlofaeuW1hAHdiITdSjvs3Aem4=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.277079+00 2025-12-17 15:50:01.277084+00 35696 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JDl-uJdqumTfAY-QWKe64uE7nzQ=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.279668+00 2025-12-17 15:50:01.279673+00 35697 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iJn_82NXDLIX_PQLB0nc3y7qPOU=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.282483+00 2025-12-17 15:50:01.282489+00 35698 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dFOiTWaVmKR7Ja7-PsaLraVIPno=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.285121+00 2025-12-17 15:50:01.285126+00 35699 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G3wDFemHdgkPCQfmJ5K5P65XbgA=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.287826+00 2025-12-17 15:50:01.287832+00 35700 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iy2-QNULxM4mw6zM-rC0sFuFTsc=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.290998+00 2025-12-17 15:50:01.291005+00 35701 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7yZHMwTJwTutw5j8TOXPLlC2hfs=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.294353+00 2025-12-17 15:50:01.29436+00 35702 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9GxzOv5bu-YUs7H8rjTqbAfQY2Q=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.297936+00 2025-12-17 15:50:01.297944+00 35703 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ssss6dekkuG8_y_uodHwo8h7Ycc=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.300968+00 2025-12-17 15:50:01.300974+00 35704 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mUa-E9lwmpD-9gZBTgHsYcJpewE=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.314194+00 2025-12-17 15:50:01.3142+00 35709 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F1npPQEwqcV3FBeccl099j71WnA=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.303793+00 2025-12-17 15:50:01.303799+00 35705 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QVjKtdrGF7I0jEbVI8i3aTxETb8=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.306432+00 2025-12-17 15:50:01.306436+00 35706 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_pZMgRCK2kFwKDdQUAuAQNYLtMM=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.308922+00 2025-12-17 15:50:01.308927+00 35707 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HKy-UmmxsjqepPsHIoIW7blPMik=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.311505+00 2025-12-17 15:50:01.31151+00 35708 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fSFDVopfNbYGlZy6O_wWonAfx10=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.317246+00 2025-12-17 15:50:01.317251+00 35710 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tf199kqaigzXvGql_p3xEaUWEQA=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.320263+00 2025-12-17 15:50:01.320268+00 35711 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nkP3wRqRc14aloWtyHwQDh-GVRQ=", "createTime": "2024-08-15 14:59:33"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.32312+00 2025-12-17 15:50:01.323125+00 35712 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0y8Cc63co8MBFFyVR7tMifen09Y=", "createTime": "2024-08-15 14:59:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.325948+00 2025-12-17 15:50:01.325954+00 35713 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p6BjKPkh5gHQgSLWdu4SkInwqEQ=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.328613+00 2025-12-17 15:50:01.328619+00 35714 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o7IGbi_SzaukmGu3zRXjGNYkzXY=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.331338+00 2025-12-17 15:50:01.331344+00 35715 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CJ-2Is6hD9m1xNW-v6KrwC5W0Cw=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.334053+00 2025-12-17 15:50:01.334059+00 35716 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ph3SA-tUdkmKp7gNU3UXvSKEETQ=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.336698+00 2025-12-17 15:50:01.336704+00 35717 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZeltFy8WnFTti22TS9H6XWXVUaA=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.339736+00 2025-12-17 15:50:01.339741+00 35718 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:isebotEtwF1dUCSsarxbXgTv1Sw=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.342621+00 2025-12-17 15:50:01.342626+00 35719 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Kn3ISzjnY9BlzA-y2cfMHB_sfg=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.345047+00 2025-12-17 15:50:01.345052+00 35720 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f1nkznFaHFZcN_UU8wYZ3V4D_N0=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.34748+00 2025-12-17 15:50:01.347485+00 35721 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OET6PSvT1PFNH-ilzEMWczynVJ8=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.350182+00 2025-12-17 15:50:01.350187+00 35722 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ftG355Fzht3Xsd9WiIXUV5Cgweo=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.352879+00 2025-12-17 15:50:01.352884+00 35723 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i9RDom5pIOeNWKdWeXNThE81OdA=", "createTime": "2024-08-15 14:59:34"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.355682+00 2025-12-17 15:50:01.355687+00 35724 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HBBXeEXHDPM0VCla5LymPqEXfYI=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.358362+00 2025-12-17 15:50:01.358367+00 35725 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FivbTkFKxkNo2nDXULdUyylVxIw=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.361316+00 2025-12-17 15:50:01.361322+00 35726 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kSfINUvze1jg7W0z-kXhUychnoA=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.364245+00 2025-12-17 15:50:01.36425+00 35727 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nCqAyDo88JvXRNfxNB6OxXrjZPU=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.366866+00 2025-12-17 15:50:01.366871+00 35728 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mBITrrUZuhn-GoSV-ptTQEQdI8E=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.369505+00 2025-12-17 15:50:01.369511+00 35729 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QCH3t-qQLZeyTj8x3swr1c80ehs=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.372367+00 2025-12-17 15:50:01.372373+00 35730 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ajgKfOW9COk26BLqlThsyq6nHw4=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.375198+00 2025-12-17 15:50:01.375203+00 35731 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PMHXGjrXbK7z5kwQ7x7JRnbgMT0=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.377866+00 2025-12-17 15:50:01.377872+00 35732 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HGoCUkFU7lgxthbVAsWGlEsS1og=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.38062+00 2025-12-17 15:50:01.380626+00 35733 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LyQNMrS428QYAQ8YjLQ_KzCyg-U=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.383679+00 2025-12-17 15:50:01.383685+00 35734 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5fykctU2qTcUob2PgRwZxWqVVPY=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.386535+00 2025-12-17 15:50:01.38654+00 35735 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VAl-e_PxjmQ4pVJSXXrfXsWFfbU=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.389235+00 2025-12-17 15:50:01.38924+00 35736 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ocKEEsiC9rvpawo4gUvTp9oPm2E=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.39181+00 2025-12-17 15:50:01.391814+00 35737 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A-DuB1zkiDlxNpUQ-GUOgl5oD6E=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.394248+00 2025-12-17 15:50:01.394253+00 35738 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EjuwkwOvOWtYe7BB60ti0IrWUnw=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.396445+00 2025-12-17 15:50:01.39645+00 35739 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cU7ndy71X3Ih4H2xmIPPGmUerRw=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.399189+00 2025-12-17 15:50:01.399195+00 35740 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V-bLqI-UwbZ94zQg-aP9AhJD9Mo=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.401904+00 2025-12-17 15:50:01.401909+00 35741 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IJlqn2hz_t-DqROTxS9hAU3fL3o=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.405096+00 2025-12-17 15:50:01.405102+00 35742 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LcLMJ7zWS-AmG3eLMiv_UnChuEY=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.40803+00 2025-12-17 15:50:01.408035+00 35743 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iSWh7ZpPTlbNhiCigycI8sW6ams=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.410517+00 2025-12-17 15:50:01.410522+00 35744 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D2iH2T-yci62kQii-wx25-kuHws=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.412934+00 2025-12-17 15:50:01.412939+00 35745 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LZK1DeqT8aZJAl1bOPnKOj5et6g=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.415606+00 2025-12-17 15:50:01.415611+00 35746 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qRGxSUAJSU50o1AENHhS9-o3SHo=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.418355+00 2025-12-17 15:50:01.41836+00 35747 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:el4PgQ0d7VAHdl2BBt0MJxjBCaQ=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.421188+00 2025-12-17 15:50:01.421194+00 35748 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5x_TNZEBCGnpzgMdrrVDy_4V7GQ=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.423838+00 2025-12-17 15:50:01.423843+00 35749 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-UGpxZ-O6YZvaJpNHHhTrZq53pc=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.426686+00 2025-12-17 15:50:01.42669+00 35750 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TVZZUmzab-4xBcJ2o7HaLaIpP88=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.42937+00 2025-12-17 15:50:01.429375+00 35751 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OYciWLzK1vek2YrGE4loNcfTaV0=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.431947+00 2025-12-17 15:50:01.431952+00 35752 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g77D4sIgybRYRR3SU58g06fjp4E=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.434487+00 2025-12-17 15:50:01.434493+00 35753 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vdWqsXkLGx-t1szfMKQvGCFcSrk=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.436932+00 2025-12-17 15:50:01.436937+00 35754 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H9v32JDEgJJEjCTE6pUVQr4gKpI=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.439764+00 2025-12-17 15:50:01.439769+00 35755 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kRcYSvUlSEqQLonO5K3ceQeosHw=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.442448+00 2025-12-17 15:50:01.442453+00 35756 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NC8MefbFbwVok39z4o5hfCH9nWc=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 15:50:01.444917+00 2025-12-17 15:50:01.444922+00 35757 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=1766073000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I4xWo72SCzkX5i_6ADhCjRUBIYU=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.354857+00 2025-12-17 16:00:00.354871+00 35758 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ftA6Khm0BvwMaLj3jh0skS5F1_E=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.359736+00 2025-12-17 16:00:00.359755+00 35759 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f9x2qBEw22ER-hUAPuHRkUaPigY=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.36397+00 2025-12-17 16:00:00.363976+00 35760 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AWYHIRqgumJW5jjKEqIHQLm9KNE=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.366821+00 2025-12-17 16:00:00.366826+00 35761 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q7K_m9Fm2t_SmNKhmvYBIfaoteo=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.369345+00 2025-12-17 16:00:00.369349+00 35762 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ALcddl5aaBg_tj0D6Tob9_w52fk=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.371775+00 2025-12-17 16:00:00.37178+00 35763 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NTebOMj3MvHfun9l1MB0xympe-E=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.37426+00 2025-12-17 16:00:00.374265+00 35764 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iguBPp9nuuh8ey-XKMxUu9i1Vlk=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.37696+00 2025-12-17 16:00:00.376966+00 35765 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EufPIFBh7KyueEIXfU_nZWpv3f8=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.379596+00 2025-12-17 16:00:00.379601+00 35766 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3FqfTMTfRtmxuwMBl-Tt8ORwOLc=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.382522+00 2025-12-17 16:00:00.382527+00 35767 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a-C0wIsqm3qqUOCAU6oDlw5VV8I=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.385387+00 2025-12-17 16:00:00.385392+00 35768 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gXCl7jqlgr07PpWhNTkD2AMXF8E=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.388024+00 2025-12-17 16:00:00.388028+00 35769 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:shzVeQ5blIufWJrmIAUU11tHsjY=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.390553+00 2025-12-17 16:00:00.390558+00 35770 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bk7Wc9mc6CmpRWw-aCmIMolvqGc=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.39333+00 2025-12-17 16:00:00.393336+00 35771 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4xiyrbalHMqklnn8z4y8WC7b4Wo=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.396044+00 2025-12-17 16:00:00.39605+00 35772 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gt5UzRGg2G59SUc8H6tstw4saII=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.399016+00 2025-12-17 16:00:00.399022+00 35773 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iCu1LDJY-Wi2l3cdKfVhwvfD6WA=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.401902+00 2025-12-17 16:00:00.401908+00 35774 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VV8ssGe2piCKE3AWmIgou70Q7hQ=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.404916+00 2025-12-17 16:00:00.404922+00 35775 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EcWU56laNBBYXkeBmYXKL6h0DHM=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.40828+00 2025-12-17 16:00:00.408286+00 35776 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9irbehI2wxLeZlTpwc7RXKg9kuQ=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.411284+00 2025-12-17 16:00:00.411289+00 35777 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aR2UeuNmwgrhd9TzRWkHPV1NyAQ=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.414215+00 2025-12-17 16:00:00.414221+00 35778 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p3_wZnzGKERiM_FijnrBgy9fIEM=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.417001+00 2025-12-17 16:00:00.417007+00 35779 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t4mnSDsM0_7qz4HWx3T1zMjp6ZU=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.419786+00 2025-12-17 16:00:00.419792+00 35780 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r5H-l1GWllskLtjeizJ8cFrsNpI=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.422407+00 2025-12-17 16:00:00.422413+00 35781 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XcrHDfx4xk8dyUlO5QU2pnIAxTU=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.425439+00 2025-12-17 16:00:00.425447+00 35782 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IY2JzHWnpPAsHvKpTFRd_FvjyRg=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.429099+00 2025-12-17 16:00:00.429105+00 35783 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9r-F7urP00S47v7v7yNjBVAfdAA=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.432618+00 2025-12-17 16:00:00.432623+00 35784 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lQKQjtN6PKhqfeqHome2vSBHPig=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.435562+00 2025-12-17 16:00:00.43557+00 35785 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q8eddwr06HsqUccXmQEkTEuwecg=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.438236+00 2025-12-17 16:00:00.438241+00 35786 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZOjuSUUp2PQGqAAUIuMGQjQPIRM=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.440805+00 2025-12-17 16:00:00.44081+00 35787 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m0srzmavpIisuwmeofV17_DxU0Q=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.443479+00 2025-12-17 16:00:00.443486+00 35788 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3jQRQCBwE7WeExet9H4vCkwRUC4=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.447871+00 2025-12-17 16:00:00.44788+00 35789 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ICalJXzPHN4ZCcvnIf4f89lw31Q=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.451257+00 2025-12-17 16:00:00.451261+00 35790 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cS-Z-BghLlTaDtZOEwQjJlWU2yw=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.454175+00 2025-12-17 16:00:00.45418+00 35791 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ebEhTWuUB1iZyhxmBBmeeGarEEY=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.456997+00 2025-12-17 16:00:00.457003+00 35792 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:95NhXHvJKijFP1DWKp1Yq2dc1wQ=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.459638+00 2025-12-17 16:00:00.459646+00 35793 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8XndiEJ9U5fUIdsQVYA_3s4rCmw=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.46261+00 2025-12-17 16:00:00.462617+00 35794 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8yH2budYvL2oZAYDDADblchEXuI=", "createTime": "2024-08-15 14:59:42"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.465623+00 2025-12-17 16:00:00.465628+00 35795 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_3knYVG6Czsr96QAsokA23GGaiA=", "createTime": "2024-08-15 14:59:42"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.46846+00 2025-12-17 16:00:00.468466+00 35796 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JeTJo7DAN5LqaJ9pu4INLGeSBu0=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.471029+00 2025-12-17 16:00:00.471034+00 35797 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qPPbVZCcAchO1VU6Mi86pDNoBSk=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.473844+00 2025-12-17 16:00:00.47385+00 35798 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:smelPKNMuJFVEB-I-q0oapoOO1c=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.476985+00 2025-12-17 16:00:00.476992+00 35799 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m6VfpKM5yNJbfq9VVXNbLHm2DaA=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.480087+00 2025-12-17 16:00:00.480093+00 35800 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ILLId-ApzPaI1jgVWB1mDMJm_Zw=", "createTime": "2024-08-15 14:59:42"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.482844+00 2025-12-17 16:00:00.482849+00 35801 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-W5AZ7CQjDLYnCLGD7NlWDUXEjY=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.485363+00 2025-12-17 16:00:00.485367+00 35802 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:24jyKanHAgWnLIEgIySwufv33Ss=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.487679+00 2025-12-17 16:00:00.487684+00 35803 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E_iw9gnxd09Aju5QAb6gpedu9KM=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.490057+00 2025-12-17 16:00:00.490061+00 35804 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SSDIMro7F6_7utCuCsviG5-7mBs=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.492314+00 2025-12-17 16:00:00.49232+00 35805 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ff9BA-kKTJa37Pja5ei7FeNFcOY=", "createTime": "2024-08-15 14:59:42"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.495098+00 2025-12-17 16:00:00.495103+00 35806 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HKhLsXbKChsd9Pvrt32pnGUBtCU=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.498139+00 2025-12-17 16:00:00.498144+00 35807 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ezVG3h2xIWVKmBeWWoyMbq0AwE4=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.501235+00 2025-12-17 16:00:00.50124+00 35808 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y9A0L_wqMZ8uVcGTkG4Kz85yUVE=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.503924+00 2025-12-17 16:00:00.50393+00 35809 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GGACPt9QB33K6O_eFqjmTYtjGPo=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.506604+00 2025-12-17 16:00:00.506609+00 35810 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:viw2gqL9jKfGshWDOpkgzmzjqO8=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.509188+00 2025-12-17 16:00:00.509194+00 35811 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MXeceFAzFrKMPpxTwBqNS2raPMo=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.511928+00 2025-12-17 16:00:00.511933+00 35812 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qEbshc9Zd4X73Z1G-FnWnkaMtq0=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.514892+00 2025-12-17 16:00:00.514898+00 35813 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9p2kGuI-AVmb0hCnjVqC0m-gZ8Q=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.517836+00 2025-12-17 16:00:00.517842+00 35814 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XbDk5UoJaU_RT1hVb3HZ5-HQAFM=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.520865+00 2025-12-17 16:00:00.52087+00 35815 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TDWpr89xtZ9Mu770NKQ2RgiTjSg=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.523766+00 2025-12-17 16:00:00.523771+00 35816 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o3l9tqnc6ffM6geeDGOvR2QcP-c=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.526441+00 2025-12-17 16:00:00.526447+00 35817 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fVVj0aPfd89Dx89E6dFyVpGQjxQ=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.529183+00 2025-12-17 16:00:00.529189+00 35818 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-u0FQ1Cltd31eq2LXDdCc8P0gIo=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.53204+00 2025-12-17 16:00:00.532046+00 35819 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qZo7pWjz_cpxlmjH4fDXulF60IY=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.534891+00 2025-12-17 16:00:00.534897+00 35820 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hlOQgtisVSMsr2A6ESIX95f25rE=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.537573+00 2025-12-17 16:00:00.537579+00 35821 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NIa_M9JfNGz28_J2203VsPaNvug=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.540205+00 2025-12-17 16:00:00.540211+00 35822 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PLoZjTYM731mNMbOcNBxVtYh7zM=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.543138+00 2025-12-17 16:00:00.543144+00 35823 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eu1HQU99qrsnTv3sHXWSA0V5UBM=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.546198+00 2025-12-17 16:00:00.546205+00 35824 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1thEKE_gg2y1s8Nj8SIewkJ-02w=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.549298+00 2025-12-17 16:00:00.549304+00 35825 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IfPrBZf0TU7x5A29adgsIKFp2Os=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.552389+00 2025-12-17 16:00:00.552395+00 35826 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v0chcg5OGRIHVRVh4PtEcPQgsOs=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.555601+00 2025-12-17 16:00:00.555607+00 35827 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TQHdw09SVtAMIcAgM3vV9cfGoBY=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.558508+00 2025-12-17 16:00:00.558514+00 35828 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i8SaAT-BEa2QwWPuWxCTrl8Kfws=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.56104+00 2025-12-17 16:00:00.561044+00 35829 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AjdwTVcmfqnMVgycTK1gGmDNdpQ=", "createTime": "2024-08-15 14:59:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.563675+00 2025-12-17 16:00:00.563681+00 35830 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UDYA_ct8NTXFhgDLBLWHAxPEfV8=", "createTime": "2024-08-15 14:59:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.566551+00 2025-12-17 16:00:00.566556+00 35831 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4hhPkhtV1UOmIeDYvHfAyixKXe0=", "createTime": "2024-08-15 14:59:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.569581+00 2025-12-17 16:00:00.569587+00 35832 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pg7iLrFvbZoJRnxTIAUiGjSh-LI=", "createTime": "2024-08-15 14:59:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.572638+00 2025-12-17 16:00:00.572643+00 35833 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ZAWpEXRcen4jIXr9SvQWtFWZjM=", "createTime": "2024-08-15 14:59:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.575665+00 2025-12-17 16:00:00.57567+00 35834 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MYWhqUUeb8m8eOjBeub3WKP3YhI=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.578431+00 2025-12-17 16:00:00.578436+00 35835 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zH7JEiigRp1vBVhmHBXiJw6xhsk=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.580923+00 2025-12-17 16:00:00.580928+00 35836 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pKe2MxxnBkzXwHFQp0-918K7P0A=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.583295+00 2025-12-17 16:00:00.583299+00 35837 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nLwzn7qOgn0flbg0tssGT2QO6ys=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.585607+00 2025-12-17 16:00:00.585611+00 35838 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Wp4nysTmVQVjbsHWcvGqxprKrs=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.588006+00 2025-12-17 16:00:00.588011+00 35839 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9jgML-T4o1P9s0eL2weF0a5hFX4=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.590525+00 2025-12-17 16:00:00.59053+00 35840 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bjp6P0ZTjbyEiEgV4CPfzgvrfZ0=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.592842+00 2025-12-17 16:00:00.592847+00 35841 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QjycDUbQveiTJwN6eevS9E6L67Q=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.594952+00 2025-12-17 16:00:00.594957+00 35842 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3E7-U1DbYzDM2wCWhus1cRN6lJs=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.597381+00 2025-12-17 16:00:00.597385+00 35843 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iMtxz6c5104MyulwBUktwIei_Sc=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.599678+00 2025-12-17 16:00:00.599682+00 35844 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ODtOmGmanjTLTvBx2TyZMP1h6Ns=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.603007+00 2025-12-17 16:00:00.603012+00 35845 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-IhxRUVWykbj-KrXLeYyNQkk1EE=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.605515+00 2025-12-17 16:00:00.605521+00 35846 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TQD9uFNx8c1XF6sqPyngKTsHocA=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.608324+00 2025-12-17 16:00:00.608329+00 35847 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Rmbzq-_mkN5FYFAdW7x7P26uxg=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.611349+00 2025-12-17 16:00:00.611355+00 35848 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dCqWhPoYqs92AzsZ8xattRYIulk=", "createTime": "2024-08-15 14:59:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.614828+00 2025-12-17 16:00:00.614834+00 35849 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gD2CSs_tuhzAkbTlyMqr761osh4=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.61793+00 2025-12-17 16:00:00.617935+00 35850 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C1Iycs1QjqNKlk8kjeIosw2graQ=", "createTime": "2024-08-15 14:59:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.620611+00 2025-12-17 16:00:00.620615+00 35851 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o5qOjtpnKiBk2tUwLB2fqfGOnkA=", "createTime": "2024-08-15 14:59:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.623154+00 2025-12-17 16:00:00.623158+00 35852 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n6JHQVCsC09axI7_2HosVRBxizo=", "createTime": "2024-08-15 14:59:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.625507+00 2025-12-17 16:00:00.625512+00 35853 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NiSfrti9sJO4q-r9jwRzp9s_1fo=", "createTime": "2024-08-15 14:59:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.628046+00 2025-12-17 16:00:00.62805+00 35854 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jlBXGyx6iNHDAxsB_Hz_xs2LoW4=", "createTime": "2024-08-15 14:59:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.630475+00 2025-12-17 16:00:00.63048+00 35855 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bzn6zkWP1o9B8uo4Uz22cS2r5t4=", "createTime": "2024-08-15 14:59:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.633125+00 2025-12-17 16:00:00.63313+00 35856 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1AvYTUJNrm52pyQNwAG8Vdq1qPs=", "createTime": "2024-08-15 14:59:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:00.63522+00 2025-12-17 16:00:00.635225+00 35857 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=1766073599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e8Gw-DuM7ehZBwNS2uwxl-_yQT0=", "createTime": "2024-08-15 14:59:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.312711+00 2025-12-17 16:00:01.312719+00 35858 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2uRrNs-UqYFk1S3QaIvxUrMe2Zg=", "createTime": "2024-08-15 14:59:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.315907+00 2025-12-17 16:00:01.315912+00 35859 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mX7b7WQRz0q5l52fwdUVhYB2fKo=", "createTime": "2024-08-15 14:59:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.318601+00 2025-12-17 16:00:01.318608+00 35860 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dBhYxoEijJCGGIdJC_gEPbMYaF4=", "createTime": "2024-08-15 14:59:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.321565+00 2025-12-17 16:00:01.32157+00 35861 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ukqOGZpUjYUhwvRzG_JsVrYGg_8=", "createTime": "2024-08-15 14:59:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.324603+00 2025-12-17 16:00:01.324609+00 35862 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ba3Y-KFY3kal4V6EU-545z5rPTk=", "createTime": "2024-08-15 14:59:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.327319+00 2025-12-17 16:00:01.327325+00 35863 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8eCicGjBuVqhuxS21vEugl1yuUY=", "createTime": "2024-08-15 14:59:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.329998+00 2025-12-17 16:00:01.330004+00 35864 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dawh8eZIQvN3lR-Tv1iaoFQIoaM=", "createTime": "2024-08-15 14:59:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.332789+00 2025-12-17 16:00:01.332795+00 35865 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gxhoodOJeLIjLV1TXjPJI1rMyp8=", "createTime": "2024-08-15 14:59:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.335422+00 2025-12-17 16:00:01.335427+00 35866 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6fTGMQ_fDZ8aVEqgtnG3bQH-g9Q=", "createTime": "2024-08-15 14:59:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.337896+00 2025-12-17 16:00:01.337901+00 35867 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z8q4Zi0eLRxalsBL1gRur9Yf6z8=", "createTime": "2024-08-15 14:59:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.340303+00 2025-12-17 16:00:01.340307+00 35868 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uKhhT1yTgnyQeBvQ-KGLCH3x-UY=", "createTime": "2024-08-15 14:59:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.342937+00 2025-12-17 16:00:01.342942+00 35869 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xwmMb2aBkYYaAfRFQLl_g64rDqc=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.346002+00 2025-12-17 16:00:01.346007+00 35870 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VDV-bvhXhnCOoYOz1I9yRYwSKsk=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.348477+00 2025-12-17 16:00:01.348483+00 35871 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y1TZTLA5WVa7kNX6WgsxurBriyo=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.351016+00 2025-12-17 16:00:01.351021+00 35872 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1yDpHU8ShFXjkPO6P9wHKSzaWYI=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.353639+00 2025-12-17 16:00:01.353644+00 35873 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e4AOab0hSn2iALjNBJ8hDLZYnyU=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.356098+00 2025-12-17 16:00:01.356102+00 35874 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y_jqvZ4fuEj5NWy6R2HfXc7a1BU=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.358515+00 2025-12-17 16:00:01.358519+00 35875 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kR33LmxXcm9jryr5JMghWvo46Ck=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.361192+00 2025-12-17 16:00:01.361197+00 35876 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M44f8Dvt429VntZUXp2a0vB566k=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.364416+00 2025-12-17 16:00:01.364421+00 35877 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3MFNSGUTwxovaA4980xNjEYs0RY=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.367403+00 2025-12-17 16:00:01.367408+00 35878 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OFnhiMG3WvR8KDTqdlcbbqCBqoQ=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.370085+00 2025-12-17 16:00:01.370091+00 35879 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cF6Vs79p3WKN1StAjPo6NRc9EUU=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.372558+00 2025-12-17 16:00:01.372571+00 35880 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C3oTRnWLOM3c2zP8nTPTa_UCLeI=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.375045+00 2025-12-17 16:00:01.375049+00 35881 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KpftE8b3oXElZLiYqoHfpivknIQ=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.377288+00 2025-12-17 16:00:01.377294+00 35882 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5uQVK9z9iXNbXWdasdY2WXA58Mw=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.379815+00 2025-12-17 16:00:01.379821+00 35883 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iQbhmbXXShTiHq4xGCEEMH-dS5o=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.382587+00 2025-12-17 16:00:01.382592+00 35884 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zsRuRAARaJjFXCoaLxrRAl-v69I=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.385498+00 2025-12-17 16:00:01.385503+00 35885 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oKKCuv_Up15gSttV3EVoTHZ7Nfc=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.388385+00 2025-12-17 16:00:01.38839+00 35886 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BD0O2U3soiPHzzuK1y2a9e7fmE8=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.390875+00 2025-12-17 16:00:01.39088+00 35887 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kJs_8a8DiwoKycETH0qOOt4OA-o=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.393336+00 2025-12-17 16:00:01.393341+00 35888 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RWI5tgzdqRWAK1wsKaViMIHw0zQ=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.406523+00 2025-12-17 16:00:01.406527+00 35893 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CvFeb7kPmk74ETWBCm4Wnh9jPc4=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.395878+00 2025-12-17 16:00:01.395884+00 35889 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xCwx4F6w0y_sGNAPNYdi0D3610c=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.398667+00 2025-12-17 16:00:01.398673+00 35890 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pFn8Hbpx3YIX8nB3guYs5jFu0go=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.401351+00 2025-12-17 16:00:01.401357+00 35891 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pkbuTWUco3BJ4o-O3VxLh5lPQ98=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.4038+00 2025-12-17 16:00:01.403805+00 35892 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ut1fD7mpzCSYuTPa2LQykKXBMPg=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.409291+00 2025-12-17 16:00:01.409295+00 35894 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJT4pRvZ0IkAjqyRHQov5fVio1o=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.411836+00 2025-12-17 16:00:01.411841+00 35895 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JYDJWGfgipMcp4poXv7o4oeeEk8=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.415502+00 2025-12-17 16:00:01.415512+00 35896 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CwfaCqoTpsrBt1UVMSXBISvqNWc=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.418737+00 2025-12-17 16:00:01.418745+00 35897 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GupnNdwjXLzREZval_k75pI7iZI=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.42194+00 2025-12-17 16:00:01.421947+00 35898 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HZwCF2dLRaWvd7SDRQSe8qXmL6w=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.424803+00 2025-12-17 16:00:01.424809+00 35899 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lmuu5cQflQnvki3EiZEvvH-ghjg=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.4276+00 2025-12-17 16:00:01.427605+00 35900 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cAPD0k7yt-mrQOG8xgA08mJEqxQ=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.430809+00 2025-12-17 16:00:01.430816+00 35901 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fUUjyiHmBPhtlIkCDzmSqyP5Wyw=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.433944+00 2025-12-17 16:00:01.433949+00 35902 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o5TnatPZpzdiJ5yGueMi_U_Ebw0=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.436674+00 2025-12-17 16:00:01.43668+00 35903 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:33i6MWwO8sxn1Jst-MfhxoBXMHI=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.439368+00 2025-12-17 16:00:01.439374+00 35904 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KypAufTbxcJBnNECbA_ND9uwwTQ=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.442234+00 2025-12-17 16:00:01.442242+00 35905 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OoohBr5wMf3aEW6gnMG_GFDWugk=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.44538+00 2025-12-17 16:00:01.445387+00 35906 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jpnfXHSmOo51oLnKhqjrrdpMq1s=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.448517+00 2025-12-17 16:00:01.448523+00 35907 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nwjyFtYbI2IxxMKDjy4iAgnEF4I=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.45132+00 2025-12-17 16:00:01.451325+00 35908 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gxCLQdNoD1t2emZGhyWZqe7QWaM=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.454218+00 2025-12-17 16:00:01.454223+00 35909 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ldMem9u77QgUQCh43NoVl3u_8Dk=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.456924+00 2025-12-17 16:00:01.456928+00 35910 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:__yPnRExASW75qv-mrE0f4VtSsc=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.459277+00 2025-12-17 16:00:01.459281+00 35911 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Svh3ahdhTYSx87d9yROvZ5Ci3A=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.461986+00 2025-12-17 16:00:01.461992+00 35912 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QDIoPOGwrf1RnImLQyf2mm3rmBc=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.465003+00 2025-12-17 16:00:01.465009+00 35913 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IcCFF4DO5P8YoxzZdimtgxg1CBk=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.468038+00 2025-12-17 16:00:01.468044+00 35914 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lZoZ8G86ieHCLrzCSCVqbry-pos=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.470775+00 2025-12-17 16:00:01.470781+00 35915 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1GF97HGjaofueKvGHcmUIaDFcyA=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.473499+00 2025-12-17 16:00:01.473505+00 35916 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_UtDYHk52Od9d2_Qgn8CMRVyAPM=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.476507+00 2025-12-17 16:00:01.476512+00 35917 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8wxbsq7pz_YeDRDEY9AhowJRZY4=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.479552+00 2025-12-17 16:00:01.479558+00 35918 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8h27tF8fB12ePw0TSmb2caL0vSY=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.482429+00 2025-12-17 16:00:01.482434+00 35919 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-3Kv62Fsw_c5ccOILk3fXumGsJ4=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.485294+00 2025-12-17 16:00:01.4853+00 35920 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qr9hT33Qd1RUWayiWJFVOnwCHpw=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.488234+00 2025-12-17 16:00:01.48824+00 35921 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wCmg1W-b_Qm8w6BhH0v_svnYMsU=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.49146+00 2025-12-17 16:00:01.491467+00 35922 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1hkiOHcp6TMj_JrOKwczbhuyUKs=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.494912+00 2025-12-17 16:00:01.49492+00 35923 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:whEv3hG0yMazRFlLJrfjO50s4TI=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.498143+00 2025-12-17 16:00:01.49815+00 35924 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8iuHvxcvcjgpehkh_Nxm0a7flJY=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.501457+00 2025-12-17 16:00:01.501466+00 35925 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PmIehfFr_EGURNiZazAowBtYOWc=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.50493+00 2025-12-17 16:00:01.504936+00 35926 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e-Ed8nR-Jpd89sIo8Ikt8zeZSw8=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.507529+00 2025-12-17 16:00:01.507535+00 35927 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8RTIJeoXz3usmh2Q5FfTwmuSF1Y=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.51032+00 2025-12-17 16:00:01.510327+00 35928 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FwWV2H7DqBmcTNRrY5yiB8wPpok=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.513572+00 2025-12-17 16:00:01.51358+00 35929 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uEgeP3Dfc_0NXGDhHyu0iohnlJg=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.516764+00 2025-12-17 16:00:01.516771+00 35930 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lv4ZeY2RCFXvcGda6EbX-bp5DyM=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.519837+00 2025-12-17 16:00:01.519843+00 35931 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H2aKnn2wLDiQ8hXhOBFnTpCtylE=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.522613+00 2025-12-17 16:00:01.522619+00 35932 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:10S6A8G79fZEjpHbrsWUUKC_pcY=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.526288+00 2025-12-17 16:00:01.526295+00 35933 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OxQBEgOzjIOwotWBYZQceyOSeFo=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.529448+00 2025-12-17 16:00:01.529454+00 35934 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l0sSuDxEKt2L5sxzs1blXv0L28c=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.532253+00 2025-12-17 16:00:01.532257+00 35935 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XrJUVn6ALCmBr_IPEChN0YQIcDI=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.534802+00 2025-12-17 16:00:01.534807+00 35936 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PqfSFIsQW7zNqpDx0qMG_HPKkMk=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.537535+00 2025-12-17 16:00:01.53754+00 35937 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GzdibrukEFxzGuAOQYz737Itu0A=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.540234+00 2025-12-17 16:00:01.540238+00 35938 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LdL4PlDIrORTdMS2BQaZHslz1u4=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.542457+00 2025-12-17 16:00:01.542461+00 35939 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fwdkdLfLkRsCnXJ6biQJjvG72Ek=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.544988+00 2025-12-17 16:00:01.544994+00 35940 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ES0Fn-t82altwszw-TjdzhVoz4Y=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.547598+00 2025-12-17 16:00:01.547603+00 35941 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_0Ep9t9OLH8Y6IV_TOvbAbQ0vbI=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.550121+00 2025-12-17 16:00:01.550125+00 35942 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bi2tPpoFYZHp6R2XRT1vxQEeQM4=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.552547+00 2025-12-17 16:00:01.552551+00 35943 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pufdzNAlI-mv64StKlTEF5aV2nU=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.554967+00 2025-12-17 16:00:01.554971+00 35944 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2eIVtPw1jKBMMw93Ow56iJD9aDQ=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.557638+00 2025-12-17 16:00:01.557643+00 35945 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BR-UEfJBpxemWD_7U3lEVtvgFyM=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.560637+00 2025-12-17 16:00:01.560643+00 35946 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_vRUpTLe15EIc2swq68_K1ihVPg=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.563398+00 2025-12-17 16:00:01.563405+00 35947 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZgEgde5svVUqkVWURWZvtgbkGPA=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.56611+00 2025-12-17 16:00:01.566115+00 35948 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I6o6jXtAaAnMv6yzDOKPIklQ9v4=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.568645+00 2025-12-17 16:00:01.56865+00 35949 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vBIjmRAS-CI7uJzmf6CtG7H4Vrg=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.571111+00 2025-12-17 16:00:01.571116+00 35950 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vCq9i45LuAuphVpV6j_3uUaIohs=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.573967+00 2025-12-17 16:00:01.573976+00 35951 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VIhyr9emdqAzjF_PdUqCBxnX-do=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.57741+00 2025-12-17 16:00:01.577416+00 35952 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DFRwt-d-1OmrOQ2vrxGM7qMKzr4=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.58096+00 2025-12-17 16:00:01.580966+00 35953 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fAkjdEgurHfJY0Xs5jaJotJE0Is=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.584028+00 2025-12-17 16:00:01.584034+00 35954 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fVteaakiXXWGQkP5vGr3OkjNlNY=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.586544+00 2025-12-17 16:00:01.586549+00 35955 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pIsFoBzhfGoKKfhxnXt3uYU4z6g=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.588995+00 2025-12-17 16:00:01.588999+00 35956 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aqC3VmYaECpZVsYOAQsLPSxLyF0=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:00:01.591383+00 2025-12-17 16:00:01.591388+00 35957 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=1766073600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gtG6-vuzbQ79rdedfY3rrW9cZ4A=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.579052+00 2025-12-17 16:10:00.57906+00 35958 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9DJvuXBmk34mE4uh25cxUs0LdJ4=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.582927+00 2025-12-17 16:10:00.582934+00 35959 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RSDCYEufvI50KDusghDtt9O8_fw=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.585713+00 2025-12-17 16:10:00.58572+00 35960 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ibjns7K8E8WzxqM6sX-7KfLFGDc=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.588692+00 2025-12-17 16:10:00.5887+00 35961 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DpDd5D_aXzVY7np0GsTk95qtFXo=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.591838+00 2025-12-17 16:10:00.591844+00 35962 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rEAgLW-kLMz5oPUVnFV3tznsRY0=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.594589+00 2025-12-17 16:10:00.594597+00 35963 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nii74eUvzcMd47zdrRF4kD3_cK0=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.597423+00 2025-12-17 16:10:00.597428+00 35964 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o182yTdLYOP_34j34IWK2RvPqWo=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.599939+00 2025-12-17 16:10:00.599944+00 35965 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R0zwgAVJWcWTzwLMD0ApfGFEMiU=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.615221+00 2025-12-17 16:10:00.615227+00 35970 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J-zUe5FTEwgw1rZqdsW574pvkxA=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.602439+00 2025-12-17 16:10:00.602444+00 35966 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BYFNDW3t06QpRT0x1HQIdcU0FKU=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.604982+00 2025-12-17 16:10:00.604988+00 35967 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qD1salaDG_Lbs_MIm3cIKxRY16I=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.608233+00 2025-12-17 16:10:00.608239+00 35968 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iyd4203_8EdHA2f4NmDgTEPWtyc=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.6114+00 2025-12-17 16:10:00.611405+00 35969 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hOXdbPybPgV0Reb0SGyTqqnwQw4=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.617882+00 2025-12-17 16:10:00.617887+00 35971 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:raq0TkkI-eNIbCjalPLwviKR8wc=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.620632+00 2025-12-17 16:10:00.620638+00 35972 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UIz6qjKofek7P4X3c8ri2B6QCz4=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.623719+00 2025-12-17 16:10:00.623725+00 35973 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bmDtWl-x9u_CCXHQl8VKpkyIQbk=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.627352+00 2025-12-17 16:10:00.627359+00 35974 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WefvmESQRnD_2meP3m8k_eDr9cY=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.63035+00 2025-12-17 16:10:00.630356+00 35975 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qY-HFtiHhK6mo9RdhHCkhrTlCVU=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.633075+00 2025-12-17 16:10:00.63308+00 35976 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b0G9bgJ0dC1OPSvgnRUgv9vH6KE=", "createTime": "2024-08-15 15:00:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.635871+00 2025-12-17 16:10:00.635875+00 35977 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zusc1P2Mrb61QObtq7i593p2xug=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.638728+00 2025-12-17 16:10:00.638734+00 35978 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UQaxvEr_TLbstSVjY2Td8bmntsM=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.641831+00 2025-12-17 16:10:00.641837+00 35979 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hxzeQoIs02O1bAHPkMXURAxLGoo=", "createTime": "2024-08-15 15:00:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.644767+00 2025-12-17 16:10:00.644772+00 35980 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VJebq0nJ7njyBKbMF_lH3JKJg1s=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.647349+00 2025-12-17 16:10:00.647354+00 35981 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U8CoDC35Q3DdnTcvikbwVaqbxfU=", "createTime": "2024-08-15 15:00:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.649837+00 2025-12-17 16:10:00.649842+00 35982 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SVubkQgxMeKaFQhDqDmxybBPVjc=", "createTime": "2024-08-15 15:00:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.652335+00 2025-12-17 16:10:00.65234+00 35983 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qrsyPYg5A5vY_X_px_TfO1JgtE4=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.654847+00 2025-12-17 16:10:00.654853+00 35984 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dhyp6du1Y0c9_MwtatETtHerD58=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.657947+00 2025-12-17 16:10:00.657952+00 35985 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9hr7N3c7kvNFWPUPIyFCZYqtiRo=", "createTime": "2024-08-15 15:00:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.66092+00 2025-12-17 16:10:00.660925+00 35986 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BJ6pkPU5u-fuMDShg9ZbWo_JN2c=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.663678+00 2025-12-17 16:10:00.663683+00 35987 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wLEhcfQe3v3AZFUclTgihMYFMSk=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.666303+00 2025-12-17 16:10:00.666308+00 35988 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DRHaepiz66b4npQ36FkxIVIOwLc=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.668715+00 2025-12-17 16:10:00.66872+00 35989 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZypvXi_IbG4m8tuNMEwx7Kh4AP8=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.670974+00 2025-12-17 16:10:00.67098+00 35990 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6uwBoQqY-YDLtibc80ps5PVn-h8=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.673745+00 2025-12-17 16:10:00.67375+00 35991 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KfweLdqpFs8xmN5sl1TaI6X2Fbc=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.677077+00 2025-12-17 16:10:00.677084+00 35992 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jt2w8fgweOh1WlKMUIx0TApahdQ=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.680175+00 2025-12-17 16:10:00.680181+00 35993 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bchji4dTsP7J-jz3RpM6Es6XwCg=", "createTime": "2024-08-15 15:00:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.683935+00 2025-12-17 16:10:00.683942+00 35994 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c6z3KnXKEj58E5mQXvLyUvztrtg=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.686965+00 2025-12-17 16:10:00.68697+00 35995 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EUqsucACHc_aeX-YolRS3e5m_Aw=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.691021+00 2025-12-17 16:10:00.691031+00 35996 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MPTmbnU0_3P8jXuMF3OZRTEj5TQ=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.694529+00 2025-12-17 16:10:00.694534+00 35997 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L0iv8b21RQPeAhK4v7FqEZKCMAk=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.697537+00 2025-12-17 16:10:00.697543+00 35998 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G5tzISEAt9pMaJeybdgz4O7fEzo=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.700163+00 2025-12-17 16:10:00.700168+00 35999 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HXmCBXViXbZNOMKlsA16Djm1t5M=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.702935+00 2025-12-17 16:10:00.702939+00 36000 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:87jvD06iCM1xH9ceQvzt3Vyr8eE=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.705556+00 2025-12-17 16:10:00.705561+00 36001 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T-7BordD318e4_8BxGQs8Ar7kIk=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.70824+00 2025-12-17 16:10:00.708245+00 36002 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TjA9ByLjDZRAH7RPLw-3VjlS6Hk=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.710838+00 2025-12-17 16:10:00.710843+00 36003 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YhsoAO9Bxu1n-GUxLXJ4UyRqF5A=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.713309+00 2025-12-17 16:10:00.713313+00 36004 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t4NopKYpCE8FoMwt7EogfrDVRLw=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.715754+00 2025-12-17 16:10:00.715761+00 36005 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:71zl7HGI2IH6NHyc2lFmiw-ycAo=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.71838+00 2025-12-17 16:10:00.718385+00 36006 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dWJurSvqlDiSBZiXGxNtF1gaQUc=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.720975+00 2025-12-17 16:10:00.720981+00 36007 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HETdrqmNDPxANDrHhOWA1hPWW8A=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.724338+00 2025-12-17 16:10:00.724344+00 36008 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n0vgps6LLk8qpDBLMa4AbMIxy-c=", "createTime": "2024-08-15 15:00:05"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.727547+00 2025-12-17 16:10:00.727552+00 36009 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xnsNKRFxCdet22Nxgegr1NvQrAE=", "createTime": "2024-08-15 15:00:05"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.730258+00 2025-12-17 16:10:00.730263+00 36010 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k91OLpYh0dRH909Yci8J6MvKYjo=", "createTime": "2024-08-15 15:00:05"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.732787+00 2025-12-17 16:10:00.732792+00 36011 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qFn3cMHdVnGQV8aHeUlDdYTozU8=", "createTime": "2024-08-15 15:00:05"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.735213+00 2025-12-17 16:10:00.735217+00 36012 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kWeCdz1hhhbOvVNsqgXEWe8q_ek=", "createTime": "2024-08-15 15:00:05"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.737386+00 2025-12-17 16:10:00.73739+00 36013 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tjRTC8vrR9yTbk2K3PgS5UOyafo=", "createTime": "2024-08-15 15:00:05"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.739972+00 2025-12-17 16:10:00.739978+00 36014 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nhrqadrcLkKg4e_KhMvEeO0o0Xc=", "createTime": "2024-08-15 15:00:05"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.742606+00 2025-12-17 16:10:00.74261+00 36015 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:weXjF1n35beDGScm3Tdv_ibOdkA=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.745435+00 2025-12-17 16:10:00.74544+00 36016 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8-HgnC4_f1oEuRgN4gUZt6nb09A=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.748437+00 2025-12-17 16:10:00.748443+00 36017 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cAuf70rQv7n8MyoSOnqas0c-QNs=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.751118+00 2025-12-17 16:10:00.751124+00 36018 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iGps9J64acVyNFkKM5c3OPcT48o=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.753818+00 2025-12-17 16:10:00.753823+00 36019 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LuX-49APrQ3_-9PmDJ-npryc2eI=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.756755+00 2025-12-17 16:10:00.756761+00 36020 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fLul9Mkx_X73oRV3fnfAjyjmkKM=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.759664+00 2025-12-17 16:10:00.759671+00 36021 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9k_Ca0riy1dNO0u2gUq7CJ-6HkI=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.762404+00 2025-12-17 16:10:00.76241+00 36022 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mXtMUmZkT5m6R3D746gVNBUGwgM=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.765148+00 2025-12-17 16:10:00.765154+00 36023 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U3SfAfNXv9Ft7W9yYXajmePZMz4=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.768118+00 2025-12-17 16:10:00.768124+00 36024 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F1tAODpTK506OOHJGBTQomTmHf4=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.771145+00 2025-12-17 16:10:00.771151+00 36025 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xKTHxqBArysxjySXHNdNG8agvdw=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.774462+00 2025-12-17 16:10:00.774468+00 36026 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SMMh9Ql_JfQo-kVV7CVDx0Bo8Bs=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.777771+00 2025-12-17 16:10:00.777777+00 36027 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GPdq_kBBif76m8mFHzhRJYBjn7g=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.780814+00 2025-12-17 16:10:00.78082+00 36028 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XqwSbKG6fo2Zc3OYvFoai0o0Ruk=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.783795+00 2025-12-17 16:10:00.783801+00 36029 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ft6koNkDzkQmQ5PGvNNdB6eGQMA=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.786758+00 2025-12-17 16:10:00.786764+00 36030 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nEkcGNPUBSRcktXTxbP_zsPi8n4=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.790083+00 2025-12-17 16:10:00.79009+00 36031 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uWqdmVPjZLKMjGBERUakMva4QGs=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.793271+00 2025-12-17 16:10:00.793278+00 36032 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A7p-gnvTBNOa4OFk7T4PYrUs2Qo=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.79633+00 2025-12-17 16:10:00.796336+00 36033 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0MjaSD3fq8RFseGRxQ-140YMTUI=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.798963+00 2025-12-17 16:10:00.798969+00 36034 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8MuXs8V22WjpMURlaclG3RygnLA=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.801652+00 2025-12-17 16:10:00.801657+00 36035 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YPdP55L9O_2jDBzOpiSRWuHVi2Q=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.804263+00 2025-12-17 16:10:00.804268+00 36036 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KwrQvjqShvk3PKCS9uRtW7OQywY=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.807159+00 2025-12-17 16:10:00.807165+00 36037 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G4H_cPMI4S4X0E2lhiwvGUmzcno=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.809926+00 2025-12-17 16:10:00.809931+00 36038 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UlcyWgT0YsT2pXR2WLgo8i4Rdbo=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.812351+00 2025-12-17 16:10:00.812356+00 36039 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4KrHPtpUkAihtODWNgkClSkUeqM=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.814985+00 2025-12-17 16:10:00.814989+00 36040 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S_rXo1MyBscS_JxxMbIrsd5EwdA=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.817612+00 2025-12-17 16:10:00.817617+00 36041 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N9nlfQTrjEYhrBbRDsAs3OlO-fI=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.819921+00 2025-12-17 16:10:00.819926+00 36042 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Liqze-YCd4ZHFW8goQlgtxiiyno=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.822496+00 2025-12-17 16:10:00.822501+00 36043 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yJuOB0lRbnM7iIGDCaeYOVm7lW4=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.825282+00 2025-12-17 16:10:00.825287+00 36044 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j3nzP6iRKg-VoF5rT8mv2K9HZQ0=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.828086+00 2025-12-17 16:10:00.828092+00 36045 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z4R58fT4AFDGybIr6NJJxn14IJs=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.830803+00 2025-12-17 16:10:00.830809+00 36046 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vrzm_GsecKVbESmArNqpE-vBQfw=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.833727+00 2025-12-17 16:10:00.833732+00 36047 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yk58OgS2lEjx_c-ojo10oaJm3EM=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.836751+00 2025-12-17 16:10:00.836756+00 36048 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zOVNgIN7Lb3VezyuM16a41nRjgY=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.365364+00 2025-12-17 17:00:00.365371+00 36952 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6VzLPcfjzUsdrfOGcOizn2cg5fQ=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.84272+00 2025-12-17 16:10:00.842726+00 36049 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BcSDJp2LLCZG1FTTt123SnMCfbw=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.845314+00 2025-12-17 16:10:00.84532+00 36050 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sXYj1v4H3lz9kdIshv-HawoedoA=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.847809+00 2025-12-17 16:10:00.847814+00 36051 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cBO9fxpqRHxbCo5CCIK4UGWAJuA=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.850271+00 2025-12-17 16:10:00.850276+00 36052 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U-ASWFldlr8X37fjkLQwsp6PXS4=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.852716+00 2025-12-17 16:10:00.852721+00 36053 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GTENGJfPo0SDujYg4ris4Vujl2Q=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.855187+00 2025-12-17 16:10:00.855192+00 36054 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QRmlD-7kw5ZwHPTGSv5tNkxnpBg=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.857974+00 2025-12-17 16:10:00.857979+00 36055 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BLOm-Xf3-ml5VKejN2iKJLlxAmc=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:00.86093+00 2025-12-17 16:10:00.860935+00 36056 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=1766074199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IAsFdzKBsvNMaUOSCKlbmD4ybXM=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.21085+00 2025-12-17 16:10:01.210859+00 36057 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H3y4qZVwzbxYWR9eXyLEmTI4eoo=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.218874+00 2025-12-17 16:10:01.218881+00 36058 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wsMxBhK_jFtwLk60raaQspF3DpE=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.22163+00 2025-12-17 16:10:01.221635+00 36059 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H4xkLrxIwNi_6cq34gefPhrzPyw=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.224741+00 2025-12-17 16:10:01.224747+00 36060 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dAdsDOGx6qsSlMxXcmoqnix04B0=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.227752+00 2025-12-17 16:10:01.227757+00 36061 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dhsbEgim3ZNZNMbeIA8dRkSR4fM=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.230364+00 2025-12-17 16:10:01.23037+00 36062 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1O_XVn9Bbr-SVDuL5znXxFjUVdU=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.233085+00 2025-12-17 16:10:01.23309+00 36063 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8gj_A-tZ4gR4DZ9etVDKxE1ynI8=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.235644+00 2025-12-17 16:10:01.235649+00 36064 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-y7y6VwLBwL412NqvyaJVNbxG2g=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.238216+00 2025-12-17 16:10:01.238222+00 36065 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gTLeQwycAI-ZmuYeuJpLO90KwL0=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.241122+00 2025-12-17 16:10:01.241127+00 36066 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qrp2sXFSA64XP77lGgVb_EWXGlM=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.243869+00 2025-12-17 16:10:01.243874+00 36067 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8tMscTXxnBcK-LyBA6mZPtio7HE=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.246669+00 2025-12-17 16:10:01.246673+00 36068 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j8uTup9zcVpj4flCLIKYg6Ks4g4=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.249612+00 2025-12-17 16:10:01.249618+00 36069 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SyP4O7a1Pn83SSZG9E7syCGQb3s=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.252163+00 2025-12-17 16:10:01.252168+00 36070 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LjQirKSnXxrMA-ehRWO0eO88F7s=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.254446+00 2025-12-17 16:10:01.25445+00 36071 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fqwo1tQhTkgk1rGUGhZ3RLpO3GI=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.257391+00 2025-12-17 16:10:01.257396+00 36072 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ytnCzakFwuc07WkkowRIZhz0Wgw=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.260174+00 2025-12-17 16:10:01.260179+00 36073 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:96oCAZNocTjeHP1lPJG7vjFamK0=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.262763+00 2025-12-17 16:10:01.262769+00 36074 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:krm6likw82bYxchy5Kzl7LHTnlo=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.265271+00 2025-12-17 16:10:01.265276+00 36075 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HGq4Wbwnf196MIiGnoGt_eW4ok0=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.267777+00 2025-12-17 16:10:01.267782+00 36076 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4SVSBGTJ_C6DpT1DBeS1_uADcnw=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.270527+00 2025-12-17 16:10:01.270533+00 36077 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FgHfE_8egSU6nSmnbiIZcvKmEYA=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.273771+00 2025-12-17 16:10:01.273776+00 36078 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q_THcnmxPlCsf80aY46cTujkyNs=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.276603+00 2025-12-17 16:10:01.276609+00 36079 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RI5eNcEiJ28q0e69wd2XhopkZys=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.279265+00 2025-12-17 16:10:01.27927+00 36080 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q5qz--NzovGudzHqcC2xwY9_zSY=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.281756+00 2025-12-17 16:10:01.281761+00 36081 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cKAD4OWn2BAK3ndyND6la6eWyws=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.284252+00 2025-12-17 16:10:01.284257+00 36082 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0GGZzc_Lt6oIatcxSxUe8EBtJCc=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.286718+00 2025-12-17 16:10:01.286722+00 36083 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BhKYnc2FPsKkr_X6dop01mA_44c=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.289486+00 2025-12-17 16:10:01.28949+00 36084 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gM-n3LHw7OgWNEzM0UAjZtE-bhc=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.292245+00 2025-12-17 16:10:01.29225+00 36085 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FDCGrWgwpgrmd_pyp4_9PaZTL-c=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.29477+00 2025-12-17 16:10:01.294775+00 36086 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YBia_YG4HrXAjgH_e2GNEI5TUIo=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.297301+00 2025-12-17 16:10:01.297306+00 36087 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dE3AzF2AkaoHJGCpUuI8bFZQldQ=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.299802+00 2025-12-17 16:10:01.299806+00 36088 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kmMzjHDnvpxiXMUbhgNoC_vf33s=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.302236+00 2025-12-17 16:10:01.30224+00 36089 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N7U8bhwn0vGyawNInWAjIM4W190=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.304668+00 2025-12-17 16:10:01.304673+00 36090 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sigt6xWCjiVyRpa80UoTga4Ct4Y=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.307715+00 2025-12-17 16:10:01.307721+00 36091 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gfnn1RNfDeVozWty7XOGcWAKXZg=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.310942+00 2025-12-17 16:10:01.310948+00 36092 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c4Q_pYpEOcsbIC7G3pqDQDqJH6k=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.313868+00 2025-12-17 16:10:01.313874+00 36093 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Py7zx_c0SV1SuxY3PKEvG2su-No=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.316337+00 2025-12-17 16:10:01.316342+00 36094 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V-BUvoiNo4rKv8SduJQrYHQZWZ8=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.318835+00 2025-12-17 16:10:01.318839+00 36095 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dyhMyMPkvlXZu6pe1jkHXOaD340=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.321358+00 2025-12-17 16:10:01.321363+00 36096 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I25sYad2Y23wnpFFzjbr0t1ZH0A=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.324509+00 2025-12-17 16:10:01.324515+00 36097 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E2W7b9Ws2Al7_17rhiRuLXNOHKE=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.327368+00 2025-12-17 16:10:01.327373+00 36098 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v-rIlsWGjwXooU2q1yQGlNd9Ewk=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.329935+00 2025-12-17 16:10:01.329939+00 36099 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:huZzeiFXGK64UljaawKWzhV5Yjw=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.332685+00 2025-12-17 16:10:01.33269+00 36100 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mz_AX8nKumAIlsxk-B-Xv247VB0=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.335448+00 2025-12-17 16:10:01.335453+00 36101 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y-mdPL-mNDD2kI5x7texARNJknU=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.337991+00 2025-12-17 16:10:01.337996+00 36102 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VL2g4Gzvh8foDGT9vgIwiGjRzWA=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.340997+00 2025-12-17 16:10:01.341003+00 36103 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jVMpB_OK-rd1zVGW2Qgjvb49piQ=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.343728+00 2025-12-17 16:10:01.343734+00 36104 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Bgh4Iff9GLAhfoecM3-MTiTDdU=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.346312+00 2025-12-17 16:10:01.346316+00 36105 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tr05cSG_bZ6HLCK7Mrm0tV0MWrQ=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.360298+00 2025-12-17 16:10:01.360303+00 36110 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rfXYJcBU9Yv8DcbFalsgKOM3Yds=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.348848+00 2025-12-17 16:10:01.348853+00 36106 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F5uxhbM6rP_Q8c-6C96FibD_hZQ=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.351338+00 2025-12-17 16:10:01.351343+00 36107 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nG57Ub33tSDkHu4DZjOG-Q3u5UM=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.354107+00 2025-12-17 16:10:01.354111+00 36108 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7yHkEWnBRXrGN2oKo6YIpB649W0=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.357389+00 2025-12-17 16:10:01.357396+00 36109 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z4PKatnwWVtsBwjiJ3IY6dpZSw8=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.362963+00 2025-12-17 16:10:01.362968+00 36111 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X7Je_pD7Zm9wYkTMuXB_k97vBHo=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.365633+00 2025-12-17 16:10:01.365638+00 36112 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LeSOUAiBpnMpmkpPpzPmOaRhi2Q=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.368151+00 2025-12-17 16:10:01.368156+00 36113 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NGd-tbhApv_qUHmgJs6tIPhF0pA=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.370633+00 2025-12-17 16:10:01.370637+00 36114 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gVaGTzvroQ4SFyCSqiBe29Ulnqk=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.373381+00 2025-12-17 16:10:01.373388+00 36115 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a--yJocsh0i4DjvSSG8rrnkpK6A=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.377866+00 2025-12-17 16:10:01.377874+00 36116 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rxZOEtCqYMXYR5K3Z_1cXwD_ufk=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.381248+00 2025-12-17 16:10:01.381254+00 36117 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ZzlOHQhk8OB7zsLUD_D17lQviI=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.384054+00 2025-12-17 16:10:01.384058+00 36118 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SVP-dtLFEYBdm59FbzV22j4GTR0=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.39629+00 2025-12-17 16:10:01.396295+00 36123 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vpC_6rgVVMveU1sB6YFRFaYPQNE=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.386458+00 2025-12-17 16:10:01.386463+00 36119 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q1V0z-yupO5C-p8eRzE_mFJ_NfY=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.388845+00 2025-12-17 16:10:01.38885+00 36120 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TcrehfWRR08QAH4MlvstLB0vfs4=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.391404+00 2025-12-17 16:10:01.391408+00 36121 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dlToA-mD5Hxi-7hLJOZ2zZh8jgY=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.393868+00 2025-12-17 16:10:01.393873+00 36122 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bmDaZCt4D_fvhAHVebwPSwfi3Hk=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.398843+00 2025-12-17 16:10:01.398848+00 36124 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SAgbYit1Nq4e9qzZrclF3dsKx9c=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.401621+00 2025-12-17 16:10:01.401627+00 36125 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-RN8qsW3xoJxrx_7NfzGP9WHiNM=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.404125+00 2025-12-17 16:10:01.404129+00 36126 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VabElb-mV0HA8lnnEZ5m5eTUrFk=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.407223+00 2025-12-17 16:10:01.407229+00 36127 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P-lVzX-KgOE7pSrRxQh7VbcYZE4=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.410367+00 2025-12-17 16:10:01.410374+00 36128 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q-hkfmycYh3-HOLVu8u61DqZDSg=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.412998+00 2025-12-17 16:10:01.413003+00 36129 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SiQlF_EmPuHYWhKDK5Vx-iL0hCI=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.41547+00 2025-12-17 16:10:01.415474+00 36130 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WKUco_E_ak9ElUi6mmipW2CpHWk=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.417713+00 2025-12-17 16:10:01.417719+00 36131 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DbIlsSy7wdp9M27ibvGN4C2V78w=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.420499+00 2025-12-17 16:10:01.420504+00 36132 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VuI_aFO60I74h8i3tC81tS98ilQ=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.423534+00 2025-12-17 16:10:01.42354+00 36133 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f_hIPJouLzhh0Bpqx8YkT8cHwww=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.426185+00 2025-12-17 16:10:01.42619+00 36134 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vThHAQ2fZdtZlVRyI4-hrLmP2IE=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.428816+00 2025-12-17 16:10:01.428821+00 36135 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UHhk1BENHd3YB4c6l9QYcLEf05s=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.431321+00 2025-12-17 16:10:01.431325+00 36136 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SllzulmFE-bMYY8Hc8hKe8-RKlQ=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.433762+00 2025-12-17 16:10:01.433767+00 36137 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a-_xeqrRbs-CfWU10xSx-i0roR8=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.436253+00 2025-12-17 16:10:01.436257+00 36138 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:udiTx5sqSyY5WAYijvxfsSgCRhI=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.438723+00 2025-12-17 16:10:01.438728+00 36139 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NpBxspW2ZfqreOAsK_Rs-9T4xAQ=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.441884+00 2025-12-17 16:10:01.441889+00 36140 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MtrA56bZhi2g4dUw4vDOdfSHSgQ=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.445051+00 2025-12-17 16:10:01.445056+00 36141 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VMzMnCOElygh7otxN6woS9-Rm4I=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.447631+00 2025-12-17 16:10:01.447636+00 36142 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uSfmRY3a04WCUzsEkz4N2s-vmo8=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.449932+00 2025-12-17 16:10:01.449937+00 36143 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CqmMw19kCMpOXADzGC1IOJMQSN4=", "createTime": "2024-08-15 15:00:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.452331+00 2025-12-17 16:10:01.452336+00 36144 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ksKic8OuDte-Ow6YiWrmkWkyzGU=", "createTime": "2024-08-15 15:00:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.48153+00 2025-12-17 16:10:01.481536+00 36154 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qIlnwUzODv9GjOjTcTM4oJd6xGc=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.45479+00 2025-12-17 16:10:01.454795+00 36145 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rOW0UVN-ex8xpZayvVDU_GtPNtE=", "createTime": "2024-08-15 15:00:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.458032+00 2025-12-17 16:10:01.458038+00 36146 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cLgxBw_nDJxJZV7eu_VLvFLhWGg=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.460939+00 2025-12-17 16:10:01.460944+00 36147 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bWapwreV_lRxezfEWs2DIGiWvy0=", "createTime": "2024-08-15 15:00:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.463797+00 2025-12-17 16:10:01.463802+00 36148 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fJFq072aK3aAvKXULtlceZJY_8I=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.466365+00 2025-12-17 16:10:01.46637+00 36149 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:irzUj3KzLWgAKqae4qkXC_k9APQ=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.469094+00 2025-12-17 16:10:01.469099+00 36150 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a6GKYYUZ1SkrhPcOsCVhTMrnLIw=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.471818+00 2025-12-17 16:10:01.471823+00 36151 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FcMo4Japl8oKUvAdVSLSp0nV5e0=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.474993+00 2025-12-17 16:10:01.474999+00 36152 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OFYjnoygGgbVmRSA6Dqd-zk0rTM=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.478342+00 2025-12-17 16:10:01.478347+00 36153 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y3NYBURxZtrQmE1-2Stl3BAgfD8=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.484549+00 2025-12-17 16:10:01.484555+00 36155 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jLjkOc3CHTr6kNIwgLppJIAaUBA=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:10:01.487429+00 2025-12-17 16:10:01.487434+00 36156 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=1766074200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tG7QsjrJ8P3nvKWDtJ3A_4W4NyY=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.422339+00 2025-12-17 16:20:00.422348+00 36157 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gWyVvBY5WwLg64h68DdbSGQhhVg=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.426764+00 2025-12-17 16:20:00.426772+00 36158 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xx2-wMJ0sYr2VwYellnm8Q81yoA=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.43028+00 2025-12-17 16:20:00.430285+00 36159 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g17FYHW-nSy71jwVV2QWkp_nLQM=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.434108+00 2025-12-17 16:20:00.434113+00 36160 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9F27a-xIiuHITAjetayBq0oOg6o=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.437612+00 2025-12-17 16:20:00.437618+00 36161 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WHZS4d_vyPolpUy9NzgrNfjETNI=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.440691+00 2025-12-17 16:20:00.440696+00 36162 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0yomFOUgTsyL7YCDZ0h_leJEnFg=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.443316+00 2025-12-17 16:20:00.44332+00 36163 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5071l5GqFJy7Kd5Fy4Q4jPshsbU=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.44656+00 2025-12-17 16:20:00.446568+00 36164 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:70bzXJGBh13gfkm41esdm0fHQ9I=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.44988+00 2025-12-17 16:20:00.449885+00 36165 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ohbnCB9hFux54Qgd14zSOyj5dqc=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.453131+00 2025-12-17 16:20:00.453139+00 36166 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S6xSg19diKBeIQ_9G9LQcwNRhgk=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.471866+00 2025-12-17 16:20:00.471873+00 36172 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fmJyzYfPJQixxE7kPn7zr2rg264=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.456296+00 2025-12-17 16:20:00.456302+00 36167 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cZ6jF7RnQQKcUPoa4162qyNF0Ok=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.459148+00 2025-12-17 16:20:00.459154+00 36168 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8IRGmTnH9ZZDpvxD03Okn0E6eiY=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.462256+00 2025-12-17 16:20:00.462263+00 36169 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hymyNG7HLvQEKtrdkYZ-k9ZZtzA=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.465596+00 2025-12-17 16:20:00.465602+00 36170 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sBlnoD_ir9oxFDIJBBvd7evvv7E=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.468797+00 2025-12-17 16:20:00.468804+00 36171 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Et3T59Jl2-BoueTm6KAaMMW5et8=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.47481+00 2025-12-17 16:20:00.474816+00 36173 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zcmcU8rKGb4KyhfqN0bq6bYWdIE=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.477766+00 2025-12-17 16:20:00.477772+00 36174 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hudusTwYmMQ62RHu1Ycam5bck5k=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.48065+00 2025-12-17 16:20:00.480656+00 36175 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JRYlTWqSgW4CZmtK0IdByOZC6bQ=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.483653+00 2025-12-17 16:20:00.483659+00 36176 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:giUCfzErEVfAvwJwm5lfKA9QPxU=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.487139+00 2025-12-17 16:20:00.487146+00 36177 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SMx2EAwGUSHH3w21RlO6f_-C5kg=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.490569+00 2025-12-17 16:20:00.490575+00 36178 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T5BOn_9PJQFwSpWYQQhezs4N_Ig=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.493475+00 2025-12-17 16:20:00.493481+00 36179 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eDprSyicz75okw1hL0GhmOzkr_4=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.496262+00 2025-12-17 16:20:00.496268+00 36180 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:36mwelTuwf8OsL1cc87on9icMF4=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.499122+00 2025-12-17 16:20:00.499129+00 36181 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n8qbyEN3mYHo6d8bN_3UEmJd2-c=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.502265+00 2025-12-17 16:20:00.502271+00 36182 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TU28vnBchHbSzUhzFfevo-XGERA=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.505202+00 2025-12-17 16:20:00.505207+00 36183 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZjjSZgYlJHpL25lFARy9i0fkaL0=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.50785+00 2025-12-17 16:20:00.507855+00 36184 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VQKKBej_sf1fMFPCZkzaiK9X7U4=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.510676+00 2025-12-17 16:20:00.510681+00 36185 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1hSfvqFg1g8iWmgZTcXK3l7Rb0A=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.513549+00 2025-12-17 16:20:00.513554+00 36186 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cf6KNQrfClD3Qaw-XiwkpNnQvOc=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.516817+00 2025-12-17 16:20:00.516824+00 36187 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IT58FIPioPxpTbveiBT_ootUFN0=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.520122+00 2025-12-17 16:20:00.520128+00 36188 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pReTc8nm7Co5nmpevrV5W2GFZ08=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.522891+00 2025-12-17 16:20:00.522896+00 36189 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oVxfFUOflL9s-YuMsxiezI75O5o=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.525391+00 2025-12-17 16:20:00.525396+00 36190 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kb5r7IueijbbGLGpFJj9NT8DySs=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.528039+00 2025-12-17 16:20:00.528044+00 36191 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JLgbZ9on2ogv6H1p5wuEZx9LsLc=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.530642+00 2025-12-17 16:20:00.530647+00 36192 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uzg8p958F8P8qHFS0TnRHde5lr8=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.533741+00 2025-12-17 16:20:00.533746+00 36193 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dqd-2Asg4it3WjqZGfBy3D9iJYo=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.536785+00 2025-12-17 16:20:00.53679+00 36194 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gL7YnC_dXVXFkLrkdepEuoVb1X0=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.539312+00 2025-12-17 16:20:00.539317+00 36195 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R04oRCDas55lALTDRg7sHivtcXY=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.541656+00 2025-12-17 16:20:00.541661+00 36196 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:teaL9kOJOAYSYUUAK-FYsozrM0M=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.544388+00 2025-12-17 16:20:00.544397+00 36197 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vnLOSh6qRTlfOQZt-qywKNdXHJI=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.547653+00 2025-12-17 16:20:00.547659+00 36198 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OyhedzzZnNVJaihkiUAB-JYfc6Y=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.550902+00 2025-12-17 16:20:00.550908+00 36199 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OpcD0SZDghh4EjTTCuZOHHMKI_U=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.555762+00 2025-12-17 16:20:00.555772+00 36200 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0jtqBp_vWYSTv2n3A0pdK1hdlXw=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.559779+00 2025-12-17 16:20:00.559787+00 36201 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gLK7Dl5FGVH-OBGgaxYY3w-Lv2I=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.563705+00 2025-12-17 16:20:00.56371+00 36202 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YtkKxoUQuA6G973864fxQ3TQksg=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.566412+00 2025-12-17 16:20:00.566418+00 36203 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z1DTIFrzHH1fhrId41GheTV_g-s=", "createTime": "2024-08-15 15:00:23"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.56923+00 2025-12-17 16:20:00.569235+00 36204 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uDmYjj0lpb7VWrYfvsaCQ-0VDTw=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.571977+00 2025-12-17 16:20:00.571983+00 36205 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qWdkWlGKOGWvzyaMd1fngGi6Tu0=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.574533+00 2025-12-17 16:20:00.574538+00 36206 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p-uofL9QK1JoOqV4ZLKNPPMp-T8=", "createTime": "2024-08-15 15:00:23"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.576766+00 2025-12-17 16:20:00.576771+00 36207 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ep1yWdE3biKYrXvyF3m1ZSVHSuQ=", "createTime": "2024-08-15 15:00:23"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.579175+00 2025-12-17 16:20:00.57918+00 36208 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-YN7dRCmLWZMuPo-TTV9vcgeQKQ=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.581945+00 2025-12-17 16:20:00.581952+00 36209 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R3foNz6nZbZGYrz-BEruBubT2Pc=", "createTime": "2024-08-15 15:00:23"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.585059+00 2025-12-17 16:20:00.585065+00 36210 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_IvtxI0D3ZVfP0fpO5ejCC0i0lo=", "createTime": "2024-08-15 15:00:23"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.588161+00 2025-12-17 16:20:00.588167+00 36211 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dqo9FLQ2prWDP1DS7Bqi7IlmCv0=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.591146+00 2025-12-17 16:20:00.59115+00 36212 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QS-PYnFncbALjgSN9Bw82QMEEAk=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.59392+00 2025-12-17 16:20:00.593925+00 36213 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:twAGY-WK7aGzHUDmt_PwsMG6YnE=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.596692+00 2025-12-17 16:20:00.596697+00 36214 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nXpFICrwqSebnugWOLbKGunQxgg=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.599379+00 2025-12-17 16:20:00.599384+00 36215 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X-_Zm6Wmr2jXD6Up9I-EzUACBGo=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.602388+00 2025-12-17 16:20:00.602394+00 36216 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K1Byk3ZAXF2BOMmN5SqsHF-PLcU=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.605328+00 2025-12-17 16:20:00.605333+00 36217 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NUAqStVPogKokJJ2abvIzsdIQmQ=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.608161+00 2025-12-17 16:20:00.608166+00 36218 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w9H4stnZi1STf9LB6sSBmDNNmbo=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.610775+00 2025-12-17 16:20:00.61078+00 36219 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4KnSO7_n7dy8EgM-mjt_B1_REBg=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.613358+00 2025-12-17 16:20:00.613363+00 36220 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QxCPm1LfP2hy7dl-W_MCNaoB24k=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.616202+00 2025-12-17 16:20:00.616207+00 36221 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qNprv1Ie1oINaRkbg1htcQSit5Q=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.619028+00 2025-12-17 16:20:00.619033+00 36222 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m96E7XKsZJgfxdYAMLaoG8TpdB0=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.621665+00 2025-12-17 16:20:00.62167+00 36223 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wQrmsYd0A9wYe__hrasvZ8lQD3c=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.624174+00 2025-12-17 16:20:00.624179+00 36224 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P8tTbEqNW17XoczZZ8VHOmg2oso=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.626931+00 2025-12-17 16:20:00.626937+00 36225 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y5SC8HUSvE6Ovq3fty8lRjEUqO0=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.629795+00 2025-12-17 16:20:00.6298+00 36226 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4KJBpQ1PIrTPCuG-Ix8U3ESTPoU=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.632407+00 2025-12-17 16:20:00.632411+00 36227 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yBxMCliCWtaXDh3KHP0dvErr7lY=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.635295+00 2025-12-17 16:20:00.635301+00 36228 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qZN249pTrtMbUqrI05t1lu6jGKY=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.638087+00 2025-12-17 16:20:00.638092+00 36229 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IgBjhNlhKNkR0qAPiDss4RJGQcI=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.640661+00 2025-12-17 16:20:00.640665+00 36230 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e5X2UdbfkyCjkTLBsY682YYPhZI=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.643131+00 2025-12-17 16:20:00.643136+00 36231 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DLrwNn_7ATASoA4KhvX4kncKahs=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.645602+00 2025-12-17 16:20:00.645607+00 36232 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TD0iriZBmtIXOufSLyGKkzBXYFU=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.648373+00 2025-12-17 16:20:00.648378+00 36233 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f14Bll2Xt6EXu2dX-TpbUmf84JY=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.651494+00 2025-12-17 16:20:00.6515+00 36234 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r3F-OPLUymxPwrYpOSEt2N5_Qw4=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.65432+00 2025-12-17 16:20:00.654325+00 36235 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RbQL_tzEWi2r_pESDVIj95x_6Y4=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.656884+00 2025-12-17 16:20:00.656889+00 36236 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pY3_5WdehsHpMbekkYQX_GO-VMA=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.659294+00 2025-12-17 16:20:00.659299+00 36237 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gHltmaGL-ifT7Hu6GB4A6nlavO8=", "createTime": "2024-08-15 15:00:26"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.661776+00 2025-12-17 16:20:00.66178+00 36238 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LukX-791tZ_2VWeCYkwEScTr_yo=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.664262+00 2025-12-17 16:20:00.664266+00 36239 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HLhj7sHuYafKiBq4ldWl33WQhIk=", "createTime": "2024-08-15 15:00:26"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.666841+00 2025-12-17 16:20:00.666846+00 36240 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KtiEO1krxDlS_l_R5mYViOYF27Q=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.669779+00 2025-12-17 16:20:00.669784+00 36241 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:omkQFQXXxMSo5jN5AKrVa1xpC7E=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.673164+00 2025-12-17 16:20:00.673171+00 36242 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zp2JJ0R7fO7g6TlVtapa6nBYXlM=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.676058+00 2025-12-17 16:20:00.676063+00 36243 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2LPwUV_WeVr1nLDjfd2hB_Gw0OE=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.678706+00 2025-12-17 16:20:00.678711+00 36244 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hAaLxighpV8JlD7Li_CZh5x9lSk=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.681495+00 2025-12-17 16:20:00.681522+00 36245 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DgaAdeoCaRpU46HRkjnYLanVD18=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.68521+00 2025-12-17 16:20:00.685216+00 36246 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2yNmPBsR--ChaVet-meqavNKazg=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.688537+00 2025-12-17 16:20:00.688543+00 36247 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cMR0YTuWl8aV_39cHxOMDqlacPU=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.691263+00 2025-12-17 16:20:00.691268+00 36248 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:06oWtaCNHvziPRNU4CqlIjIujnU=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.694206+00 2025-12-17 16:20:00.694211+00 36249 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AyOdfGk2PrzZiiJ-_RA5xOvGo0g=", "createTime": "2024-08-15 15:00:28"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.69705+00 2025-12-17 16:20:00.697055+00 36250 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JqFfTaiBB5NKxLNVZ-9_9DQMKmE=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.699541+00 2025-12-17 16:20:00.699545+00 36251 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oKwlKQ0xxxZ2RuAcYVdTzyh1BdI=", "createTime": "2024-08-15 15:00:28"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.702037+00 2025-12-17 16:20:00.702042+00 36252 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O2mWR4oClFPDnSZ7y2a7V8VoRgA=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.704478+00 2025-12-17 16:20:00.704483+00 36253 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uIak74dm_Fc_CEBBtx3K8L4WMqg=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.706888+00 2025-12-17 16:20:00.706893+00 36254 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lhEK5IHJtnckBZiy_Ksk1cECv4g=", "createTime": "2024-08-15 15:00:30"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.709352+00 2025-12-17 16:20:00.709356+00 36255 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9WHvFeHZrFqRF7Jfmv-WJEDz5HI=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:00.711721+00 2025-12-17 16:20:00.711725+00 36256 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=1766074799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2bpyR2oVK3cBcqIi15L7vfArAds=", "createTime": "2024-08-15 15:00:30"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.061007+00 2025-12-17 16:20:01.061016+00 36257 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JM6_M6Sa425gLfNIsRg3bx93mtc=", "createTime": "2024-08-15 15:00:30"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.0644+00 2025-12-17 16:20:01.064405+00 36258 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fhDjdX4Xq-AVJzkLXX_6zOMVOYY=", "createTime": "2024-08-15 15:00:30"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.067231+00 2025-12-17 16:20:01.067236+00 36259 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uph7nWJMj3cHdqWeXb_GKktcm3A=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.070121+00 2025-12-17 16:20:01.070127+00 36260 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TAPNta_L9UlvfH9y27Dwy-5E3nw=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.072942+00 2025-12-17 16:20:01.072948+00 36261 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wsnhBlvjnUmaBgSS85abx4SQ4Zo=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.075674+00 2025-12-17 16:20:01.075679+00 36262 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yjNkCQzX7zqM0H4Xlv1Lu1n_NT4=", "createTime": "2024-08-15 15:00:30"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.078283+00 2025-12-17 16:20:01.078287+00 36263 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GCKD9VyopueDvC8_QU45UyhpGKE=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.080904+00 2025-12-17 16:20:01.08091+00 36264 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sOXlfSZNrgnXmDQTuvGM2_NClxI=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.083743+00 2025-12-17 16:20:01.083748+00 36265 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LVw1nXXSBDBBnG9rOmRbMpkMRbU=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.086741+00 2025-12-17 16:20:01.086746+00 36266 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:06yQ42mqa_ByW6JylWIXKV-57CQ=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.089212+00 2025-12-17 16:20:01.089216+00 36267 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ArEUGaK4yemLbez9ZAmCREQKok4=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.091591+00 2025-12-17 16:20:01.091596+00 36268 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:85umxgqaUNAXYEcEPp-Rl4tan2Q=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.093944+00 2025-12-17 16:20:01.093949+00 36269 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V8tto3ZJAnEcHKhrEgti4njTdIg=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.096083+00 2025-12-17 16:20:01.096087+00 36270 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nOol0PpwBPCpw_WZuJnzbndYnKo=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.098463+00 2025-12-17 16:20:01.098468+00 36271 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ka2WKVGd4I0P9-6jGToINj6kglc=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.100863+00 2025-12-17 16:20:01.100868+00 36272 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ShfUbBdljRzTA3CK-elJ72XgrGw=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.103651+00 2025-12-17 16:20:01.103657+00 36273 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jXfE05LWp5CYY-iw7wikmJXAiyA=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.106595+00 2025-12-17 16:20:01.106601+00 36274 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QVACotugDlDZ2BBizML7QKrBAv0=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.109024+00 2025-12-17 16:20:01.109028+00 36275 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cwK4lvMgMwqdPMpZZGLB7f83-k8=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.111393+00 2025-12-17 16:20:01.111398+00 36276 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DAOa0EF9o5W-gKJv3JoIu0r364A=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.113886+00 2025-12-17 16:20:01.11389+00 36277 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HiccygIRIaL1fJRQsfc9KzRSxMs=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.116346+00 2025-12-17 16:20:01.116351+00 36278 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xl0jis5vh1NW_RcR6uEowm_6Yhc=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.11899+00 2025-12-17 16:20:01.118996+00 36279 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qeRMAHhiiAQdDiqSOTnZvyiZ29k=", "createTime": "2024-08-15 15:00:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.121603+00 2025-12-17 16:20:01.121608+00 36280 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PweQDf-RPXz0JJ5XkDS0dnHjPE4=", "createTime": "2024-08-15 15:00:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.124397+00 2025-12-17 16:20:01.124402+00 36281 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fhH9pGqzWawkf_fstcAST1rK0us=", "createTime": "2024-08-15 15:00:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.127168+00 2025-12-17 16:20:01.127173+00 36282 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cnuTqFKfHVmhZAo6JUiKHuWnr4c=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.129383+00 2025-12-17 16:20:01.129388+00 36283 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zr8OO5zDKrPkrjr6Xw3emMs7ET4=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.13191+00 2025-12-17 16:20:01.131916+00 36284 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5_rblya6YunyFe8kHTNC5zAdjs4=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.134468+00 2025-12-17 16:20:01.134473+00 36285 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gtBeg287JowQQmqwWPixfoFm8Dc=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.138333+00 2025-12-17 16:20:01.138337+00 36286 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ClmOdS6IKeToDSnwfIlOKgzeE4=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.141203+00 2025-12-17 16:20:01.141208+00 36287 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sjfrZ42YgSvDReYSMFEu7FSa6nA=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.143963+00 2025-12-17 16:20:01.143968+00 36288 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s3ElUIe0YYHXFOC3K4MVw__i5eg=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.146826+00 2025-12-17 16:20:01.146831+00 36289 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CSLo4QRTauUB3i85R6JOz6O3t5A=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.149831+00 2025-12-17 16:20:01.149836+00 36290 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-yZahoHb7ZkKmlKDBU-KZJVSax0=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.152427+00 2025-12-17 16:20:01.152432+00 36291 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5iwO-dXewiZECvEOidzU5NT9LXY=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.155146+00 2025-12-17 16:20:01.155152+00 36292 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TjFQllW_KsG5esWaTjiAjOUUwU0=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.157606+00 2025-12-17 16:20:01.157611+00 36293 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RN6dUjeUeT_slwuVsBLIzTlSzaI=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.160006+00 2025-12-17 16:20:01.160011+00 36294 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fsCLH5shvgs4l5CZUN2S5iweYC0=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.162389+00 2025-12-17 16:20:01.162393+00 36295 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HgAAzVRODT-4JbNgGrTT5_ZN9bY=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.164556+00 2025-12-17 16:20:01.16456+00 36296 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UYTu4ubNQ9Lw05eRRINFUb9kKCc=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.16727+00 2025-12-17 16:20:01.167275+00 36297 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OxnuKV6gvB8Rob4k_1E9AxrhySw=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.17027+00 2025-12-17 16:20:01.170276+00 36298 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fk5u6IAFRRSPxzezl3CzVmUrcgA=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.173339+00 2025-12-17 16:20:01.173347+00 36299 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QXmpwjv33yyhjwncCU8uWL_fXuU=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.176311+00 2025-12-17 16:20:01.176317+00 36300 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:koVZlR8LwTBArW4P5Kd5tLIT9Kk=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.179063+00 2025-12-17 16:20:01.179068+00 36301 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nOg3Kjc2-J7rXa6rhMQPPXXm5dg=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.181846+00 2025-12-17 16:20:01.181852+00 36302 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ILME-s9op0k0aQo6r6L31JSnQPE=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.184481+00 2025-12-17 16:20:01.184487+00 36303 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oK_nj07q3bcCIsB6Jt9VGsPLMvQ=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.187138+00 2025-12-17 16:20:01.187143+00 36304 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JuN1lTJcZZSfLcElZ6HN6aT6EiI=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.189854+00 2025-12-17 16:20:01.189859+00 36305 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N-eVEnAyg9ReeCGeV-yeYZvZxSU=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.192559+00 2025-12-17 16:20:01.192572+00 36306 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zke8hLX6nlBmx-7EBsp8N2NB0Bw=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.194743+00 2025-12-17 16:20:01.194747+00 36307 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f8Sy635Zr2LdMrkNDJ_LuqYJUQ4=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.197146+00 2025-12-17 16:20:01.197151+00 36308 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:73g_6BYdyeY5_yOExbeP1mfOHUE=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.199584+00 2025-12-17 16:20:01.199589+00 36309 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sm4R18a8BxVcvhFaJLG6yOJmeKg=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.201992+00 2025-12-17 16:20:01.201998+00 36310 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B8msEBTHJ-cXkIqpSYCdnb8wWZs=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.204721+00 2025-12-17 16:20:01.204727+00 36311 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wHY2JmLo2VMbOJA2NjbW0L9AruY=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.207304+00 2025-12-17 16:20:01.207308+00 36312 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kF_tab0d7rW-vlweyyHHTM5RC68=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.21009+00 2025-12-17 16:20:01.210095+00 36313 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NAeWzDHOOyEvmDU9rjuYcpDeYnI=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.213475+00 2025-12-17 16:20:01.213481+00 36314 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YAfULIjWBYwxatRB7pLMcvrlT1w=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.216287+00 2025-12-17 16:20:01.216292+00 36315 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9nYLP4uYJaU9PWkwNAz1prV559k=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.219147+00 2025-12-17 16:20:01.219153+00 36316 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LPTpxsgjKCwZK1cjJ5FXhJEdSlc=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.221915+00 2025-12-17 16:20:01.22192+00 36317 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kM16-ZAzUVtT1YOK84OOKgbrTYY=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.224479+00 2025-12-17 16:20:01.224484+00 36318 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JAMZuwZq8MrYHAiGWdwYgNkEG7I=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.226873+00 2025-12-17 16:20:01.226878+00 36319 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QWLxg0zyP4EB4gN81gi8ij4YOMA=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.229157+00 2025-12-17 16:20:01.229161+00 36320 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vTf5Xi0n0ZWCSx3Hm1LbBN2uF78=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.232076+00 2025-12-17 16:20:01.232081+00 36321 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LGiY8_2aAdOaR8CSmp8tzWcpX1c=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.235137+00 2025-12-17 16:20:01.235143+00 36322 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kfNIPf2y-glKQfixovNHM5R2IB0=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.238109+00 2025-12-17 16:20:01.238115+00 36323 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mghQnIyC4ur-xDPi4e1C479S6xE=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.240925+00 2025-12-17 16:20:01.24093+00 36324 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-f-8o9XaTiQ9M3K7mgcw_YLrzR8=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.243725+00 2025-12-17 16:20:01.243731+00 36325 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fvM4LRA_303LfZZ2HO6M3OfPfrA=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.246441+00 2025-12-17 16:20:01.246447+00 36326 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y_nZfVk8Ov3i6-I_soxMV6EIjkw=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.249316+00 2025-12-17 16:20:01.249321+00 36327 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pvHjUBoeNB0f0nW7AgZChaNiSWs=", "createTime": "2024-08-15 15:00:42"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.252351+00 2025-12-17 16:20:01.252357+00 36328 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fvMtTXuyxKsZeaOeqetCiyroAs8=", "createTime": "2024-08-15 15:00:42"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.255678+00 2025-12-17 16:20:01.255683+00 36329 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:86tpTSJbWWX1X7W2vAC15JqfVaI=", "createTime": "2024-08-15 15:00:42"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.258891+00 2025-12-17 16:20:01.258897+00 36330 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IDg8oNpT2WPFh_maxFXBO8_ZKh4=", "createTime": "2024-08-15 15:00:42"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.261714+00 2025-12-17 16:20:01.26172+00 36331 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dRgulJySNm9x_5AUFBtyMZp7Bd0=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.264521+00 2025-12-17 16:20:01.264527+00 36332 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PbEjjCsygUR-iRKoeJBOpesy5Jg=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.267433+00 2025-12-17 16:20:01.267439+00 36333 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YRiHeE053DK5kuRF_-TlEcoA8h4=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.270316+00 2025-12-17 16:20:01.270321+00 36334 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TSijNPgQ77_4JOGPAWw1nQuwXqY=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.273032+00 2025-12-17 16:20:01.273038+00 36335 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wtz9ppR3Wrq3GTy6WNjQMO2bibY=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.275581+00 2025-12-17 16:20:01.275586+00 36336 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:30jG23xMTmoQuQFvjTLtlpmx8eI=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.278626+00 2025-12-17 16:20:01.278631+00 36337 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NNCkxmP-J3hWRynRXpFh6lroK1k=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.281671+00 2025-12-17 16:20:01.281679+00 36338 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g0SJ5EvkK4zixmfR90nRhj0v-Yo=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.284874+00 2025-12-17 16:20:01.284879+00 36339 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9I7Gz_Dukmbz6mMaU-YfT-GaZ4I=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.288026+00 2025-12-17 16:20:01.288031+00 36340 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b1ke-chARbpmnju844UaHwnIo5w=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.294488+00 2025-12-17 16:20:01.294493+00 36341 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tsL5yD4MH88_DgqiYOv41kODi3U=", "createTime": "2024-08-15 15:00:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.297225+00 2025-12-17 16:20:01.297229+00 36342 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BgI49LDiAj7tDwf0B00uCUbT4yw=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.29975+00 2025-12-17 16:20:01.299755+00 36343 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qPFKXS2yVXvhctNRlCuTnzvEiDE=", "createTime": "2024-08-15 15:00:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.302748+00 2025-12-17 16:20:01.302754+00 36344 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:khzo9J6t12sWwreJGQSwk1J-DsU=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.305825+00 2025-12-17 16:20:01.305831+00 36345 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w6pYbaVzn8HVymXcuOhrXeodmgo=", "createTime": "2024-08-15 15:00:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.308466+00 2025-12-17 16:20:01.308471+00 36346 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9xZNJAhtJLh5CHF8_8Me_eZQfJ4=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.311194+00 2025-12-17 16:20:01.3112+00 36347 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e96-xy33nTKVA0pdK5SAg6cAIF8=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.313904+00 2025-12-17 16:20:01.313909+00 36348 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wvhISenG0CppKWNhg3BDEYe7lW4=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.316823+00 2025-12-17 16:20:01.316829+00 36349 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kDEKxH745wibeS8wS-Xgl4YnKQQ=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.319832+00 2025-12-17 16:20:01.319837+00 36350 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hmAXyt3Ag4X9WQhsoJGCYNJJ68M=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.322459+00 2025-12-17 16:20:01.322464+00 36351 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qvsXePxGZbszFncN8wM46eSa3ZY=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.325369+00 2025-12-17 16:20:01.325375+00 36352 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8FSwwxy-r1nAJGTOWOEjAusfbIc=", "createTime": "2024-08-15 15:00:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.328342+00 2025-12-17 16:20:01.328347+00 36353 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wPaVn-3T67tlkM4kg4NjaJQgE3g=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.331022+00 2025-12-17 16:20:01.331028+00 36354 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nZ3HEHiqrqxB-L810KOAtiZ7NRI=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:20:01.333989+00 2025-12-17 16:20:01.333996+00 36355 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=1766074800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eYWnnaiQdOt_8M0NwnerLFC5tX8=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.350866+00 2025-12-17 16:30:00.350875+00 36356 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:09p01l1eXhqX79bxtlqAWOmkHC4=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.354461+00 2025-12-17 16:30:00.354466+00 36357 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vbfq98WPgOsed_LMK8cuhMDJzcc=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.357288+00 2025-12-17 16:30:00.357294+00 36358 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3txZvb0HNEOjnN3zmBCLchnOHbU=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.360155+00 2025-12-17 16:30:00.360159+00 36359 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pzRWH5S5rfMy89I8bO5UXwwto7E=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.363429+00 2025-12-17 16:30:00.363433+00 36360 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gxnj8Zb9yyMxJh90kVUcsFuxCwM=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.366171+00 2025-12-17 16:30:00.366176+00 36361 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O55CiV1aZb0zsMkXPWu3GsPDy0g=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.368844+00 2025-12-17 16:30:00.368849+00 36362 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TtYTdWV9kZRU0GeM_WNYyVKMxF4=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.371395+00 2025-12-17 16:30:00.371399+00 36363 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u563X65km_74tAxaDXTqHjNSpmI=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.37391+00 2025-12-17 16:30:00.373915+00 36364 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:13Aevgsug7RqkxL_vtZGFyfcM1c=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.376842+00 2025-12-17 16:30:00.376848+00 36365 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GKrJ6qbTp9itBcRHhpegBBr17FY=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.380006+00 2025-12-17 16:30:00.380012+00 36366 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yQDVCT3ajMYXyXAow9NLTLw573Q=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.383275+00 2025-12-17 16:30:00.38328+00 36367 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FkkIF3E9dMsC9p5kexMjgUwTmD4=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.386263+00 2025-12-17 16:30:00.386268+00 36368 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9nGN4Vo_q1ZrhJZTJs7SrKc6oYc=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.388869+00 2025-12-17 16:30:00.388874+00 36369 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yqms-QDGngJtR2WW_7ntdVdGUAg=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.391635+00 2025-12-17 16:30:00.391641+00 36370 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pz1gYl-WoaOq8TrG7l_a4uzwn3I=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.394367+00 2025-12-17 16:30:00.394373+00 36371 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mNFlg4vGqoyRiHq61gRHC8jEGyw=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.397363+00 2025-12-17 16:30:00.397368+00 36372 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z5UoKxgBGZh3yhYh1-W-m0cclFE=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.400073+00 2025-12-17 16:30:00.400078+00 36373 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pXezHxtLpo-gIOfZ65LxuBczaZs=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.402676+00 2025-12-17 16:30:00.402681+00 36374 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kUtsX4YvDYYfWYhdNLYzFCoDH3o=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.405606+00 2025-12-17 16:30:00.405611+00 36375 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k8PRIDb3bzElBCJLLb6hbOuDSKM=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.408871+00 2025-12-17 16:30:00.408877+00 36376 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zXJzoGoMO9dP_sBk3EDHrhZzyac=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.411715+00 2025-12-17 16:30:00.411721+00 36377 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6RUgNAilRUP5WOChb8OxH7dZirc=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.414834+00 2025-12-17 16:30:00.414839+00 36378 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O_9OpeSI3m5kGg9wXGLbz_hMWUc=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.417695+00 2025-12-17 16:30:00.417706+00 36379 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qcnV7yOtkzcO66yVglIK51bi4KI=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.42045+00 2025-12-17 16:30:00.420455+00 36380 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mK_eCVn0G9A5afIjbd8p_5XHyuk=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.422988+00 2025-12-17 16:30:00.422993+00 36381 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:whNQ1aygpT1Rhh4BE2o6lZZ8ovk=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.426134+00 2025-12-17 16:30:00.426142+00 36382 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i-En5iu2mUGIRGlYleoLCLo-Noc=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.429756+00 2025-12-17 16:30:00.429763+00 36383 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zlfj87vmNI0zvO4pcLCAwh35UYE=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.43344+00 2025-12-17 16:30:00.433447+00 36384 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tzG3PvNOS1ccKmAfJG4irqaVsCs=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.436374+00 2025-12-17 16:30:00.436381+00 36385 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e11aTnhAyAkSZCepdvwluR_jn2w=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.43916+00 2025-12-17 16:30:00.439166+00 36386 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E_SP5mA_nIE1-T7tqToP_8o0nKQ=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.44221+00 2025-12-17 16:30:00.442216+00 36387 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nNNEDN1bmemUGFH4hg5CgmSjqhA=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.445025+00 2025-12-17 16:30:00.445031+00 36388 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eRKH-nzmVTe-2dTeC8dSsIE-vuU=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.44796+00 2025-12-17 16:30:00.447966+00 36389 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dakOUemmG_b0rzOTo-3ZA0VvVkE=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.450806+00 2025-12-17 16:30:00.450811+00 36390 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JZYLQO5goXi_dKwRd_3t-obvGGU=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.453907+00 2025-12-17 16:30:00.453913+00 36391 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kn_kEnnngo2OyXgwHRI8mNW2sSk=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.456845+00 2025-12-17 16:30:00.45685+00 36392 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nHIKBSAnvfIONvVwsOlerqvhaVA=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.459355+00 2025-12-17 16:30:00.45936+00 36393 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oTChlAd9VFqrJHCR6i2uQQ9eHGc=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.461933+00 2025-12-17 16:30:00.461938+00 36394 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aefLCxtFWl1dwyLw5khq_Dtik90=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.46492+00 2025-12-17 16:30:00.464925+00 36395 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zkCKSuMtURuKkU8Eja0A-K5tcTs=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.467456+00 2025-12-17 16:30:00.467461+00 36396 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ufXZOTlYZQRfGifgbduZAKW-MQY=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.469955+00 2025-12-17 16:30:00.46996+00 36397 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KSLBcYNdUKqyww1qCb26TYb4A30=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.472298+00 2025-12-17 16:30:00.472304+00 36398 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bJrSN4U39iyTi3fZMF-EWlHVvKg=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.475386+00 2025-12-17 16:30:00.475392+00 36399 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NuPF7sI6mPiWmWL1tavubmcYK24=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.479842+00 2025-12-17 16:30:00.479849+00 36400 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U_KzBhslnXCm_R8IF5clF_3INsw=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.483939+00 2025-12-17 16:30:00.483946+00 36401 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XgtyIH8HxUOf4rsiYlTIFym2mZA=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.486851+00 2025-12-17 16:30:00.486857+00 36402 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FfybMlT6RfKMFyN4zysATXo_jlw=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.489463+00 2025-12-17 16:30:00.489468+00 36403 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A3PiomuBLj9XUSpeawn45upRACY=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.49212+00 2025-12-17 16:30:00.492126+00 36404 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EU5xeQGoxfhIjVxwob3GzDziPng=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.494672+00 2025-12-17 16:30:00.494677+00 36405 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ETtWzPv70VRj8Wsksul2Mc8mA3k=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.497357+00 2025-12-17 16:30:00.497363+00 36406 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TM2LEiOXlEA8_ey1TIo0jyxEYs8=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.500345+00 2025-12-17 16:30:00.50035+00 36407 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Szoe9mnQi7YB9H_-7nlYMU5GXTQ=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.50318+00 2025-12-17 16:30:00.503185+00 36408 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5rY9yMKzLWXkC_-L8GyliRrPRys=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.505448+00 2025-12-17 16:30:00.505453+00 36409 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UO0zdKcxbGxgzEntuV8o1U8imFg=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.50795+00 2025-12-17 16:30:00.507957+00 36410 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f4eLbItfHbktQZcoCTJ2IE6yo-k=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.510619+00 2025-12-17 16:30:00.510623+00 36411 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5rUY9eLPlFc4wvXpT-xl_wEVzAE=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.513261+00 2025-12-17 16:30:00.513267+00 36412 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sbunrvHIw__6qXJcmHT1kyrBOSE=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.515924+00 2025-12-17 16:30:00.515929+00 36413 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cCTu8mDD7j4sHZq-1Jh6lOXkSyU=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.518472+00 2025-12-17 16:30:00.518477+00 36414 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sJmPPgNIj_9UOwvpBxc6Jk775kw=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.521239+00 2025-12-17 16:30:00.521243+00 36415 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ri1LuWOP6aOHHEUohVm9v8Ygz9U=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.523746+00 2025-12-17 16:30:00.52375+00 36416 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OQ2T7nQZJvDUo54LRlNBtSMrpgQ=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.526471+00 2025-12-17 16:30:00.526476+00 36417 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CIcmRUFFCHqJi0rM3UCzPnx6Paw=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.529155+00 2025-12-17 16:30:00.52916+00 36418 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZsNs73s8uNIqc3aOA91uqb0VBoA=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.531777+00 2025-12-17 16:30:00.531782+00 36419 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3taR07n86dT-AoFmYIVKxEX4jBs=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.534523+00 2025-12-17 16:30:00.534528+00 36420 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ABOnDcC7qhWNFnLoDPJr6Ji-xYo=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.537149+00 2025-12-17 16:30:00.537154+00 36421 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2o5zwPlyjn-0ELBNDYZmiNP8ka8=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.539642+00 2025-12-17 16:30:00.539647+00 36422 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kyqkipR1fMSo4hzveD65Hds4YRY=", "createTime": "2024-08-15 15:00:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.542677+00 2025-12-17 16:30:00.542682+00 36423 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QVeqDtIkN2mXJzxszzoGoQES4Cc=", "createTime": "2024-08-15 15:00:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.546276+00 2025-12-17 16:30:00.546282+00 36424 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tzE_wi8glvlOO4df6KyGxKF8tRc=", "createTime": "2024-08-15 15:00:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.54962+00 2025-12-17 16:30:00.549626+00 36425 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cFbT5SgV8oDEZobWNsAqZW41w6U=", "createTime": "2024-08-15 15:00:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.552874+00 2025-12-17 16:30:00.552881+00 36426 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cIaVu9XEbMx59LIec_R7vl4ARiU=", "createTime": "2024-08-15 15:00:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.555736+00 2025-12-17 16:30:00.555742+00 36427 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jlCJsNP-2lCXh0DOFhUkAEaG0-A=", "createTime": "2024-08-15 15:00:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.558369+00 2025-12-17 16:30:00.558375+00 36428 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SwisRXDjxXuGGSSwBcqT0rEN7AI=", "createTime": "2024-08-15 15:00:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.561111+00 2025-12-17 16:30:00.561118+00 36429 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bBgLCLJWgbRACqTE5cVE62Oqvxs=", "createTime": "2024-08-15 15:00:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.563926+00 2025-12-17 16:30:00.563931+00 36430 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g8_8e3uLEGMw4aulSyEDqkDYoVQ=", "createTime": "2024-08-15 15:00:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.566805+00 2025-12-17 16:30:00.56681+00 36431 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1sOchwE92Fba1SuM0px4uqKdDjE=", "createTime": "2024-08-15 15:00:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.569553+00 2025-12-17 16:30:00.569558+00 36432 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OPqxyXwk4eHMyIcXK44XGOu64og=", "createTime": "2024-08-15 15:00:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.571723+00 2025-12-17 16:30:00.571728+00 36433 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TIqB74-FsvuLfvGBU0lB0xEvwtY=", "createTime": "2024-08-15 15:00:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.574333+00 2025-12-17 16:30:00.574338+00 36434 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5DDRyfQPlCwOMwpjmMjEpmU4E7I=", "createTime": "2024-08-15 15:00:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.57715+00 2025-12-17 16:30:00.577156+00 36435 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nwYA4Ga53lErPGTK6ndhFOOhB4I=", "createTime": "2024-08-15 15:00:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.57993+00 2025-12-17 16:30:00.579936+00 36436 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SXWURbGmHG1x7-KnolePV0SzfEo=", "createTime": "2024-08-15 15:00:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.582696+00 2025-12-17 16:30:00.582701+00 36437 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jQmcpQf2XX7nGvU6qV6z_g0qGpo=", "createTime": "2024-08-15 15:00:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.585356+00 2025-12-17 16:30:00.585362+00 36438 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vm3L9Jb9IWGsFznHzo21mBdJZjo=", "createTime": "2024-08-15 15:00:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.588148+00 2025-12-17 16:30:00.588153+00 36439 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zwoyv5wJkspTdzCw2jAmp9WFOZw=", "createTime": "2024-08-15 15:00:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.591079+00 2025-12-17 16:30:00.591085+00 36440 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uIiNIOffaf1U_Nwy3c3VCXETkp0=", "createTime": "2024-08-15 15:00:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.59376+00 2025-12-17 16:30:00.593765+00 36441 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fH3cBBkYfTqFUOxx8zCLRKiX_Fw=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.596498+00 2025-12-17 16:30:00.596503+00 36442 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mchqFhgl8sQkWqqRJhsjt_KNr7Q=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.59922+00 2025-12-17 16:30:00.599225+00 36443 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Onlzr4BSY4P9mxh5bdmjxpHcYko=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.601847+00 2025-12-17 16:30:00.601852+00 36444 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:86BI7erBCsCRkPPvTUmKubRgIKc=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.604326+00 2025-12-17 16:30:00.60433+00 36445 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c7dZ-9SFGq54xKR3ukYTXMz7Ixs=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.606809+00 2025-12-17 16:30:00.606814+00 36446 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gCjmltKcaCFZENJU692KF5iFeds=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.609567+00 2025-12-17 16:30:00.609572+00 36447 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N4LB9U84WYggGlcz2sgF4Yhqnhs=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.61257+00 2025-12-17 16:30:00.612575+00 36448 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ZIwtf586L5jqXn5h2y60amAnxM=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.615375+00 2025-12-17 16:30:00.615381+00 36449 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5o65enro4LPURiHL_GTtTgytvo0=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.618211+00 2025-12-17 16:30:00.618217+00 36450 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9HJb3WIKWbfVbyVFafaBJnH-ny4=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.621015+00 2025-12-17 16:30:00.621021+00 36451 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R-cMtXnas-iz5tfEVYsU6r3yxxc=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.623739+00 2025-12-17 16:30:00.623744+00 36452 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OAOVfZtBm1GvH4FYT2gDKk9DpyY=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.629595+00 2025-12-17 16:30:00.6296+00 36454 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Dc8s_Xt3br8ae3ZLqfAuE2Waco=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.632893+00 2025-12-17 16:30:00.632899+00 36455 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=1766075399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8iM7hR3_W9h6esZ4aR8UFkmx0xk=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.626625+00 2025-12-17 16:30:00.62663+00 36453 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XnmmM9TDfS7ZogmoqgnCCbV6c-U=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.369631+00 2025-12-17 17:00:00.369643+00 36953 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pf0mn_aAmFewfN0oZMWTvYf3sa4=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.984674+00 2025-12-17 16:30:00.984682+00 36456 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QXQOEH1BgpfP7vLfdIQhcmS7BlY=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.987525+00 2025-12-17 16:30:00.987532+00 36457 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:37aPhSDBlqQTyC0_xqTEqXH_P80=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.990155+00 2025-12-17 16:30:00.990162+00 36458 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nAb_IGp2BnoV_kooU18hf5Ot0Ms=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.99328+00 2025-12-17 16:30:00.993286+00 36459 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pn5q9J-64jYgoYrwCvDuvYMxF0g=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.996359+00 2025-12-17 16:30:00.996365+00 36460 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UXkScDFzataYO1KpAKH1epBY7O0=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:00.999154+00 2025-12-17 16:30:00.999159+00 36461 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1CrV-56A65LSnx4MsAhjOMBfNu0=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.001712+00 2025-12-17 16:30:01.001717+00 36462 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9PRpK1btB3vZTG2Oi2ya2-2SyB4=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.004265+00 2025-12-17 16:30:01.004269+00 36463 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dnZkjup2Ljw7WnwM5VtEPR50Qvk=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.006801+00 2025-12-17 16:30:01.006806+00 36464 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tpPimt379SuoI7kwd-H0up-cxSM=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.009636+00 2025-12-17 16:30:01.009641+00 36465 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AsVUJi8cNjAjxvyZSbUyP2jP3qM=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.012388+00 2025-12-17 16:30:01.012393+00 36466 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:660LFaNCg6Nl6thxwKU8UwSqB98=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.015553+00 2025-12-17 16:30:01.015559+00 36467 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PHFM2XDM3hrNKqQKr9qBb52u_yQ=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.018582+00 2025-12-17 16:30:01.018586+00 36468 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b5Q4LSTMlVEqH3suEBujuVj8rfI=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.021138+00 2025-12-17 16:30:01.021142+00 36469 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ihp1KJ_WsEQxzN0eMIiDOgKwd7A=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.023667+00 2025-12-17 16:30:01.023672+00 36470 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ulli3dSfOxbpvxKTSnR3auNe9_I=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.02697+00 2025-12-17 16:30:01.026977+00 36471 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h1uYDxznVE1vj3G1Vdrb3xuCDGU=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.030146+00 2025-12-17 16:30:01.030152+00 36472 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GcfFwn-mk4ZKog2gbQbirJDkMrg=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.032918+00 2025-12-17 16:30:01.032923+00 36473 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K0dalnVl2LyMFdNgg9GSl3EFvpo=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.035544+00 2025-12-17 16:30:01.035548+00 36474 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0XhhZpE-XkzGYa3RaeB0LL3_3FM=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.038401+00 2025-12-17 16:30:01.038406+00 36475 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SW2a8B3yS5ltPqnP0d18S6cJpeE=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.041347+00 2025-12-17 16:30:01.041352+00 36476 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8pR7AoViGfcnKwvtf_-5-Aae7Dc=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.04405+00 2025-12-17 16:30:01.044054+00 36477 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hKeclP19yXTwEv4rywAsHzECvgE=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.046742+00 2025-12-17 16:30:01.046747+00 36478 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vmPbDSgVz2T8MmmbqNDc-z3Futs=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.049508+00 2025-12-17 16:30:01.049513+00 36479 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lYdm5slXWRDoLPEP2IckfUuKyjs=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.052219+00 2025-12-17 16:30:01.052225+00 36480 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IEtD2VS1e7BOZgaycdjIkFO-MGc=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.054752+00 2025-12-17 16:30:01.054757+00 36481 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HrgdovPGLqfW2C_iukhOTMJuqqI=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.057254+00 2025-12-17 16:30:01.057259+00 36482 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jDdUORLL8uHqzW7oxyOVTpoi-q4=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.060068+00 2025-12-17 16:30:01.060073+00 36483 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HSTkrO9QYFJy3F5VZXb-RIOA8o0=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.063132+00 2025-12-17 16:30:01.063138+00 36484 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EsO7BYnpMUUx_XjcQOHgfm7RSjI=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.065894+00 2025-12-17 16:30:01.065899+00 36485 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m0iJQdHP7MggPbhgI0m-6NQGY_4=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.068806+00 2025-12-17 16:30:01.068811+00 36486 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3zQb01E6_U5Q7Sp8-N8tvrxmnZI=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.071628+00 2025-12-17 16:30:01.071633+00 36487 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rj1YLWxTri2QNBepIP-Trsz38g8=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.074553+00 2025-12-17 16:30:01.074559+00 36488 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e4dikS8Iyg9jVwi94HuAE_Ol8Ns=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.077451+00 2025-12-17 16:30:01.077457+00 36489 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PazhSX7mc5JSwHQioeWoPG46Uyg=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.08031+00 2025-12-17 16:30:01.080316+00 36490 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SAYeRf_DGymlggww4ZLMWpSSSNM=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.083457+00 2025-12-17 16:30:01.083462+00 36491 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sJayfV92stV_aHWkkCT9cIDnIJw=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.086662+00 2025-12-17 16:30:01.086667+00 36492 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jIv1Jd9hHYBX3LeqH9z24UfbOEU=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.089394+00 2025-12-17 16:30:01.089399+00 36493 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VAZ2m8vf52pJ9vj20rYt0row4QE=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.092343+00 2025-12-17 16:30:01.092349+00 36494 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QNgbo69VcrEX5WdIHpcGaSCapso=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.095215+00 2025-12-17 16:30:01.095221+00 36495 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cNYLanvmj6zeY--ii0UgMuPo9d4=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.098025+00 2025-12-17 16:30:01.09803+00 36496 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nTzlOK6sVta2suZLEfAjxzER8ps=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.100661+00 2025-12-17 16:30:01.100666+00 36497 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yy3eF_O6R833GS-eEr-EeU1_12A=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.103266+00 2025-12-17 16:30:01.103271+00 36498 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:geQUnRx14USpbcZs0yNfN3IJydo=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.106051+00 2025-12-17 16:30:01.106056+00 36499 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nlhiuLVB1PDzRUT39fdvg2sHmo4=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.109078+00 2025-12-17 16:30:01.109084+00 36500 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m4CkjksN_KmEAcTPUkHwlhmlR9M=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.112115+00 2025-12-17 16:30:01.112121+00 36501 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WwmjRe0wy8D78v06UQZqZbaJ77o=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.115293+00 2025-12-17 16:30:01.115299+00 36502 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dzuAW_SvkVUxuLapWW1Gg2OYxw8=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.118343+00 2025-12-17 16:30:01.118348+00 36503 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xBG9t3MVcQcJlllE2p9ofMG_MYQ=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.121224+00 2025-12-17 16:30:01.121229+00 36504 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q1L-MqfbwXIl-hqSoUpSSBitHJI=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.124167+00 2025-12-17 16:30:01.124176+00 36505 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ELQP_ei-ftD8W5zVqj8RNkj3BjA=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.127277+00 2025-12-17 16:30:01.127281+00 36506 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x490nW8QJ3iZZB1sqxkB7jH7Znc=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.130539+00 2025-12-17 16:30:01.130545+00 36507 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t7U44DYcR9S8M9hUw2dsHdqJYVs=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.133936+00 2025-12-17 16:30:01.133941+00 36508 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BxtkJHAK8DaLpbBJKx_2pZaiBik=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.136642+00 2025-12-17 16:30:01.136647+00 36509 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uo-nhMlM3E5n5_9afIR_FMbfnKQ=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.139207+00 2025-12-17 16:30:01.139212+00 36510 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iBVb_gztlfSbAfFCqYNa-qLJv7k=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.141742+00 2025-12-17 16:30:01.141747+00 36511 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yPU8UHx8B6o3yMT2tQOsyeJcLSA=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.144298+00 2025-12-17 16:30:01.144303+00 36512 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gd9iEq27pVkQmdHgaBz0x597XDE=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.146831+00 2025-12-17 16:30:01.146835+00 36513 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sbGj6ir9j_l5dWpnL5dDZt7bC6I=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.149378+00 2025-12-17 16:30:01.149383+00 36514 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g_KwRIut_W4pXLGBztI1L5a_lC4=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.152235+00 2025-12-17 16:30:01.15224+00 36515 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QVRk8nEpr0EMmgfJFuourCIvBHw=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.155203+00 2025-12-17 16:30:01.155209+00 36516 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I0vVHDevxb3l1I6SZlKpb5Ue6UA=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.157927+00 2025-12-17 16:30:01.157933+00 36517 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zwv7QH8NDoiLafCgzBUERnSdliA=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.160504+00 2025-12-17 16:30:01.160509+00 36518 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gJ-dPlFu4YJlPill-4ymvRGI-Gk=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.163133+00 2025-12-17 16:30:01.163137+00 36519 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q0N1uQ3X84gvcsxjiRHOceHQChw=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.165914+00 2025-12-17 16:30:01.165919+00 36520 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:863ULsF6DCbKO-gU-_X4rSNWJmg=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.168606+00 2025-12-17 16:30:01.168612+00 36521 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vBep_sLJFMwXOsscbtODFMg24J4=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.17124+00 2025-12-17 16:30:01.171244+00 36522 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uxrIt7NiKnE4QLPVgH1xFG6-roM=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.174327+00 2025-12-17 16:30:01.174333+00 36523 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d1VHkB83L1X2WtQAfcIWPydED8E=", "createTime": "2024-08-15 15:01:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.177523+00 2025-12-17 16:30:01.17753+00 36524 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-JdEAe6OiDmxjIcaHLNMs7G2Fdk=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.180401+00 2025-12-17 16:30:01.180406+00 36525 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AtAVAtoIG7EqwaRZP0y8gBVcWy4=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.183258+00 2025-12-17 16:30:01.183264+00 36526 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TWJobYEVUMgqP72Nkar7llC-PhE=", "createTime": "2024-08-15 15:01:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.18588+00 2025-12-17 16:30:01.185884+00 36527 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QBffLWMFESV5igoOZs5ytHXGORI=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.188583+00 2025-12-17 16:30:01.188588+00 36528 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zL26XnxXCtZq-K1GTHK2leVXBH8=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.191357+00 2025-12-17 16:30:01.191363+00 36529 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gxOgshNVhP9k38I_WcUTH_lL99E=", "createTime": "2024-08-15 15:01:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.194253+00 2025-12-17 16:30:01.194258+00 36530 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0cuFvjRGD6pz_HbNtFc4o4d7sPU=", "createTime": "2024-08-15 15:01:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.20093+00 2025-12-17 16:30:01.200936+00 36532 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2CaEGs7rsP4-ra39Gz9wmZ90UQo=", "createTime": "2024-08-15 15:01:05"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.203584+00 2025-12-17 16:30:01.203589+00 36533 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6JmC3JIBeWpVTmtovg7eeHYYES0=", "createTime": "2024-08-15 15:01:05"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.197789+00 2025-12-17 16:30:01.197796+00 36531 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:44XA6K7i-7h9u_bWwGy48scGnhg=", "createTime": "2024-08-15 15:01:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.20908+00 2025-12-17 16:30:01.209087+00 36534 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rIqxfVaBjbQnNJRTgOezV44Cf1Y=", "createTime": "2024-08-15 15:01:04"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.211857+00 2025-12-17 16:30:01.211862+00 36535 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k_1jn5gc7FhVQJe9U3qWuyWa79Y=", "createTime": "2024-08-15 15:01:05"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.215111+00 2025-12-17 16:30:01.215117+00 36536 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ze4_JCY9Cob9RaFEd2zc7goXbdo=", "createTime": "2024-08-15 15:01:05"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.218075+00 2025-12-17 16:30:01.21808+00 36537 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:txIHStnXUC8m1yWoN5uy2LqCu3U=", "createTime": "2024-08-15 15:01:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.220806+00 2025-12-17 16:30:01.22081+00 36538 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bAiTsa4wf2XS4opkNXCNuV0uNSQ=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.223403+00 2025-12-17 16:30:01.223407+00 36539 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9NOSBk7kocDUVpSjqMOX2XG4kaU=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.226326+00 2025-12-17 16:30:01.226332+00 36540 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rNR7_A8X1_JktsXa-w_PzJmxX7g=", "createTime": "2024-08-15 15:01:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.229487+00 2025-12-17 16:30:01.229495+00 36541 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bCAt9rT15YlPtCfytoywIi316tk=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.233044+00 2025-12-17 16:30:01.23305+00 36542 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZrT033qRVK8SOrsnLsBkLINN7FE=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.236415+00 2025-12-17 16:30:01.236422+00 36543 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZpSCkvdR8FvsSfDd1T-PeMoMoMI=", "createTime": "2024-08-15 15:01:06"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.239781+00 2025-12-17 16:30:01.239788+00 36544 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KB6cxE12grW2xftLUZTLZcBKFRI=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.243286+00 2025-12-17 16:30:01.243293+00 36545 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hSfHn1r_YlcE1SBxs5R_03dFGDA=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.246386+00 2025-12-17 16:30:01.246393+00 36546 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KTidxOynAJWSZZoSY-ClTaLsyo4=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.249447+00 2025-12-17 16:30:01.249453+00 36547 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fgGj4M8hp0wpURQ1hAjVvNvTPcg=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.252495+00 2025-12-17 16:30:01.252503+00 36548 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e4_u7PWJPmkmNhDaU_GMlw_H2h0=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.255305+00 2025-12-17 16:30:01.255311+00 36549 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PBFJ6a9KT2sDwcjwJ5X3ds-zwd0=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.258238+00 2025-12-17 16:30:01.258245+00 36550 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CAbGoDPfqWFr2b7rnljczsbE-lU=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.261274+00 2025-12-17 16:30:01.26128+00 36551 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y19qq9FD2Okk1yT6iG581RHDVKs=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.264754+00 2025-12-17 16:30:01.264761+00 36552 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:StBICHuEfkMINlaXE4_7EqzRaPI=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:30:01.268086+00 2025-12-17 16:30:01.268092+00 36553 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=1766075400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aBqgU61NsTp5pGlzbACYao89utw=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.592859+00 2025-12-17 16:40:00.592868+00 36554 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bl7axfG-i1x3fWn2nIxM5U0MDa4=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.596697+00 2025-12-17 16:40:00.596703+00 36555 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hGL9PLEYhRVM2O5XZWAv7nB3D1U=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.599541+00 2025-12-17 16:40:00.599547+00 36556 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kz18WoEgkUQaX9jQL9y1Tc-lbpg=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.602268+00 2025-12-17 16:40:00.602274+00 36557 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yGSGvr3-8p6miYnxF3LfCylcLgo=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.605347+00 2025-12-17 16:40:00.605353+00 36558 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GYYCNa9l_M0svLmxiuxvQilUa4Y=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.608557+00 2025-12-17 16:40:00.608561+00 36559 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_yAJQ9rJN23I5BApGX1Oqc-Zgzc=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.611206+00 2025-12-17 16:40:00.611211+00 36560 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n3bBgHs-ucEax3TOt5xdTjCHMQM=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.613766+00 2025-12-17 16:40:00.61377+00 36561 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6okUqukSohb_HeYoX-w414afgLw=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.61627+00 2025-12-17 16:40:00.616274+00 36562 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Db2fJ9U1NQo_NqZr2GyUB02FXoU=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.618633+00 2025-12-17 16:40:00.618639+00 36563 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AEElEtn1hIQBD1uglPSWAQVEBCU=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.621249+00 2025-12-17 16:40:00.621254+00 36564 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b2AFvzmlvOJ5cfc_ykRxaiwr0m8=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.623867+00 2025-12-17 16:40:00.623872+00 36565 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3_vvQyd4ZBsbiZN07iAtLSnssZM=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.626865+00 2025-12-17 16:40:00.62687+00 36566 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yfllaRcDv5Vvf-P73-VFU1bn-Ps=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.629868+00 2025-12-17 16:40:00.629873+00 36567 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ll0RbWDjX1Z9kqZYxKGIfhCyI1A=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.632457+00 2025-12-17 16:40:00.632461+00 36568 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wburngxCeJDN14kjw2YaEne4g4k=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.635218+00 2025-12-17 16:40:00.635223+00 36569 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dZBxBoJoJfY-hBd4vU2b5EB8LNc=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.637855+00 2025-12-17 16:40:00.63786+00 36570 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2mpiDhextOtLnKPovX0BDFLZchw=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.640354+00 2025-12-17 16:40:00.640359+00 36571 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jt1DG7sVNhA8WIYIkTaz6aZC1zQ=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.642949+00 2025-12-17 16:40:00.642954+00 36572 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LsQbDOxLIcnrZSL_Ec8zvk8FlR0=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.645885+00 2025-12-17 16:40:00.64589+00 36573 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VtJ1n2xZ_Y6xQQudFzc7_VVsCxg=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.648405+00 2025-12-17 16:40:00.64841+00 36574 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zIHG5-7-4HqAbq-YRPFjHv1SJx8=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.651027+00 2025-12-17 16:40:00.651032+00 36575 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1C_ATP7JU2P7hx009240ZRi3xcI=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.653621+00 2025-12-17 16:40:00.653626+00 36576 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ikGwlxVVfAWaINZW--eLV005cHw=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.656194+00 2025-12-17 16:40:00.656199+00 36577 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wxdzEepCDBE0_PYkX0WeqSyFk4U=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.65903+00 2025-12-17 16:40:00.659037+00 36578 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_0wchjLBjBEJ2EXtPdiiA4O9AYM=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.66211+00 2025-12-17 16:40:00.662118+00 36579 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iQSqMNLGEPl53X0hKzgrffoQdMw=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.677245+00 2025-12-17 16:40:00.677252+00 36584 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U6tQIeY52m35lMt0US7sZ9QVQkc=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.665518+00 2025-12-17 16:40:00.665526+00 36580 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vi30CTD6HeRgEFHn5het8we-AQU=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.669004+00 2025-12-17 16:40:00.66901+00 36581 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ltFgmwr-PbYfLUefZZWJHwDm1zc=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.671844+00 2025-12-17 16:40:00.671849+00 36582 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oskH2ERAbqzRtgZq7aRwfn93bdQ=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.674396+00 2025-12-17 16:40:00.674401+00 36583 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Z4ONsYo7oIaLg-s0nnRUMFDnDA=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.680119+00 2025-12-17 16:40:00.680125+00 36585 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7oqqwb4AlXwOZwJRlpWR4om4qu4=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.683159+00 2025-12-17 16:40:00.683166+00 36586 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UwxvHB0NVHhj9H801vqWU055pcQ=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.686176+00 2025-12-17 16:40:00.686181+00 36587 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9XQV4vKtgh4fIGiE62z5i7DpNLk=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.689506+00 2025-12-17 16:40:00.689511+00 36588 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:knTNXyeydlIU17fMxpvGqKAaglQ=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.693108+00 2025-12-17 16:40:00.693115+00 36589 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7rINL0DwJ0RpQ1rjbZEyqqGPyFo=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.696431+00 2025-12-17 16:40:00.696438+00 36590 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y6rlpvpJ6JtUdv6aMCLVBrj9vh0=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.699607+00 2025-12-17 16:40:00.699614+00 36591 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SACaT5sWGHKsAvrkIPlF9kBI1BU=", "createTime": "2024-08-15 15:01:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.702549+00 2025-12-17 16:40:00.702554+00 36592 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lgmmivs17W2A39opK4lecUJKNII=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.70553+00 2025-12-17 16:40:00.705536+00 36593 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9e4eKZZWvFK764vdePuZ3H_Ffc4=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.708415+00 2025-12-17 16:40:00.708421+00 36594 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VC17suTZvO4RnB0iEbKXRnpphBQ=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.71126+00 2025-12-17 16:40:00.711266+00 36595 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U1foE21vWifGc2c3IUzbnPI03SI=", "createTime": "2024-08-15 15:01:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.714366+00 2025-12-17 16:40:00.714372+00 36596 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VMlOaw2v8CBsm1gtxVvy5L9Lp38=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.717568+00 2025-12-17 16:40:00.717574+00 36597 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0_OcpY3MLVAUyrqcgzAY9Rz0hR0=", "createTime": "2024-08-15 15:01:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.720439+00 2025-12-17 16:40:00.720445+00 36598 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mzavMEza8-zHMkCuXycXAZBRX7g=", "createTime": "2024-08-15 15:01:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.723295+00 2025-12-17 16:40:00.723301+00 36599 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pHmMqIVFXEcIkeydbSKf_aOlA_s=", "createTime": "2024-08-15 15:01:12"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.725997+00 2025-12-17 16:40:00.726003+00 36600 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fXxRt2FF4BCeGIIyHMEqHrhM1f0=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.728667+00 2025-12-17 16:40:00.728672+00 36601 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-WsH0p1WyQFJjLvo9HWrRnZnIbY=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.731271+00 2025-12-17 16:40:00.731276+00 36602 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UdRNKdivwLZEgwK4eN8St1l_ECQ=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.733929+00 2025-12-17 16:40:00.733936+00 36603 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lelQTyWUBRB_gdr89zFAR6Bqynw=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.737033+00 2025-12-17 16:40:00.737038+00 36604 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cj92GNNAsX2F5zb9-T9d4nnKIGc=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.740054+00 2025-12-17 16:40:00.740059+00 36605 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uHpW_4dEds0XmnO8WItuPVK-U_o=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.742592+00 2025-12-17 16:40:00.742597+00 36606 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fl7KBbVU8gRWybv3RoERpnmRefw=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.745107+00 2025-12-17 16:40:00.745111+00 36607 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:woiMv0ypBPW0JHg_ljSgyBcFoyk=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.747794+00 2025-12-17 16:40:00.747799+00 36608 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XVEuUVNIvtLbFJg2cRoRYFcp7sc=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.750477+00 2025-12-17 16:40:00.750483+00 36609 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ogVS_2yEIietpvJDbie_Bcn85d8=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.753229+00 2025-12-17 16:40:00.753234+00 36610 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9bKkEPLQYA0Hvv45KBhyZWHb2fs=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.755858+00 2025-12-17 16:40:00.755863+00 36611 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EpxuSaVA-1YMBpoF6s7Gw8czh-A=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.758665+00 2025-12-17 16:40:00.758669+00 36612 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:axWRTZH7uHG--GRy319NGTc3LBY=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.7619+00 2025-12-17 16:40:00.761906+00 36613 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FnxCT3WpwGagZQw1-ouQ5eDKYLU=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.764757+00 2025-12-17 16:40:00.764762+00 36614 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aKU7DZiFLaOfOlAVOP2P854wao4=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.767514+00 2025-12-17 16:40:00.767519+00 36615 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4_xkNbdety0jCE10oleQpXf9Lwg=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.77041+00 2025-12-17 16:40:00.770418+00 36616 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NVY198RDHO7r9lYOC0tgBVbNuY0=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.773472+00 2025-12-17 16:40:00.773478+00 36617 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X7MuRZXPxMM0cufHFLkwhPPEypM=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.776415+00 2025-12-17 16:40:00.776421+00 36618 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3K5MYLGOAh6aCz6uOJODWFagheI=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.779177+00 2025-12-17 16:40:00.779183+00 36619 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tdOn1h4D3UfR1RdADCp5VcxJNa0=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.782218+00 2025-12-17 16:40:00.782223+00 36620 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L8wPgbkRWsykeYKZ6jIvWpDEgbQ=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.785414+00 2025-12-17 16:40:00.785421+00 36621 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:juNNWNQiX4tBgdcZqyzPyCLoXSg=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.788927+00 2025-12-17 16:40:00.788933+00 36622 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e7_LtcGyKiXgcuKd-pZWLiZlkB4=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.791768+00 2025-12-17 16:40:00.791773+00 36623 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rmL2rrPAdWsQESFC9WR5xpdy8bI=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.794471+00 2025-12-17 16:40:00.794476+00 36624 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Af05gu1UIwuJw8NsWz8On_01zKY=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.797035+00 2025-12-17 16:40:00.79704+00 36625 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ah5o2tbzH87yGqftcYvCmBaYL1k=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.799625+00 2025-12-17 16:40:00.79963+00 36626 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rnowBUud1bKcWBD7NptPKNWcb-M=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.802503+00 2025-12-17 16:40:00.802508+00 36627 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WAT570i5jomkYPMFzvicWYpcU9o=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.805542+00 2025-12-17 16:40:00.805546+00 36628 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-0ljwu_qN3cljgEq2FJ89GSP59A=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.809105+00 2025-12-17 16:40:00.80911+00 36629 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2xtxJ-NhqJlx9Mm2e03e-BFaXOo=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.812508+00 2025-12-17 16:40:00.812514+00 36630 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wfwDLgpnXCXagfU_8ctX02tGXgo=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.815899+00 2025-12-17 16:40:00.815904+00 36631 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j7zEmJVCNCmx34T08n-WDeEylXI=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.819386+00 2025-12-17 16:40:00.819393+00 36632 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZmKO6uSGcK01e1RGhpjlXN0gTao=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.822815+00 2025-12-17 16:40:00.82282+00 36633 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B3NobJB3k-Kt8s53i7VsNl7UnbE=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.826223+00 2025-12-17 16:40:00.82623+00 36634 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OWYQIYQpKwTor4fb3ifBRcmu4Fo=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.829195+00 2025-12-17 16:40:00.829201+00 36635 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:csfh9zxd4tVlWi_wBaNtPMuLXOQ=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.832079+00 2025-12-17 16:40:00.832083+00 36636 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:05JMAUauaWCgtUeN19XQ56gL-Y4=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.834891+00 2025-12-17 16:40:00.834895+00 36637 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RbfVFO35yFJE5sHwUSmchlGCpAc=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.837366+00 2025-12-17 16:40:00.83737+00 36638 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eakpRH1bj_Sh8Y6bsrVq_yR4Ohk=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.839769+00 2025-12-17 16:40:00.839773+00 36639 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dd8TfU0UsZREozCwxOZE7NPb6yw=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.841946+00 2025-12-17 16:40:00.84195+00 36640 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WuZzVJUWL5A9tNNuR2URBL0tock=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.844243+00 2025-12-17 16:40:00.844248+00 36641 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9STZP9KvR9O5vDIIjzpq6oZq6s8=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.846866+00 2025-12-17 16:40:00.846871+00 36642 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qX2ZF1gyaUADNavGAdT190GEoj8=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.8495+00 2025-12-17 16:40:00.849505+00 36643 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tqZ0BmpQYSBlTexI9ikjDu-lQsQ=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.852427+00 2025-12-17 16:40:00.852432+00 36644 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:voAX2wbIQYmvCZ_wC6866AxkCKs=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.855271+00 2025-12-17 16:40:00.855276+00 36645 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YUaoYZj_TjU5Hsam_GRRkiH1wkA=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.85771+00 2025-12-17 16:40:00.857715+00 36646 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LHEDYxGCLqM2qkvyel7zAFkhFLQ=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.861088+00 2025-12-17 16:40:00.861093+00 36647 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:52ZCv2l3fOCgTSa6MfFRatpOXeM=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.86422+00 2025-12-17 16:40:00.864224+00 36648 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DGOWerm7ylQfoNeW3D_a8vQ5DwQ=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.866789+00 2025-12-17 16:40:00.866794+00 36649 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EgbiF_qrgXotS3KPcyK5m-HUZvM=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.869305+00 2025-12-17 16:40:00.86931+00 36650 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QSOo_FslqFFhxvsb-fn9EMp67Y0=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.871796+00 2025-12-17 16:40:00.871801+00 36651 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-g25baFVMFn9ef5iz653wLmC8m0=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:00.874508+00 2025-12-17 16:40:00.874512+00 36652 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=1766075999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9JgV7cxuRnOSVW9txQINmM0GyXQ=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.289868+00 2025-12-17 16:40:01.289881+00 36653 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:45w4pqOgwIf5CAAE70l11-N8BpY=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.294015+00 2025-12-17 16:40:01.294024+00 36654 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yommtr7rj0jBwR8TNMzjbVqH3qs=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.29725+00 2025-12-17 16:40:01.297256+00 36655 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ANLfcgfj8wNzZkUQn_O_JBZ9PK0=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.300104+00 2025-12-17 16:40:01.300109+00 36656 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ulREHtlKh6jw3VvMY-L5ypQm1A8=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.303346+00 2025-12-17 16:40:01.303354+00 36657 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3PMHwfuDSUbQG-tusRsq58cviNA=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.306937+00 2025-12-17 16:40:01.306943+00 36658 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FO0C2HybnpNZ6T5b-2wst26NdtA=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.310058+00 2025-12-17 16:40:01.310065+00 36659 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:agrlCGHcoc6IduOQH04gXdeBr2E=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.312986+00 2025-12-17 16:40:01.312991+00 36660 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kNcpSlWJ-NDl9mij4Jj7idUcQn0=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.315969+00 2025-12-17 16:40:01.315975+00 36661 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gN-alsmGWSnZ-6z53Uu07ylWTQc=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.318912+00 2025-12-17 16:40:01.318917+00 36662 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_4SeAdePcdh_h3CR0w_L1rshx3E=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.321946+00 2025-12-17 16:40:01.321952+00 36663 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lk2noRl5n9K53axrSo3z5wNThuw=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.324825+00 2025-12-17 16:40:01.32483+00 36664 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0-EOdSo_mmx_YBdHIa0HeBBHD5s=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.328044+00 2025-12-17 16:40:01.328049+00 36665 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4TxBdzBSj-WxiLgO0ABUB36IlbM=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.331238+00 2025-12-17 16:40:01.331242+00 36666 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aY6svkRDNna2DaKiaIUgFudAAhI=", "createTime": "2024-08-15 15:01:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.333696+00 2025-12-17 16:40:01.333701+00 36667 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zHkeCgxUGOGMVhEWG6hCBCEosmY=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.336242+00 2025-12-17 16:40:01.336247+00 36668 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2EvB5iJKiJ3DARc5yTGm8z8ZFB0=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.338472+00 2025-12-17 16:40:01.338476+00 36669 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XMLq0sbqBMsfnHTa-cGqDFmMlQk=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.340923+00 2025-12-17 16:40:01.340929+00 36670 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rsmvBYhEfi6Fo9Z8ok5V_CT77qg=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.343406+00 2025-12-17 16:40:01.343411+00 36671 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fcdN-w5QojnUCQyl6PTBVnU81S8=", "createTime": "2024-08-15 15:01:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.346085+00 2025-12-17 16:40:01.34609+00 36672 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YQukLJ70k2zDwRvb32Io748OyJ4=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.349566+00 2025-12-17 16:40:01.349571+00 36673 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sIoh1pJwv_J7YkkSEZiRBwxgQfo=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.353507+00 2025-12-17 16:40:01.353514+00 36674 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2lM4VvsaGr8ulFjuc41UD3_vrAI=", "createTime": "2024-08-15 15:01:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.356869+00 2025-12-17 16:40:01.356876+00 36675 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ca2uTAzjxZnTnBMVScoer4ka0Os=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.360034+00 2025-12-17 16:40:01.36004+00 36676 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7xi-2ZiDW05lMtRKFCl9x6yzFJo=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.363262+00 2025-12-17 16:40:01.363268+00 36677 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lUEz6OJBL-9UuK6NuKHR-T-Xl6E=", "createTime": "2024-08-15 15:01:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.366313+00 2025-12-17 16:40:01.366319+00 36678 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uiVJd1w78BaZDR0MEoyXa9kS080=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.369339+00 2025-12-17 16:40:01.369344+00 36679 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PWYWUns9T83y-24guvb1J4AdLpk=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.372314+00 2025-12-17 16:40:01.372319+00 36680 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sflTLVWqf7Dp4cR5GVphluV73lQ=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.375372+00 2025-12-17 16:40:01.375377+00 36681 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HJ42yiGjQmJpNtt0SMDsuzqHNVs=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.379153+00 2025-12-17 16:40:01.379159+00 36682 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sjI4rzymrxHPuX3iCQIQXUY3r-c=", "createTime": "2024-08-15 15:01:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.382598+00 2025-12-17 16:40:01.382605+00 36683 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3qNIO6sYsgePUcCXiMC0jLREDvw=", "createTime": "2024-08-15 15:01:19"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.386138+00 2025-12-17 16:40:01.386144+00 36684 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nmdqdr5ylaEFRDePXC--LmHWAPs=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.38947+00 2025-12-17 16:40:01.389476+00 36685 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dz4dsfR1h7YS5V--w3QyUX6qGRQ=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.392903+00 2025-12-17 16:40:01.392909+00 36686 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D3C1fqR9ohio9V3Yb8NnZm4Iv78=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.410953+00 2025-12-17 16:40:01.410959+00 36691 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ALxmdUOgFjjHJZ_Se_7tUeKntY=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.396297+00 2025-12-17 16:40:01.396303+00 36687 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ypN-JFyZ5LWFs9378FSqjWidxXc=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.399689+00 2025-12-17 16:40:01.399696+00 36688 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:INmVgTbuxUsifPWxN9TMANYaF8g=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.40372+00 2025-12-17 16:40:01.403726+00 36689 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z8QsaLQ6sttDPTmo4LIm4qOTIXE=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.407743+00 2025-12-17 16:40:01.40775+00 36690 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aApWsHE3uN_xH9TrShsra3RWlKM=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.413662+00 2025-12-17 16:40:01.413667+00 36692 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1M0ugFXJp9B2J8C54KFfLeKToqM=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.416154+00 2025-12-17 16:40:01.416158+00 36693 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Qsps5b1wZrdklPJrFMqtcUHch0=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.418785+00 2025-12-17 16:40:01.41879+00 36694 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x7DN23bXuiQb5IcvYt1UoLg34l8=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.421243+00 2025-12-17 16:40:01.421248+00 36695 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HZ_aM02Sr0vme3hin5K8hXYLGTI=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.423635+00 2025-12-17 16:40:01.423639+00 36696 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OBxb_t_AChH4kaYtf1uMNwjdmHc=", "createTime": "2024-08-15 15:01:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.426354+00 2025-12-17 16:40:01.426359+00 36697 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_XLV5vie0nflg5ZSt34Qe8v4FWI=", "createTime": "2024-08-15 15:01:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.429202+00 2025-12-17 16:40:01.429207+00 36698 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l0ekMluSSxLxL9oS-QZ-Dc-cxR4=", "createTime": "2024-08-15 15:01:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.431641+00 2025-12-17 16:40:01.431645+00 36699 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HdnJQ_IJe7wYKlXQ_0oZ3Ucms88=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.434153+00 2025-12-17 16:40:01.434158+00 36700 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qE8QNZqktqZSShTKCYKCwgqLyRc=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.436646+00 2025-12-17 16:40:01.43665+00 36701 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HAsPwBIfx963uSvGmqTocj_uB2U=", "createTime": "2024-08-15 15:01:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.439068+00 2025-12-17 16:40:01.439072+00 36702 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gBkcyMseZpvTg-q2_Uofyyhq4yo=", "createTime": "2024-08-15 15:01:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.441483+00 2025-12-17 16:40:01.441487+00 36703 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WvpZnxrcvEtHCn7QYoMKmZN6siQ=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.444394+00 2025-12-17 16:40:01.4444+00 36704 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XfX_98jH-0K4546FVinBDpYBGGU=", "createTime": "2024-08-15 15:01:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.447961+00 2025-12-17 16:40:01.447967+00 36705 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f32W9KfLUH5a3i2PYY7rH2XJgKM=", "createTime": "2024-08-15 15:01:22"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.451373+00 2025-12-17 16:40:01.45138+00 36706 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ohzuvcPEwdVUtHsZSB-ebZQrY8=", "createTime": "2024-08-15 15:01:23"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.454186+00 2025-12-17 16:40:01.454191+00 36707 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h4EC0Cvcl4IKEgDmkHNO11DbwK8=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.456831+00 2025-12-17 16:40:01.456836+00 36708 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yPYNGSY_XdUxo5GQZL1OGIU4D04=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.459476+00 2025-12-17 16:40:01.459481+00 36709 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I8Kc5aSXeeYrOhS633VScBda0gg=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.462207+00 2025-12-17 16:40:01.462212+00 36710 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N7RvSZJdYDBpSTj0f0rmbtr4eLU=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.464868+00 2025-12-17 16:40:01.464874+00 36711 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pTUs2jN_8N4sajVtVaB8v20GXe8=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.467409+00 2025-12-17 16:40:01.467414+00 36712 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cNrNJoynALqc0cd1ZhPaw-He8YU=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.470502+00 2025-12-17 16:40:01.470508+00 36713 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K4htcj3klcb9Q1dhB67KrkrUEzk=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.473627+00 2025-12-17 16:40:01.473632+00 36714 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FRahDjo6w29zRGKperAv1HtvXuU=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.476271+00 2025-12-17 16:40:01.476276+00 36715 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V6Px5mIXFq3kRu2U-RFSLxp0bDM=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.478999+00 2025-12-17 16:40:01.479004+00 36716 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B_IkwG_AHmPOvAlnpcZMFaXnotE=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.481595+00 2025-12-17 16:40:01.481599+00 36717 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JNHyqAsYCoVi1vPlwlt54Mj7V6A=", "createTime": "2024-08-15 15:01:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.484203+00 2025-12-17 16:40:01.484208+00 36718 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:olBn3BQmyAtvA63orMiRn4euDjM=", "createTime": "2024-08-15 15:01:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.48684+00 2025-12-17 16:40:01.486845+00 36719 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ys-9c7fjW3kwpMcZtOxLMRLNgDI=", "createTime": "2024-08-15 15:01:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.489428+00 2025-12-17 16:40:01.489432+00 36720 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sV4Aw1ZU56STHpWbO0fUbm1AW38=", "createTime": "2024-08-15 15:01:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.492352+00 2025-12-17 16:40:01.492358+00 36721 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s0Llg1c1TPmlhAwIxxaJEscAhog=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.495654+00 2025-12-17 16:40:01.49566+00 36722 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_CMXFgr2ns1b4Pmuwfa_ONch-jE=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.498551+00 2025-12-17 16:40:01.498556+00 36723 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rSLebL7g8fnh9WfLI8BWN36eA64=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.501415+00 2025-12-17 16:40:01.501421+00 36724 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RUHNqT3Sne9Pa095hzus8mNcK0g=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.504258+00 2025-12-17 16:40:01.504263+00 36725 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HlYx6aakI0Xd6CfyebRAVdzXDUM=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.507061+00 2025-12-17 16:40:01.507067+00 36726 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7aaqCkOQAAf-9bB_Fa_wxn6YrKI=", "createTime": "2024-08-15 15:01:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.510356+00 2025-12-17 16:40:01.510364+00 36727 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:noOMICxW48zT6W9JHU1rO9KDGqw=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.516578+00 2025-12-17 16:40:01.516592+00 36728 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9XAt8AACUVeuoA07VYsYKQMWNW0=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.522963+00 2025-12-17 16:40:01.522975+00 36729 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zk_k79IAg08vhqRqGnJiHVjaHYk=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.528369+00 2025-12-17 16:40:01.528376+00 36730 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yIazXDqK-AJsr1jb4VamFR6wao0=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.531244+00 2025-12-17 16:40:01.531249+00 36731 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UbA2cNe1ck2SYj0qar9sk8jxqps=", "createTime": "2024-08-15 15:01:25"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.533653+00 2025-12-17 16:40:01.533658+00 36732 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wK9lCBTTVZPf1DEujBTiNW-lkAE=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.536584+00 2025-12-17 16:40:01.536589+00 36733 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yVv7JngE9tmImLhokr-Wj8QhPfc=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.539206+00 2025-12-17 16:40:01.539211+00 36734 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dV22To8JNjdLPFi6uLoemIx8HgE=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.541612+00 2025-12-17 16:40:01.541616+00 36735 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LSiBRstqNLgi7hgJAUAYrpNFlEY=", "createTime": "2024-08-15 15:01:27"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.543937+00 2025-12-17 16:40:01.543942+00 36736 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8hYMiRJ_D7zjK8Xskuy5TR8jmBU=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.546537+00 2025-12-17 16:40:01.546542+00 36737 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ade4D436nRCaHdqjYiN-128l2Gg=", "createTime": "2024-08-15 15:01:29"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.549067+00 2025-12-17 16:40:01.549072+00 36738 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-x-W7waw8Tew8PaqqcCfMvuI6rU=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.551664+00 2025-12-17 16:40:01.551669+00 36739 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x1rM8o6_hqnB1GXXFwWlcPvL2dg=", "createTime": "2024-08-15 15:01:29"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.557552+00 2025-12-17 16:40:01.557558+00 36740 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Totq_4CekUr5WExsgmrVm0oq4jw=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.374494+00 2025-12-17 17:00:00.374503+00 36954 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BBc68aTJap3dXVFy2KkxUznkl4A=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.560543+00 2025-12-17 16:40:01.560548+00 36741 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wHHDqd_3QQ2F2l5YWeZsVNyaN7g=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.563146+00 2025-12-17 16:40:01.56315+00 36742 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:grEBZkZykAafkaBjau3N0ldBdOs=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.565684+00 2025-12-17 16:40:01.565688+00 36743 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Tc373RYJQItdDHWg6ZMfxp9igo=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.56821+00 2025-12-17 16:40:01.568215+00 36744 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oaIeM2Sm_khAN9-2d9qdCN6WJcU=", "createTime": "2024-08-15 15:01:29"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.570809+00 2025-12-17 16:40:01.570814+00 36745 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g7W-KKi57AWBeQRQhqQlppoMo2w=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.573365+00 2025-12-17 16:40:01.573369+00 36746 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MDZ6rP4JZ0ZCbcPVHXEoRCriFDo=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.575876+00 2025-12-17 16:40:01.57588+00 36747 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JzjsDUL1jW8p3YCXVn4nAzH7cGE=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.578743+00 2025-12-17 16:40:01.578749+00 36748 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zhkncU3rc77rCy56TBbjGD1u2sA=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.581689+00 2025-12-17 16:40:01.581693+00 36749 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VX-AHN2fEbpqqPLcLt6rMGrpsHM=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.584176+00 2025-12-17 16:40:01.584181+00 36750 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Hk_0QDpH6ZrBT4m3Tahg_V6xnk=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N +2025-12-17 16:40:01.586656+00 2025-12-17 16:40:01.586661+00 36751 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=1766076000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AKzDI3iAcqxsGpZEoUQaE2Pr2eM=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.428761+00 2025-12-17 16:50:00.428776+00 36752 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n7mDcZ_rF9WIu4jZvrUUhxPMmOg=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.434384+00 2025-12-17 16:50:00.43439+00 36753 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r3dg6HEH2im9_QevGF9eFDI3NB0=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.437713+00 2025-12-17 16:50:00.437718+00 36754 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D2TcX8AI2vkBZxpswjS_d-tz1oI=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.440814+00 2025-12-17 16:50:00.44082+00 36755 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mqK-OP-OgM63zybzQnZwdAQKXYw=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.443907+00 2025-12-17 16:50:00.443913+00 36756 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vKio3MvYz44JDcuUcmqzIgVYAo8=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.446801+00 2025-12-17 16:50:00.446806+00 36757 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vs5ec1Gn_cC1JhSeoWLTT4tr3UU=", "createTime": "2024-08-15 15:01:33"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.449504+00 2025-12-17 16:50:00.449509+00 36758 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-tiBAEfv--ESnxGewNGsSo3ZpHk=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.452357+00 2025-12-17 16:50:00.452362+00 36759 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hoWyoOeFeI37DPZymKh2q_tMdFw=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.455241+00 2025-12-17 16:50:00.455247+00 36760 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SNsV-DaCbcPlKDHvvh_Wz2LL5y8=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.458145+00 2025-12-17 16:50:00.458151+00 36761 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fHmr5q_zAAMsmh9lKC5JGs374ZI=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.461231+00 2025-12-17 16:50:00.461237+00 36762 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wq3pQfT05oqZt2-39KwwOhMmHhw=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.464157+00 2025-12-17 16:50:00.464162+00 36763 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z8Hghf3gQMsUAXTtlyCWOsn_9sM=", "createTime": "2024-08-15 15:01:34"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.466781+00 2025-12-17 16:50:00.466787+00 36764 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lvmji64toTUlRHGX8HxQY7NDN-U=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.469349+00 2025-12-17 16:50:00.469354+00 36765 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1YujgslR_jlR92uEtiecScgCaqU=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.471981+00 2025-12-17 16:50:00.471986+00 36766 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4-Ie43qLRDzc2IPqM7joe1mqgfY=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.475191+00 2025-12-17 16:50:00.475196+00 36767 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XlYNyacUNrRYJ5PjzbDBjrWRdN8=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.478493+00 2025-12-17 16:50:00.478499+00 36768 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8FJlSOVq0-nTV4_zR4RmZJX4ZrE=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.481692+00 2025-12-17 16:50:00.481698+00 36769 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BOlCunZroN0Na5TK6d_S1b7O-y0=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.484639+00 2025-12-17 16:50:00.484644+00 36770 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ug7mlnB5bxmD9Zqy1YHNZP7YMaA=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.487278+00 2025-12-17 16:50:00.487283+00 36771 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bTOy_4GoDAnhSmQ6HyxcLISpqqs=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.490166+00 2025-12-17 16:50:00.490172+00 36772 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jc6YqHcGhS2g4i--aGK-PjJvtv4=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.493391+00 2025-12-17 16:50:00.493397+00 36773 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ygIOPwRfp39ftpj8LTwpsGt-nZE=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.496355+00 2025-12-17 16:50:00.49636+00 36774 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6mXQsfhG4UOtFf3IImZpLqZ15y4=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.499428+00 2025-12-17 16:50:00.499433+00 36775 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vzgWaBQ1pWCrzpj4NyEmFW_Nk3g=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.502288+00 2025-12-17 16:50:00.502293+00 36776 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-1gzhpulKCkAhmlkPj1-aE4J_RU=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.504909+00 2025-12-17 16:50:00.504915+00 36777 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a9anKaZX__K451kOCP2vWDL8mgk=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.507872+00 2025-12-17 16:50:00.507878+00 36778 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJFZ5QB0gOJfbFpNe7qYCgDwrmo=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.510915+00 2025-12-17 16:50:00.510921+00 36779 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pzde3udmSYcTuweNQ2ZncMCV4ew=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.514047+00 2025-12-17 16:50:00.514053+00 36780 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rWT1YsHP9Scm2fuJgUQk7d3AJxA=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.517573+00 2025-12-17 16:50:00.517579+00 36781 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cKEO2R_G8kc94ydwj8chorzkemM=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.520584+00 2025-12-17 16:50:00.520589+00 36782 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dI7ckaiyIee0TJ9NHmIAqpfZEIg=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.523838+00 2025-12-17 16:50:00.523844+00 36783 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:velOsMbLA1mFrKTW1OvegS9wAvk=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.526852+00 2025-12-17 16:50:00.526858+00 36784 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3WtKDryt3y2s2a3279z99UyPIkU=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.530016+00 2025-12-17 16:50:00.530023+00 36785 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e3y5PPzRnMW4CeuMnRWsyqiqJWE=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.53326+00 2025-12-17 16:50:00.533266+00 36786 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ciSJNtWvf8S6K0zCmWT3Y9ZAuo=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.536405+00 2025-12-17 16:50:00.536412+00 36787 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:595H7QaNWC85k34kmc6kNYmCHes=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.539352+00 2025-12-17 16:50:00.539357+00 36788 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iblXXqL5Ajtmq16yvG1_tMmnOKM=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.542184+00 2025-12-17 16:50:00.542189+00 36789 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VoSEzoD8P6XnXZA5aqZxYBp5kGo=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.545611+00 2025-12-17 16:50:00.545618+00 36790 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_lcVzMPBs7QIalaSiMRDCVFWdRk=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.549089+00 2025-12-17 16:50:00.549094+00 36791 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:79RvMOZtK1Hpu7BrFtU55aD-vdk=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.552537+00 2025-12-17 16:50:00.552543+00 36792 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-P05xZn1Y64ObUgvr5Vmf8eLZqM=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.555476+00 2025-12-17 16:50:00.555481+00 36793 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:50yEjEJNnqS4xFuaqYy7i-1ANlQ=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.558248+00 2025-12-17 16:50:00.558253+00 36794 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TTh4QEI_59V_39xqeu7d_azEIms=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.561103+00 2025-12-17 16:50:00.561108+00 36795 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ol1_if9oC_09hjV6vg93Xi1Ahvo=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.563916+00 2025-12-17 16:50:00.563922+00 36796 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZmH0k6jpogb5fSiP4eBkGCQhM4=", "createTime": "2024-08-15 15:01:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.566893+00 2025-12-17 16:50:00.566899+00 36797 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hEqemDOCi602rEP2Z4KlX4XCd10=", "createTime": "2024-08-15 15:01:38"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.569846+00 2025-12-17 16:50:00.569852+00 36798 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o9-fD5baGuzrCmRwsZi4qNMcXMk=", "createTime": "2024-08-15 15:01:39"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.57312+00 2025-12-17 16:50:00.573126+00 36799 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X51RZKF1iNttWpnE67MLwu_wB3w=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.576256+00 2025-12-17 16:50:00.576262+00 36800 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TxAejzyIvUQa6HG0KNjO661W5TA=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.579253+00 2025-12-17 16:50:00.579259+00 36801 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EizGlcMSoTi-KehnyVt0bF9NMzo=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.58567+00 2025-12-17 16:50:00.585676+00 36803 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kq-XvHlMwgYhJRIT1-KYAXJnvkI=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.588732+00 2025-12-17 16:50:00.588739+00 36804 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gRPY-05WP4PayDrI4-tp6vwpRig=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.591656+00 2025-12-17 16:50:00.591662+00 36805 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FVO5zh-0zJdCNIIc7jZqWWjskBw=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.594718+00 2025-12-17 16:50:00.594724+00 36806 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o2uMdT9c_08h3bUFjBcm0O65w4E=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.597984+00 2025-12-17 16:50:00.59799+00 36807 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w7WsKn_2cVTu1bXHXimlGdBOoTc=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.601143+00 2025-12-17 16:50:00.601149+00 36808 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lxiy-5q7ss_uujpELckmLZWQMLA=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.603882+00 2025-12-17 16:50:00.603888+00 36809 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7xPcp1QOMRJoY2sZOmt5Eb5B1-U=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.582476+00 2025-12-17 16:50:00.582483+00 36802 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tVL0axeo9-I3m2KADunJVscE-SQ=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.610599+00 2025-12-17 16:50:00.610607+00 36810 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oLbQV8U_yQM3e7k-VQmdll6q5U4=", "createTime": "2024-08-15 15:01:42"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.613704+00 2025-12-17 16:50:00.613711+00 36811 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3IdFsE7GCINKNDECYYxoCUVX5_8=", "createTime": "2024-08-15 15:01:42"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.616723+00 2025-12-17 16:50:00.61673+00 36812 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7LZtIPF60AMyZNZIxonNzxTeHmI=", "createTime": "2024-08-15 15:01:42"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.619576+00 2025-12-17 16:50:00.619583+00 36813 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qbdsvZAHNtLBjN4wnV-cefmc4Jw=", "createTime": "2024-08-15 15:01:42"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.622759+00 2025-12-17 16:50:00.622766+00 36814 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uHuhLTA4LG2Ub-WWIXbnX4RcMMs=", "createTime": "2024-08-15 15:01:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.626009+00 2025-12-17 16:50:00.626016+00 36815 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mdRiDv_AnYW1nzzi2l4IIUhfP_s=", "createTime": "2024-08-15 15:01:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.629075+00 2025-12-17 16:50:00.629081+00 36816 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dnyou5ppx_1c4FELeSZpE1iINQE=", "createTime": "2024-08-15 15:01:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.632139+00 2025-12-17 16:50:00.632145+00 36817 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DySuuaJqsLIwZ5CD3MmW5JoRmoE=", "createTime": "2024-08-15 15:01:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.635056+00 2025-12-17 16:50:00.635062+00 36818 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DYQbhb4_oNNoA7GWWxKvSgKrZAc=", "createTime": "2024-08-15 15:01:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.637868+00 2025-12-17 16:50:00.637873+00 36819 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2m9aJRljwKk59GM8u5u58svHhDQ=", "createTime": "2024-08-15 15:01:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.640705+00 2025-12-17 16:50:00.640711+00 36820 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pLnrFdGc6tS6LJIf56bXGFnP9bc=", "createTime": "2024-08-15 15:01:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.64372+00 2025-12-17 16:50:00.643726+00 36821 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-hkQnS3r7jTakcGL76AZzxfM7BQ=", "createTime": "2024-08-15 15:01:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.647026+00 2025-12-17 16:50:00.647032+00 36822 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JcahNfl381zWjQ6_FPmrLqBPm5k=", "createTime": "2024-08-15 15:01:45"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.650293+00 2025-12-17 16:50:00.650299+00 36823 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9UShUeEbmPFpEhs3WNmEEI7jM2s=", "createTime": "2024-08-15 15:01:44"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.653088+00 2025-12-17 16:50:00.653094+00 36824 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VGxMmPRWLrQpi0brBoQ2pVMwrV0=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.655986+00 2025-12-17 16:50:00.655992+00 36825 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3MDVK25Bx7M74KC9fyl98YRkyZg=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.659342+00 2025-12-17 16:50:00.659348+00 36826 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S6WQdN3GycMaytlzV3zcRnTs9GM=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.662733+00 2025-12-17 16:50:00.66274+00 36827 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S3gMetkja_vzO4ibNMGFbIuYBfo=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.665791+00 2025-12-17 16:50:00.665797+00 36828 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uwLwn6zc7iVwQ6oXx75_vxfgRHg=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.668649+00 2025-12-17 16:50:00.668655+00 36829 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j984A8wrgDLNHRrNYPdhx59Qb30=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.671608+00 2025-12-17 16:50:00.671613+00 36830 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rflr8Nkgv9YEf3834hAiYNqQEI4=", "createTime": "2024-08-15 15:01:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.674546+00 2025-12-17 16:50:00.674552+00 36831 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ZUFPfOz3C8xnidJ7iKdgFWKVaA=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.677955+00 2025-12-17 16:50:00.677962+00 36832 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-cZrOC5pv_KsPv7hpwm5LxLud0=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.681298+00 2025-12-17 16:50:00.681306+00 36833 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qUWmE9aJBDGRh0VfD70gbY6ZOnM=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.684643+00 2025-12-17 16:50:00.68465+00 36834 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8yCIvsXc0KN2XP0W7hxo7fm76KQ=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.687845+00 2025-12-17 16:50:00.687852+00 36835 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7c5JvZGR5w1QKpH4Fa-X_bt_Y3g=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.69105+00 2025-12-17 16:50:00.691057+00 36836 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AYhhGfMurKJ1EOuWVqxKt5PQ6jw=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.694515+00 2025-12-17 16:50:00.694522+00 36837 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0-sxIT0-D3J_XW6SAlTHC93l804=", "createTime": "2024-08-15 15:01:48"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.69809+00 2025-12-17 16:50:00.698097+00 36838 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s9J8-yOsgFw6-1-_3eSUs5aEYow=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.701357+00 2025-12-17 16:50:00.701363+00 36839 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KgC8-1EcvYXEiZaj7iEcqOzn8IQ=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.704154+00 2025-12-17 16:50:00.70416+00 36840 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T8G70uion7mWUSz5OZjjd6ufbqg=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.707089+00 2025-12-17 16:50:00.707095+00 36841 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BabwAxUzXAAdOX9wV1hLUqeiClk=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.710001+00 2025-12-17 16:50:00.710008+00 36842 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p131KwNzf-fO7cFQm7Z7ArGbw9c=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.712988+00 2025-12-17 16:50:00.712993+00 36843 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T4IZ0dzIksH1LHIRTGDoR6Odon0=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.715936+00 2025-12-17 16:50:00.715942+00 36844 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HZik2aPkSAYOp8klNO7q3CmAGnY=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.718764+00 2025-12-17 16:50:00.718769+00 36845 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XG2m8PCXH7JtfCoOkYrMA8dehmg=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.721865+00 2025-12-17 16:50:00.721871+00 36846 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k44Q4ifd2v4c-v7Bh3NhikQF6cc=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.725109+00 2025-12-17 16:50:00.725115+00 36847 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1d9xpZ4pDf41zSXt8TI4-DutW5I=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.728119+00 2025-12-17 16:50:00.728124+00 36848 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V7v8-bGO_15vQVPmBR3HrXKHgSM=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.73106+00 2025-12-17 16:50:00.731066+00 36849 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GIFZ5LoYUNp9KqknZ42quu5bsoU=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:00.733876+00 2025-12-17 16:50:00.733883+00 36850 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=1766076599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f95oSYjld28pbUw1sVhXCMe4QMM=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.106847+00 2025-12-17 16:50:01.106856+00 36851 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gh0lKB7gLXv9FxwlP1xKZekMQfM=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.11066+00 2025-12-17 16:50:01.110666+00 36852 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wGYEp0IfT--E6SzawssalwsUxwI=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.114002+00 2025-12-17 16:50:01.114009+00 36853 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LesLSk97x51qSWsUxpJYjjDCZ98=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.116993+00 2025-12-17 16:50:01.116998+00 36854 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WnJJsSaYjrg0FkewpRl_eMszcCs=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.120011+00 2025-12-17 16:50:01.120016+00 36855 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gjmhk4wms0h1_EM9oURZ5KHQGyQ=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.123701+00 2025-12-17 16:50:01.123707+00 36856 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fXPuWeerOoANtaY0eXesyyVLvdM=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.126991+00 2025-12-17 16:50:01.126998+00 36857 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KggxyTKmkn_vUSYQO9L38xHrFlE=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.130339+00 2025-12-17 16:50:01.130344+00 36858 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dx66i-nXnaP_Q6waDgToAG-hR8U=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.133327+00 2025-12-17 16:50:01.133332+00 36859 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nLK_uCkqsCVV-u3Zt7A5yTEa2LE=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.136239+00 2025-12-17 16:50:01.136243+00 36860 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MIFZDdYybyTry0PJ9zGIZvp43FY=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.138807+00 2025-12-17 16:50:01.138813+00 36861 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RPcR_iB_ezfSwrAf1CR-c79RCJw=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.141506+00 2025-12-17 16:50:01.141512+00 36862 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kIg09EPFEnEautI8L8wTBv23vWU=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.144406+00 2025-12-17 16:50:01.144412+00 36863 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pOq11yxWxl3bbs1A590iJeAzTpM=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.147258+00 2025-12-17 16:50:01.147263+00 36864 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wa_0xK_MLc5gj8HnqE_JMhOhFM4=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.149878+00 2025-12-17 16:50:01.149883+00 36865 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JXWMW1lLCXGcLTa8uKgzm5EQKiA=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.152421+00 2025-12-17 16:50:01.152426+00 36866 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vf_N5x1EScdOfs_7cRrTBJu6_b0=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.155354+00 2025-12-17 16:50:01.155359+00 36867 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5glxaRwRHW1rQfDCSLSinqXEy6k=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.158389+00 2025-12-17 16:50:01.158393+00 36868 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K89PZbxv4wu_guuovt8dJGpiVBo=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.161173+00 2025-12-17 16:50:01.161178+00 36869 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rCIA-aI3k_g6z6R7DIqT6HKWgOY=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.163985+00 2025-12-17 16:50:01.163991+00 36870 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pefaDFv6AovN6ZJto0JhlvYbiqA=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.166633+00 2025-12-17 16:50:01.166638+00 36871 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vWDzhAKIQyqkusJgmgCMX-KFAcU=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.169233+00 2025-12-17 16:50:01.169237+00 36872 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:675S2Ki9CqSjRKVLmpejkViXalg=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.171816+00 2025-12-17 16:50:01.171822+00 36873 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nHtNZTqmrBYv70IHxk3uL3OlPis=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.174922+00 2025-12-17 16:50:01.17493+00 36874 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qqbKD6Qqv5VeNu7hiUtQNQrhnII=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.178517+00 2025-12-17 16:50:01.178523+00 36875 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RcqjdUfuLdoxFNY5wBlebQs9nzc=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.18183+00 2025-12-17 16:50:01.181835+00 36876 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e_hKyjKgDyVlg4RI8BJWUlyKbks=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.184597+00 2025-12-17 16:50:01.184602+00 36877 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oTYPVojObE_SS-iWWKkEQe5cvpc=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.187371+00 2025-12-17 16:50:01.187376+00 36878 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_mGM7Dbs4HHejrsFPYXmQbVsRXI=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.190264+00 2025-12-17 16:50:01.190271+00 36879 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_P0ETsRWPEN2HJWtHdBgioedau8=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.193207+00 2025-12-17 16:50:01.193212+00 36880 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VXxlYTVyUhmVLll66rxsZnilcFc=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.19611+00 2025-12-17 16:50:01.196115+00 36881 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nzCSltXEFn8pc2TN70qTXlsSlmo=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.198941+00 2025-12-17 16:50:01.198945+00 36882 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fAxy1t5AeB5boefJ7OsBVRZs3E0=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.201841+00 2025-12-17 16:50:01.201845+00 36883 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xuuMnx-Og6QDWPQdUovlFEH7rgg=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.204676+00 2025-12-17 16:50:01.204682+00 36884 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yX9Sysii-y3eIsKEoT_YMywQUgc=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.20769+00 2025-12-17 16:50:01.207696+00 36885 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WW0ghXPhNcGCPESf5-2d-STYBPg=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.210553+00 2025-12-17 16:50:01.210558+00 36886 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qmEMEhjw9P6jc7ro2WV_hjwzrUA=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.213304+00 2025-12-17 16:50:01.213309+00 36887 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nY57KLpKCTiGnmhV3F9yLnOnyf0=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.216025+00 2025-12-17 16:50:01.21603+00 36888 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hBtvmZe-vw7NWJqtEzfF3A7i6d8=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.218681+00 2025-12-17 16:50:01.218686+00 36889 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yD_wg5F3ZQktU0HV-SvNuzna3gw=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.22117+00 2025-12-17 16:50:01.221175+00 36890 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ENswYeT_b6QbYuiPmbXfNCWrc84=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.224428+00 2025-12-17 16:50:01.224434+00 36891 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8lJrgPy1vQjO_zvhpGpEYvOJOYw=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.22756+00 2025-12-17 16:50:01.227569+00 36892 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5MIAhUjAxbxZFwgUjoORsyR59sE=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.230293+00 2025-12-17 16:50:01.230298+00 36893 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uSQU4NKMfz1U_-RmwX0MJ3U1gqo=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.23296+00 2025-12-17 16:50:01.232965+00 36894 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DM-OitAK6oQUPzjRVAZMG2bBW0s=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.235537+00 2025-12-17 16:50:01.235542+00 36895 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wlR88ikkZYNKyYldCtJnG1sS2Jo=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.23817+00 2025-12-17 16:50:01.238177+00 36896 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-bJh87Njuc8opFUrGkJ7K5JB7V0=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.241231+00 2025-12-17 16:50:01.241237+00 36897 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VQ74L9KEIQYtlKH3jEeYa0Bufik=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.244288+00 2025-12-17 16:50:01.244294+00 36898 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c1DOua4wsMgfO6d-UClPqXHJiD0=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.247499+00 2025-12-17 16:50:01.247504+00 36899 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7FzAl8yTSsqCmzrcV83UlK-UO5Y=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.250759+00 2025-12-17 16:50:01.250764+00 36900 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDIQpWoapYCoJIAVu5Y7KlLA7Ak=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.25357+00 2025-12-17 16:50:01.253575+00 36901 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i4STTuUFy_eITkNnU7_ZTTlYEeI=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.256439+00 2025-12-17 16:50:01.256445+00 36902 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dtR-6epYi4YqWMP2qyAkY7ZL9Uw=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.259304+00 2025-12-17 16:50:01.25931+00 36903 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xCQlCFJjcI2mztLACZFjvxF1KR0=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.26237+00 2025-12-17 16:50:01.262376+00 36904 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R2PGd4BqI8GBgEw-MMtvqaquxo8=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.265337+00 2025-12-17 16:50:01.265343+00 36905 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HiPqlkgvJB--Qlg62bWkg0DvrvE=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.268231+00 2025-12-17 16:50:01.268237+00 36906 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G0Rd6DASc3zbngf5SoT3ktHIohI=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.271357+00 2025-12-17 16:50:01.271363+00 36907 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vUF679_wxD0DUX_MjZ4cNOGEdwg=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.275105+00 2025-12-17 16:50:01.275111+00 36908 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Ey1flMyNhcdA9WwuajEvKBRTeQ=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.278356+00 2025-12-17 16:50:01.278363+00 36909 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QRTrPA6JKtVbSL5fGHcXpdK8nec=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.281236+00 2025-12-17 16:50:01.281241+00 36910 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sl5nGYTvaEQ9EzwjhLOfFYCUEFc=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.284022+00 2025-12-17 16:50:01.284028+00 36911 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lc6q2bbnUdXElg69DGO5It24mFI=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.286633+00 2025-12-17 16:50:01.286639+00 36912 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZYuxXYfJAKd09UTy4wBpEkkU0-I=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.289601+00 2025-12-17 16:50:01.289608+00 36913 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ihtt-xKAtklXldbFIkwpkAuHiuI=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.292363+00 2025-12-17 16:50:01.292368+00 36914 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mru2P7FsCWVs4De_SD9u4G6p-g8=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.295562+00 2025-12-17 16:50:01.295569+00 36915 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OEkAu-YIFKI0vMn8oLub7umuvHo=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.298633+00 2025-12-17 16:50:01.298638+00 36916 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hZ_BalFHqO36Ngr7kUwoX4qz1wk=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.301247+00 2025-12-17 16:50:01.301252+00 36917 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c9m9bD9uoGXtGTKaydBhyHxbqDg=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.303775+00 2025-12-17 16:50:01.30378+00 36918 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3llclklh61tYzUrsmcNYiq8uEKU=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.306787+00 2025-12-17 16:50:01.306792+00 36919 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RPkvZTJT5UVGZvRmw4H-SFyuIgg=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.309634+00 2025-12-17 16:50:01.30964+00 36920 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:daG8om6g5KNJSf9PfG_o4RwVRLU=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.312456+00 2025-12-17 16:50:01.312461+00 36921 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:snxzitMOnCUegcWqeP5L1zXLefE=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.315159+00 2025-12-17 16:50:01.315164+00 36922 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2El6pqGyAGlcK_EwWpB5SMtvuBs=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.318079+00 2025-12-17 16:50:01.318084+00 36923 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZUKmCgi9NO1V_iEUqFbiqNx2AJU=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.320983+00 2025-12-17 16:50:01.320988+00 36924 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d9RTGUoy1ygbawXTYYrs-gXMv-I=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.323913+00 2025-12-17 16:50:01.323918+00 36925 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uH6Qr1VbQELQAzwLoe_LgXzbZ6U=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.32705+00 2025-12-17 16:50:01.327056+00 36926 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J5OC6XbXFyCCUB8og7dYTNTkByc=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.330121+00 2025-12-17 16:50:01.330127+00 36927 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0lIaAeSxrSTS8HpIShezQAG3aIs=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.333242+00 2025-12-17 16:50:01.333249+00 36928 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_SQshdA5B53RHdQ3-GnYqu7LLps=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.336227+00 2025-12-17 16:50:01.336232+00 36929 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:45U7dmYWn_YM7eRVSunXPkcBL7c=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.338926+00 2025-12-17 16:50:01.33893+00 36930 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gSmvO17SpiRQXJv8VhkLL5nabOo=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.341943+00 2025-12-17 16:50:01.341948+00 36931 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mGCu-SoKgPR0FZL4XPBcv8Rq4GU=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.345114+00 2025-12-17 16:50:01.34512+00 36932 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CIbzlViMjaLtJVWEFM0QAopguy8=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.347841+00 2025-12-17 16:50:01.347846+00 36933 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sB4IOba3LB0bcrMZ2ighmjfPoXw=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.350411+00 2025-12-17 16:50:01.350417+00 36934 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dgZM_7ertJyecubXDk8o6WzgHLk=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.35326+00 2025-12-17 16:50:01.353266+00 36935 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YQLg1xVRj1leyEAUPATCc1D0CLc=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.356029+00 2025-12-17 16:50:01.356034+00 36936 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XQh9B5f42nWLuj-k288UaFotSJg=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.358657+00 2025-12-17 16:50:01.358662+00 36937 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0hWkmFlEehKHuaObz-L2DTtUjns=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.361637+00 2025-12-17 16:50:01.361642+00 36938 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kO_dngVf2_ZJ9ExlGCjScbE66YA=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.364827+00 2025-12-17 16:50:01.364832+00 36939 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDzz-TwZB8K1WxfjBHPi_M2OjMw=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.367787+00 2025-12-17 16:50:01.367792+00 36940 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gYXpdudfO4-_dosFhkgQScoMUZQ=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.370323+00 2025-12-17 16:50:01.370328+00 36941 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ia-3XGJqPvMCdGsj9DaqcEua44k=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.373126+00 2025-12-17 16:50:01.373132+00 36942 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s9HfktPaGVKg_5owDvTW4yT4few=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.376068+00 2025-12-17 16:50:01.376073+00 36943 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FjvYJkDcnS853GI5agSG4kbs7eA=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.379049+00 2025-12-17 16:50:01.379055+00 36944 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:st9wKEW1FjG-C6DNWfnefpOjlTY=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.381731+00 2025-12-17 16:50:01.381736+00 36945 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sLpQgKFxR8Tcep9VudvIqgkR15M=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.384476+00 2025-12-17 16:50:01.384481+00 36946 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PDphOBJ_GLpqJwS7YeGudxbXf78=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.387431+00 2025-12-17 16:50:01.387436+00 36947 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jZ_2St2Gi7K6ZkViaUw3-mC-z6U=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.390709+00 2025-12-17 16:50:01.390714+00 36948 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gEIewf8N-TV0DDhCvYmr-cK26Po=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.39366+00 2025-12-17 16:50:01.393666+00 36949 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:osBtPzOoYhn8T2wibBTP9NhVX28=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N +2025-12-17 16:50:01.39654+00 2025-12-17 16:50:01.396544+00 36950 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=1766076600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9tWwwTYwRHnQY2UTGcWDxRRMaJI=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.377539+00 2025-12-17 17:00:00.377545+00 36955 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HDePMvjd7Iu1iFccudoyku1Ytcw=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.38067+00 2025-12-17 17:00:00.380676+00 36956 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bCQUNU1V77ZKQep8OftPjPclL38=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.383606+00 2025-12-17 17:00:00.38361+00 36957 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uClfQvmVQqPLaJnanyfiZz47Shc=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.386351+00 2025-12-17 17:00:00.386358+00 36958 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w6A2zOZO1ENJ-nfceQpOm1iHAMM=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.389437+00 2025-12-17 17:00:00.389443+00 36959 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f4qHByG5Qc1mMWLv5srHFGiQYhs=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.392102+00 2025-12-17 17:00:00.392108+00 36960 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-1sjb49qBA7Peox_eOH1bxB0vf4=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.394806+00 2025-12-17 17:00:00.394812+00 36961 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Z_-6QVlKa8GsbAiiHZsmiJpfzA=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.397426+00 2025-12-17 17:00:00.397431+00 36962 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sdqu9zgUJUCrO-WUw2DEE78m6j0=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.40032+00 2025-12-17 17:00:00.400325+00 36963 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0gUyrrWZITXrXVCqWcN_szsSrg0=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.403334+00 2025-12-17 17:00:00.40334+00 36964 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iIhdpWldeklcK946NZUuFMsnt7w=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.408097+00 2025-12-17 17:00:00.408105+00 36965 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8rW3v1cTjURcwILHUjJQ5OqFdbU=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.411324+00 2025-12-17 17:00:00.411329+00 36966 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hwrhvzYSOCVC-g4BmVIV5SwK_zE=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.414015+00 2025-12-17 17:00:00.41402+00 36967 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tx-nJE0TPebqa0hvVwLC_ellA_Q=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.416762+00 2025-12-17 17:00:00.416772+00 36968 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m9XyQ6QjHpnxDCUrcwq0WxX-5_M=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.419748+00 2025-12-17 17:00:00.419755+00 36969 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TLzlJDDNpnFbsOKWmRM_GoTurDM=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.422689+00 2025-12-17 17:00:00.422695+00 36970 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GB60O5vS0AwJ4a_p88DdTkTJJpk=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.426131+00 2025-12-17 17:00:00.426139+00 36971 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MfMXyL7slsCyAMCJp3zHRsz-ZKk=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.429547+00 2025-12-17 17:00:00.429552+00 36972 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T8mTyKv2G97_X-SWJ9Dv96KOP_A=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.432427+00 2025-12-17 17:00:00.432432+00 36973 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fhhAfkIZHOn71TmL2Ut1TWaQjZs=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.435295+00 2025-12-17 17:00:00.435302+00 36974 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q91LvtrLIJMl5FWzBN30w75qH7I=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.438487+00 2025-12-17 17:00:00.438493+00 36975 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jNkSAPa20pX1h0DDpv6FW5BPxBE=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.441557+00 2025-12-17 17:00:00.441566+00 36976 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oj-fyu94caP1gpzXy5uaYCdaZ2U=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.44441+00 2025-12-17 17:00:00.444416+00 36977 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B0ralm-eJ0Wg6hN6Ldyz9bncSPw=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.447205+00 2025-12-17 17:00:00.44721+00 36978 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zCFY5A6nD_ESpbHfsg4gXndqouk=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.450326+00 2025-12-17 17:00:00.450332+00 36979 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1LqJjZm5lwW3pe_GDGjOytL_4Ns=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.453738+00 2025-12-17 17:00:00.453744+00 36980 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UdW7wphBbG1O5Zsrl7JK6llvoRQ=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.457174+00 2025-12-17 17:00:00.457179+00 36981 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8_Leuo73nWyaKWg3LwmRKmJpu50=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.460433+00 2025-12-17 17:00:00.460439+00 36982 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xM6OwX5F0T-gG6fdYelyokUUmJg=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.46356+00 2025-12-17 17:00:00.463569+00 36983 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kz62DQrGGllau24zflgML-QXIXk=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.466741+00 2025-12-17 17:00:00.466747+00 36984 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:71WKd0tgOMLKSP_MoFKOCWMTIA8=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.470294+00 2025-12-17 17:00:00.4703+00 36985 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ssu-ijRTrAXEyoc-2aUbQqHjcuY=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.473674+00 2025-12-17 17:00:00.47368+00 36986 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BEL6yOZsQyDjibZRdkWP-Y1Q38I=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.476756+00 2025-12-17 17:00:00.476762+00 36987 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xrs_BJIDf4IgJmZtegdqzFoUF3I=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.479648+00 2025-12-17 17:00:00.479653+00 36988 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fa7ychD58lY5jOA029MxYPfHw54=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.482454+00 2025-12-17 17:00:00.48246+00 36989 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QDlP4giYfVZ_mdAl6Ygx2iXV10o=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.48544+00 2025-12-17 17:00:00.485446+00 36990 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZZBsJKriBoGDKfvdnowHpyelEPE=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.488822+00 2025-12-17 17:00:00.488828+00 36991 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NUA4Wj7cNHptm3cjtQuVQbGmOiI=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.491999+00 2025-12-17 17:00:00.492005+00 36992 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LqJYHkphf7_73GA73wBrhUaXD3w=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.494773+00 2025-12-17 17:00:00.494778+00 36993 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aU35xPxDIy-B8AWfJwawiEY3cjI=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.497629+00 2025-12-17 17:00:00.497636+00 36994 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:asLLgfO_F5gVu0agmnx76FNIcRY=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.500812+00 2025-12-17 17:00:00.500818+00 36995 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kc4rAXepoheSP357VYhT5GCVqxw=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.504225+00 2025-12-17 17:00:00.504232+00 36996 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qnQwvIDIe-0vlEZcrkIHil8-S38=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.507662+00 2025-12-17 17:00:00.507668+00 36997 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mx76mOtWPteuvU0MMMe-qwW2jHc=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.510797+00 2025-12-17 17:00:00.510803+00 36998 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m46fVlixz25pnnfNmkhb7S7XeGs=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.51355+00 2025-12-17 17:00:00.513556+00 36999 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3hifO4yi-kZAMyJlBOEFy6hCKpI=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.516367+00 2025-12-17 17:00:00.516372+00 37000 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3uSP0NLePHnlMEu84uWoL56Q2bw=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.51951+00 2025-12-17 17:00:00.519516+00 37001 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dIx5oD2L4cn-b-pYknNjrw5ljgM=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.522589+00 2025-12-17 17:00:00.522594+00 37002 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9RchRmgVtI4uLcu7DrkOwf6PeOQ=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.525769+00 2025-12-17 17:00:00.525774+00 37003 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eq9wn8OKPWqtU_6x27fP_u0UR08=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.528566+00 2025-12-17 17:00:00.528572+00 37004 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fXDH5A1-H9fRtIip20kTOt0VsY0=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.531219+00 2025-12-17 17:00:00.531224+00 37005 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3cdvrROqn3W3wQUIgDWUJqdwVbk=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.533827+00 2025-12-17 17:00:00.533832+00 37006 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sw1-xk19IPnigJZGQhPBRRQz06A=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.536875+00 2025-12-17 17:00:00.53688+00 37007 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xOAMhRiV4ykv6_-q8PllM6Ls5-8=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.539839+00 2025-12-17 17:00:00.539844+00 37008 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IX_Cjl33Q9wJm469X6KDDH7m6fE=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.542577+00 2025-12-17 17:00:00.542583+00 37009 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VHTX_3YdCR1SBY6gEw1wwf2MmPY=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.545355+00 2025-12-17 17:00:00.545361+00 37010 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eO4VM6Q8tgxLdG5i82sFrxOdK1U=", "createTime": "2024-08-15 15:02:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.548672+00 2025-12-17 17:00:00.548678+00 37011 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JnSK4homc-yaXvYWfMRWjd3npl0=", "createTime": "2024-08-15 15:02:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.552419+00 2025-12-17 17:00:00.552427+00 37012 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k3QdHQ_-4PK7OmCFtuh_RqK2kRo=", "createTime": "2024-08-15 15:02:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.55579+00 2025-12-17 17:00:00.555796+00 37013 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:95tlkHB_cAC_RGKegBKDJmMyBrE=", "createTime": "2024-08-15 15:02:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.558853+00 2025-12-17 17:00:00.558859+00 37014 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:swPKsZ2agRDH8eeNqYamKrzjGZk=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.561536+00 2025-12-17 17:00:00.561541+00 37015 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ruHvglaUeJLWEZVFHrAdtuWSirI=", "createTime": "2024-08-15 15:02:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.564288+00 2025-12-17 17:00:00.564293+00 37016 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XWxvF0kOlMGAFXySQ5Hdg-ybK2g=", "createTime": "2024-08-15 15:02:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.567208+00 2025-12-17 17:00:00.567215+00 37017 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Sp9YNcFJhNH5HfWLto_Se0UA04=", "createTime": "2024-08-15 15:02:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.570336+00 2025-12-17 17:00:00.570342+00 37018 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XO0-JMwIMlvrx_sJfg32bbNufNg=", "createTime": "2024-08-15 15:02:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.573532+00 2025-12-17 17:00:00.573538+00 37019 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kcy3bL61SJNI2xg7Epj9TMFiFyA=", "createTime": "2024-08-15 15:02:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.587788+00 2025-12-17 17:00:00.587793+00 37024 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r9zsqry1ubJtbNNd0zm8AcIbqf4=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.576635+00 2025-12-17 17:00:00.57664+00 37020 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YQsiqkHf01BmQSAjaIFn8x2pVp4=", "createTime": "2024-08-15 15:02:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.579156+00 2025-12-17 17:00:00.579161+00 37021 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_uqyClHho7E3ZMu4jojjky2YlpE=", "createTime": "2024-08-15 15:02:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.581839+00 2025-12-17 17:00:00.581844+00 37022 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_kSqWOzQpvbaAlFt97ipeXhbn14=", "createTime": "2024-08-15 15:02:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.584675+00 2025-12-17 17:00:00.584682+00 37023 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0-Twr8ZUHeXfWJ_045-pnUdEnW0=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.590702+00 2025-12-17 17:00:00.590707+00 37025 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ni_3UokEGWlPF7BaXDK0ja7JhmM=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.593356+00 2025-12-17 17:00:00.593361+00 37026 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UNdqkTHo-50VyOlkhGy0hnxgY34=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.596167+00 2025-12-17 17:00:00.596172+00 37027 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FSnvyGabM2Sv6kynCJZCTEw65KE=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.599024+00 2025-12-17 17:00:00.599028+00 37028 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ybEb2aUzj4jpl1THfE-I9oVuHAY=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.601703+00 2025-12-17 17:00:00.601708+00 37029 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:luJmwjjU-CnKEniidJI2zuJ8kbg=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.604667+00 2025-12-17 17:00:00.604672+00 37030 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6WHnOeRXuYfYk8wpgxeQi5piKis=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.607601+00 2025-12-17 17:00:00.607608+00 37031 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zjfFW34fLT6Ej60-KsO0a94Jb9g=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.610261+00 2025-12-17 17:00:00.610266+00 37032 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o143sxBexrj6dSMWje_64bfuOlc=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.612826+00 2025-12-17 17:00:00.61283+00 37033 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gzuf1rQayCUrgyYgbLDTcZenYFE=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.615457+00 2025-12-17 17:00:00.615462+00 37034 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EHxWcjN7AWoHnAcdXLFrAc52zXM=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.619026+00 2025-12-17 17:00:00.619034+00 37035 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FmCmac4v18YjHDPOtYc7srooITM=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.622737+00 2025-12-17 17:00:00.622743+00 37036 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JNrcrwH765YS7QxQXowDjnsiyuM=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.626009+00 2025-12-17 17:00:00.626014+00 37037 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q3GfGf9LBog5WwGXQMCV6_i7RxA=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.628926+00 2025-12-17 17:00:00.628932+00 37038 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sSP1fML7Faa6gcMzRWvg4XCwC4I=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.631644+00 2025-12-17 17:00:00.631649+00 37039 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7jZkICVCiKOUvPcv5C4qtHzEjg4=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.634374+00 2025-12-17 17:00:00.634379+00 37040 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A8XBMgf12iKYOT-kDFlxz0PXnZ0=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.637352+00 2025-12-17 17:00:00.637358+00 37041 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2VgUM_LxOeWHkI6ZqAePmP7GQZE=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.640176+00 2025-12-17 17:00:00.640181+00 37042 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xQmPbvwG9wVM04QhQhQgZmkA-qc=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.643069+00 2025-12-17 17:00:00.643073+00 37043 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wfIdnnh-Hhm9KwYS_GukvMKqZyg=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.64589+00 2025-12-17 17:00:00.645895+00 37044 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zmkQmz2e-yiZF7cn9e-D_VQMu2g=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.648425+00 2025-12-17 17:00:00.64843+00 37045 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sjZssW5ZRC5AcI8nQN2lkLVqo3k=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.651153+00 2025-12-17 17:00:00.65116+00 37046 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9tNnne71ZDfl6sja4SszhZEl0dU=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.654404+00 2025-12-17 17:00:00.65441+00 37047 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ki4da8vWCPjkqh6eQgM2SXQm0aY=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.657625+00 2025-12-17 17:00:00.657631+00 37048 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Ln5oyZYQjvX5bcp3ZqBvWEjwT4=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.660456+00 2025-12-17 17:00:00.660462+00 37049 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tr93tHidAwBHVkvBDkiwnBNh_xM=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:00.663297+00 2025-12-17 17:00:00.663302+00 37050 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=1766077199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qlgkRI5oWQ8PJ9PZijv4wCoz830=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.281153+00 2025-12-17 17:00:01.281161+00 37051 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CM2v-z511RM2gaf2KOB2856qj8E=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.285176+00 2025-12-17 17:00:01.285184+00 37052 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:82OWc08-WN8YnD97jopRjpfxkT8=", "createTime": "2024-08-15 15:02:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.288535+00 2025-12-17 17:00:01.288542+00 37053 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dkWhW7Xq08RBkc3rvruSxNW4o5M=", "createTime": "2024-08-15 15:02:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.291924+00 2025-12-17 17:00:01.29193+00 37054 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7bPq-nqUE13Zf6qKfNi9NP0e1lg=", "createTime": "2024-08-15 15:02:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.294895+00 2025-12-17 17:00:01.294901+00 37055 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AUXFQmdWqYSxMAsu3r65zvdhYi4=", "createTime": "2024-08-15 15:02:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.298037+00 2025-12-17 17:00:01.298042+00 37056 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sh1h8b7knLSfGL3WVIx3BcMCT4Q=", "createTime": "2024-08-15 15:02:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.30115+00 2025-12-17 17:00:01.301156+00 37057 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p5lc013cM_zBH1NLHth7g9MPBuE=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.304439+00 2025-12-17 17:00:01.304446+00 37058 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NxTZ7nb-rGlQPsYdWumvODOYURk=", "createTime": "2024-08-15 15:02:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.307696+00 2025-12-17 17:00:01.307702+00 37059 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Fpx_nc6Rb4OgEa85U5wLdqvLpY=", "createTime": "2024-08-15 15:02:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.310669+00 2025-12-17 17:00:01.310675+00 37060 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B-qbyAED-2c4O_UHhKaaQ_uenq0=", "createTime": "2024-08-15 15:02:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.313534+00 2025-12-17 17:00:01.313539+00 37061 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ytxvZCQHxJJvlKHk35UeozABfYs=", "createTime": "2024-08-15 15:02:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.316336+00 2025-12-17 17:00:01.316342+00 37062 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2zQ02D4XaA4S-mM8FJsC9uw4wJ4=", "createTime": "2024-08-15 15:02:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.319543+00 2025-12-17 17:00:01.31955+00 37063 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JvcHGsH29_D1SiKvKtMK0bHVw-0=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.322987+00 2025-12-17 17:00:01.322993+00 37064 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sF9g2B9OfrwnhXEa-M2Q5zgIUc4=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.326363+00 2025-12-17 17:00:01.326369+00 37065 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q2miTLLm9nSTOsndlrsYjK9DdSA=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.329291+00 2025-12-17 17:00:01.329296+00 37066 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uRdUWzbOt55VPjGGhWKyDNRmYUw=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.332165+00 2025-12-17 17:00:01.332171+00 37067 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sdvDPoFFIlFesuoIL10F9qkZcBE=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.335047+00 2025-12-17 17:00:01.335054+00 37068 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WXNnOAlp2wFKTk66iWB37-Xnxc0=", "createTime": "2024-08-15 15:02:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.338221+00 2025-12-17 17:00:01.338227+00 37069 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_EBvyzqAK4gk11BZelRiRhR5Ces=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.341429+00 2025-12-17 17:00:01.341435+00 37070 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9FLUzgjYE6K1uXTA4WgkndTdtdM=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.344454+00 2025-12-17 17:00:01.34446+00 37071 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J6Ed4BqwYo4jPKhwf_yUrFlLht8=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.347634+00 2025-12-17 17:00:01.34764+00 37072 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MBiHqzqww6KWhCBj0qqJWp-VEWk=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.350781+00 2025-12-17 17:00:01.350787+00 37073 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rrl4jGie8LXz8NEDDdbwNDd9wVg=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.354284+00 2025-12-17 17:00:01.35429+00 37074 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0hA8NYfkb7P5lbFQr-nOkEt-qV4=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.357606+00 2025-12-17 17:00:01.357612+00 37075 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ga756J02BgAyoBE_5xwF6ga2UBQ=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.360496+00 2025-12-17 17:00:01.360501+00 37076 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G1qj9J-w7UuHNkkq1s8zprSCcx4=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.363247+00 2025-12-17 17:00:01.363253+00 37077 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s4OIwHjIx5uH7Gp_d4liwCh_5tU=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.365946+00 2025-12-17 17:00:01.365951+00 37078 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EZTFa-uhw9P0Eb8Mbf07-j0pNVw=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.36931+00 2025-12-17 17:00:01.369319+00 37079 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ou6yShuL3rxzLjJWf7fhg5mwI2Q=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.373059+00 2025-12-17 17:00:01.373065+00 37080 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WpNNeOQr-QegduS6F19EsjJSknE=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.376487+00 2025-12-17 17:00:01.376492+00 37081 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iDEazrrTOEnCP8TyfpdrInVotaY=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.379198+00 2025-12-17 17:00:01.379203+00 37082 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:28OmL6r-fXEO3Ksf16w7aCDS9fc=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.381811+00 2025-12-17 17:00:01.381816+00 37083 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rBsl02ltsuPjYOL4vk-Z4FlvevU=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.384453+00 2025-12-17 17:00:01.384459+00 37084 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1avHCmPstDiJkFfrKDfd01N5fJA=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.387766+00 2025-12-17 17:00:01.387772+00 37085 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bNUBa9YESJn-jjEXch9Yyjv6N5o=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.390923+00 2025-12-17 17:00:01.390928+00 37086 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OHAZpbgFY3X_WRgmaIW-j-zHJXU=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.39375+00 2025-12-17 17:00:01.393755+00 37087 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K4sDTrrv_GgOPELJ_RN0HMYo9KE=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.396799+00 2025-12-17 17:00:01.396805+00 37088 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IMAuzo2TLQTsCGbtPGljEftx6yg=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.399754+00 2025-12-17 17:00:01.399758+00 37089 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hF8idydOhM_rRNeTNUHeoqkZ-DQ=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.402652+00 2025-12-17 17:00:01.402658+00 37090 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BUFDWeFYaHjl-btX0UUhy5Ko2dE=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.405871+00 2025-12-17 17:00:01.405877+00 37091 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:71-qYHXRbJpPmXJIC_V4jAG8Nkk=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.40892+00 2025-12-17 17:00:01.408925+00 37092 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fAq-nWonGtHoJwe0eHW2aGgpFCM=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.411618+00 2025-12-17 17:00:01.411624+00 37093 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D9yBIoMBkwXP2-y4IW6dG6tKU5o=", "createTime": "2024-08-15 15:02:14"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.414193+00 2025-12-17 17:00:01.414198+00 37094 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HhUlQpJWahVIZWjZvnOR6mE13Xc=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.417172+00 2025-12-17 17:00:01.417178+00 37095 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RU1iZjdq9noTZMCheNFkxxaNVb8=", "createTime": "2024-08-15 15:02:14"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.420832+00 2025-12-17 17:00:01.420839+00 37096 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-mwQnsk0vM6IMcDKOjbUNTXLZ7Y=", "createTime": "2024-08-15 15:02:14"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.424258+00 2025-12-17 17:00:01.424264+00 37097 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R41ojTNhQ-BcVOZEvlVmuLmwpls=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.427131+00 2025-12-17 17:00:01.427136+00 37098 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4SO6naLnKhFdDu-ZDY1nRIyAREQ=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.429918+00 2025-12-17 17:00:01.429924+00 37099 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aLS-HVTwInvQK0AbA3Y-bU44CxY=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.432629+00 2025-12-17 17:00:01.432634+00 37100 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1DLbf2zjNr_8VP_rEQm4y96Z2Ag=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.435342+00 2025-12-17 17:00:01.435348+00 37101 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UZK6FJKP5ceSNYLq5sC2wIQ8DO4=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.438476+00 2025-12-17 17:00:01.438482+00 37102 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JKpk2TUf5k4ji728Vy2guM8ZNTY=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.441511+00 2025-12-17 17:00:01.441516+00 37103 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sq3kVWKZjO-r2_bCEsYEYO9bAlc=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.444626+00 2025-12-17 17:00:01.444632+00 37104 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8hR8KNtnBHjA-l4siqLU8y9rcww=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.447544+00 2025-12-17 17:00:01.447549+00 37105 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tK1ysh9RfzqqnkuHWfSJUpSuADs=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.450393+00 2025-12-17 17:00:01.450397+00 37106 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EJp3MfoLD5ELaU73ua2QOMOBNhk=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.453709+00 2025-12-17 17:00:01.453715+00 37107 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u6Zq2fPXr48gzOcT12bk7Y5GQz0=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.456932+00 2025-12-17 17:00:01.456937+00 37108 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MFPi2rxlKpIeUeE6jAVnm66I6Qg=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.45995+00 2025-12-17 17:00:01.459955+00 37109 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y9tAXwQA_cLZhNmfqmhu9z0m3Yg=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.463293+00 2025-12-17 17:00:01.463299+00 37110 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vpnGz9XnYKZ_fKInUoMvdEIbnAk=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.467506+00 2025-12-17 17:00:01.467512+00 37111 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TAS7OWdVKFIqgw1YCrjieb93WJs=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.471281+00 2025-12-17 17:00:01.471287+00 37112 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Ham1jLRLYUmuHfJDTchfLSQ_qY=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.474733+00 2025-12-17 17:00:01.474739+00 37113 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3bC1-z7RX8dq1OwRoArjvVQUQk8=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.477654+00 2025-12-17 17:00:01.477659+00 37114 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jo7eS53zA9p0_9QE5QAEsJjaDMI=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.480465+00 2025-12-17 17:00:01.48047+00 37115 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iK7BRdUVD8Ehz9Y-AKDtK2NmPtc=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.483078+00 2025-12-17 17:00:01.483082+00 37116 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mti1Zc3V4AxKVdnznLiBPFhfCF8=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.485955+00 2025-12-17 17:00:01.485962+00 37117 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H390mufLsYWNrO_56prLK-bsh7w=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.488834+00 2025-12-17 17:00:01.488839+00 37118 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cSkqj_GlUyrzZvNgWe3wZuiTTMA=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.491601+00 2025-12-17 17:00:01.491606+00 37119 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ghvZFN3HZoFYYsJhywaBmbUCVdE=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.49448+00 2025-12-17 17:00:01.494485+00 37120 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0nWOQaIJlXT3xVtoDjepJuQHecs=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.497351+00 2025-12-17 17:00:01.497356+00 37121 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BJqnnMshCrN97m66WxJpwSpGag8=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.499965+00 2025-12-17 17:00:01.49997+00 37122 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oEntgBsKe8W6byYKvRjxK7GoZUA=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.503254+00 2025-12-17 17:00:01.503261+00 37123 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u7Wcie42nUVofqx7FeYn6js768M=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.506195+00 2025-12-17 17:00:01.506201+00 37124 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aGyec13yZHH803RZt5eQFca0w-8=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.509201+00 2025-12-17 17:00:01.509206+00 37125 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sUZk-v-tpsQ0dCSZoLaIM9RQDO0=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.512087+00 2025-12-17 17:00:01.512093+00 37126 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3sPnBCdVF86qdEt8O2Ii1bvW6LA=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.515223+00 2025-12-17 17:00:01.51523+00 37127 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K0QO7LuIJ_ajYoJtM61g5OV61ek=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.518776+00 2025-12-17 17:00:01.518783+00 37128 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OZPzmJFbf4zAfuGOOF4VbDFKM_I=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.522649+00 2025-12-17 17:00:01.522656+00 37129 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PA1p3CKzXxKDF8p5GpcSm9xqFFk=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.526206+00 2025-12-17 17:00:01.526214+00 37130 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NZCvTgqT_GiAXa1D1bPLkwsu6aY=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.529487+00 2025-12-17 17:00:01.529493+00 37131 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DBvY644wCDi66gHe1tlxdT4yBPE=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.532857+00 2025-12-17 17:00:01.532864+00 37132 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tkA_vRWbaMbRva9ED4fv192nxCQ=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.536413+00 2025-12-17 17:00:01.536421+00 37133 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:guCcaTxM0gKTwT4IiE4bY2Og470=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.539882+00 2025-12-17 17:00:01.539888+00 37134 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zsj-Pl4On0oOHJuBstt2bK9LKY8=", "createTime": "2024-08-15 15:02:19"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.5431+00 2025-12-17 17:00:01.543106+00 37135 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UY9l1zHFyd-XDpdgAiY5_SKnpWg=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.545931+00 2025-12-17 17:00:01.545937+00 37136 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W4-IHLPv_MOdFko3v16KSzQDzU4=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.548626+00 2025-12-17 17:00:01.548631+00 37137 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PXj2awRdSErjVoO0uPBFqdGFBMc=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.551215+00 2025-12-17 17:00:01.55122+00 37138 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g97RLKvRURCLc6xXiEe7aIg-UGI=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.554603+00 2025-12-17 17:00:01.554608+00 37139 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5XlQ7OtFeL1HtKSpoeguakMi1rU=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.55791+00 2025-12-17 17:00:01.557916+00 37140 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DM9GqCr42y9HPMD2QfWnL_QH7Jc=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.560628+00 2025-12-17 17:00:01.560633+00 37141 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KX2JYabZS_fTN6x20O2Jl8L7VQY=", "createTime": "2024-08-15 15:02:19"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.563232+00 2025-12-17 17:00:01.563236+00 37142 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5rBxLLUg36SCoxFY1WNhIHqu5EY=", "createTime": "2024-08-15 15:02:19"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.56585+00 2025-12-17 17:00:01.565855+00 37143 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vbp7HikDWSovD82EFonO8UISy-c=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.568439+00 2025-12-17 17:00:01.568443+00 37144 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pzDkOuCAKsK3FiU_J6KZr4u9wsM=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.571827+00 2025-12-17 17:00:01.571833+00 37145 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BdZSCbOgoFpWZP5iXtLVir09CvM=", "createTime": "2024-08-15 15:02:19"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.574977+00 2025-12-17 17:00:01.574982+00 37146 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3_YwtjcR-Y_DGmPXg4hzC982WUI=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.57792+00 2025-12-17 17:00:01.577924+00 37147 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SS63PuknNUxG8v9h1HeLjfMmT38=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.384197+00 2025-12-17 17:10:00.384202+00 37156 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XRdX9uDoR3EYGa7zOmMRB0ZGgEk=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.58089+00 2025-12-17 17:00:01.580895+00 37148 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Q8Sih_FZF7Lz1VvrAqwodUCXvI=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.583482+00 2025-12-17 17:00:01.583487+00 37149 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cklWXxj5xUS4OkL_5gQ9kt_aCCs=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N +2025-12-17 17:00:01.586624+00 2025-12-17 17:00:01.586632+00 37150 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=1766077200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U6_TmoPWBuvWVxGnUPWz7KixP0Q=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.367316+00 2025-12-17 17:10:00.367325+00 37151 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8iXQDaisHpNsb6QW99j2UE191mU=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.371698+00 2025-12-17 17:10:00.371705+00 37152 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YX3nWklxOUe8LmeYmq6EjL-5Jnk=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.374964+00 2025-12-17 17:10:00.37497+00 37153 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pFMe3usTCJ-DwmYK3mmoBLOu5gU=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.377729+00 2025-12-17 17:10:00.377734+00 37154 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xtcr4lm5g9BIjnHNi87H-NQ3VSU=", "createTime": "2024-08-15 15:02:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.381045+00 2025-12-17 17:10:00.38105+00 37155 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iw7A1WiFE0ycbV8DrPW0PxFzBlc=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.38699+00 2025-12-17 17:10:00.386995+00 37157 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eYgb3ikOf_wfVHyKudcHaTVLNC8=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.390301+00 2025-12-17 17:10:00.390307+00 37158 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gbw4L9cIAMDSFnkdFKUo1MAsu_I=", "createTime": "2024-08-15 15:02:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.39354+00 2025-12-17 17:10:00.393546+00 37159 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Zu5ifexySUdvWTBL851tR29EMs=", "createTime": "2024-08-15 15:02:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.39657+00 2025-12-17 17:10:00.396576+00 37160 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:geUhAiM1o8qslCanKz6ckGqjncs=", "createTime": "2024-08-15 15:02:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.399374+00 2025-12-17 17:10:00.399378+00 37161 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kvZcXZB54SPo0CkKFXKRHWXbRaw=", "createTime": "2024-08-15 15:02:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.402153+00 2025-12-17 17:10:00.402158+00 37162 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:US_rp3Z3bmjOlA09v4L5DE5sW3g=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.405102+00 2025-12-17 17:10:00.405107+00 37163 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c4KTAfYw_q7oDbm2HI-JxUoAfkQ=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.40797+00 2025-12-17 17:10:00.407975+00 37164 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EkqFRqOJ5QyNQv84IfTtgUMjraE=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.410663+00 2025-12-17 17:10:00.410667+00 37165 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bZHti5Ho2NAoMLWpTU284Bky7W8=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.41368+00 2025-12-17 17:10:00.413686+00 37166 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JMo1D3YFnVaE-y7ddFVhYXwxOtk=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.417152+00 2025-12-17 17:10:00.417159+00 37167 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kS7Y9mGQfKJ_duHH5Cx4aqS1pOs=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.420767+00 2025-12-17 17:10:00.420775+00 37168 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iXOsZOAyJEbAWDaVi112g0CPOSU=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.424451+00 2025-12-17 17:10:00.424458+00 37169 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L1M371gYyfDyp8FS11RZNWiK0Ws=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.428319+00 2025-12-17 17:10:00.428326+00 37170 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lbxc3fOuvdUHdaFRLS_zvkKVkhU=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.43233+00 2025-12-17 17:10:00.432337+00 37171 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sX92-Ws-Y3-JrqxHSb9gYCDJaIM=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.435973+00 2025-12-17 17:10:00.435979+00 37172 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:01ZhT9TMnrSOh09USe0H0uXOnJE=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.438794+00 2025-12-17 17:10:00.438799+00 37173 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Dft28lHL63gTGDdRfeX8z3RLng=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.441446+00 2025-12-17 17:10:00.441451+00 37174 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bHslAMmusqXH0JaMkFRZ1fA5Hb8=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.444058+00 2025-12-17 17:10:00.444063+00 37175 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bEPH_3pYAArpgDOLKG_DFooD2q4=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.446919+00 2025-12-17 17:10:00.446925+00 37176 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aPh-235IGy2YrqWQEzqqDxLwK_M=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.449905+00 2025-12-17 17:10:00.449911+00 37177 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6QgZ1Y3yxx_xbOO_GxH3HwlET_8=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.452755+00 2025-12-17 17:10:00.45276+00 37178 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9_IkwTy327XDrEpIr9h6aoq0sKU=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.455762+00 2025-12-17 17:10:00.455767+00 37179 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3vn1xpOymijsYCuQcuywgQQkGJg=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.458784+00 2025-12-17 17:10:00.458791+00 37180 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OLjXrMLd8h4D4yi_xk4YOd2Ms5s=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.461472+00 2025-12-17 17:10:00.461477+00 37181 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MX1UAkmNbAr88hgcq9CELzzeJdw=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.464609+00 2025-12-17 17:10:00.464615+00 37182 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_oYipnOlqnfQQyy1tfumRKDp2A4=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.467714+00 2025-12-17 17:10:00.46772+00 37183 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eY4BJUHlpZCiHF6l2zrAbeQKVtg=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.470554+00 2025-12-17 17:10:00.47056+00 37184 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_rPolqzJHOLt7_JXLEHWpkP3AFs=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.473221+00 2025-12-17 17:10:00.473226+00 37185 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ld8daxQY3zrVpfUwedH-uSZr7F4=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.475949+00 2025-12-17 17:10:00.475954+00 37186 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1DX_cnOn2Mgy78H30-O5MrMzj_g=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.479122+00 2025-12-17 17:10:00.47913+00 37187 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s4xR8phCcYirrb4g7EuAJESt1ms=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.482857+00 2025-12-17 17:10:00.482865+00 37188 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SBwkkVcHBckDavLv0A11j_a4-_Q=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.486436+00 2025-12-17 17:10:00.486442+00 37189 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S_rOYIY5mktEtO-qT3ysgnF0ruM=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.490016+00 2025-12-17 17:10:00.490022+00 37190 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KZsrYBeuJVRGCi_dcCvBY0dczqs=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.492954+00 2025-12-17 17:10:00.49296+00 37191 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uhEp1Rt6PCP3vjkLQmVPBdAZXoI=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.495776+00 2025-12-17 17:10:00.495785+00 37192 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z56eXbVZBFTrSVQ0oVBWZKDnX64=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.499158+00 2025-12-17 17:10:00.499165+00 37193 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3C_iFeggH6XN5n8DW-RPFqu_AhU=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.502351+00 2025-12-17 17:10:00.502357+00 37194 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hDX059NeMMq_qr3CMQBJSHr6GBs=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.505528+00 2025-12-17 17:10:00.505533+00 37195 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Je1hoC9fCag6pkmGFgDikcjv-5w=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.508527+00 2025-12-17 17:10:00.508533+00 37196 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aXTJqhsi5krWqAlYiEFgqsVReaI=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.51114+00 2025-12-17 17:10:00.511145+00 37197 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AFn2wLSn7uy2BlvWdXFahiDHuCw=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.514337+00 2025-12-17 17:10:00.514345+00 37198 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u_8DXCyPto9lsjQeoreLSyCJd40=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.517568+00 2025-12-17 17:10:00.517576+00 37199 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m7hCxCqaPpsP0CXteA_GAMRjxgc=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.520408+00 2025-12-17 17:10:00.520413+00 37200 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YtFikvALZkE0VCpilIVc_q6Kw1k=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.523216+00 2025-12-17 17:10:00.523221+00 37201 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d6gGc_ET8J1Uofup8Y5DBWvrnlE=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.526029+00 2025-12-17 17:10:00.526035+00 37202 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w8zPGFxEeFB1eeJjzGObXS7jRpE=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.529289+00 2025-12-17 17:10:00.529295+00 37203 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6IpDSaB6iBwBV8-3DvT9ShJxyMk=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.532753+00 2025-12-17 17:10:00.532758+00 37204 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wbY_YCQmhgQtV5hK1cGZdW62bQs=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.535772+00 2025-12-17 17:10:00.535777+00 37205 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UGBxKWC7CXfNLtU0Qw1vqx5zw-g=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.538522+00 2025-12-17 17:10:00.538527+00 37206 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tSo1LZ2XNg4rOvJ7Fk862-LSkx0=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.541214+00 2025-12-17 17:10:00.541218+00 37207 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n-jNoMg4_kDFofrALEdwCs6tiPg=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.543821+00 2025-12-17 17:10:00.543825+00 37208 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nLLYA0nixorHoN7T5JjNCFUqNo0=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.547421+00 2025-12-17 17:10:00.547429+00 37209 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QQi3kTs0u3izEOldOf8EiFM5Mmk=", "createTime": "2024-08-15 15:02:28"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.555101+00 2025-12-17 17:10:00.555108+00 37210 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Huzd_IOp87l6sDMiKCsAmSBwWMQ=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.558584+00 2025-12-17 17:10:00.558591+00 37211 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hd4pmVQdz2b5-njZfrLRMF0oL2s=", "createTime": "2024-08-15 15:02:28"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.561351+00 2025-12-17 17:10:00.561357+00 37212 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E2s9wLZf6Zj1cxAAOMFQ5rddsYM=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.56446+00 2025-12-17 17:10:00.564465+00 37213 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IY91Iji2IA3c7uXspm-a2nhBuow=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.567668+00 2025-12-17 17:10:00.567673+00 37214 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bSEd4ITkAOrP1MgandAjFvCPY8g=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.570644+00 2025-12-17 17:10:00.57065+00 37215 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W6eCRdQaXFKcyzHRIjHy24QxMYc=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.573392+00 2025-12-17 17:10:00.573398+00 37216 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RnZcXG9hLntCkPCzX-f_l5V4TPE=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.576178+00 2025-12-17 17:10:00.576183+00 37217 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:waHFZCLkK_63LSrfXt_Mc8cwTHw=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.579537+00 2025-12-17 17:10:00.579545+00 37218 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qfBOOTSJQqcph9GY4KaJVwi59Z8=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.582874+00 2025-12-17 17:10:00.58288+00 37219 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jmxp7X0vbPpUx8J2TzU4WX8Zdy0=", "createTime": "2024-08-15 15:02:28"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.585834+00 2025-12-17 17:10:00.58584+00 37220 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qn8JHOLmBfIA7Ndh03UcXvRYOng=", "createTime": "2024-08-15 15:02:28"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.588529+00 2025-12-17 17:10:00.588534+00 37221 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8R1bw_wS40ZGQidSHyQRRmJIZuc=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.591326+00 2025-12-17 17:10:00.591333+00 37222 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fJNrIZ9y-tx6-vWQVt6h2c6b5xE=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.59409+00 2025-12-17 17:10:00.594096+00 37223 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wnsEv-iPCDWO5thViom-hPqT3kQ=", "createTime": "2024-08-15 15:02:30"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.597198+00 2025-12-17 17:10:00.597204+00 37224 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wUDqMm-vg2AyB8aN1G8hAKTZEmo=", "createTime": "2024-08-15 15:02:30"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.599988+00 2025-12-17 17:10:00.599993+00 37225 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YTSoxouWBxIVi5_wj4jjTVbltPs=", "createTime": "2024-08-15 15:02:30"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.602789+00 2025-12-17 17:10:00.602794+00 37226 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GrbgRk5p41G7r95EC2meZz3x5Hc=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.605311+00 2025-12-17 17:10:00.605316+00 37227 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GOMYmiZIh6buVrMlbMuw1fThu9w=", "createTime": "2024-08-15 15:02:30"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.607663+00 2025-12-17 17:10:00.607668+00 37228 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gEpARrZE2rW7aecgQK4sI-d0WtE=", "createTime": "2024-08-15 15:02:30"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.61002+00 2025-12-17 17:10:00.610024+00 37229 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3QDkjX_DC_YRa9KZ-tQANf0nv8g=", "createTime": "2024-08-15 15:02:30"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.612553+00 2025-12-17 17:10:00.612558+00 37230 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yJf3uiLINpuiBbVHG0_dUBj1J9E=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.615378+00 2025-12-17 17:10:00.615383+00 37231 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5eSPkY5DnG26AKjLwf45ITIxKsY=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.618158+00 2025-12-17 17:10:00.618163+00 37232 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pXQ3IxAh7Q8RO4UzO6iMpNc2T08=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.620839+00 2025-12-17 17:10:00.620843+00 37233 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nxKD5BNyG19kwOqRaH0T5NPuofY=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.623706+00 2025-12-17 17:10:00.62371+00 37234 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cBYa8yePIBHVB2KRYycq34J3Ttw=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.626536+00 2025-12-17 17:10:00.626541+00 37235 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LnHAfnGNL5Jvis1vPR4agbH9fHA=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.629138+00 2025-12-17 17:10:00.629144+00 37236 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ykL1fYYTJ4FqRfzQAnQodYZjI5c=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.63215+00 2025-12-17 17:10:00.632155+00 37237 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V7msoHca5aE8Q0glaqg5PL2Nr7A=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.635131+00 2025-12-17 17:10:00.635136+00 37238 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AorMlMjwvPZ_ZNlXzzPNV5kTsa8=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.637858+00 2025-12-17 17:10:00.637862+00 37239 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xsef2JQtdU4lgD7mxfwPZsRRZ8A=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.640502+00 2025-12-17 17:10:00.640507+00 37240 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uZ6OENjNc7SBtnq6I7HPgh-Bw0g=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.643064+00 2025-12-17 17:10:00.643069+00 37241 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rISgwkbsRVMtCd4urPZvCoTtRko=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.646283+00 2025-12-17 17:10:00.64629+00 37242 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:br_z9DKZUZSqJf27p403Vn_l4Oo=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.649608+00 2025-12-17 17:10:00.649613+00 37243 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AGtrX6l385ASqunDW9nSn64GzdU=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.652338+00 2025-12-17 17:10:00.652343+00 37244 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6-4EO2Fwh6jN19dLLi1Y39csSKw=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.655011+00 2025-12-17 17:10:00.655016+00 37245 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zs7Awa3G79XYuARYWfw8e9GNqv4=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.657641+00 2025-12-17 17:10:00.657646+00 37246 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tBmO1GIqBzH8zs1S38pb8T60t6Y=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.660304+00 2025-12-17 17:10:00.660308+00 37247 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WUnQ-Mai4QP8uYs9AVAnCuU8pLk=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.663287+00 2025-12-17 17:10:00.663293+00 37248 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vYTl5xhKmxLwfQspK2XsmewkY30=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:00.666516+00 2025-12-17 17:10:00.666523+00 37249 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=1766077799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9clT-tYCu3NlAt4KMTslXyIYMM0=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.065844+00 2025-12-17 17:10:01.065853+00 37250 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XBlCvWX7SimJYsUfh2KE2jAZngk=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.070069+00 2025-12-17 17:10:01.070077+00 37251 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mU_oLYl6qtGhkWf1ZpVozaKj8Oo=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.073074+00 2025-12-17 17:10:01.073079+00 37252 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:chfbiYzePURmFevaMYwJHFpVJ6Y=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.075775+00 2025-12-17 17:10:01.07578+00 37253 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gU_vEelz-FWZ3eG2ldBmI1VHCmo=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.078609+00 2025-12-17 17:10:01.078614+00 37254 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E8I6MqYYIgOnKrTjSw4qhYp3tKI=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.082062+00 2025-12-17 17:10:01.082068+00 37255 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3en4Qjz2_Lo8XKRLBbEXz-I7FW0=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.085495+00 2025-12-17 17:10:01.085501+00 37256 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cFYm-b56IVYdAS5pSyBbt2akIX8=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.088424+00 2025-12-17 17:10:01.08843+00 37257 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZwrfYA8ajWSYrXzYS9Q-quwyhK4=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.103474+00 2025-12-17 17:10:01.10348+00 37262 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ajGzdUmrKRabjALHq4Da6M367EU=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.091326+00 2025-12-17 17:10:01.091331+00 37258 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UIgRJaGGFltxmGVoeGnRp5V1QW0=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.094322+00 2025-12-17 17:10:01.094328+00 37259 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pjZDCvn3Up8VsAY867d5hMKe20k=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.097568+00 2025-12-17 17:10:01.097575+00 37260 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tfTVylvjPorhfSSnV0bt4ddmTbM=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.100608+00 2025-12-17 17:10:01.100614+00 37261 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K1eHAx8xL-t0qi3gyyztNhNL-r8=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.106644+00 2025-12-17 17:10:01.106649+00 37263 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fpFOI-W6Zr42s8ao8hmwc0qq7gk=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.109737+00 2025-12-17 17:10:01.109743+00 37264 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_geuA8KUx5B_St0yXl9KSSGeVyE=", "createTime": "2024-08-15 15:02:35"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.112984+00 2025-12-17 17:10:01.11299+00 37265 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JHz3MfAXGWCcPyeGs45u-_P3doA=", "createTime": "2024-08-15 15:02:35"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.116502+00 2025-12-17 17:10:01.116508+00 37266 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TLAy0nUBlkerIO-r064vb8C1sqw=", "createTime": "2024-08-15 15:02:35"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.119879+00 2025-12-17 17:10:01.119885+00 37267 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JYWIYJjkInaPL3tOQh1CmQOCCP8=", "createTime": "2024-08-15 15:02:35"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.12305+00 2025-12-17 17:10:01.123056+00 37268 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y5iDUGbIo1l3ps5A-UqEjd6aQQ4=", "createTime": "2024-08-15 15:02:35"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.126149+00 2025-12-17 17:10:01.126155+00 37269 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Te0Tlu1en7gvts2V_2mAwmO0LcU=", "createTime": "2024-08-15 15:02:35"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.129324+00 2025-12-17 17:10:01.12933+00 37270 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KivnsFU8kRV0cLVxTS5bQymKtJs=", "createTime": "2024-08-15 15:02:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.132848+00 2025-12-17 17:10:01.132854+00 37271 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pp2jhtJWIkfIa7VJCeND7eU6_hQ=", "createTime": "2024-08-15 15:02:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.136259+00 2025-12-17 17:10:01.136265+00 37272 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iwXTJWiuxomVMCUKStKB-XRnhpM=", "createTime": "2024-08-15 15:02:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.139184+00 2025-12-17 17:10:01.13919+00 37273 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CamSH5pm1PnBV6aU0oXBamSmoCE=", "createTime": "2024-08-15 15:02:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.142049+00 2025-12-17 17:10:01.142056+00 37274 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YVx70Fxqu3w5iBSuOGyZBpWXB0c=", "createTime": "2024-08-15 15:02:35"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.144941+00 2025-12-17 17:10:01.144947+00 37275 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g6AnthC5iTj46hGuZ8Z9Xeoo6yM=", "createTime": "2024-08-15 15:02:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.148114+00 2025-12-17 17:10:01.14812+00 37276 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0abb5zotlap6GNayfXrhuiNpom8=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.151191+00 2025-12-17 17:10:01.151197+00 37277 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ItWhQ52ye7P_XOyCdLopfT8lYJo=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.154089+00 2025-12-17 17:10:01.154096+00 37278 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MTafPSgB1HDmCezWc4G9kQ-PPOw=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.157372+00 2025-12-17 17:10:01.157378+00 37279 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kgwg08Iv986bINEXAVjHA2EoErU=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.16055+00 2025-12-17 17:10:01.160556+00 37280 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ZE_piMXQtjAVkO5FQfd77mnXXc=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.163468+00 2025-12-17 17:10:01.163473+00 37281 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M6UFx58HAKJtMqZuKmel7dEhPaI=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.166507+00 2025-12-17 17:10:01.166513+00 37282 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uzWv4peijmW-95eu-fOkLCgQxxk=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.169362+00 2025-12-17 17:10:01.169367+00 37283 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8sebABEorgq9h2Ltr2qDYk7g7SE=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.171956+00 2025-12-17 17:10:01.17196+00 37284 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LIcYFR8YEJdz4B9xJ7vQkndJqSI=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.174428+00 2025-12-17 17:10:01.174433+00 37285 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dvc0Kaxuvl5GULD9o69wx1O17G0=", "createTime": "2024-08-15 15:02:38"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.176938+00 2025-12-17 17:10:01.176943+00 37286 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A8KcIcXBm_dIhjkra0f7kQo-Q3E=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.179812+00 2025-12-17 17:10:01.179817+00 37287 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CtuvAf8ZOhxARn-szEOyxJc87nc=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.182802+00 2025-12-17 17:10:01.182807+00 37288 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R2bIqjtHnePxx1yKU3vg6_Pn7Do=", "createTime": "2024-08-15 15:02:38"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.185274+00 2025-12-17 17:10:01.185278+00 37289 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jt9b2zj15e-V5UT7YSt6qhajPAw=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.187691+00 2025-12-17 17:10:01.187696+00 37290 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJSrHN3JRQ_v3s9V00gkTaRtEFM=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.190064+00 2025-12-17 17:10:01.190069+00 37291 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tawuqktjHvMGM52inGl0Op5lWQI=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.192514+00 2025-12-17 17:10:01.192518+00 37292 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KyMS851AsAYNvKZVyNigZL4yRK8=", "createTime": "2024-08-15 15:02:38"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.19496+00 2025-12-17 17:10:01.194967+00 37293 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:adqlt5jYVhzxGHlkIP5xasvI2Co=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.197954+00 2025-12-17 17:10:01.19796+00 37294 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LG12EvDMfB_LVbiB3lyEjnL2Q-E=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.201174+00 2025-12-17 17:10:01.20118+00 37295 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FdyLnU6XjHVLL_iEUFGo6QYL_EU=", "createTime": "2024-08-15 15:02:38"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.204171+00 2025-12-17 17:10:01.204176+00 37296 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ukPUfOvnq88TlreGu34WYtBdyWU=", "createTime": "2024-08-15 15:02:38"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.206833+00 2025-12-17 17:10:01.206838+00 37297 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0q7fZGNw1R0-AeGXxr2KGnVpmo4=", "createTime": "2024-08-15 15:02:39"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.209401+00 2025-12-17 17:10:01.209406+00 37298 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i_1GroiqCovzgucwopRmN6jy-88=", "createTime": "2024-08-15 15:02:38"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.212081+00 2025-12-17 17:10:01.212087+00 37299 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:589danH9OD6JccneUv7aKiCXAAo=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.214988+00 2025-12-17 17:10:01.214993+00 37300 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:39wJ_qROMeSGkG2TbE-DvNUz9nM=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.217974+00 2025-12-17 17:10:01.21798+00 37301 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U-ILmHc332jnKV3-xWCaKpEvDYc=", "createTime": "2024-08-15 15:02:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.2207+00 2025-12-17 17:10:01.220705+00 37302 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J3zrKX-sG3LvY44JOriVJZ_c3oo=", "createTime": "2024-08-15 15:02:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.223612+00 2025-12-17 17:10:01.223617+00 37303 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LfeYoLTsS5nnsye5A-_6-6e232g=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.226434+00 2025-12-17 17:10:01.22644+00 37304 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rOgXEK93ltVh8hvXSJyjTIEwIR4=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.229098+00 2025-12-17 17:10:01.229108+00 37305 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9x5MxOZp9GFbaH2LVh1eQ5Zezis=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.232299+00 2025-12-17 17:10:01.232304+00 37306 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zw0JZr71h_E1khkRkk4SDPt4JNk=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.23534+00 2025-12-17 17:10:01.235346+00 37307 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XjDI1MC3aML40JSio8nVh5qiJy4=", "createTime": "2024-08-15 15:02:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.238078+00 2025-12-17 17:10:01.238083+00 37308 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Az8l5FenQflquH0spMDMqVU9S8A=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.240703+00 2025-12-17 17:10:01.240707+00 37309 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VA7ktOCC9dvouVxZitNRYXVrQLw=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.243397+00 2025-12-17 17:10:01.243402+00 37310 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3qzrA3kqJHPDPsmh5QSmeU5z_hs=", "createTime": "2024-08-15 15:02:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.246615+00 2025-12-17 17:10:01.246621+00 37311 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IoX9jQpE5hTkdF8x10JkNbGNqmA=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.249864+00 2025-12-17 17:10:01.249869+00 37312 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aSXRZQ9GWzBr6c2yaXpZlfliAMA=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.252695+00 2025-12-17 17:10:01.2527+00 37313 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aLMW6gXC3ZMGyFrkJ3eEm0ASDoQ=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.255315+00 2025-12-17 17:10:01.25532+00 37314 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qoZs--5AFzI1yjNDXXMj9ZURU9c=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.257935+00 2025-12-17 17:10:01.257939+00 37315 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5_bPvItBXzeqQ6wcmmX5iWLPe68=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.261328+00 2025-12-17 17:10:01.261335+00 37316 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i0JvYZUntPHidxzXT05C3V6CmMg=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.264804+00 2025-12-17 17:10:01.26481+00 37317 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_OlWML_zPqFTveWiVfRRdu3zNdY=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.267991+00 2025-12-17 17:10:01.267997+00 37318 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GbXl5lEawVNRNcMTh9qOtLunfyQ=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.271096+00 2025-12-17 17:10:01.271101+00 37319 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g--MTh_7F88duir5vgZXzbmK6NA=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.274012+00 2025-12-17 17:10:01.274017+00 37320 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HgPIaMcgfGFeevQ0sySef8lmtFI=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.27679+00 2025-12-17 17:10:01.276795+00 37321 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LOl8uzLYEzIsnJe9oygnzeazwlo=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.279839+00 2025-12-17 17:10:01.279846+00 37322 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZQCLEht6HVLQE8h5wG1DXdMNHJ4=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.283138+00 2025-12-17 17:10:01.283144+00 37323 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VeDrWBbwXRk7N4xWgUqnLWJA-84=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.286133+00 2025-12-17 17:10:01.286139+00 37324 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b3Z3SUVQDDfm4ZwgOcPh1ATqpik=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.288903+00 2025-12-17 17:10:01.288909+00 37325 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mnrouU19ztYg2KatbtBjZWGYYd8=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.291641+00 2025-12-17 17:10:01.291645+00 37326 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b0QiEYepUg3CdnGr1_sCZwLRO_E=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.294635+00 2025-12-17 17:10:01.29464+00 37327 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8psMcYLqe0KKriyaBIabffQnegc=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.298194+00 2025-12-17 17:10:01.2982+00 37328 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WIqmHJdnHr6wx2jK4zyH0RGyajo=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.301651+00 2025-12-17 17:10:01.301658+00 37329 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r_Mmoz3eFGhykDhdWdFw5XtUf_I=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.304946+00 2025-12-17 17:10:01.304953+00 37330 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lVsxFHqc7vQC6TxemxbN7OJEEig=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.308034+00 2025-12-17 17:10:01.308041+00 37331 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kgnGd5HqhGuF7agzYdj5_sHOdNw=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.310992+00 2025-12-17 17:10:01.310998+00 37332 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vHsIDxHZX1yfJ0tCuI5r6lI6kjI=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.314316+00 2025-12-17 17:10:01.314324+00 37333 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gsTVHMr8Tfpa75dNJieLnhxHCHA=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.317576+00 2025-12-17 17:10:01.317582+00 37334 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S8UooTwj5H9ABzY1XlNgpT34hAQ=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.320969+00 2025-12-17 17:10:01.320975+00 37335 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-GVrWL9xsfQiaoqDdDjeUu_qUXk=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.324129+00 2025-12-17 17:10:01.324135+00 37336 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S_NnrS4iDWPT96ao9AutPE2GZFs=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.327046+00 2025-12-17 17:10:01.327052+00 37337 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YVBwbCdKlsIPeR2w0ode9X9GOzQ=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.330064+00 2025-12-17 17:10:01.33007+00 37338 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FbYTIlEjiBcWG6tHxNPaydd7G5w=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.333398+00 2025-12-17 17:10:01.333404+00 37339 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LvM4YscIZJKrymRFNAcjlJttT7s=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.336643+00 2025-12-17 17:10:01.336649+00 37340 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hxguPQqIF1cVeLmZzhhtwhEgwK8=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.339598+00 2025-12-17 17:10:01.339604+00 37341 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:69FvnDzAFI6noTLjNWsHGbePmCs=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.342443+00 2025-12-17 17:10:01.342449+00 37342 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lLSdypvwvCsulPR4c2-qItMxarw=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.34576+00 2025-12-17 17:10:01.345766+00 37343 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FvM5rIY8qWva8uX9qYo3fSEKgd8=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.349355+00 2025-12-17 17:10:01.349361+00 37344 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ijf-X0b1vHwLmSQm4_oiYlsDIHo=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.3523+00 2025-12-17 17:10:01.352305+00 37345 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:frfOuf95BwWnpHdoepFIVpMkJ78=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.355102+00 2025-12-17 17:10:01.355107+00 37346 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cs8NGBWnWYbJYkEivuBqqY7mZ2g=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.357854+00 2025-12-17 17:10:01.357859+00 37347 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RxHurQfr2jbQvVYVBkCa9uLe7EU=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.360678+00 2025-12-17 17:10:01.360683+00 37348 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:urLGf93nsFbB4QdtxFww14fEhKI=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:10:01.363506+00 2025-12-17 17:10:01.363511+00 37349 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=1766077800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UaWAI6LVdNJvdyVB9ysBfnxNHFI=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.361737+00 2025-12-17 17:20:00.361746+00 37350 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NzZGhxX7uzYes9TFyoAvr8EvANk=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.365415+00 2025-12-17 17:20:00.365421+00 37351 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gPJQj1abLCEiiukqiZI-otvYJT4=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.368244+00 2025-12-17 17:20:00.368248+00 37352 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L--QHUqeqKd8B_AT40aYs9xVHdE=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.370977+00 2025-12-17 17:20:00.370982+00 37353 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e6FeKayWIR-b67ryikP__5Dzw_E=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.374145+00 2025-12-17 17:20:00.37415+00 37354 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tqnHK4IdUF31uqlmJusmuUPoYCk=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.378105+00 2025-12-17 17:20:00.37811+00 37355 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UNRi-8GfvS41I0BwR8YiniQNmO8=", "createTime": "2024-08-15 15:02:45"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.381688+00 2025-12-17 17:20:00.381696+00 37356 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lKmA9dTEnyMQgAnZChgKDOlILFA=", "createTime": "2024-08-15 15:02:45"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.385215+00 2025-12-17 17:20:00.385222+00 37357 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OWDlbispr7TBmFZM_wPLmjOntZo=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.388757+00 2025-12-17 17:20:00.388763+00 37358 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oVYXL6SxgTtENeKY-Gsk5J9fWkc=", "createTime": "2024-08-15 15:02:45"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.392023+00 2025-12-17 17:20:00.392029+00 37359 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ObcBZ7gugd7tblgrk3_URCUl8Js=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.395144+00 2025-12-17 17:20:00.39515+00 37360 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Wi7XqXl9vkzSMek1wxHjbOoupo=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.399022+00 2025-12-17 17:20:00.399028+00 37361 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pu7vLZLABiGWKxp8YKVXXbeBExk=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.402989+00 2025-12-17 17:20:00.402995+00 37362 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hMjedZA2oCFdBc4owmsd-lDHX2Q=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.407095+00 2025-12-17 17:20:00.407102+00 37363 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TGw-Nwq-puYfL0vDmM5AiesPKsE=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.410489+00 2025-12-17 17:20:00.410496+00 37364 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9KqJG-R-91qz_joJp5UpN0RUBZE=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.41366+00 2025-12-17 17:20:00.413666+00 37365 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BVQaOfHsVnvprpaYUxc-vLOYNII=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.442214+00 2025-12-17 17:20:00.44222+00 37374 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZdutaHVurBQ-7d3dH2_S4igWKYs=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.417186+00 2025-12-17 17:20:00.417192+00 37366 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wckSIwpUEXSn2kaEDO_xK-ubfhU=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.420277+00 2025-12-17 17:20:00.420283+00 37367 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XjBVs2eZaeFtspj7fuKWu6OkWP4=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.423183+00 2025-12-17 17:20:00.423188+00 37368 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IUiJ0shtiO-FnzXlxB3FbKrequA=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.426527+00 2025-12-17 17:20:00.426534+00 37369 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jBja-fxhwZOA055doz6fkd66-D4=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.430128+00 2025-12-17 17:20:00.430134+00 37370 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kch9_BO2pLYvjVWxedW7JHd_170=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.433522+00 2025-12-17 17:20:00.433527+00 37371 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_9oV_Eyo_40wuGLWR51QN1k77Wg=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.436352+00 2025-12-17 17:20:00.436359+00 37372 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mraqqlq33e7sr_1kj9DHn4NmBqI=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.439257+00 2025-12-17 17:20:00.439262+00 37373 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kr9JOYnj9wD_cbCPRGPkg2xzTQM=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.44508+00 2025-12-17 17:20:00.445085+00 37375 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rKeCk3WtHKN1MKICRemh6qCATfg=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.448579+00 2025-12-17 17:20:00.448588+00 37376 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Y7Uq4kg6o89PQg08_LseCG5ZOs=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.452+00 2025-12-17 17:20:00.452006+00 37377 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bnGhzSHVrjv9zPizRfgcRg8ysxE=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.455534+00 2025-12-17 17:20:00.455539+00 37378 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AcmAZlVkAyAVldn9o9ZT3UKmbxQ=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.458685+00 2025-12-17 17:20:00.45869+00 37379 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dyK9MiioqHy7x9-yAFN-6fO88CQ=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.461733+00 2025-12-17 17:20:00.461739+00 37380 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BkW5pBw8SzD0nvDpjVPTxHiB8P4=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.464663+00 2025-12-17 17:20:00.464668+00 37381 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:schnhB58Yq0qgoHha1biNQ9kgoM=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.467406+00 2025-12-17 17:20:00.467411+00 37382 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sH9YpkZkHUHyqKdV9Aj4PpwZeBI=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.495189+00 2025-12-17 17:20:00.495193+00 37391 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VnpXj69gqqFPTiRtMQ76S5KpCKg=", "createTime": "2024-08-15 15:02:49"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.470006+00 2025-12-17 17:20:00.470011+00 37383 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QqxtLDAeLSScAkqMb7uBVBlGi0E=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.472932+00 2025-12-17 17:20:00.472937+00 37384 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yz0MqYc4gFByFbeHc5hpkkrKiag=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.475884+00 2025-12-17 17:20:00.475889+00 37385 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ngnfjyouk6mMRJlCpgUEHMrPYi0=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.479185+00 2025-12-17 17:20:00.47919+00 37386 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Om9cdUOIB1MnxIYvMILEy87nwrs=", "createTime": "2024-08-15 15:02:49"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.482636+00 2025-12-17 17:20:00.482641+00 37387 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jlZkD8-SbGh-wyIlhpRBgnRcIME=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.485848+00 2025-12-17 17:20:00.485855+00 37388 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:plAUniEj5__LTwS_GCnm86Z4yew=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.489123+00 2025-12-17 17:20:00.489129+00 37389 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NoicPmR6ROOB_dvPEiNpkivrUbI=", "createTime": "2024-08-15 15:02:49"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.492261+00 2025-12-17 17:20:00.492266+00 37390 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9r0m1r7msAL8U21F6tXSfJh6jps=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.497908+00 2025-12-17 17:20:00.497914+00 37392 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2KKeKa-zPZX3LY_gl-UxDnmRTuM=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.500587+00 2025-12-17 17:20:00.500592+00 37393 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pizF5tCKmsXUNku2bT6IrAeCgRU=", "createTime": "2024-08-15 15:02:49"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.503491+00 2025-12-17 17:20:00.503495+00 37394 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OcThJ7PRiooAmZae3EFb5wTHkl0=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.506532+00 2025-12-17 17:20:00.506537+00 37395 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YBUm_3oz222RBOUEhrdP2oebdbE=", "createTime": "2024-08-15 15:02:49"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.509366+00 2025-12-17 17:20:00.509371+00 37396 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Asx3yzVUeddV3v_gDmb6tKimeo=", "createTime": "2024-08-15 15:02:50"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.512466+00 2025-12-17 17:20:00.512471+00 37397 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_MN0aTpqOguAOk4YDb89-tXo0ZU=", "createTime": "2024-08-15 15:02:50"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.515465+00 2025-12-17 17:20:00.515471+00 37398 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PiJAgFhDjNlrWMdT5Bntsb4RB3k=", "createTime": "2024-08-15 15:02:49"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.518271+00 2025-12-17 17:20:00.518276+00 37399 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g8QiPTOIDahEoa3_NFgFyXkEisY=", "createTime": "2024-08-15 15:02:49"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.520936+00 2025-12-17 17:20:00.520941+00 37400 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UGKOvmigRBqka5g3Tmc7rnDbCMw=", "createTime": "2024-08-15 15:02:50"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.523914+00 2025-12-17 17:20:00.523921+00 37401 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FStNkKHn4UUWfewZg30yftriAlQ=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.527192+00 2025-12-17 17:20:00.527198+00 37402 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eReBS5JG3tSSU8yPQVtEjmwNEIg=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.530342+00 2025-12-17 17:20:00.530347+00 37403 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P24TOl43qgPgqTD-UOnyi1OpM3U=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.533028+00 2025-12-17 17:20:00.533033+00 37404 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BAZ1s0gVqvHzv_x7G73NPOmPpP0=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.53569+00 2025-12-17 17:20:00.535695+00 37405 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UbMgmFM52uJiPqtXq0SFLdtPvhA=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.538488+00 2025-12-17 17:20:00.538494+00 37406 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fgfcz4rNjliJwUCQ1B-bjdYnhO4=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.541593+00 2025-12-17 17:20:00.541599+00 37407 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a4Q7fH-PJZa34Se6CI0WY3oLtFs=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.544914+00 2025-12-17 17:20:00.544921+00 37408 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LBgwmJhWKBI5zOwQYKFfZM4tVfA=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.548176+00 2025-12-17 17:20:00.548182+00 37409 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JtROY_srzu3NDmR0PRFzJTWU9tI=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.55209+00 2025-12-17 17:20:00.552098+00 37410 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:73hfST0FCpb03r96BGXPMK5Az2E=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.555982+00 2025-12-17 17:20:00.555989+00 37411 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lt2gMaPtG-MuSzyYc7-h9605VPs=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.559363+00 2025-12-17 17:20:00.559372+00 37412 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mHjyxA6bp19DirKBUruIRPVTJpc=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.562719+00 2025-12-17 17:20:00.562726+00 37413 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nfqtHNUehiuvNQ-gnEtOg-Tmc8A=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.565656+00 2025-12-17 17:20:00.565661+00 37414 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hTmJbNJGqUsd_a1VqoRKMcgLN1I=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.568349+00 2025-12-17 17:20:00.568354+00 37415 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kKAM9QzLnNUTFjESgBrXAdsEhHI=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.570989+00 2025-12-17 17:20:00.570996+00 37416 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fK_1OZ-M6ktWh7T_eOdneo61Ix4=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.57406+00 2025-12-17 17:20:00.574065+00 37417 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n7ZlrbvHb0deFsoHtTP58TZMci0=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.577584+00 2025-12-17 17:20:00.577589+00 37418 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AANFLiTAzt7fTrjO4lPV5_wNWM8=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.580699+00 2025-12-17 17:20:00.580704+00 37419 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-IPfptoFSCYScElpwmN8CJdvQnY=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.583447+00 2025-12-17 17:20:00.583452+00 37420 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Whrzn1JzRcWGW1-iO7yF3lN7aiw=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.586111+00 2025-12-17 17:20:00.586116+00 37421 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WrJE3PY0X9flYm-HSsmmTQURtvg=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.589001+00 2025-12-17 17:20:00.589006+00 37422 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hXfR9YDGWSryz2xvepY0bbt4K0s=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.591713+00 2025-12-17 17:20:00.591718+00 37423 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JQp-EtlhF-__V7MEuYzMISpk3Ug=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.594508+00 2025-12-17 17:20:00.594514+00 37424 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mTrJMeAUMdtRNj1pNePhpJ0hM58=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.597425+00 2025-12-17 17:20:00.59743+00 37425 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CKB_ielScLltlLAediutTpYTBSA=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.600523+00 2025-12-17 17:20:00.600528+00 37426 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xEIt7FGfN3SaPl_t_vrMFPsvHiM=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.60343+00 2025-12-17 17:20:00.603435+00 37427 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BaNb3Mee83TCHEEoC5dEnT84OpY=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.606321+00 2025-12-17 17:20:00.606327+00 37428 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hb9tEG6s_Oy15QliPQBcsKBuKdE=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.609346+00 2025-12-17 17:20:00.609352+00 37429 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tpre9WqekZQ867afI-3Y2LnmmVs=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.612309+00 2025-12-17 17:20:00.612315+00 37430 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qZmwTUIfNPZI2azdwFoOKh28HrQ=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.615122+00 2025-12-17 17:20:00.615127+00 37431 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xzAnMf0czvu9BbYkDeq5wNc3VjQ=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.617778+00 2025-12-17 17:20:00.617783+00 37432 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8k154GTa1IAQkT0_i-mGmZf2JsI=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.620413+00 2025-12-17 17:20:00.620417+00 37433 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iM4VzbJlAxrZ7zNbk9hxevYZtMY=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.623419+00 2025-12-17 17:20:00.623423+00 37434 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_g7N9jPV9sh0zTdluq1UmNz_T38=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.627491+00 2025-12-17 17:20:00.6275+00 37435 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tklBk9j6V_qXiIWVnJ0WxORMNlg=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.630841+00 2025-12-17 17:20:00.630846+00 37436 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TDcWYQvxxLiac1FVdM2zIspA7Dw=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.633892+00 2025-12-17 17:20:00.633897+00 37437 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s4M9XaUsASr_n96QlYQqYfhUzQ4=", "createTime": "2024-08-15 15:02:56"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.636794+00 2025-12-17 17:20:00.636799+00 37438 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qk07zVdgNTsD5rgcvXgey_w2ZuM=", "createTime": "2024-08-15 15:02:56"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.639952+00 2025-12-17 17:20:00.639958+00 37439 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2GaPgrNYe2suKEX7OkmsLADE5Fc=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.643239+00 2025-12-17 17:20:00.643245+00 37440 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JCAB5XDtzkEZLllEJv-Y8Had5bY=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.646429+00 2025-12-17 17:20:00.646434+00 37441 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dBQ4s9W7Hd76zcK3TnN82ENvqUI=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.649616+00 2025-12-17 17:20:00.649621+00 37442 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kGAJpcha80KYfgsCBrWuzi-dqRY=", "createTime": "2024-08-15 15:02:56"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.652599+00 2025-12-17 17:20:00.652603+00 37443 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B2krhZWP5MzT7oVqTFfVG7wLN-Y=", "createTime": "2024-08-15 15:02:57"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.655448+00 2025-12-17 17:20:00.655454+00 37444 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pZsNEwNhpMlw9Q76gOx0h-fC_gg=", "createTime": "2024-08-15 15:02:56"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.658878+00 2025-12-17 17:20:00.658887+00 37445 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ILV8wXcstks_3i4GOUBNCKQvDXs=", "createTime": "2024-08-15 15:02:57"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.662298+00 2025-12-17 17:20:00.662307+00 37446 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DuH5ncls1yLypAXFmQqUHIgoYxc=", "createTime": "2024-08-15 15:02:57"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.665405+00 2025-12-17 17:20:00.665411+00 37447 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aN2HH_vyZPt1jU58W9HKiYMXW1I=", "createTime": "2024-08-15 15:02:56"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.668488+00 2025-12-17 17:20:00.668495+00 37448 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H8JKwmG8W1lyUoLjMjy9CpxDTG4=", "createTime": "2024-08-15 15:02:56"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:00.671933+00 2025-12-17 17:20:00.67194+00 37449 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=1766078399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YRpXD_3AYvhlu90Gzq-Kcm7Hqbc=", "createTime": "2024-08-15 15:02:56"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.042287+00 2025-12-17 17:20:01.042297+00 37450 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MG40GeBwhkaCp_n9we2TRTXtCQs=", "createTime": "2024-08-15 15:02:57"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.046032+00 2025-12-17 17:20:01.046039+00 37451 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ivFB9W-LspvQFjX0AgC3qhsNgoE=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.049178+00 2025-12-17 17:20:01.049183+00 37452 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QZpMW59q6fYaX5pCcuxcfFK1aCM=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.051966+00 2025-12-17 17:20:01.051971+00 37453 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C7eMIR2TX__GSuVqrsiV-0WsMgI=", "createTime": "2024-08-15 15:02:57"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.054771+00 2025-12-17 17:20:01.054777+00 37454 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vY-hePAhbg0qWzmZK_NrbkZAvgE=", "createTime": "2024-08-15 15:02:57"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.058342+00 2025-12-17 17:20:01.058348+00 37455 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JjjSm2a9hxRAL4ZHw0LdsvvrQq8=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.061907+00 2025-12-17 17:20:01.061914+00 37456 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sf-Dmwu-aA9eK_hv2-3SEE70uE4=", "createTime": "2024-08-15 15:02:57"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.064864+00 2025-12-17 17:20:01.06487+00 37457 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Olm6sgExelkBZvAzcfZvGIVzOco=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.067549+00 2025-12-17 17:20:01.067555+00 37458 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N8T8GzSbJvVEai40ekjLnl8i2Qc=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.07009+00 2025-12-17 17:20:01.070095+00 37459 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xrFH6pep2ll-dFRA2pI-YeG5eos=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.072697+00 2025-12-17 17:20:01.072702+00 37460 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_tDNnN_xdAu7rLfwb3H_hG1AUbo=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.075256+00 2025-12-17 17:20:01.07526+00 37461 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pLiuaxSbErlMVc3XtX3ZpsRvobE=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.07786+00 2025-12-17 17:20:01.077866+00 37462 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ngQ9PItV21InufGLPn2Lat51fSQ=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.080889+00 2025-12-17 17:20:01.080894+00 37463 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VRBaifCN5_mgvTOgxh8ofVhlt70=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.083857+00 2025-12-17 17:20:01.083862+00 37464 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Y_I8ah7LTj3HT9ZMc8vodDzoJ4=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.086536+00 2025-12-17 17:20:01.086541+00 37465 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VbeUFcQ45k0nrZlK2-m6aLQ5lzk=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.089369+00 2025-12-17 17:20:01.089374+00 37466 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XrKyei2Bm8a1PNrto2aL8gh6Lug=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.092113+00 2025-12-17 17:20:01.092119+00 37467 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jsv-n1eCkLtsy30GB7KrGAie0ng=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.095194+00 2025-12-17 17:20:01.0952+00 37468 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YJ-zyu-SLpYJWZBHJ8JY8lMef54=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.098054+00 2025-12-17 17:20:01.098059+00 37469 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jkPxCVYCG4XxKSaRFYqph386KY8=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.100717+00 2025-12-17 17:20:01.100722+00 37470 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MWKRi8sjWNMrij9p_hvrPxUwRZw=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.103576+00 2025-12-17 17:20:01.10358+00 37471 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JxnItHb_AJ7r5iLUk1WQS_yn3ug=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.109706+00 2025-12-17 17:20:01.109715+00 37473 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B7RxHE4sMIv89jIedkS9iIOyi8g=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.112792+00 2025-12-17 17:20:01.112798+00 37474 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8F5dyY6LXS_ihB0sRbXpYtbBlnY=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.115844+00 2025-12-17 17:20:01.11585+00 37475 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XfKQ96uPrcV62NDqHl73Mm6bajk=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.118824+00 2025-12-17 17:20:01.118831+00 37476 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xPb4v11Wx19tSaB-ik6bEKWIOGY=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.106694+00 2025-12-17 17:20:01.106699+00 37472 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8t6Mx_He4XB12UeRgPr_ptHO5AE=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.125166+00 2025-12-17 17:20:01.125173+00 37477 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QRyU8wM5WvCcEtaGsmkOKIUFkyI=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.128614+00 2025-12-17 17:20:01.128621+00 37478 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CO2Omr74VkkNyzmHylJDM2wXDVw=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.131792+00 2025-12-17 17:20:01.131797+00 37479 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DfZ7d3wYa0NvHpWmOV_5WaCrIrw=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.134526+00 2025-12-17 17:20:01.134532+00 37480 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lSLOpTdxyG6PIiu7Hd6ZXfCMcLI=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.137259+00 2025-12-17 17:20:01.137266+00 37481 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EwfJOzOjPJqHMRvblYvyywTrDL0=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.140187+00 2025-12-17 17:20:01.140192+00 37482 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wpyJ799PxX7ZWWNNAxc5_gFqOp8=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.143629+00 2025-12-17 17:20:01.143636+00 37483 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FeINH6n5X3oohH4yjHMRNogNRt0=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.146613+00 2025-12-17 17:20:01.146619+00 37484 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tGVclL-L4pKLJMe2TVghBYPddbg=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.149442+00 2025-12-17 17:20:01.149447+00 37485 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N6LRx0P40wZmsxuuSlFAGXr-51I=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.152373+00 2025-12-17 17:20:01.152378+00 37486 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wSJJgB4hCAnj5I-UQKmiO9qrOek=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.155345+00 2025-12-17 17:20:01.155349+00 37487 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m_bDEAOo6pJfgA4LGjEvWZlM90o=", "createTime": "2024-08-15 15:03:02"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.158324+00 2025-12-17 17:20:01.15833+00 37488 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C3RT9tpV5SffNse7EWZzQuvVYbY=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.165059+00 2025-12-17 17:20:01.165067+00 37489 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mnSsQlqSCnsIwTRALJwoDprPZQQ=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.168109+00 2025-12-17 17:20:01.168115+00 37490 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GO3zLYjMIiJpHkw20XYP1HLtoyI=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.171157+00 2025-12-17 17:20:01.171164+00 37491 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6QONdAPohN4kanDCj0o8kSGsaQ4=", "createTime": "2024-08-15 15:03:02"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.174184+00 2025-12-17 17:20:01.17419+00 37492 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y7zoQZpvoABedeM8rrL_cISAqro=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.177872+00 2025-12-17 17:20:01.177879+00 37493 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FCIFbO1sLHePO6H8Rnpb7Q7Wg7I=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.181174+00 2025-12-17 17:20:01.18118+00 37494 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OuAosp1GUOPo8o4_Zolu4qDzgJk=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.184059+00 2025-12-17 17:20:01.184065+00 37495 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iuq8QWiVZqvJYou8lGARU73P_-A=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.186775+00 2025-12-17 17:20:01.18678+00 37496 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KSSTEChfiun5sPYLI_LXGJ0fs1A=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.189695+00 2025-12-17 17:20:01.189701+00 37497 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oZhAvyatX7Cl2isXXg2viEemAh4=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.192503+00 2025-12-17 17:20:01.192509+00 37498 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:71__sQJS3O12NOyQDXIwZ0GB8Lc=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.195657+00 2025-12-17 17:20:01.195664+00 37499 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h_SMFdLPnkxpG_7gtUTtDjokP-M=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.199219+00 2025-12-17 17:20:01.199227+00 37500 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pf8TRbO87bmr9JNACBcvdDyHDAk=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.202954+00 2025-12-17 17:20:01.20296+00 37501 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2PFgtseEuutAwMHPz2wJELbyolQ=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.206751+00 2025-12-17 17:20:01.206758+00 37502 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aE6Zn1HlHAnHoMNcczVuaSDuGqc=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.210047+00 2025-12-17 17:20:01.210054+00 37503 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cp48bmOYjF_1v0LGihbYA06Se5g=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.213235+00 2025-12-17 17:20:01.213241+00 37504 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XygKGIEdZOVWKUJQCKwmx-WoR40=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.216343+00 2025-12-17 17:20:01.216349+00 37505 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oj971yjQqGDhszVMLZo8qxhZ0fo=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.21927+00 2025-12-17 17:20:01.219275+00 37506 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:llcGal4G1Zc48LBMG4ESdleQS24=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.222297+00 2025-12-17 17:20:01.222303+00 37507 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hYD3mg5FfrSJR4fU4uP0HAl5HTw=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.22538+00 2025-12-17 17:20:01.225386+00 37508 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gBgFFHKmEEgidrTxVt0FuHqGUq0=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.228704+00 2025-12-17 17:20:01.22871+00 37509 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MneqUgWVksA1prazOne5XMs1phw=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.231949+00 2025-12-17 17:20:01.231955+00 37510 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zODYyRSKglOvhywBAZPcY42Z930=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.2348+00 2025-12-17 17:20:01.234806+00 37511 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XkC0d0ZL1Ca9nm5a003HoSWpvcE=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.237752+00 2025-12-17 17:20:01.237759+00 37512 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JOlCMs7HNxdAxzgw6-xfwxrTizg=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.24069+00 2025-12-17 17:20:01.240696+00 37513 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dsIe0O_lxRj5LeNI0x1gsvzX9As=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.243704+00 2025-12-17 17:20:01.243711+00 37514 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m1apE9Na0swsqLCyRWJrtzK7iVk=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.246705+00 2025-12-17 17:20:01.246712+00 37515 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:btXxTrS0qpFYoLgimxc6XeHPQTk=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.249653+00 2025-12-17 17:20:01.24966+00 37516 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QJpRuOxUdj7ou7bVy-s9QrfOHqQ=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.252816+00 2025-12-17 17:20:01.252822+00 37517 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CD6fQXP0qxgAzivy25xRK8TapEE=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.256204+00 2025-12-17 17:20:01.256211+00 37518 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HoLf7TlhD9JOb-NDkqEapiVaEAM=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.259331+00 2025-12-17 17:20:01.259337+00 37519 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I3IQtrZ9fhuISXp15ltGlmOIaT0=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.262415+00 2025-12-17 17:20:01.262421+00 37520 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n9rR14qVBpPR-oFX9Oj1lnnk2yY=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.265405+00 2025-12-17 17:20:01.265411+00 37521 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K1U815IT8wwItmOm7XIk7Gvz2ZQ=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.268301+00 2025-12-17 17:20:01.268307+00 37522 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WkjxrUclvpVQFPJd6zjgrIabe9Y=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.27127+00 2025-12-17 17:20:01.271277+00 37523 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QTymjtIN9-aQDIx4oVsueZxttiA=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.274299+00 2025-12-17 17:20:01.274304+00 37524 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ubTun7T4U-OMkGzFU7kXrO_u7-c=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.277662+00 2025-12-17 17:20:01.277667+00 37525 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vfs-_e8s8dBYMWAZ-cF1aAPKatM=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.280865+00 2025-12-17 17:20:01.280871+00 37526 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V4WDrZG91NZruTJcvyXG4EMySc0=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.307734+00 2025-12-17 17:20:01.30774+00 37535 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dzjRut7HHWGau3LN7Y0Y7mMUuog=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.283714+00 2025-12-17 17:20:01.28372+00 37527 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8piklzxuQxrX_ER0tZ3qE70C9BE=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.286561+00 2025-12-17 17:20:01.286571+00 37528 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gj2syhMFAiDrtV88VqISE30b4Ik=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.289573+00 2025-12-17 17:20:01.289579+00 37529 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PTGq1jwVh8bZD6kv2hobTfTUFTY=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.292575+00 2025-12-17 17:20:01.292581+00 37530 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qeAU_Sy8_evNkKJknsJ3b7HwYPI=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.295531+00 2025-12-17 17:20:01.295537+00 37531 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HvHAFfsO7m-ejBBEU7HlzUH5uYY=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.298484+00 2025-12-17 17:20:01.29849+00 37532 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yvjw2qsI_MaATE4cwmPX9av-f-Y=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.301583+00 2025-12-17 17:20:01.301588+00 37533 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rTV4FmDg8BFzcqPiKfFVfUh8yrM=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.304742+00 2025-12-17 17:20:01.304749+00 37534 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:McFQLihA729inXJ2E0iNJOLypAg=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.31075+00 2025-12-17 17:20:01.310756+00 37536 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7aTSp-YCDf4HftyI2JNyFBpBiUc=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.313715+00 2025-12-17 17:20:01.313721+00 37537 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zKmPp9DQW2NvTuFIeXu_NzNiNLE=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.316589+00 2025-12-17 17:20:01.316595+00 37538 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aaNMm5uNXG6hQGWnT1hpYMSaecc=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.319427+00 2025-12-17 17:20:01.319432+00 37539 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ii_jGIoClOvWG2ZOauSAoIvLWHE=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.322375+00 2025-12-17 17:20:01.322381+00 37540 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OXqeRT4w80kBkz_QXUoQj5dtaVU=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.32565+00 2025-12-17 17:20:01.325656+00 37541 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fI7s7E9p7gkkWqgj-pxU_9Gf6b4=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.329352+00 2025-12-17 17:20:01.329359+00 37542 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PRy4JdpgF0sy9ixaqAjXC55rsF8=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.332682+00 2025-12-17 17:20:01.332689+00 37543 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qkqPK_ctKp8BQjDYw_9kPwTlbVE=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.335641+00 2025-12-17 17:20:01.335648+00 37544 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q18yZ7jRONM5_b-ocHnEeUUf3VM=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.338663+00 2025-12-17 17:20:01.33867+00 37545 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XCOqA8rmuMAMG2hviSPypiRAl-U=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.341741+00 2025-12-17 17:20:01.341747+00 37546 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gskQNPnra5liDLiYDVkiAN56xvs=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:20:01.344903+00 2025-12-17 17:20:01.344909+00 37547 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=1766078400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:16dyCmoKSqxts4ImSY77Iyfj_24=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.382819+00 2025-12-17 17:30:00.382831+00 37548 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l-9tChzggez0HcyLgHHA9w_k7Lg=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.387175+00 2025-12-17 17:30:00.387183+00 37549 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCpV4p2DboAXQiPRxeMX04Yci5k=", "createTime": "2024-08-15 15:03:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.391935+00 2025-12-17 17:30:00.391941+00 37550 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qoaqVhbq48S9kKgbTllbeZFuXTg=", "createTime": "2024-08-15 15:03:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.395201+00 2025-12-17 17:30:00.395207+00 37551 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pV6_-onPom7yoEPihJAVHhSZsNI=", "createTime": "2024-08-15 15:03:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.398449+00 2025-12-17 17:30:00.398455+00 37552 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9pMOALLpFJHX3G0IpLh-uIQZFrs=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.401474+00 2025-12-17 17:30:00.40148+00 37553 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_0BfVH7Yh7mct76oGNjbFO61wE0=", "createTime": "2024-08-15 15:03:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.404278+00 2025-12-17 17:30:00.404283+00 37554 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4KRagqs66UO3q6MvBQPxIIasW2M=", "createTime": "2024-08-15 15:03:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.407062+00 2025-12-17 17:30:00.407067+00 37555 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yVDzENrq4GE6Bc68yukJyCmIHe0=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.409989+00 2025-12-17 17:30:00.409995+00 37556 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-HGxpPzS7WM7tRD84Y-3A69IoIY=", "createTime": "2024-08-15 15:03:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.413093+00 2025-12-17 17:30:00.413098+00 37557 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jnWq3MHTL5r-55zxw5a9Mm9frPk=", "createTime": "2024-08-15 15:03:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.416425+00 2025-12-17 17:30:00.416431+00 37558 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-1YdG68wPt41DxW6rNE78LDda9I=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.419518+00 2025-12-17 17:30:00.419524+00 37559 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3xB1ZIgn2bvFFruZ9pZakdXSbXY=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.422541+00 2025-12-17 17:30:00.422546+00 37560 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wu-B_UfDIUOzvJDChEzfjOTr3vA=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.425491+00 2025-12-17 17:30:00.425498+00 37561 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AiLWhbpzuTV_5Kxw9acOenY3Amc=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.428819+00 2025-12-17 17:30:00.428825+00 37562 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sYvW0rZ0D0eGSnQzo_S3czef9aw=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.432122+00 2025-12-17 17:30:00.432128+00 37563 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jXw-iuzND4_-uaFvdU0U3iNhloU=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.435051+00 2025-12-17 17:30:00.435056+00 37564 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oLQSfKJsoeKL2BPNf2VKmZ9O8m0=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.438237+00 2025-12-17 17:30:00.438243+00 37565 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZMpuP9MbAEXof2pIVXF3Mrx2iFQ=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.441559+00 2025-12-17 17:30:00.441567+00 37566 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7z9vkoglGaNGKGJh41IuxE9pmtE=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.444424+00 2025-12-17 17:30:00.444429+00 37567 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Zfrjq0fyxjZ5dzd9SBGOUeZyMc=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.447206+00 2025-12-17 17:30:00.447212+00 37568 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MazDHXe1TLg2dKtRgVuXDkyFY7Y=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.450036+00 2025-12-17 17:30:00.450042+00 37569 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BbAq3oTMizuPYC9V37ToFfPMDDI=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.452759+00 2025-12-17 17:30:00.452764+00 37570 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9jRSgQ5WVtdCdHeIL6xnsBlQskY=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.455793+00 2025-12-17 17:30:00.455799+00 37571 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DbtJBJ0D7cYJJlwtaAJ0EjzlgYg=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.458818+00 2025-12-17 17:30:00.458824+00 37572 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XnN1QBtcVZPGFr52o6asyAv0HGw=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.46204+00 2025-12-17 17:30:00.462045+00 37573 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CVAExX18cJeDkzBWmBMzGclke0o=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.465267+00 2025-12-17 17:30:00.465273+00 37574 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-oIFwjjcYTHaD8hIdAUj3KG-8zo=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.468199+00 2025-12-17 17:30:00.468205+00 37575 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g-Gb5iYJf4gLjB3o8-i8VCOGDOY=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.471027+00 2025-12-17 17:30:00.471033+00 37576 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gA97CIcwhiylTzEZSCP4WiFdHCM=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.474037+00 2025-12-17 17:30:00.474043+00 37577 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G0Ukol_Du5d834IjB28A1DKtIlI=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.476914+00 2025-12-17 17:30:00.476918+00 37578 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yu_vRXnPDzWQjMNpTMqEWsWgczY=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.47968+00 2025-12-17 17:30:00.479686+00 37579 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IycDGmmoSS7dPQHjnmoLUPOUHjY=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.48259+00 2025-12-17 17:30:00.482596+00 37580 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ol9gR6ieukgdMf4oO_uViAkwZ4=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.485703+00 2025-12-17 17:30:00.485709+00 37581 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QyZL-pKXBk0VLU2CpXVnpXCddS0=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.489399+00 2025-12-17 17:30:00.489405+00 37582 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-SYLBR7Zu68IIZ5E9dS9L7eWFJg=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.492605+00 2025-12-17 17:30:00.492611+00 37583 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-epKN3UZJZrQ1H8tYlsMal_dJjQ=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.495461+00 2025-12-17 17:30:00.495466+00 37584 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BwJRDUqrEL-s5bfbXVHRjDbG7tA=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.498245+00 2025-12-17 17:30:00.498249+00 37585 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Wc30UqsJ5cyKttGOEWqItsQLnQ=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.501088+00 2025-12-17 17:30:00.501094+00 37586 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ygY7ZOMJpZhsL9EuSUb08D8QpGo=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.50383+00 2025-12-17 17:30:00.503835+00 37587 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zd3IFBEsOKyyt1gi4Y44Ff1S7u4=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.506784+00 2025-12-17 17:30:00.50679+00 37588 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vL7OEkJbd3Rg_5rC08WhKVdqi4A=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.509969+00 2025-12-17 17:30:00.509975+00 37589 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wbP8R8-KgASXUGoWsSxu7lSlOhg=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.513086+00 2025-12-17 17:30:00.513093+00 37590 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nk2j04fuMEt_mbieR2e94HJSEOc=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.516071+00 2025-12-17 17:30:00.516077+00 37591 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1zsU3Uu9iNhF-hRMp06WOOa78NQ=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.518986+00 2025-12-17 17:30:00.518991+00 37592 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OERjDz486_Ck_mv8VV_5I5x3ofA=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.522407+00 2025-12-17 17:30:00.522415+00 37593 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1fgjspbJkkJq9ON5dr-3N98k2U0=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.525802+00 2025-12-17 17:30:00.525808+00 37594 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TggXHfUZGTOIYdFGFUkOVDUY1uw=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.528868+00 2025-12-17 17:30:00.528873+00 37595 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wd9WpdKPC91l9OPAOlz8gLj7ZLo=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.531917+00 2025-12-17 17:30:00.531922+00 37596 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0o5OJ17EgUl5w_Ij12ra1uEo2Ns=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.535188+00 2025-12-17 17:30:00.535193+00 37597 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2WD25Iq-W6Q8eO2wUFLP7xfaHd0=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.538358+00 2025-12-17 17:30:00.538364+00 37598 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FI81DVhQDFFBDsfcthoI-i6dn7Y=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.541409+00 2025-12-17 17:30:00.541415+00 37599 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2a0OcMc8l_eUacR9SSBVO3kX5sY=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.544304+00 2025-12-17 17:30:00.544309+00 37600 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vcAF0lvazuAcPNA2l2GFwS45kO0=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.547709+00 2025-12-17 17:30:00.547716+00 37601 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:icIYxXty7O3D5jZkWX01jwQRD_g=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.5512+00 2025-12-17 17:30:00.551207+00 37602 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NqR35KOXUaHd9e6orSwh35_mhyY=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.554898+00 2025-12-17 17:30:00.554904+00 37603 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:weZ3NQdu-d3mA3BpD8qf2XEK6_o=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.558264+00 2025-12-17 17:30:00.55827+00 37604 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_YfySJLiRGMwUbHr1zw5FkBRKEY=", "createTime": "2024-08-15 15:03:14"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.573776+00 2025-12-17 17:30:00.573781+00 37609 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZtRS0wnE0WQr-rOeLf9hVawcd-4=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.561507+00 2025-12-17 17:30:00.561512+00 37605 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m53NL10_rn8-fGOt5tC0sL9jraI=", "createTime": "2024-08-15 15:03:14"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.564744+00 2025-12-17 17:30:00.564749+00 37606 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k9Rl1e0jG4BOgYyzXuCJl83gO6I=", "createTime": "2024-08-15 15:03:14"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.567706+00 2025-12-17 17:30:00.567712+00 37607 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_vr8S-ytMzM7w1ZJAYhQT0_ETow=", "createTime": "2024-08-15 15:03:14"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.57084+00 2025-12-17 17:30:00.570846+00 37608 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OQ31UpyokPg-sPsiXedhfUEHIz4=", "createTime": "2024-08-15 15:03:14"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.576795+00 2025-12-17 17:30:00.576801+00 37610 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DFONQ84XLZlTvNrNcau35_C655M=", "createTime": "2024-08-15 15:03:14"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.579757+00 2025-12-17 17:30:00.579763+00 37611 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zu1Xh4Jwk5bjxesM7rxS3hg9raU=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.582872+00 2025-12-17 17:30:00.582878+00 37612 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FyfU1clpkXhXYXPMdUGaBeRpyfo=", "createTime": "2024-08-15 15:03:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.58633+00 2025-12-17 17:30:00.586336+00 37613 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MNRG0qXplQDf0oG_P2Ayvq3LzUQ=", "createTime": "2024-08-15 15:03:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.589733+00 2025-12-17 17:30:00.589739+00 37614 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cGvF5VDCJRI41HSR7HBl-FIUr1Q=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.59277+00 2025-12-17 17:30:00.592776+00 37615 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dqmdsGumm2-8V7Dwn5H3X9FXjVo=", "createTime": "2024-08-15 15:03:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.595793+00 2025-12-17 17:30:00.595799+00 37616 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zTOVeBGxi6NkD_Nt0hmNLg5uFIY=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.598864+00 2025-12-17 17:30:00.59887+00 37617 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2a94yJ3mLumGof9gNETRO-ekXso=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.601964+00 2025-12-17 17:30:00.60197+00 37618 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dy-rVPQfuyl0AU7jOWJg2_LwWXo=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.605022+00 2025-12-17 17:30:00.605028+00 37619 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iy-9Q9eb43JsdXJszw66AabruFI=", "createTime": "2024-08-15 15:03:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.60804+00 2025-12-17 17:30:00.608046+00 37620 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BRmjNH5Oi6r83G68EfPKFxUUlCc=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.611319+00 2025-12-17 17:30:00.611325+00 37621 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vZUMYaKpnVL6sHJqBwFAz6JAK3I=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.614587+00 2025-12-17 17:30:00.614592+00 37622 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ki7XHfaHZDys9cJNwd3XeeruMtg=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.617926+00 2025-12-17 17:30:00.617932+00 37623 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EmyTFJj1lt2mv1sz9Es6nEK5Hik=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.621337+00 2025-12-17 17:30:00.621344+00 37624 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GMGow0decq_NrulFT3Tpkq6bIHY=", "createTime": "2024-08-15 15:03:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.624674+00 2025-12-17 17:30:00.62468+00 37625 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YBBijhwiJ106rPv9dy-j9LSIqh8=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.627932+00 2025-12-17 17:30:00.627938+00 37626 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Awb1FxIdV3ppkS6qtnoFMJO7q0c=", "createTime": "2024-08-15 15:03:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.631333+00 2025-12-17 17:30:00.63134+00 37627 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UaRC3GWl2tDJHcbs5FZgEErLPrQ=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.634846+00 2025-12-17 17:30:00.634852+00 37628 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LqNqNnEq1pRdgqsJCIS26HH18LE=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.638462+00 2025-12-17 17:30:00.638468+00 37629 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b8JEy4T0ZmCH7xF2t3PWB2LC6h0=", "createTime": "2024-08-15 15:03:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.64194+00 2025-12-17 17:30:00.641946+00 37630 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SJftqaKs__co3bfHeUqOEBR3Uco=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.64507+00 2025-12-17 17:30:00.645076+00 37631 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:crUivMYM7-mCwYwiwW2pgGuoZDw=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.648247+00 2025-12-17 17:30:00.648254+00 37632 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XD4nsPx0l-CEVjBHgCmshmm0cYs=", "createTime": "2024-08-15 15:03:19"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.651414+00 2025-12-17 17:30:00.65142+00 37633 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qijo_gT-HmwsyoVvlL6CL17gdPs=", "createTime": "2024-08-15 15:03:18"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.654633+00 2025-12-17 17:30:00.654639+00 37634 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9GO8914tbjEgVldWI-xHqEZZ4W4=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.657774+00 2025-12-17 17:30:00.657779+00 37635 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Xx6e7SHx0nMJESAuWzKnJa70fU=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.660797+00 2025-12-17 17:30:00.660803+00 37636 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O3kF6brt16A2sJSS_vXX7fUkzL4=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.663784+00 2025-12-17 17:30:00.663789+00 37637 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qA-tCfSmFmfQ6Bs8nSqBQusGof0=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.667131+00 2025-12-17 17:30:00.667137+00 37638 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HxoVMKGmG5WeBmtFExNpWNSZGnY=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.670141+00 2025-12-17 17:30:00.670147+00 37639 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LAdFM8QPzYlhscFgWSh5Xk7lnVI=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.673426+00 2025-12-17 17:30:00.673432+00 37640 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DmpezhMgVi083oV_AlgQwbyRjJM=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.676439+00 2025-12-17 17:30:00.676445+00 37641 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TgQBDWsWn46W-27qjkk2vrQVLDw=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.679483+00 2025-12-17 17:30:00.679489+00 37642 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e-InkqjafzDC5JNdVGAzj0SWYgw=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.6827+00 2025-12-17 17:30:00.682706+00 37643 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k71TKLZ2Q-CMK5VRcLmg4j3tBRc=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.685652+00 2025-12-17 17:30:00.685657+00 37644 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ric9ZkY2qTCnhFzbd-Zum3TjpDM=", "createTime": "2024-08-15 15:03:21"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.688847+00 2025-12-17 17:30:00.688853+00 37645 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1CJ_fywxMn1Eay_AdWxdNPibC1U=", "createTime": "2024-08-15 15:03:21"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.692123+00 2025-12-17 17:30:00.692128+00 37646 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8JtAhbuZ4-bpMMsYrFIUCJBXTRA=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:00.695091+00 2025-12-17 17:30:00.695096+00 37647 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=1766078999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A_-fexqAWAB6VuJbPKUAT3itFyI=", "createTime": "2024-08-15 15:03:22"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.041449+00 2025-12-17 17:30:01.041458+00 37648 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zhT6hL42KEeuxd1hRcNtEJEijZ0=", "createTime": "2024-08-15 15:03:22"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.045547+00 2025-12-17 17:30:01.045554+00 37649 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4yYuNgcUOZR6aO4tRs68EObmHI8=", "createTime": "2024-08-15 15:03:22"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.048836+00 2025-12-17 17:30:01.048842+00 37650 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ndw43bpFyWauI0VPY18u9WyBdY8=", "createTime": "2024-08-15 15:03:22"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.052265+00 2025-12-17 17:30:01.052271+00 37651 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IDrLr8SN6NE68XNTB7J8-pStc-E=", "createTime": "2024-08-15 15:03:22"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.05557+00 2025-12-17 17:30:01.055576+00 37652 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_JoTRoCEGsH38f2KRH34SEUa8yU=", "createTime": "2024-08-15 15:03:22"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.058672+00 2025-12-17 17:30:01.058679+00 37653 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vo-brOLJMM6eRV_L2Qd5CuXDNZU=", "createTime": "2024-08-15 15:03:22"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.061762+00 2025-12-17 17:30:01.061768+00 37654 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:if4F2F3xhuAGB30ZFRtjUJ4e1oQ=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.065068+00 2025-12-17 17:30:01.065074+00 37655 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xg5n8fQ_IJnHWM_HdyyJ5PQ9wJA=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.068244+00 2025-12-17 17:30:01.06825+00 37656 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xCTIHTqp4oyh-NrS8pr9QwOkGoM=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.071152+00 2025-12-17 17:30:01.071158+00 37657 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RmmAFjXaYW_f1gCr0t3rXzLL0ns=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.074117+00 2025-12-17 17:30:01.074122+00 37658 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S67ogifrfdPCwIn8kWLaoc_aD1M=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.077274+00 2025-12-17 17:30:01.077279+00 37659 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9j3WXl9kUcpg8STzxlphj0WWWZU=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.080288+00 2025-12-17 17:30:01.080298+00 37660 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FWzQLSFq_2NUA5Bnzx6DXRmVUfY=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.082835+00 2025-12-17 17:30:01.08284+00 37661 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:prPz3nWW7Ivkza479ZdVF3nlr3A=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.085429+00 2025-12-17 17:30:01.085434+00 37662 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zo8pbMBBsxmEQqXoRC91r-yJ6Z0=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.088272+00 2025-12-17 17:30:01.088278+00 37663 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zbmouA-I0DZOEkOhpw8IeVH2BLA=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.09148+00 2025-12-17 17:30:01.091486+00 37664 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_5AOJnljgGjDyvhwego4fdEL-UU=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.094438+00 2025-12-17 17:30:01.094444+00 37665 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CTAybuNMtA9g8FErdObRcvX5mzU=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.097328+00 2025-12-17 17:30:01.097334+00 37666 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GfdFfvsPmSzUQAD7tocY0hKcFcc=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.100474+00 2025-12-17 17:30:01.100478+00 37667 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dhxSYqYqCRr-hd8PjS_zq2SR51o=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.10353+00 2025-12-17 17:30:01.103536+00 37668 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fqt7q3M9Q_Z4PuPafSM9gab6V2w=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.106685+00 2025-12-17 17:30:01.106692+00 37669 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N9xluN_fwpd036tsNTN7uLop78w=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.109905+00 2025-12-17 17:30:01.10991+00 37670 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g1TqYGkj7HZm0bFdxaTyxrOEo5I=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.113026+00 2025-12-17 17:30:01.113032+00 37671 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U2gxjJ3wnrFT9rkIX2Dlgclk7SQ=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.115927+00 2025-12-17 17:30:01.115933+00 37672 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2VFkleZA5eHHhi4uBtpg-X1QCt8=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.118975+00 2025-12-17 17:30:01.11898+00 37673 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W01zBqKR93CzHTXEZX2r91EnS3E=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.121936+00 2025-12-17 17:30:01.121941+00 37674 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SR_LKkeaum403bDC52Xwp0kE40o=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.125147+00 2025-12-17 17:30:01.125153+00 37675 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GC5qVjw_9EEw9cEbpu6LBc0EKRk=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.128376+00 2025-12-17 17:30:01.128381+00 37676 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GYVy45cLYq6r6S3nyEMAc5Gfi68=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.131458+00 2025-12-17 17:30:01.131464+00 37677 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WCF1FQEqtNdMqTe7WtFUKNxuSoU=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.134471+00 2025-12-17 17:30:01.134476+00 37678 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wsWYD9tpXNo8puP55IhteMtTwXs=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.137204+00 2025-12-17 17:30:01.13721+00 37679 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7p3VY-6xzwQcwfN8q9XzakYzWIU=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.14008+00 2025-12-17 17:30:01.140085+00 37680 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sI83BMp58pQ5_vvvafQHzK2n1ms=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.142933+00 2025-12-17 17:30:01.142938+00 37681 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZrFNnmOxvlTQ0B54R27IuE-pFPA=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.145585+00 2025-12-17 17:30:01.14559+00 37682 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nc7dXKuOzq_N6_EpSALnoxtKvgk=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.149884+00 2025-12-17 17:30:01.149893+00 37683 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:InvrnQPaglZKlkRz6FVNVgwDRqY=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.167109+00 2025-12-17 17:30:01.167115+00 37688 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MSSVWAQwLAcUJZTPGXHaC8ysdyI=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.154704+00 2025-12-17 17:30:01.15471+00 37684 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_6eM9TIvJb91KDBowDjTnxdtkkc=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.157878+00 2025-12-17 17:30:01.157885+00 37685 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rSIEaQgjdhKhDnSLxBVmWhFS6gw=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.164258+00 2025-12-17 17:30:01.164264+00 37687 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HaYNtIFUZiikCtvUNuhNNKf8tng=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.169883+00 2025-12-17 17:30:01.169888+00 37689 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hXyzYRe7d8bv7RXqhlAKOMW-_hs=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.172676+00 2025-12-17 17:30:01.172682+00 37690 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Vg9QaCtPbcIVmn3B5sMWW1trcE=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.175691+00 2025-12-17 17:30:01.175695+00 37691 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:25nY4gl0e2a0ZcnDYamRW4nhEc4=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.178802+00 2025-12-17 17:30:01.178808+00 37692 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2UfdDQCXiwRhkNYxLs02W3mp2d4=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.161089+00 2025-12-17 17:30:01.161095+00 37686 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JuvFAkUA7sgqUsvH0p-2BmZli8Y=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.184957+00 2025-12-17 17:30:01.184964+00 37693 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QgsQBDd9spyMl6I7PfKTkZ4MyCo=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.187596+00 2025-12-17 17:30:01.187601+00 37694 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tiBP5EdyK8V9Cgp4r508hpEoXII=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.191103+00 2025-12-17 17:30:01.191109+00 37695 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jGJpXFKVMxw0GNWygyEGqyAH3Ag=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.194213+00 2025-12-17 17:30:01.194219+00 37696 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dsmw6jrs0HqwlL38BGKPdPb-R9U=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.197338+00 2025-12-17 17:30:01.197344+00 37697 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c_KFGd2itEhdm-fAKq-Jx0BjgYs=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.200642+00 2025-12-17 17:30:01.200647+00 37698 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bbkjH4snUwEvVsAsdQgOsWPkeNA=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.203582+00 2025-12-17 17:30:01.203587+00 37699 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KxAwCt6MzEMymT5COnFPBrlreP8=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.206493+00 2025-12-17 17:30:01.206499+00 37700 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wfL9u5q2Lbpt8SUWFufR_B-Fo08=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.20948+00 2025-12-17 17:30:01.209486+00 37701 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UbhHS4MAsYVLyQf1NADrXHjMAmc=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.212311+00 2025-12-17 17:30:01.212316+00 37702 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:COaMTQvS7JviCXqPOiEsxhWL768=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.215285+00 2025-12-17 17:30:01.215291+00 37703 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fqqRiY4Wj9290T7bHUQOfxg82Kw=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.218028+00 2025-12-17 17:30:01.218033+00 37704 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NDOLifauWiCrpBJlQpQgG-oe_lY=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.220887+00 2025-12-17 17:30:01.220892+00 37705 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hHM5olQaXFUHAAeKrUuvmVWFXm0=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.225192+00 2025-12-17 17:30:01.2252+00 37706 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tTc49RQH2Vq3yS-UNFvGLFv1hQY=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.22845+00 2025-12-17 17:30:01.228456+00 37707 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:akVTTPcCXofa_yOS7JqyRg9sDWM=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.231328+00 2025-12-17 17:30:01.231333+00 37708 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5MRrdqOEeI0PlLWC7ZSwSbIRKTQ=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.234224+00 2025-12-17 17:30:01.23423+00 37709 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eIT-9qQSLSMPxQKLEoy59aTeqXY=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.23722+00 2025-12-17 17:30:01.237226+00 37710 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G-OLzKkEly4EZCu91LgYuV6BVco=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.240226+00 2025-12-17 17:30:01.240231+00 37711 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PFng5jFpzhCfXml4S2oFD-yF-6M=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.243184+00 2025-12-17 17:30:01.24319+00 37712 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uqHZaHZtdMbu-p-6wjXfj4h1t40=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.246331+00 2025-12-17 17:30:01.246337+00 37713 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cojsuyk5w7d2D3701Y54svSBx6Q=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.249791+00 2025-12-17 17:30:01.249798+00 37714 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZormdAUMFGgOnTKW-sB_tU54pZc=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.252982+00 2025-12-17 17:30:01.252988+00 37715 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_xlcJc_ea1_gxHicUIXm61xehnU=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.256082+00 2025-12-17 17:30:01.256088+00 37716 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xsjPirKde1EUGwkBd8cV4lFIPLc=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.259126+00 2025-12-17 17:30:01.259132+00 37717 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v_oOcCS_hnNTxaZ6n4DfhlMzOPI=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.262156+00 2025-12-17 17:30:01.262162+00 37718 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eVJ64UxkKuOB7Nf5uDuEQFJ9fuw=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.26527+00 2025-12-17 17:30:01.265277+00 37719 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wMjn8hUSbL3-7sCaNCLPC3R3snk=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.268344+00 2025-12-17 17:30:01.26835+00 37720 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hZ0zzB1RjO42l2CaHdtlPgofFLA=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.27221+00 2025-12-17 17:30:01.272217+00 37721 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L-KWOsoFNqjCxly6oueSmfCY4xw=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.276823+00 2025-12-17 17:30:01.27683+00 37722 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_M4_1963UuTR4JH2tUOiFwyKsTg=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.2801+00 2025-12-17 17:30:01.280107+00 37723 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pxXUCz_7Ez7RETxrS_O_T5yjHVs=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.283094+00 2025-12-17 17:30:01.2831+00 37724 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fw1hppjpOyMEwToZDKb8EAbfvL0=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.286121+00 2025-12-17 17:30:01.286127+00 37725 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DfthT8ZiLijnoSuxmZqvripT4tM=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.289139+00 2025-12-17 17:30:01.289146+00 37726 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Dcm_zSYLCfxHSeUqg96zju8qho=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.292221+00 2025-12-17 17:30:01.292226+00 37727 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IzMzcVCgEJLgCyY91_bzuyHdT0g=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.295099+00 2025-12-17 17:30:01.295105+00 37728 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3X3TZvBKLLb1iI5cR235nBpE0U0=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.298549+00 2025-12-17 17:30:01.298555+00 37729 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:52Cg9cGw-AlyJ86R57SBo_PjK_0=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.301834+00 2025-12-17 17:30:01.301838+00 37730 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fjBejLYePKC0RhaUJZfGtJA89jY=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.304538+00 2025-12-17 17:30:01.304543+00 37731 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5afWaevw2JLMSR7jG3SEriu2zjI=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.307654+00 2025-12-17 17:30:01.30766+00 37732 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GzW6KneXk68SSOf0VxA-ImDVTBc=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.310706+00 2025-12-17 17:30:01.310712+00 37733 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WOvsT9ZY3z6nU6QEK6wo1JV8HfI=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.313702+00 2025-12-17 17:30:01.313707+00 37734 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PY7tY_V8NrcF33NG6Cf3aymC9cw=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.31686+00 2025-12-17 17:30:01.316866+00 37735 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gsKE07FIc5dF2VCmYaRdhM0Y8qg=", "createTime": "2024-08-15 15:03:30"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.319989+00 2025-12-17 17:30:01.319995+00 37736 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KF2kOkpqZZZEUrSy4kfErXXkVoI=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.323537+00 2025-12-17 17:30:01.323542+00 37737 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RwftcJaEtZNFbZR6pf-koV6aFGE=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.327028+00 2025-12-17 17:30:01.327034+00 37738 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WeKpOjKKmrStl1nEAe5zl_Bc5uo=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.329919+00 2025-12-17 17:30:01.329924+00 37739 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2n1XCVySEHGBjhFALr4PRwcLxhk=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.332762+00 2025-12-17 17:30:01.332767+00 37740 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1iCmeJnRvofqFk0RUe6Lf2RMvXY=", "createTime": "2024-08-15 15:03:30"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.335551+00 2025-12-17 17:30:01.335556+00 37741 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rnlnlfc8V6ZFofvtUv-oDTqRk5Q=", "createTime": "2024-08-15 15:03:30"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.338528+00 2025-12-17 17:30:01.338534+00 37742 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-25xSQbQ1iDwuOkl3UI2Nvyijn0=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.341583+00 2025-12-17 17:30:01.341588+00 37743 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YeVKRRLXYv5Hi_VQsR7urhN0VnM=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.344542+00 2025-12-17 17:30:01.344548+00 37744 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nxycp2WkNAxQNtcPnzu9-Q5Nsjk=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.348104+00 2025-12-17 17:30:01.348111+00 37745 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jUadoyWrCEvw22gvzPYKdf8yHkM=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:30:01.35166+00 2025-12-17 17:30:01.351667+00 37746 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=1766079000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mjxOFr6jZ2mlMxxWkz6oOvvt7OM=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.457456+00 2025-12-17 17:40:00.457464+00 37747 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MUsPNXJy3n9SLLBA1C295LniaAE=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.461608+00 2025-12-17 17:40:00.461614+00 37748 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:snVPNCgSRIOUX-EbGWyN4zA2Vo8=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.46492+00 2025-12-17 17:40:00.464925+00 37749 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QWaF6aTAdmA67TI-aaDI67bMPt4=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.467829+00 2025-12-17 17:40:00.467835+00 37750 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ov3kxKhmghNee4KajEU9fu7acNo=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.471557+00 2025-12-17 17:40:00.471562+00 37751 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5FkNzTMZlFymjrJzGsOQxQLMRAg=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.474867+00 2025-12-17 17:40:00.474873+00 37752 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rY47KY-vNb6boXUOHZeR94TcGzo=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.477809+00 2025-12-17 17:40:00.477814+00 37753 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wNRI6m-dRhILbDK-bCJ8Z_4QknE=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.480536+00 2025-12-17 17:40:00.480541+00 37754 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9qelASUi6wOdx1Eh6Ucw4hQTJXo=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.483208+00 2025-12-17 17:40:00.483213+00 37755 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ed2mmTF5PFoKNmFagIwojomxnE8=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.486162+00 2025-12-17 17:40:00.486168+00 37756 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48zVEGq_a06Nmkx_ooLsE-VVR8A=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.489239+00 2025-12-17 17:40:00.489246+00 37757 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6-4ICW4AojuziyQhERPhCluDvvc=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.492831+00 2025-12-17 17:40:00.492838+00 37758 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pg_EfbPaozdlDbjrBXh42M1VsE0=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.496498+00 2025-12-17 17:40:00.496504+00 37759 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QbL9rOhoUa-vbUjnm2odLqrILzU=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.499769+00 2025-12-17 17:40:00.499775+00 37760 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WEWhwYwSfC5g6uusAQHvc9_M7kM=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.502847+00 2025-12-17 17:40:00.502853+00 37761 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l5p1qgm3viZozzXFmUlowdk4oac=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.505933+00 2025-12-17 17:40:00.505938+00 37762 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JR9RnQZzpay6fwRIdPFXPmAJl_Y=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.509179+00 2025-12-17 17:40:00.509185+00 37763 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oR-Uvz8iU04EVv_SX2DQgKdwnG0=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.512299+00 2025-12-17 17:40:00.512305+00 37764 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YpbuWduQ7Whiy_tprU6-xrygdKg=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.515216+00 2025-12-17 17:40:00.515222+00 37765 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OxZXtHNKVpan0K9OHuvz8xiYQNA=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.518113+00 2025-12-17 17:40:00.518118+00 37766 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8hsFdMWdoXV4V4p5aBh8dUX6zHc=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.521452+00 2025-12-17 17:40:00.521458+00 37767 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lLAElyroOr2ikuC5yyFvzPuPkRQ=", "createTime": "2024-08-15 15:03:34"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.524953+00 2025-12-17 17:40:00.524959+00 37768 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EcIDif_fyo1nAfel4RLtKpVAk2s=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.527966+00 2025-12-17 17:40:00.527971+00 37769 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-rsjX_VXf-9XsFz9tUxZxSsogIg=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.530735+00 2025-12-17 17:40:00.53074+00 37770 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KZJrEqjt2oJeQUe7xV_fpA9Bhsw=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.533442+00 2025-12-17 17:40:00.533447+00 37771 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_bJxmwyE6Wm1ltXAMWHTL0RtStw=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.536553+00 2025-12-17 17:40:00.536559+00 37772 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kaX4nzNdgkaBfUxOYtNRmpd_rpM=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.539893+00 2025-12-17 17:40:00.539899+00 37773 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hOXVnPoy34lDegLl0ks9Ypf3aP4=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.543168+00 2025-12-17 17:40:00.543174+00 37774 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xNKQ2QAKvxPJcQbZsQqe0FLKZr8=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.547069+00 2025-12-17 17:40:00.547075+00 37775 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bm-8d3qLhHyzY3gTvVo3Mhztcfw=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.551693+00 2025-12-17 17:40:00.551701+00 37776 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hY8TJ2F2RH9e1tfKTNS2DXGhmhg=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.555652+00 2025-12-17 17:40:00.555659+00 37777 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hXXwIOragCy0Tr2-dMa6agZb8mw=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.559285+00 2025-12-17 17:40:00.559292+00 37778 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NnQ3CKgnPrA-dL0nrRXqDiydYN8=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.56244+00 2025-12-17 17:40:00.562448+00 37779 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CR0NmqETWMWxEj07ujLTctfVf-E=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.565391+00 2025-12-17 17:40:00.565397+00 37780 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ye4Xe22zL7KbeHOiTeGPEX0D7Bc=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.56856+00 2025-12-17 17:40:00.568569+00 37781 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TEnn_huC_7nNxRVDk8gA3agHPnM=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.571684+00 2025-12-17 17:40:00.571689+00 37782 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_cuuEHmIDCUeMlHjYCrwO3VPh_4=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.575254+00 2025-12-17 17:40:00.57526+00 37783 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NcgPY21UdTT7rGKNjoN9_6WriSk=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.578552+00 2025-12-17 17:40:00.578558+00 37784 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DT1ogVd9TcP_mv-iVIaKUtmVsUQ=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.58132+00 2025-12-17 17:40:00.581325+00 37785 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wz_y_f7sTzifu1LrIBdzSJ3rHY0=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.584117+00 2025-12-17 17:40:00.584123+00 37786 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wRepy3ClVtktVmiM0ySicOdYkAE=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.587101+00 2025-12-17 17:40:00.587106+00 37787 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8q-2eTW1QNGY5-QS29qg1Q_d6lc=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.590171+00 2025-12-17 17:40:00.590177+00 37788 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W7f3n3nbC37Iutr85jAO7lsdRbE=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.593087+00 2025-12-17 17:40:00.593092+00 37789 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uQbWK5YPYH9A8HQfuV3tAVIJBNg=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.595864+00 2025-12-17 17:40:00.595869+00 37790 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ckHJHXPJ757tV981r-3yWZULH90=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.624485+00 2025-12-17 17:40:00.624491+00 37799 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CPPmnVQg0lpij2M1p6-ZcOTzizo=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.598824+00 2025-12-17 17:40:00.598828+00 37791 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wTsU344pNPIy30iI5Gd330qHQMs=", "createTime": "2024-08-15 15:03:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.601882+00 2025-12-17 17:40:00.601887+00 37792 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ziTHPnoA5TiEAPLQwQXtGEGKsGc=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.605009+00 2025-12-17 17:40:00.605014+00 37793 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OiMwTl45u2NavuyDKRR1Yw1jLhc=", "createTime": "2024-08-15 15:03:37"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.608249+00 2025-12-17 17:40:00.608254+00 37794 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k7C0RwWGFkklcvuZkCu4M8p2Ku8=", "createTime": "2024-08-15 15:03:38"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.611431+00 2025-12-17 17:40:00.611436+00 37795 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:33Pe5udDnxP6bAyzi3_4cZUAIZo=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.614469+00 2025-12-17 17:40:00.614474+00 37796 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TXqWnCrJOSHxKMfwCUDQsGkYyzI=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.617578+00 2025-12-17 17:40:00.617584+00 37797 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rJ8-_RLRnhKoUMVJW9lOLg_lwkk=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.620978+00 2025-12-17 17:40:00.620984+00 37798 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Or4dRPP10HKYb0lcFGPexDZPDw=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.627902+00 2025-12-17 17:40:00.627908+00 37800 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3GuPPOb4tSK7_5nfTVU-Q86-Tac=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.630947+00 2025-12-17 17:40:00.630952+00 37801 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fW61zyLS9JwUDdn_IijE1xR0XtY=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.633933+00 2025-12-17 17:40:00.633938+00 37802 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NUXWiezrsZ-pfVShQp84-gIwmEc=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.636881+00 2025-12-17 17:40:00.636886+00 37803 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IS20QLciYhfiIZ-LLV83P9nPXew=", "createTime": "2024-08-15 15:03:38"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.63988+00 2025-12-17 17:40:00.639886+00 37804 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6QOJUaE1vMNlZzO3SFdaYUuK1rg=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.643089+00 2025-12-17 17:40:00.643095+00 37805 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UIvfalVSN4FFmF9YtWbfqUCSQvo=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.64625+00 2025-12-17 17:40:00.646256+00 37806 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6EpLHCp-c2s3-wCINa1j2KR8mxg=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.64951+00 2025-12-17 17:40:00.649516+00 37807 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ARrXjo7QxD_W9czc391wUoUSP_c=", "createTime": "2024-08-15 15:03:38"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.65284+00 2025-12-17 17:40:00.652846+00 37808 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9rxYkQlOWTX4Kb00fbQmnnzIsp4=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.655862+00 2025-12-17 17:40:00.655868+00 37809 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HBD-mOVQE3eDbpDFVuuDpXeNK6M=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.659166+00 2025-12-17 17:40:00.659173+00 37810 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NaE-td7QW7S0MaiWgY80dy_eDE4=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.662366+00 2025-12-17 17:40:00.662372+00 37811 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4_8LNoT5C4VYdtyNQaRAgt2KfrU=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.665355+00 2025-12-17 17:40:00.665361+00 37812 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vGQRJ9XcnecssMMVt58Y36Yojtc=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.668333+00 2025-12-17 17:40:00.668338+00 37813 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DPhwa0-Achs9JoFQSm4-8pVRfHU=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.671307+00 2025-12-17 17:40:00.671313+00 37814 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hz1lAWRT4lI_n5KS84Fz462KprA=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.674751+00 2025-12-17 17:40:00.674758+00 37815 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dFPhp3GmcudoeaXCYI_-ntwR1Go=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.678451+00 2025-12-17 17:40:00.678456+00 37816 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ssfwv_gRmhpUauLCynNbjMCZAeo=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.681392+00 2025-12-17 17:40:00.6814+00 37817 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7D3iCzvtXUZ2n1u_YFeRJsKecQA=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.684291+00 2025-12-17 17:40:00.684296+00 37818 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wX5VxPoxxemRips4JJiqZ_n2Mao=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.687443+00 2025-12-17 17:40:00.687449+00 37819 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZWm-FPHmwBFGIJuj2aaGcAKtotE=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.692604+00 2025-12-17 17:40:00.692614+00 37820 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CaJDtPXCbWnq9SvvFdHQJXOs-90=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.697252+00 2025-12-17 17:40:00.69726+00 37821 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XDzA7MZiY5Ra0ktheBX2g772bhc=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.700325+00 2025-12-17 17:40:00.70033+00 37822 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vtGW0wNCaTTcWEpcfx9YLuH0tpM=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.703627+00 2025-12-17 17:40:00.703632+00 37823 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IjIC_h72qsPCgr16I9IN8ZisTPI=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.706953+00 2025-12-17 17:40:00.70696+00 37824 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_HxeZzWG4umnPQ3XCyDtbk8_RlU=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.709908+00 2025-12-17 17:40:00.709913+00 37825 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xiXp2zO3PdA8Z0vNl1DRnGoFrHs=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.712798+00 2025-12-17 17:40:00.712803+00 37826 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5d4LEKv09nuYFqjJANga6u8dN6A=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.715451+00 2025-12-17 17:40:00.715456+00 37827 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ztyX8q-DxyczKwlZBH69910sOLU=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.7186+00 2025-12-17 17:40:00.718605+00 37828 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G2qUCh8pZJEXYjcRv2aXZixfPNQ=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.721475+00 2025-12-17 17:40:00.721481+00 37829 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_UAIsypOsKfjd2m3LqzyHYohDic=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.724559+00 2025-12-17 17:40:00.724569+00 37830 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rEXtN7shMEAZoDeCYMC6JaBncyk=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.727825+00 2025-12-17 17:40:00.727831+00 37831 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iee24wRnDHV1vj4wPrSj7jefZyM=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.73098+00 2025-12-17 17:40:00.730985+00 37832 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sb-5Pgk1ytBxQmYiQkoghEuS6RM=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.733752+00 2025-12-17 17:40:00.733758+00 37833 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ba_NClluqoaWNcXw86JqelNCOoA=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.736814+00 2025-12-17 17:40:00.736819+00 37834 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RYqgV1Ev2DNTNxGOcziaAbnIl-c=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.739723+00 2025-12-17 17:40:00.739728+00 37835 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rmOUWgC6t4xTO0D-EbV0AA8mp6w=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.742644+00 2025-12-17 17:40:00.74265+00 37836 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fhml2E6j5j8vDRTjbJKZLGoi0Tw=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.74553+00 2025-12-17 17:40:00.745536+00 37837 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5qTH0uGmD3qrlCSV_BucM6BkSE0=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.748444+00 2025-12-17 17:40:00.748449+00 37838 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BUNxUMyGr3qS8exChgxQtFE4NKs=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.752018+00 2025-12-17 17:40:00.752024+00 37839 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FNFnDXc7AMd-MgS_rrFlDSiJcB4=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.7552+00 2025-12-17 17:40:00.755205+00 37840 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c63hrarjSgjMVFVVZSzkfWIaBkw=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.758303+00 2025-12-17 17:40:00.75831+00 37841 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-wRbeLQx8w0GPeax_2f133C2fMQ=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.761376+00 2025-12-17 17:40:00.761381+00 37842 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pXtxRkWjpxDIowkrw-ldwPh73Iw=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.764127+00 2025-12-17 17:40:00.764131+00 37843 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZANT7QLBARdaZEC-D-LSRfFtfAE=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.766824+00 2025-12-17 17:40:00.766829+00 37844 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NTDUqCUg6bMo3AATgKVoQoZJMUY=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.769962+00 2025-12-17 17:40:00.769968+00 37845 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kB6pOVqquwpdyx0P2N8byxRUld4=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:00.772997+00 2025-12-17 17:40:00.773003+00 37846 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=1766079599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gMqtcZ9yfYMZcbDJxLLuufqtlbE=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.145354+00 2025-12-17 17:40:01.145363+00 37847 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ihyxB5Td1S53L-UwEDjdwedbjgQ=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.149502+00 2025-12-17 17:40:01.149508+00 37848 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6D9LkDNNSpfxUuopsB_uon-QyBI=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.152948+00 2025-12-17 17:40:01.152954+00 37849 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k6Jsi17JrYeQ3MSRngdENFTWWoI=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.155947+00 2025-12-17 17:40:01.155952+00 37850 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aAHJKCJFFJs-SfSfJ1J_DogBOCQ=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.15877+00 2025-12-17 17:40:01.158774+00 37851 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4GNExrI5gC1HcxLuAmjJQEp6MAA=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.161676+00 2025-12-17 17:40:01.16168+00 37852 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6DLOSUKRxPoy4R7iR5cNM2ZeuMk=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.164489+00 2025-12-17 17:40:01.164494+00 37853 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PPa6yBu8glOT_t8Bm7_a7iUyxiM=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.167091+00 2025-12-17 17:40:01.167096+00 37854 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SMzqy9K7NXw79p3mkeXvzU2Fvxc=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.171449+00 2025-12-17 17:40:01.171459+00 37855 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hsP7wW-bf1ImtNy8G6F5yhXZ_dE=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.180721+00 2025-12-17 17:40:01.180728+00 37856 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IXSLUQ_3Y0P3aKJywqryJlUY0dA=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.184942+00 2025-12-17 17:40:01.184951+00 37857 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ctQUn3PmUWmbO4aIkQ-i4j1EKHY=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.188992+00 2025-12-17 17:40:01.188997+00 37858 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HS9NE0_xlulKPiT-l1TI7NcfeQ8=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.192317+00 2025-12-17 17:40:01.192323+00 37859 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vAw7C6F7qgotdhOzASeZB4FkwTU=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.195483+00 2025-12-17 17:40:01.195488+00 37860 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uYbudrukNk03XYbrJ29O9s0GX2E=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.198191+00 2025-12-17 17:40:01.198195+00 37861 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YAJ55aUozaUFywdBx-zUChXy0j8=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.200849+00 2025-12-17 17:40:01.200854+00 37862 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cSBu_dM0BZy7NObr4d-aSpx4h_k=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.203667+00 2025-12-17 17:40:01.203672+00 37863 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v4YmnU0DmDEEOfy_QEFtuEv_fSI=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.206444+00 2025-12-17 17:40:01.206449+00 37864 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vKCqZ_kenMwmBVTH0FMTnLqxYZ8=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.209273+00 2025-12-17 17:40:01.209277+00 37865 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:njBI6dagsMKEVpr7Y2_an2lq2xQ=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.212088+00 2025-12-17 17:40:01.212093+00 37866 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y2fynsWpNN1PE8mModVzagZOmEE=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.215143+00 2025-12-17 17:40:01.215149+00 37867 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Zk0bGhXFjlPhZxQVHEoGYjeylA=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.21833+00 2025-12-17 17:40:01.218335+00 37868 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZvBV_skgGr_QUT5AZr_zFFQ3zR0=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.221239+00 2025-12-17 17:40:01.221243+00 37869 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ex8zXagNy5xtIg7sfgRojd_mn_A=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.224175+00 2025-12-17 17:40:01.22418+00 37870 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ald0fwimQGyvuMZe-x_yp02Dvs4=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.227009+00 2025-12-17 17:40:01.227014+00 37871 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QFexT6LawEuWOPBz7CZMeonl2zA=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.229942+00 2025-12-17 17:40:01.229948+00 37872 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xzEOfxm2HUAC27zvQBrsedHBp6o=", "createTime": "2024-08-15 15:03:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.232825+00 2025-12-17 17:40:01.232831+00 37873 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FWuchOx6NBwysR55-2bSy3uT6yY=", "createTime": "2024-08-15 15:03:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.236136+00 2025-12-17 17:40:01.236142+00 37874 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a43Be1Fe8U3uWhhcnxXB00Tx8A8=", "createTime": "2024-08-15 15:03:46"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.239297+00 2025-12-17 17:40:01.239306+00 37875 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fl2Nj9vrj112JFCv1FcRrOSbEHQ=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.254426+00 2025-12-17 17:40:01.254431+00 37880 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oabqRHlOSes6w9stvjpddnPE_lw=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.242624+00 2025-12-17 17:40:01.24263+00 37876 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ihJrPR41lUZJ_TaTYBVm55I3Uo=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.245593+00 2025-12-17 17:40:01.245599+00 37877 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y1zpsYwRc0ZzvLUYpBhpeyEAsOI=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.248409+00 2025-12-17 17:40:01.248414+00 37878 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PV2SxHfdlBE5XV9R2o4fmFqwG5U=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.251362+00 2025-12-17 17:40:01.251367+00 37879 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZzmKCrBch89w1hN2-CW6FppEDjM=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.257457+00 2025-12-17 17:40:01.257463+00 37881 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lpoxsAIr7N-CohLJFbVAHtb4pFo=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.260527+00 2025-12-17 17:40:01.260533+00 37882 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kPASwLwzaAO8j19gXmQtnLFjGfQ=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.263682+00 2025-12-17 17:40:01.263687+00 37883 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lU8WmmZL0SrXDApW6ZfX4Gt2kOY=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.26662+00 2025-12-17 17:40:01.266626+00 37884 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cKzVQp0vJAODxGRavRHdHzps9BE=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.270477+00 2025-12-17 17:40:01.270487+00 37885 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:80h-T4F3S29sZF0X1v8Tn6CSb4o=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.275516+00 2025-12-17 17:40:01.275523+00 37886 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L_S99FSs6nDfUW62FmZn0KrokOo=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.278494+00 2025-12-17 17:40:01.278499+00 37887 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aezh-smBzUHssvT58fz9L8SO9So=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.281414+00 2025-12-17 17:40:01.28142+00 37888 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cf8F0lzmpAAk9b0DpiA5tn_tLW8=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.284419+00 2025-12-17 17:40:01.284427+00 37889 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:owpnSLDBIrbfBWqjDbiGgOOjkww=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.287926+00 2025-12-17 17:40:01.287932+00 37890 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aD6pKjodKp5qnZ279SXEAjaYxas=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.291634+00 2025-12-17 17:40:01.291641+00 37891 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zuvNyMMj8vrpme4Y2tS2uNR-6GM=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.295301+00 2025-12-17 17:40:01.295306+00 37892 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MfoBS5grvo_0EtF7zZj6CpzHfHM=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.298007+00 2025-12-17 17:40:01.298011+00 37893 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oNNIwAVZGad6sIfybWIbhjPy1Sc=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.300649+00 2025-12-17 17:40:01.300654+00 37894 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ur40ctiN_-g58qNxHM0BMmYCySk=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.303552+00 2025-12-17 17:40:01.303557+00 37895 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ggLShcl3xFTxgeXcmoGiYxLhXmc=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.306458+00 2025-12-17 17:40:01.306464+00 37896 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gtlfrzbv4Nmb66bH9mG9FmhZHj0=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.309484+00 2025-12-17 17:40:01.309489+00 37897 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lJ3PEeuNiXTPWAm79zxq-LNrqak=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.312453+00 2025-12-17 17:40:01.312459+00 37898 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uk93u1J74nqEfVggDHBNMzQ0bzY=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.315676+00 2025-12-17 17:40:01.315681+00 37899 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GuhlTiNsFisBEKi_vNPbCOlBdBg=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.319195+00 2025-12-17 17:40:01.319201+00 37900 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_rJCoUQPFjCzculDLsEJ-WQttiA=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.322034+00 2025-12-17 17:40:01.32204+00 37901 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BZNROatdaADpz_PiKOPdCC5b0l0=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.324937+00 2025-12-17 17:40:01.324943+00 37902 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U8STm7FSpf02D2esXUVFPJaiygk=", "createTime": "2024-08-15 15:03:49"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.327919+00 2025-12-17 17:40:01.327925+00 37903 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:98wdwjNylymG9pI-RqcjZJPnupw=", "createTime": "2024-08-15 15:03:49"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.33077+00 2025-12-17 17:40:01.330776+00 37904 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pOmgho94nyJ1rupn-9xgam6YgDc=", "createTime": "2024-08-15 15:03:49"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.333539+00 2025-12-17 17:40:01.333545+00 37905 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:paO75asHC_FL6Cq9mjxjEHJqS5A=", "createTime": "2024-08-15 15:03:49"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.336434+00 2025-12-17 17:40:01.336439+00 37906 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XmztQuqQ7RmAhEFVwXfN--piVww=", "createTime": "2024-08-15 15:03:49"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.339585+00 2025-12-17 17:40:01.33959+00 37907 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lh22vywwqtdlhqKrxJ51dxQHepU=", "createTime": "2024-08-15 15:03:49"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.342716+00 2025-12-17 17:40:01.342721+00 37908 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qR9b0Nuzg6mpjIOl7zy62uD0PVE=", "createTime": "2024-08-15 15:03:49"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.345529+00 2025-12-17 17:40:01.345534+00 37909 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cQyzkgjnOdJkqJQGyCpDFRZVlNw=", "createTime": "2024-08-15 15:03:50"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.348264+00 2025-12-17 17:40:01.348269+00 37910 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2BZXx0QaHxu5-t8D6ErAb63RIuM=", "createTime": "2024-08-15 15:03:50"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.351193+00 2025-12-17 17:40:01.351201+00 37911 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dS4f7_MI7un6NrFoTlFwk7vPEuU=", "createTime": "2024-08-15 15:03:50"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.354627+00 2025-12-17 17:40:01.354637+00 37912 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BkF9qe39n1KZfhJbRAk6lFQVWq8=", "createTime": "2024-08-15 15:03:50"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.358136+00 2025-12-17 17:40:01.358143+00 37913 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z5M_rEOPfVxT1z26sn_HQasCY0w=", "createTime": "2024-08-15 15:03:50"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.361488+00 2025-12-17 17:40:01.361494+00 37914 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B_hAHbJmlV82y1AalEOVJC3dxMg=", "createTime": "2024-08-15 15:03:50"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.364861+00 2025-12-17 17:40:01.364867+00 37915 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BWhtY0SzxR1IzPwS3r5ChZd1dfA=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.36795+00 2025-12-17 17:40:01.367955+00 37916 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O-H8ELDeUC7KQ5y_o2kTDUtubrY=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.371042+00 2025-12-17 17:40:01.371047+00 37917 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mnoeoccSP8ZAZmTv3e1xayNh9o0=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.374305+00 2025-12-17 17:40:01.374311+00 37918 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ZimRfCxh2qu8cSVAy0SmwTaikk=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.377738+00 2025-12-17 17:40:01.377743+00 37919 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1LoWk86VCfEyu-2ymGsghvVtMpg=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.381003+00 2025-12-17 17:40:01.381009+00 37920 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u5i-E7epy_EouHkuOdGQiShbdJI=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.384263+00 2025-12-17 17:40:01.384269+00 37921 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ALigcYG4mogbL5S395pX7WYuWg=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.387773+00 2025-12-17 17:40:01.387779+00 37922 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w4fZQYObekN_bp53pkfUZPZYWTc=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.391413+00 2025-12-17 17:40:01.391419+00 37923 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IP-uegep-o-OwUGvx4agxNwxAJs=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.39494+00 2025-12-17 17:40:01.394946+00 37924 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5DQ5nors7r34NUo6Pq1zN4KnLXE=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.397932+00 2025-12-17 17:40:01.397938+00 37925 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K37KcUbWCN9aJk2taJ3G4z4Ykzw=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.401025+00 2025-12-17 17:40:01.401033+00 37926 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1xWpXfbN8vBnjNlA0IagV1d9bZg=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.405029+00 2025-12-17 17:40:01.405035+00 37927 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:teqRY2rNS9FJisTGrQmhJsjfoVI=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.409374+00 2025-12-17 17:40:01.409381+00 37928 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3BXvzDlrIA2xZn1Mq9XgiE5lj4A=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.41396+00 2025-12-17 17:40:01.41397+00 37929 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A3Pi0ji57m80cFzhYp-a4Uft5Pw=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.422305+00 2025-12-17 17:40:01.422316+00 37930 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LAukZkLs23UEkz8A4BgSLZp63gU=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.42629+00 2025-12-17 17:40:01.426299+00 37931 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OzuWiniPmm6XXHo2DRZ16_kl8Sg=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.430084+00 2025-12-17 17:40:01.430091+00 37932 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2VpiusoKMUL3f02fqNrovJAQ_kQ=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.433194+00 2025-12-17 17:40:01.4332+00 37933 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oll9bnu0Y_f2-cHjahFW-kUE6TQ=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.467747+00 2025-12-17 17:50:00.467756+00 37946 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wx2b-TzHsaR0XOovbZwZaPr7D0M=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.437362+00 2025-12-17 17:40:01.437371+00 37934 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QGkMcboVAtrnO7B11hoBgv-uHH4=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.441952+00 2025-12-17 17:40:01.441959+00 37935 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N09IIXzhWc4OfjvnOZIyl2fIg4E=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.445068+00 2025-12-17 17:40:01.445074+00 37936 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XGfqQ5qf42nd8yyo-YDKR8JGj1A=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.447987+00 2025-12-17 17:40:01.447993+00 37937 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:djmEJrSm-TXiDbm93RB_cOeo0PI=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.450853+00 2025-12-17 17:40:01.450859+00 37938 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9svBTp2R9DHMQf7x06MxwBeUhtk=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.454121+00 2025-12-17 17:40:01.454126+00 37939 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pp9OvCnAF4Y23f_XCC9-J6cQ_o8=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.457415+00 2025-12-17 17:40:01.457421+00 37940 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FN97MkKuxA1wK5SjCz-4K1SPpzo=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.461884+00 2025-12-17 17:40:01.461894+00 37941 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1aBAp09ODC54n_m_xxltxx4rdSs=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.467071+00 2025-12-17 17:40:01.467077+00 37942 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pC8yjGKD1MQWBQP8WJ0SThfVRdE=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.470421+00 2025-12-17 17:40:01.470428+00 37943 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cqna14k28jSSgyeKO7uvIHIzJJQ=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.473701+00 2025-12-17 17:40:01.473706+00 37944 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xw2q1aQ5garuQfltYGXd9RaDeXU=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:40:01.476692+00 2025-12-17 17:40:01.476697+00 37945 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=1766079600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:heCa0qasHli-stTkq-eVJSi3f9s=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.472157+00 2025-12-17 17:50:00.472163+00 37947 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uXwxpnn90tIyX8eeDb0UDqzPmYs=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.475833+00 2025-12-17 17:50:00.475839+00 37948 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:llNpX1R71pjG2duP2z-iORT425M=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.478679+00 2025-12-17 17:50:00.478684+00 37949 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_0w8gRmp17jp47AsTHfEQuBgziY=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.481962+00 2025-12-17 17:50:00.481967+00 37950 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bEDC675dy4GlmOCMmMsNMIAuMEU=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.485204+00 2025-12-17 17:50:00.48521+00 37951 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qjGkYHKkXBKUVie3g5410tTPL5I=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.488081+00 2025-12-17 17:50:00.488086+00 37952 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Rd4k6axy4HJWnOjN7v-lAafR6A=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.491+00 2025-12-17 17:50:00.491006+00 37953 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DItkF-gls_Yjg_OI3x365XiTA7Q=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.4941+00 2025-12-17 17:50:00.494105+00 37954 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pWKx_NXbdB5EoLIs2hB9q9bpjfE=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.497342+00 2025-12-17 17:50:00.497348+00 37955 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7-BPtidvs2kDWVhgrtHNe3R3-rw=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.500581+00 2025-12-17 17:50:00.500586+00 37956 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-4kEwCqXQeIVyz_egkuDCWkRhO4=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.503636+00 2025-12-17 17:50:00.503642+00 37957 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u96HUkQGYXw1_nuy09QBQGvBoLg=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.506793+00 2025-12-17 17:50:00.506798+00 37958 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qewc2Ff8dhSMvSffj8On-cys90Q=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.510202+00 2025-12-17 17:50:00.510207+00 37959 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ltXtrlvBX2YJ0qwMEU7xPL97QuM=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.513097+00 2025-12-17 17:50:00.513105+00 37960 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fhjRpoYOzbf8WHC7hYhK6t8UZjw=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.51648+00 2025-12-17 17:50:00.516486+00 37961 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7pzQjNm1spFEVCrEzcarzUfTPM=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.51958+00 2025-12-17 17:50:00.519585+00 37962 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p8zw_j6QOBv_ClE3hqE37pGNg9M=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.52242+00 2025-12-17 17:50:00.522425+00 37963 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kfguEvU4JeRYWcszxpN5KtMJTuw=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.525092+00 2025-12-17 17:50:00.525096+00 37964 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TiKDMXERDXhjN3OE8aBKwF6HhvE=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.527766+00 2025-12-17 17:50:00.527771+00 37965 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R4CbsQ7U0EkjdOhtusmG1Vs8j8M=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.530942+00 2025-12-17 17:50:00.530949+00 37966 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YAMpHKvnRcrXOT6Io3aUOEnuI58=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.534355+00 2025-12-17 17:50:00.534361+00 37967 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U9oe61b9DGO3RvUtXU5DjMCYG6I=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.537362+00 2025-12-17 17:50:00.537367+00 37968 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QRfEL3-K0yPElHRfazIWTnMq-Ho=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.540183+00 2025-12-17 17:50:00.540188+00 37969 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N312chaqt_-cn2oPNR735m4KC5c=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.542877+00 2025-12-17 17:50:00.542881+00 37970 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nryjoz5NbLGwGs6YeKRX-BSpCUg=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.550274+00 2025-12-17 17:50:00.550282+00 37971 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o_uSFXhFlXe0sgu676vsMb1J1ac=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.554107+00 2025-12-17 17:50:00.554114+00 37972 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FST8wPWjWKS5CzH88H0gxd7oOEg=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.557887+00 2025-12-17 17:50:00.557893+00 37973 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wtaaZxogJDvOtoUC7pDHewl_G14=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.561128+00 2025-12-17 17:50:00.561134+00 37974 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nPbMp03zq9hh_79oQazLaEchJ30=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.564097+00 2025-12-17 17:50:00.564103+00 37975 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ijxc9p--epbfbna3Wz29PlolHwM=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.567302+00 2025-12-17 17:50:00.567308+00 37976 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tlKv4A5xsK0F4oPA17h6H6X2QYQ=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.570189+00 2025-12-17 17:50:00.570194+00 37977 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hC1RS42rjzZPH180Jv81-7BuWuo=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.573127+00 2025-12-17 17:50:00.573132+00 37978 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mIzi4jiGdMR9I2-7KlFeivagVIk=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.57583+00 2025-12-17 17:50:00.575836+00 37979 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UTBwMM0pYf6lhsAfC5craZ5Rt7s=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.578555+00 2025-12-17 17:50:00.57856+00 37980 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j06I3o_AE64MIE33-Hsgquxo8fE=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.581822+00 2025-12-17 17:50:00.581828+00 37981 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kHFpcaGlH2AMGqXMDi2tkDUBjXk=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.585394+00 2025-12-17 17:50:00.5854+00 37982 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:85LVOZYBXYe6qCZYIYwoIIl6Xac=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.588505+00 2025-12-17 17:50:00.588511+00 37983 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9_vOCKYvwBjSshgW4xC5bwny-nM=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.591579+00 2025-12-17 17:50:00.591585+00 37984 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:miJTn3x-Np926TimF9y-0wqBne4=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.594509+00 2025-12-17 17:50:00.594514+00 37985 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SuilNr7tHQBRPED3_S85ReXFAnA=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.5975+00 2025-12-17 17:50:00.597506+00 37986 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_2ZvqjYgWBoUvrv1KUhXhIn1yMg=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.600617+00 2025-12-17 17:50:00.600623+00 37987 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cPmknP-MvJG6SIq4UyDQgc5h_-A=", "createTime": "2024-08-15 15:03:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.603733+00 2025-12-17 17:50:00.603739+00 37988 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ktwcVfbhEbK8K5_onwgrdKn1uxA=", "createTime": "2024-08-15 15:03:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.607071+00 2025-12-17 17:50:00.607077+00 37989 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qe6X13Pgf2_3waY4lmVVJUrngEY=", "createTime": "2024-08-15 15:03:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.61088+00 2025-12-17 17:50:00.610888+00 37990 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DLRLI4X2QZEFGO81GQZ398kNDyo=", "createTime": "2024-08-15 15:03:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.614433+00 2025-12-17 17:50:00.61444+00 37991 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZrY0xeKiWXTRe51yw0Hrzxovakk=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.617901+00 2025-12-17 17:50:00.617907+00 37992 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Si7LcEDuQ5-DlD9NuGuycJ0Qr_o=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.621296+00 2025-12-17 17:50:00.621303+00 37993 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lc8IbXhuPJa75ClIJ1JD5M0fH40=", "createTime": "2024-08-15 15:03:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.624284+00 2025-12-17 17:50:00.62429+00 37994 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dCY2vCS9ZgWsUgRYlN3r9kxC0t0=", "createTime": "2024-08-15 15:03:59"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.627287+00 2025-12-17 17:50:00.627293+00 37995 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lxbBvrwRAxqJS76knwi1Todj7Co=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.630243+00 2025-12-17 17:50:00.630249+00 37996 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yt8KCYMYistzipHScEpUPN4cVW4=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.633751+00 2025-12-17 17:50:00.633757+00 37997 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:COypGbgUU3aStDG2Kt7lXoSu2Ks=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.63727+00 2025-12-17 17:50:00.637277+00 37998 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z8H3aiqDtl08feIAVrNvFAmFnLY=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.640346+00 2025-12-17 17:50:00.640352+00 37999 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i0sn6yqDoNbwbjZAyigYsbezors=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.643356+00 2025-12-17 17:50:00.643362+00 38000 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mU7ahrJdfHUQyN2LPlOsMO9zOBQ=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.646282+00 2025-12-17 17:50:00.646288+00 38001 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-tzE3hwVaeOEUv6zpKqbvhF0nsg=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.649438+00 2025-12-17 17:50:00.649444+00 38002 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JfQcYp5vtpEnJ4LK5Bubwy7k7Ss=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.652567+00 2025-12-17 17:50:00.652573+00 38003 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jH7bq4q0SmRwfbawzRDCNY0VBaw=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.655642+00 2025-12-17 17:50:00.655649+00 38004 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6FN5_przKhqR5wnb9yMwlkVnN3o=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.658918+00 2025-12-17 17:50:00.658924+00 38005 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N_AEVA3A1xUNa9m4ZppUDVVxCQA=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.6622+00 2025-12-17 17:50:00.662206+00 38006 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pg3ykXFkkp0XlmrwU1Obna1GuEo=", "createTime": "2024-08-15 15:04:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.665303+00 2025-12-17 17:50:00.665309+00 38007 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9QV7lYxl25pvi3ETSmtEask-Fs8=", "createTime": "2024-08-15 15:04:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.66859+00 2025-12-17 17:50:00.668596+00 38008 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RzJeh1ZZf9Pwc68Ze5TgKJtme40=", "createTime": "2024-08-15 15:04:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.671682+00 2025-12-17 17:50:00.671689+00 38009 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CoQyVww-i0Sx784Xr3Z-k-xIrkg=", "createTime": "2024-08-15 15:04:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.674724+00 2025-12-17 17:50:00.67473+00 38010 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KrKrW-wvuRvBm-dVetcAJB3XBXs=", "createTime": "2024-08-15 15:04:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.678038+00 2025-12-17 17:50:00.678044+00 38011 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ww4HAG3BHK4c0VhrZZuddVCOLf8=", "createTime": "2024-08-15 15:04:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.681937+00 2025-12-17 17:50:00.681948+00 38012 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tIAaVfFnUeUU1NcXDZioNR3BT6s=", "createTime": "2024-08-15 15:04:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.686438+00 2025-12-17 17:50:00.686447+00 38013 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A_MxFuIJEnHFJBeMdYIlr1eRr-o=", "createTime": "2024-08-15 15:04:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.690772+00 2025-12-17 17:50:00.69078+00 38014 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kCApFANUJ6_y8AkKWEc-wp1uJDo=", "createTime": "2024-08-15 15:04:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.694518+00 2025-12-17 17:50:00.694524+00 38015 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w47Kh5lqUdZSy_4ttyqTwltCWcE=", "createTime": "2024-08-15 15:04:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.698025+00 2025-12-17 17:50:00.698032+00 38016 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3vhxEwuYKZLlGdd-4po8TwksYNs=", "createTime": "2024-08-15 15:04:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.70148+00 2025-12-17 17:50:00.701485+00 38017 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PTgPzO7wuH9Kei1cKL_9Gb_4bX4=", "createTime": "2024-08-15 15:04:03"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.704724+00 2025-12-17 17:50:00.704731+00 38018 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U2lmOWJMPjxPvxtrDf1Yx7gc-0s=", "createTime": "2024-08-15 15:04:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.707935+00 2025-12-17 17:50:00.707941+00 38019 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B6ewkXzJFwkmZcidz1JXm_tkTmQ=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.711141+00 2025-12-17 17:50:00.711146+00 38020 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8IFyQlvuvC7QcliXh9oYuVWkwvM=", "createTime": "2024-08-15 15:04:04"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.714508+00 2025-12-17 17:50:00.714514+00 38021 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EBa9tAm0vbCCr-qSXBPijSZghw8=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.717979+00 2025-12-17 17:50:00.717984+00 38022 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eh3CZwYgvgiuU78eH57NUEwicBU=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.721087+00 2025-12-17 17:50:00.721092+00 38023 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KMRvJcGbj9Dfp-EYlTGXpHL4q5E=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.723988+00 2025-12-17 17:50:00.723994+00 38024 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nM8FCJrWTNXVt1Dd9v-e6Gtoayk=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.726668+00 2025-12-17 17:50:00.726673+00 38025 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5lIarc3_Zg84twm4dfvjnlkh4dE=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.729413+00 2025-12-17 17:50:00.729418+00 38026 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fbpb219AuQrY58hJQiRPHI316Bw=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.732679+00 2025-12-17 17:50:00.732686+00 38027 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WT72OL1wnk6hLiMOdhCEQ09grv8=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.7358+00 2025-12-17 17:50:00.735805+00 38028 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZYfJnA6vj5fmlJjYgRhY5OmfjiM=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.739129+00 2025-12-17 17:50:00.739137+00 38029 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XTExJaCFF6m1XpB5xUbC1IOYCM0=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.742538+00 2025-12-17 17:50:00.742546+00 38030 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DHU2BRpSJpuZpe0gOMroG0OVx4Q=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.745606+00 2025-12-17 17:50:00.745613+00 38031 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NOiFW4ofoDJIYcWTmGRhl0JgDlo=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.748713+00 2025-12-17 17:50:00.74872+00 38032 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xp9aQfimFSYX7UVLIMGLhMpCseg=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.75172+00 2025-12-17 17:50:00.751726+00 38033 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qft9xojIahd0hnj_VswCHji_5ng=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.754625+00 2025-12-17 17:50:00.75463+00 38034 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8c9u_oSMzswHbA9nSgo_txAWMgM=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.757339+00 2025-12-17 17:50:00.757343+00 38035 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KsJTE26bpK2Tj8QgpyY91HdvCbs=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.760221+00 2025-12-17 17:50:00.760226+00 38036 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BuC0KHVpmwDZe-qVgt-MLZJl8-8=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.763422+00 2025-12-17 17:50:00.763427+00 38037 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k19oVbzTX56DVRow4EviYapUX9E=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.76678+00 2025-12-17 17:50:00.766786+00 38038 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-FpEnCZLUHPuI6_SFhflQz7L56A=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.769777+00 2025-12-17 17:50:00.769783+00 38039 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:97kWv1SiHR0y7MeW29NxetZC8kw=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.77269+00 2025-12-17 17:50:00.772695+00 38040 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2p_X3gWJNp1OCrDl-QGJSsDZYsE=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.775507+00 2025-12-17 17:50:00.775512+00 38041 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rZ3azQnBM5eFRPPF3TOtlJMwzpM=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.778272+00 2025-12-17 17:50:00.778276+00 38042 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ASFHQgFLkMPCN_hNcF3KaxukCU8=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.781155+00 2025-12-17 17:50:00.78116+00 38043 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mP4kaFgrSeFlUKPeGG-QjGw6_Yk=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:00.784177+00 2025-12-17 17:50:00.784183+00 38044 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=1766080199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RmQ5Cs_PsteRRH86zcfbtQYzCLs=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.182986+00 2025-12-17 17:50:01.182995+00 38045 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6q-7vFLLh2RwWzl-togjHjIB1Ds=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.186703+00 2025-12-17 17:50:01.18671+00 38046 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g5Nn2S-S9OkBMIXDxm7gHYKV-8o=", "createTime": "2024-08-15 15:04:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.190001+00 2025-12-17 17:50:01.190007+00 38047 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ci9MGL9St8579ut_ou7F-QfMdks=", "createTime": "2024-08-15 15:04:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.192909+00 2025-12-17 17:50:01.192915+00 38048 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kn30QHmL7PXav9piV2q9PS_gRmI=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.195683+00 2025-12-17 17:50:01.195688+00 38049 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jnWopUuAQtzsrE54SnNQMKmKDYc=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.19872+00 2025-12-17 17:50:01.198726+00 38050 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j-dgPpPbbjqjwHbYXMMFy8Y55Qo=", "createTime": "2024-08-15 15:04:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.202001+00 2025-12-17 17:50:01.202006+00 38051 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ncTWQDjkSf8IPp8NsoZScY5ntU=", "createTime": "2024-08-15 15:04:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.204907+00 2025-12-17 17:50:01.204912+00 38052 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LUNSIzUSNYPOLmQWNWUueyoVuVc=", "createTime": "2024-08-15 15:04:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.207754+00 2025-12-17 17:50:01.207759+00 38053 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iKk_QpSO6_WJ1Go6OTJTPl7V_wc=", "createTime": "2024-08-15 15:04:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.210373+00 2025-12-17 17:50:01.210377+00 38054 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ca9pdXaeCb9WHYSzJ9JgwaWR2Lw=", "createTime": "2024-08-15 15:04:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.213162+00 2025-12-17 17:50:01.213168+00 38055 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x2HE3JRNDA1PoJJFvfumV78SdDY=", "createTime": "2024-08-15 15:04:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.216082+00 2025-12-17 17:50:01.216086+00 38056 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iKBR7lPgT8DEydv2RArpnzoNATM=", "createTime": "2024-08-15 15:04:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.219099+00 2025-12-17 17:50:01.219104+00 38057 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ozG25qBfihLgRnsOsuEwPQFhYsg=", "createTime": "2024-08-15 15:04:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.222139+00 2025-12-17 17:50:01.222144+00 38058 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:29sUZstLqo6HKhy2NVNxeTik5o0=", "createTime": "2024-08-15 15:04:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.22517+00 2025-12-17 17:50:01.225175+00 38059 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1VXflCOTjyfaxniQ6ts7WyLdpQI=", "createTime": "2024-08-15 15:04:08"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.228158+00 2025-12-17 17:50:01.228163+00 38060 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DSel4oXSGLkC44fvkSLzqvi3lzc=", "createTime": "2024-08-15 15:04:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.230868+00 2025-12-17 17:50:01.230874+00 38061 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iKhkfTEIBwfT_oxNx4z7G-L7FFQ=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.233816+00 2025-12-17 17:50:01.233822+00 38062 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QUfCzOwlYcRg1vIlrM_-K_5Xw4k=", "createTime": "2024-08-15 15:04:09"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.236762+00 2025-12-17 17:50:01.236766+00 38063 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UIsG4YMUpNR0enafmtGWVmt50Ys=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.239606+00 2025-12-17 17:50:01.239611+00 38064 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TlM8rg3h1YYzp7PnQwcuYVveviw=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.242323+00 2025-12-17 17:50:01.242328+00 38065 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SonBXujJtZFvqTqlKWcvHjCzLbo=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.24499+00 2025-12-17 17:50:01.244995+00 38066 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N8zT6u9qmwzaVl1FEQvnsV-tS-Y=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.248028+00 2025-12-17 17:50:01.248033+00 38067 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_-OqSfVGrMYn95s9HyzbYMQg_dk=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.251422+00 2025-12-17 17:50:01.251428+00 38068 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yOL5hal1OxicWcjVVd68xjN2WeU=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.254461+00 2025-12-17 17:50:01.254466+00 38069 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dV5ZMmmHtvGtJC82pwne_4LSoYQ=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.257282+00 2025-12-17 17:50:01.257287+00 38070 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fendEZP9R00jNTG41JMqV8_5DU4=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.260021+00 2025-12-17 17:50:01.260025+00 38071 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MaAXvpZwdcEXlRIl6M9k1puO5YU=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.262779+00 2025-12-17 17:50:01.262783+00 38072 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pHxH3iUbGgihtCJ4rVAMHarSntU=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.265577+00 2025-12-17 17:50:01.265582+00 38073 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mWhlwEborn0OltCdCQYewXWIPnE=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.26855+00 2025-12-17 17:50:01.268555+00 38074 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8VIz6QqOg5abVC2aDsuLd8AdAoY=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.271778+00 2025-12-17 17:50:01.271783+00 38075 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xGKZsOvGBbywWD1KMq_lPTRjIaY=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.274898+00 2025-12-17 17:50:01.274902+00 38076 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3OhuMpZgMCDvBYRhcUIOldsa7HI=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.277558+00 2025-12-17 17:50:01.277562+00 38077 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8kAbPCqi3eT-F_qFwGnGKXXG9tw=", "createTime": "2024-08-15 15:04:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.280334+00 2025-12-17 17:50:01.28034+00 38078 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PKS1VjmMCFrhvyfeKAcxkONUoXw=", "createTime": "2024-08-15 15:04:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.283523+00 2025-12-17 17:50:01.283529+00 38079 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NOIkqq6a8CySAKyVUi3PwpVtkec=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.286779+00 2025-12-17 17:50:01.286785+00 38080 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MbDtewyHabJ67WMW_IeI5igIEdQ=", "createTime": "2024-08-15 15:04:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.28975+00 2025-12-17 17:50:01.289755+00 38081 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pd8DP1pzLRoQ_N1JHMiqzeWwjYg=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.292482+00 2025-12-17 17:50:01.292487+00 38082 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SE0m9t5twWnh320cAbJQtgjYiao=", "createTime": "2024-08-15 15:04:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.295423+00 2025-12-17 17:50:01.295428+00 38083 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ox-P3SmGvWMTg5GuxJewAmeha8k=", "createTime": "2024-08-15 15:04:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.298518+00 2025-12-17 17:50:01.298523+00 38084 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Gp8Hnfk0lk7rajDCEigORgWdi8=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.302123+00 2025-12-17 17:50:01.302129+00 38085 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ssJjuhFcb0PTvhYGkvnBYGzJ3Ms=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.305247+00 2025-12-17 17:50:01.305252+00 38086 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HMQ9WDBluT-myAqEvAEKH7UZuZs=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.308026+00 2025-12-17 17:50:01.308031+00 38087 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kWTNvPvFFWlQZlN3z8b6DLn10cQ=", "createTime": "2024-08-15 15:04:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.31078+00 2025-12-17 17:50:01.310785+00 38088 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zz3jH-1cuXjNtI9Fj2omt38M2mE=", "createTime": "2024-08-15 15:04:12"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.313555+00 2025-12-17 17:50:01.31356+00 38089 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZAS8kBvQBqsU9__OKB4jyRnF2Ng=", "createTime": "2024-08-15 15:04:13"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.316694+00 2025-12-17 17:50:01.3167+00 38090 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jHLs7fFYKU-QdGp9lEEpdcp3nPc=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.319951+00 2025-12-17 17:50:01.319956+00 38091 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6YiSQlcSlJRMsct6iIDAE-Uwn5U=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.323153+00 2025-12-17 17:50:01.323158+00 38092 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uCxR0M5zHtNK_FwLUdNPoQB5Zqk=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.325963+00 2025-12-17 17:50:01.325967+00 38093 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0xzArNlI-IV5qsT50zeTBE4b1f8=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.328708+00 2025-12-17 17:50:01.328713+00 38094 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A5s_pUxACDnLPSma-JQtdupHtSE=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.331373+00 2025-12-17 17:50:01.331378+00 38095 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_z2UQUbxfEjA0VtGKUMEURLm_RQ=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.334397+00 2025-12-17 17:50:01.334402+00 38096 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0QgrVnzyt2rH8Xm0_r-PVIAnmsU=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.337388+00 2025-12-17 17:50:01.337394+00 38097 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZqtJqUCXbW71XQynnlzAHCHkh3Y=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.340133+00 2025-12-17 17:50:01.340138+00 38098 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OGs4mmTckrKXTNEB6Lnd43cO6MA=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.343053+00 2025-12-17 17:50:01.343058+00 38099 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U7Ck9kNBZZXyJw4Cn_Kqo78j6z4=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.345995+00 2025-12-17 17:50:01.345999+00 38100 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m4z-ytDAL3aO1QvulnqOAWdssmw=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.348962+00 2025-12-17 17:50:01.348968+00 38101 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4xJ_PKD1K4EmzYnAEfl_eekWvXI=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.35214+00 2025-12-17 17:50:01.352146+00 38102 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XbVDymSvutrXkIdn9pMLEjuKoKo=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.355412+00 2025-12-17 17:50:01.355418+00 38103 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I1YaWP47mAgAN2fe_s1tY8xVeb8=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.358427+00 2025-12-17 17:50:01.358432+00 38104 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R46AUqpfOe2yvBGrs5qEF3sMhvU=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.361739+00 2025-12-17 17:50:01.361746+00 38105 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w0c7aRYoWT8Q_J6X95yC1g08QR8=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.365162+00 2025-12-17 17:50:01.365168+00 38106 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jinCmiVYLp6II2-n7ofa9GHEr9M=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.368797+00 2025-12-17 17:50:01.368803+00 38107 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jEtY-9qQQh_IyfGfN77QsDiEGAs=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.372206+00 2025-12-17 17:50:01.372212+00 38108 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ct7Q-p_4MKsPwk4YCXVoY9Xy8RM=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.375251+00 2025-12-17 17:50:01.375256+00 38109 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OZ1AMjoDYKp8rsqHJsiZS8cTmQQ=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.378141+00 2025-12-17 17:50:01.378146+00 38110 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4mNVht3id5qNg4uSB0-eqM4KX88=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.380958+00 2025-12-17 17:50:01.380964+00 38111 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P5lUOO2OYQ7LTp8TjgdJO1KI0IM=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.38427+00 2025-12-17 17:50:01.384277+00 38112 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x1e7gxGqlAa_uH_tQA__Ute5myo=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.387386+00 2025-12-17 17:50:01.387392+00 38113 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dURkeyvAzdJIa4eqqbdMv_NC6IA=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.390501+00 2025-12-17 17:50:01.390508+00 38114 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jwnRXDINeh-LxoqEwYKfwJJy3JU=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.393991+00 2025-12-17 17:50:01.393996+00 38115 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tHXZvPBgUwvA413kviHcsAhIj1w=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.39766+00 2025-12-17 17:50:01.397667+00 38116 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BvEXunHurR7VGMhkvgJsdebfwjI=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.400933+00 2025-12-17 17:50:01.400939+00 38117 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ue8XuG8_sdLKBd0jKjHaUEM6-M0=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.403838+00 2025-12-17 17:50:01.403843+00 38118 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RS80uGdEVl-_tNttj7vUnVvYE5I=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.406369+00 2025-12-17 17:50:01.406373+00 38119 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BAgujP3CAbB1PIKy3u8n7msAN9Q=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.408917+00 2025-12-17 17:50:01.408922+00 38120 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Yt4JF0pMEonNJvJYqndmdD0w_Q=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.411422+00 2025-12-17 17:50:01.411427+00 38121 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dQWDU2KlzpbdrxlEOA1jJl_wyUU=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.413951+00 2025-12-17 17:50:01.413955+00 38122 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9NmoR9GCk-wYo-uuYqt959rtXjQ=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.427715+00 2025-12-17 17:50:01.42772+00 38127 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Enmt4u7R6YQSPq-icAGqBdfSi98=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.417019+00 2025-12-17 17:50:01.417026+00 38123 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CfINdhqreBMebOIwVF0YS_MpwVs=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.420122+00 2025-12-17 17:50:01.420127+00 38124 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J-cinpSg7gmc8ZUCwpaOQgDZsqA=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.422685+00 2025-12-17 17:50:01.422689+00 38125 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1nkMS6fQx_9kD8t7Zbnilk7U3jQ=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.425203+00 2025-12-17 17:50:01.425208+00 38126 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wkPY7sSwD7KU2AWBmck2pqQCjpc=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.430226+00 2025-12-17 17:50:01.43023+00 38128 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gY0mYiXZyNqa3YL5zeoUPDgq6y4=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.432862+00 2025-12-17 17:50:01.432866+00 38129 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ij5N5wQzmLJFPa8AKVXNBEcNqXQ=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.435555+00 2025-12-17 17:50:01.43556+00 38130 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-R3GoMIuUjibMQ3_bQnP3VIQYtw=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.438539+00 2025-12-17 17:50:01.438544+00 38131 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RGlELknb-OJWtz6zOwfo1AbotIc=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.441384+00 2025-12-17 17:50:01.441388+00 38132 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VHsGzUoM9m3ImIGbT8XEkJCfdjA=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.443927+00 2025-12-17 17:50:01.443932+00 38133 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_6yRveml1pqXAVBXWcR8ge6fYA8=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.44644+00 2025-12-17 17:50:01.446444+00 38134 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:riwOsVWbwIMvr6lcgdHHOZYeTBY=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.449149+00 2025-12-17 17:50:01.449155+00 38135 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DP1dTXEdeI1pb1kzL2srXXavv_A=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.452301+00 2025-12-17 17:50:01.452306+00 38136 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TwK-wtYUyws2jpXWu3Qge9I0tFE=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.455441+00 2025-12-17 17:50:01.455447+00 38137 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o-xmh3-dyTzm1GMgc_iCzAzfhtI=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.458384+00 2025-12-17 17:50:01.458389+00 38138 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:emqNqR--L4QHcT11jkxoQPmh4uQ=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.461572+00 2025-12-17 17:50:01.461577+00 38139 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z2mbOhT6gSA4mhWNeNHZ3sxMNsE=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.465001+00 2025-12-17 17:50:01.465008+00 38140 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N_jTp6MPb9W3objtg59hOPEpdqU=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.468354+00 2025-12-17 17:50:01.46836+00 38141 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bjamzLhbcCa3XA6bV6LU3A7pNWY=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.471459+00 2025-12-17 17:50:01.471465+00 38142 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UmRJgiJVW8-WzfTtoSzVpWDaeec=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.474264+00 2025-12-17 17:50:01.474268+00 38143 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HxZCTag8r8YgVBioG5IMRD20Yvc=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N +2025-12-17 17:50:01.476957+00 2025-12-17 17:50:01.476962+00 38144 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=1766080200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jrVHLZjOFtWyOkPQHca3tlAAQ-s=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.608048+00 2025-12-17 18:00:00.608056+00 38145 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0iv6BTNnM0tKFd0BqEaqGa3JhSU=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.61228+00 2025-12-17 18:00:00.612287+00 38146 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M_VvD75sTNIyw9XtN_cPl6_7NbE=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.615205+00 2025-12-17 18:00:00.61521+00 38147 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uHV6cef9-W10U-nSAeSLnYcPf6M=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.618088+00 2025-12-17 18:00:00.618093+00 38148 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CnrX5npL0DDbt9lEdkZ_UV1RLqY=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.620758+00 2025-12-17 18:00:00.620763+00 38149 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pkzG4vWflrfiu_jrwYWDTvuMwcw=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.6233+00 2025-12-17 18:00:00.623304+00 38150 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xjsashR1NUhEx92EAVq98jo39xI=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.626287+00 2025-12-17 18:00:00.626293+00 38151 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vzEHfQEhW9poqSWl3ww7U9ziqKc=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.629368+00 2025-12-17 18:00:00.629374+00 38152 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oWG4osDpzFtJLT2dxUwe26PdBQY=", "createTime": "2024-08-15 15:04:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.632261+00 2025-12-17 18:00:00.632266+00 38153 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W8WrKbquOh6FsUN7s6yAna3oIuU=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.635029+00 2025-12-17 18:00:00.635034+00 38154 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:75k1PyVAhjqAoYIapDDKDJv-HpA=", "createTime": "2024-08-15 15:04:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.637832+00 2025-12-17 18:00:00.637837+00 38155 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eQfEFtSUXg3_7pZFCHta2BeeAWM=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.640995+00 2025-12-17 18:00:00.640999+00 38156 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bm3FXs_zPZv0_fEDlGV3AeVGNjM=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.64475+00 2025-12-17 18:00:00.644756+00 38157 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7UjvwPgQnv36tBrxDtsdua2OmI=", "createTime": "2024-08-15 15:04:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.648085+00 2025-12-17 18:00:00.648091+00 38158 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EnkHogndWwKKM-8M6UlVrNBC2S8=", "createTime": "2024-08-15 15:04:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.651046+00 2025-12-17 18:00:00.651052+00 38159 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jWGFYWvq7h0mar_kJyxhju8K9eM=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.655225+00 2025-12-17 18:00:00.655232+00 38160 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ayc6CiTml0UAzIjEIl_zedAmDw=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.658687+00 2025-12-17 18:00:00.658694+00 38161 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mQQVDLpBczK-XfqUKZOpD1gMO28=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.662307+00 2025-12-17 18:00:00.662313+00 38162 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EKQhRBnmiKjXVOeu6ewe9d2rkps=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.66563+00 2025-12-17 18:00:00.665636+00 38163 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v3U-_FNrcInqQbeMrC4uzSJOTtk=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.66883+00 2025-12-17 18:00:00.668835+00 38164 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v6dkE-zSpVY3J4_me3hXI0ddEFI=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.671901+00 2025-12-17 18:00:00.671906+00 38165 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r5HIbPD_IC7SiPi7CSPc_qfEOyM=", "createTime": "2024-08-15 15:04:21"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.67471+00 2025-12-17 18:00:00.674715+00 38166 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iZfXsjY23nfc3Q_itOaZvAbo6vQ=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.67935+00 2025-12-17 18:00:00.679357+00 38167 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NGDkRpCcEBuYE8xk4TUjY_N6LoA=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.68285+00 2025-12-17 18:00:00.682857+00 38168 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j48tSPDdSZd29Pkx7oe53PTFvbs=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.686125+00 2025-12-17 18:00:00.686132+00 38169 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kGdWF9N4olbISnaiGfejZ6Grm_o=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.689344+00 2025-12-17 18:00:00.689351+00 38170 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Moae-n0ROEyaKxPMg6hbcpJ_ky8=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.692777+00 2025-12-17 18:00:00.692787+00 38171 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_KuHnrkPS8n9Lpq33zReG5f2qDE=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.697626+00 2025-12-17 18:00:00.697632+00 38172 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8A0MJLqgksrz60eu8MRZfTmY2rA=", "createTime": "2024-08-15 15:04:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.700938+00 2025-12-17 18:00:00.700943+00 38173 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Vw6jYyolQCIFo1Jay1xGaLdrtw=", "createTime": "2024-08-15 15:04:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.703925+00 2025-12-17 18:00:00.70393+00 38174 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2xjFS6lG66zZoIdQtkYhaQ6iE_E=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.706609+00 2025-12-17 18:00:00.706613+00 38175 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sXI8y3--qITZm6sCOfZjyO2UV8s=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.709313+00 2025-12-17 18:00:00.709318+00 38176 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VVbbmDzh0iicRVcPUcgx2Zbt-ts=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.712346+00 2025-12-17 18:00:00.712351+00 38177 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bjCv1x8mDzT1Psw5fheciwB3B58=", "createTime": "2024-08-15 15:04:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.715394+00 2025-12-17 18:00:00.7154+00 38178 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IO-kxNZMfXsiKIiygsRH50agKP8=", "createTime": "2024-08-15 15:04:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.718197+00 2025-12-17 18:00:00.718202+00 38179 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gMN2yQOu25ngkN3lyrq_yOTpm4E=", "createTime": "2024-08-15 15:04:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.721221+00 2025-12-17 18:00:00.721226+00 38180 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j_T_400Je0Mu2ylfi7VEFqzR-IE=", "createTime": "2024-08-15 15:04:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.724205+00 2025-12-17 18:00:00.72421+00 38181 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cUINpxDowsTj6J1puGJ3YPxcMUo=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.727901+00 2025-12-17 18:00:00.727906+00 38182 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mw0wsiN4XyWiObqfmpjnvQ2Ynuc=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.731527+00 2025-12-17 18:00:00.731532+00 38183 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HBDfLJeegIhXLXjVxwovAOVEh_Q=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.734914+00 2025-12-17 18:00:00.734919+00 38184 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:78hEJFCrUlI1_qSNPT-I-s4Bp_U=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.738096+00 2025-12-17 18:00:00.738101+00 38185 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WthKinzXBIgKeqCCgHdfeZgZ6BQ=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.741265+00 2025-12-17 18:00:00.74127+00 38186 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nHTSBBFDe7P6kdeJ8xSGs94caEA=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.74671+00 2025-12-17 18:00:00.746719+00 38187 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mo668zVAcO759fKnYYa8Y_UgYWo=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.751741+00 2025-12-17 18:00:00.75175+00 38188 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yLHYROC73QX3llijJqSrViA4JGE=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.755478+00 2025-12-17 18:00:00.755485+00 38189 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:spbt2wAgRt_She_RpG2faRL1Yqo=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.758676+00 2025-12-17 18:00:00.758684+00 38190 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yfpf9p-gfbVogrHeS3D8irwsn3k=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.761999+00 2025-12-17 18:00:00.762005+00 38191 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xUb0Cs-2irs24XnoynKkvSA636Q=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.765092+00 2025-12-17 18:00:00.765096+00 38192 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Toc4gekr6H5Jac9ttd0AzU5I0s=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.767912+00 2025-12-17 18:00:00.767917+00 38193 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u7p8g7bQ2vltEk5h1EbFclDse7A=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.770802+00 2025-12-17 18:00:00.770807+00 38194 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B3eLKSaIYRvBUa7tIAwK-5mH0vY=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.773711+00 2025-12-17 18:00:00.773717+00 38195 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pWUGRd2CIgak9sf6k2IEikR7olQ=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.777431+00 2025-12-17 18:00:00.777438+00 38196 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ty1wUoGYvauBYGze0lyctCLWhIw=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.781017+00 2025-12-17 18:00:00.781024+00 38197 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ecHJLVi_zvjNpsBSUF_FYuQTck=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.784046+00 2025-12-17 18:00:00.784052+00 38198 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P9CG1aMf9jKAO_dsLhtHB6I4c-0=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.799537+00 2025-12-17 18:00:00.799543+00 38203 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0h3c9RUrkFdtC0Z4VqiaZVT4XiU=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.78687+00 2025-12-17 18:00:00.786876+00 38199 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uKy4MExYfapM_Gy613kFU3sA_yQ=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.789641+00 2025-12-17 18:00:00.789649+00 38200 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ARsa_v9ImWvwsgo8MGXKSKsfSVQ=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.793017+00 2025-12-17 18:00:00.793024+00 38201 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cyjtGNOGNGGGvHWEm3Rkn9NDnsk=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.796413+00 2025-12-17 18:00:00.796419+00 38202 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HA4wL0eSzWsXZW9wyn5iOy7f4Sc=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.802643+00 2025-12-17 18:00:00.802648+00 38204 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WlLbkz7difdtFMEEZoZJptG0b2U=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.805747+00 2025-12-17 18:00:00.805752+00 38205 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_FFovngM1YmgSxHWCKyDUXH_Dek=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.808628+00 2025-12-17 18:00:00.808633+00 38206 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GT2E6pBJVejmCBI5Btu8TED7j1E=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.811968+00 2025-12-17 18:00:00.811974+00 38207 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F_OubllGHLxEvc4mYyjh9nLhXag=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.815182+00 2025-12-17 18:00:00.815188+00 38208 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GURptQkquSN9X5EMa4lCxDakbuI=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.818069+00 2025-12-17 18:00:00.818074+00 38209 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rvznOT7mLsPDAhn9Uf9bzeQkefo=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.820838+00 2025-12-17 18:00:00.820843+00 38210 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G-xY6uOUuZJ1iv0-ZfWqisWmbto=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.823528+00 2025-12-17 18:00:00.823533+00 38211 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x3nYAdP_4fKUebDf0c-t191Qv-U=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.827363+00 2025-12-17 18:00:00.827369+00 38212 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G_z9VtmPZxPGBXYkq91j6oOCJyU=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.830839+00 2025-12-17 18:00:00.830844+00 38213 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CxaSWlUij_yiUOfEJZzyka2AYLE=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.833789+00 2025-12-17 18:00:00.833795+00 38214 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fbhBjA1VRQA3voLhcQEa0sagGN8=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.836629+00 2025-12-17 18:00:00.836634+00 38215 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gj1JEaekNv0vnOW2MEirqCd5OGg=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.839391+00 2025-12-17 18:00:00.839396+00 38216 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RQpTuGL95wMvAgvPQhWKIuHgiHg=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.842141+00 2025-12-17 18:00:00.842147+00 38217 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iqH3C2963wuOLYh58aztAPPP8CU=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.845533+00 2025-12-17 18:00:00.845538+00 38218 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t-__W1SbyXl5aP7HVBP9CU3YRQg=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.848774+00 2025-12-17 18:00:00.848779+00 38219 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XEtKV7ekb2FShph1Od8MPxfgS2c=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.851952+00 2025-12-17 18:00:00.851957+00 38220 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3SrEowV2HxzPasloFDRY-gQUasA=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.855036+00 2025-12-17 18:00:00.855042+00 38221 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l7Hz0CdmPNXtrVN23qocQecOAI8=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.857842+00 2025-12-17 18:00:00.857848+00 38222 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rTYJbmv986GKcoS4pIBTKuGnzYo=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.861335+00 2025-12-17 18:00:00.86134+00 38223 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:30mo8uX0gpKEYHFoQ4rzDJ46hdE=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.86458+00 2025-12-17 18:00:00.864586+00 38224 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qHxuYqZfCdMbhX8VEPzBEa1wwno=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.86747+00 2025-12-17 18:00:00.867475+00 38225 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kPDWG6EuH-L4_UuegTKfVvbWOCE=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.870194+00 2025-12-17 18:00:00.870198+00 38226 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HP3WuUgViCOf4P0SR587ceJSstw=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.872833+00 2025-12-17 18:00:00.872837+00 38227 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vr-MNd8POMQo5uCur3JYzQcuhd0=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.876509+00 2025-12-17 18:00:00.876516+00 38228 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pz6gJaY8j5rgsCGrfinG77CKA44=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.880106+00 2025-12-17 18:00:00.880112+00 38229 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p_dVilhWIGcH67qQflIT_DwLuRs=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.883353+00 2025-12-17 18:00:00.883359+00 38230 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j24WWjv02YBWQ0uG5cPXh9BHCi0=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.886775+00 2025-12-17 18:00:00.886781+00 38231 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7gxkOy__1LyDY-IOfwyW3kRUQhI=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.890436+00 2025-12-17 18:00:00.890442+00 38232 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZFPDCuNEMlWJgLv0Itgzp1Ne4wc=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.893843+00 2025-12-17 18:00:00.89385+00 38233 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Aab3iiH9y8j_oWyIfQ5sHNz7sCg=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.897549+00 2025-12-17 18:00:00.897555+00 38234 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QzFG_n1kYTQqV-LvQJNZMcN7Cs4=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.900904+00 2025-12-17 18:00:00.90091+00 38235 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f0BZ8CCnXkoI4As5Fg_Asq7wATM=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.903838+00 2025-12-17 18:00:00.903847+00 38236 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VT6N2O1M2hAcQZQj_-HBddrjaFI=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.907417+00 2025-12-17 18:00:00.907424+00 38237 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mAZmtgY0iKr53pMgNuUf_BcvjUo=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.911028+00 2025-12-17 18:00:00.911035+00 38238 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yYSS1EsFXkz5JSARrubKz6UHk9w=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.914359+00 2025-12-17 18:00:00.914365+00 38239 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PdbT9daS0pxGtr9lseJbE5AStGw=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.917219+00 2025-12-17 18:00:00.917223+00 38240 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OLQ_f3nCN-4qOe85NHlit0Rza6Q=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.920055+00 2025-12-17 18:00:00.920061+00 38241 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_8chzcCv1RxVBwHRLhIi3rJeLmo=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.923167+00 2025-12-17 18:00:00.923173+00 38242 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GtxXiqr15NRnUxx7IEVKi0mBaNE=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.926587+00 2025-12-17 18:00:00.926594+00 38243 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ykLFa3GJUaGkQeHfm7BSFbV-K6M=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:00.929896+00 2025-12-17 18:00:00.929903+00 38244 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=1766080799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ep5FS4U24DdsYaIfGDm8ajdJXWI=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.274491+00 2025-12-17 18:00:01.274504+00 38245 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PgvA784MKr-GExAABrz9ob1buok=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.278954+00 2025-12-17 18:00:01.278961+00 38246 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iXxb3LQlXnn4xe8EBj7xyY9VZZI=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.282338+00 2025-12-17 18:00:01.282343+00 38247 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ADvrOwGgRqVBygsZLc6ldWP7Z7w=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.28534+00 2025-12-17 18:00:01.285346+00 38248 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MdTvHyK_3LkgM0Pw0sC7DCH2Z24=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.288138+00 2025-12-17 18:00:01.288143+00 38249 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CQI5g2DHoxcNkgrGiSghdt0rv38=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.291141+00 2025-12-17 18:00:01.291146+00 38250 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-nrBs5PLJN1gROJhmKDwJ_Z-Q-4=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.294728+00 2025-12-17 18:00:01.294734+00 38251 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Y9lsmu58EDimHp8rCbNpU3EnzM=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.29791+00 2025-12-17 18:00:01.297916+00 38252 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NA7T71hGLKDCFBS96hd4XhD4L8E=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.300798+00 2025-12-17 18:00:01.300804+00 38253 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OxQ-1QTp6ol94EB4rte4YdvyhBc=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.303517+00 2025-12-17 18:00:01.303523+00 38254 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JI9x98YnQs90UJnnWR7SX1amtQw=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.306238+00 2025-12-17 18:00:01.306243+00 38255 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2xbliMbLS3ripE6o1hmke6unfuU=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.309249+00 2025-12-17 18:00:01.309257+00 38256 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hNKMJ-QRpnhMNZ0SxvcX2JXxNEM=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.312404+00 2025-12-17 18:00:01.31241+00 38257 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PR1Jxqzz1vpgj_rmiVQQ0eDfhuQ=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.315847+00 2025-12-17 18:00:01.315853+00 38258 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qwht2c3fA08Va3W4DT7olmgqsOc=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.319044+00 2025-12-17 18:00:01.31905+00 38259 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9uy4I8-oBhQ5NoHgglx2RWxf6H8=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.321934+00 2025-12-17 18:00:01.321939+00 38260 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qKNq4O0BqgBImCQ7fb9q7-7ysAE=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.324757+00 2025-12-17 18:00:01.324763+00 38261 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l_YKyAAjrxzA1DDVwEumHOZzxIQ=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.32799+00 2025-12-17 18:00:01.327997+00 38262 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dooDMHbP7_2JRGxsX2xPmDRw1XM=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.331119+00 2025-12-17 18:00:01.331124+00 38263 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sv1gnm5qgy00Nyyfpyq7AtiEanM=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.334055+00 2025-12-17 18:00:01.334062+00 38264 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RYRlct5tjoTE46EawWRuqFoj8Wc=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.336996+00 2025-12-17 18:00:01.337002+00 38265 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IMazdybnKJHQYTX6MfuqifOyo4k=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.340178+00 2025-12-17 18:00:01.340183+00 38266 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7L4HVMqVP2qMbkxJ1NFufrLZIPI=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.343697+00 2025-12-17 18:00:01.343703+00 38267 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YLCUKrHp6Sok2skjaiBqXw2SPec=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.34687+00 2025-12-17 18:00:01.346876+00 38268 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qimt20NXDHA3AnAyS5-xfs7VnvE=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.349809+00 2025-12-17 18:00:01.349814+00 38269 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zOTqm3dtlK-7wJy0qCABigMPvfQ=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.352591+00 2025-12-17 18:00:01.352596+00 38270 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ijkpCY_d6G1RcJPoBi6H5C62104=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.355431+00 2025-12-17 18:00:01.355436+00 38271 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NcMpuntFlNV9Ny6A_NUw4cjp7y8=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.358376+00 2025-12-17 18:00:01.358382+00 38272 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uMwmFT4QVOMz_qLKhGAiC1yT8YQ=", "createTime": "2024-08-15 15:04:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.361496+00 2025-12-17 18:00:01.361502+00 38273 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:edLTwDOA9q2f8wmFhEy8hGONEso=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.36497+00 2025-12-17 18:00:01.364976+00 38274 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n4eLP4CZnCV9yZiTsVYDZ6RonY0=", "createTime": "2024-08-15 15:04:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.368091+00 2025-12-17 18:00:01.368096+00 38275 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eh0Dx4pC3aGY_6QvLYxdKZlhTw8=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.370863+00 2025-12-17 18:00:01.370868+00 38276 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I8-rvD5d0Za5sjyby3Yk6efCIXo=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.373612+00 2025-12-17 18:00:01.373617+00 38277 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kwcg10tNcnsIgL46sUDF9uFdUxM=", "createTime": "2024-08-15 15:04:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.376835+00 2025-12-17 18:00:01.376841+00 38278 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HghHR28cus3J8RXhwbDc150cp8Y=", "createTime": "2024-08-15 15:04:34"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.379991+00 2025-12-17 18:00:01.379998+00 38279 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ygZNvAGrBdyn7Xc_cQ1WCbLwr24=", "createTime": "2024-08-15 15:04:34"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.382935+00 2025-12-17 18:00:01.38294+00 38280 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hs-yFEO_UrI-4vwiuzVP5eaPqNY=", "createTime": "2024-08-15 15:04:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.385729+00 2025-12-17 18:00:01.385733+00 38281 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IgG6bdgJzXIvV42XxpqSLsyzoFY=", "createTime": "2024-08-15 15:04:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.388764+00 2025-12-17 18:00:01.388769+00 38282 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:knsyYS5rjzbz5xaQbvn2JUk0uTQ=", "createTime": "2024-08-15 15:04:34"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.391718+00 2025-12-17 18:00:01.391723+00 38283 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aBeZtlIF-Gxt9uqxWhdPs6wLYXE=", "createTime": "2024-08-15 15:04:34"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.395066+00 2025-12-17 18:00:01.395072+00 38284 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kr66nfThkhNWjL_cpwpnEObm4M0=", "createTime": "2024-08-15 15:04:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.398257+00 2025-12-17 18:00:01.398261+00 38285 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4GDq4OabsxOLUZjNepKUE-fjEJ8=", "createTime": "2024-08-15 15:04:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.401142+00 2025-12-17 18:00:01.401147+00 38286 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A5N8HzYH6VafLUzEYJ0_oIQKskQ=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.403919+00 2025-12-17 18:00:01.403925+00 38287 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Lks4P0uQ8ffrrlCTR-c7nC38Eo=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.407576+00 2025-12-17 18:00:01.407582+00 38288 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OWYc-5hAUtHbOI5riaHZHvs6OIA=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.411223+00 2025-12-17 18:00:01.411229+00 38289 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FZggPbvlyB7UJwa1hHWgrHQRTBg=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.414956+00 2025-12-17 18:00:01.414962+00 38290 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-gDs2Ytk6fGjUzSYCHvhmsTkBGU=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.418276+00 2025-12-17 18:00:01.418281+00 38291 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Au04zbQlIrmPAAxMp_U5y7GRXs=", "createTime": "2024-08-15 15:04:37"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.421118+00 2025-12-17 18:00:01.421123+00 38292 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZxH0JZ5oC-4uhqsZXZKXm9PP0ZA=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.423854+00 2025-12-17 18:00:01.423859+00 38293 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4s_zOeBs3HtulxWoceIr6cnk6ts=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.42705+00 2025-12-17 18:00:01.427056+00 38294 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BiWX0sDWDR9q1mSvj-68KHoGlYI=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.430178+00 2025-12-17 18:00:01.430184+00 38295 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r7SAHtcXicGj3HcSRdvxOpmYack=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.433017+00 2025-12-17 18:00:01.433023+00 38296 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fKzIr7huiav1u-dlbKBlBVgyu0Y=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.436058+00 2025-12-17 18:00:01.436064+00 38297 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aYOl-nxdKV0uIgFmDvhm0rmjgXU=", "createTime": "2024-08-15 15:04:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.439442+00 2025-12-17 18:00:01.439448+00 38298 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v6giCwMKYTBJ7yTnlN7u3Cz2YVc=", "createTime": "2024-08-15 15:04:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.443009+00 2025-12-17 18:00:01.443016+00 38299 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jc6ERJG8jI30vlcPGAIKGC99ncQ=", "createTime": "2024-08-15 15:04:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.44625+00 2025-12-17 18:00:01.446256+00 38300 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fvQ6J9C-PYTPOFSrLLHVw3W640A=", "createTime": "2024-08-15 15:04:37"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.44941+00 2025-12-17 18:00:01.449416+00 38301 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0HqnTPRLxyMsAXO-0GbpSe6Uo5Y=", "createTime": "2024-08-15 15:04:37"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.452375+00 2025-12-17 18:00:01.452381+00 38302 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hUikmNeZj5IjKK1SA7fcNb8s6CU=", "createTime": "2024-08-15 15:04:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.455208+00 2025-12-17 18:00:01.455214+00 38303 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X_6T9o1yo-Z5_XviqnSRVAxcEso=", "createTime": "2024-08-15 15:04:37"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.458002+00 2025-12-17 18:00:01.458009+00 38304 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3lsHdYJg6-_6QRxc13j2SY7ePm8=", "createTime": "2024-08-15 15:04:37"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.461444+00 2025-12-17 18:00:01.461451+00 38305 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L7FT7NkQyokY0f3xpRttDVQWGdM=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.465275+00 2025-12-17 18:00:01.465281+00 38306 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a4XmEEQdI2wbK8tICQMTV3LQaUw=", "createTime": "2024-08-15 15:04:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.468812+00 2025-12-17 18:00:01.468819+00 38307 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UDc5yjOPrFbVY6xHKoBouXudUIA=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.472002+00 2025-12-17 18:00:01.472008+00 38308 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rz1VW7AA6kCSQffiJM3g3RYwwzU=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.475119+00 2025-12-17 18:00:01.475125+00 38309 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YgejS7Dy2ybJxbHt24pfTNgyXSM=", "createTime": "2024-08-15 15:04:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.479217+00 2025-12-17 18:00:01.479223+00 38310 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dt9J52MlA7Fl-G_yAb8wRN8GYDY=", "createTime": "2024-08-15 15:04:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.482847+00 2025-12-17 18:00:01.482853+00 38311 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E_FdGoWIvvdcyJe-iXczp03bZJ4=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.486273+00 2025-12-17 18:00:01.486279+00 38312 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T6Ljv1U8Dbq9yRc39iThDwS6jOQ=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.489681+00 2025-12-17 18:00:01.489688+00 38313 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ceckt2uVW5ryy2UVdE2s6jSQMI8=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.494216+00 2025-12-17 18:00:01.494224+00 38314 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4n8GvHFLvvq2OJilhFat-IcNocw=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.498503+00 2025-12-17 18:00:01.498509+00 38315 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LENBbtHIwrRPGHwr2xHmMqfQtPg=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.502086+00 2025-12-17 18:00:01.502092+00 38316 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tw4umaRojjzQQN_AnLXW7BOCpZg=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.505419+00 2025-12-17 18:00:01.505425+00 38317 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L-ghfMlcaBJm7SfLat82gFFs1vc=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.508556+00 2025-12-17 18:00:01.508568+00 38318 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R5TrMy4xRZhMLiEy5tnHez2ahVc=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.512519+00 2025-12-17 18:00:01.512527+00 38319 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L2-3b5q-YqqM9jZnC-fclsivCV4=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.51635+00 2025-12-17 18:00:01.516357+00 38320 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L6sVgS9psTF83NL8NXgP1mpqhzg=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.52002+00 2025-12-17 18:00:01.520026+00 38321 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J2DLS-w14bnUvznP5K2wVmnQrH0=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.523758+00 2025-12-17 18:00:01.523764+00 38322 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lw2oSN5EVBAVLNpt4ZaEjzbLUjU=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.527772+00 2025-12-17 18:00:01.527778+00 38323 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M08DtEUmkc_rdz5-F21-CA6tspw=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.5313+00 2025-12-17 18:00:01.531306+00 38324 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cI4DD3gfcH-CyR9gnGFeQ6H0Br4=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.534543+00 2025-12-17 18:00:01.534548+00 38325 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aW2MqkOFP4gr5nKkvuzHFzi6ZhA=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.537804+00 2025-12-17 18:00:01.53781+00 38326 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3wr5a9rE1aBpOOLnq0dWWigR_B8=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.540709+00 2025-12-17 18:00:01.540714+00 38327 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6EYGNLul_Va21aXd05UstuatKZc=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.543952+00 2025-12-17 18:00:01.54396+00 38328 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VWWF0pg_0g3Pic_o4ijeguoRgwI=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.547115+00 2025-12-17 18:00:01.547121+00 38329 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5SJJh7NJ2MXycYEVSowKbJOBPVM=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.550046+00 2025-12-17 18:00:01.550051+00 38330 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3whYMvcZ1j9umqmCittJyBSvlYQ=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.552822+00 2025-12-17 18:00:01.552827+00 38331 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cPhGJoMYino-gE5AKFBrEVpr_J0=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.555692+00 2025-12-17 18:00:01.555698+00 38332 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EBitZEdMEkc5S-Jj0je7li8967c=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.559143+00 2025-12-17 18:00:01.559148+00 38333 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDN2MNYbJNwwPDoCOfZk3SXGwbI=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.562618+00 2025-12-17 18:00:01.562623+00 38334 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:72Rxntv9QUCs5cyXJ5NnY_51wwQ=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.565675+00 2025-12-17 18:00:01.565681+00 38335 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZKDQlk0LndiXjCsN0Bc7HzMrv-w=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.568527+00 2025-12-17 18:00:01.568532+00 38336 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:22gsANdjFTdssKROhEbSmO60140=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.571332+00 2025-12-17 18:00:01.571338+00 38337 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_q81WZbhmiF0Ipgy1MTEPhGR_AM=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.574197+00 2025-12-17 18:00:01.574202+00 38338 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iyd18Er2L3039ucnAx17tTvxX6g=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.577523+00 2025-12-17 18:00:01.577529+00 38339 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SA_cQojUyz8R-brSkMKvZ0blt74=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.580779+00 2025-12-17 18:00:01.580785+00 38340 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ayp-5t_MvkJvdpcLgSn0AdSWBxY=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.584056+00 2025-12-17 18:00:01.584061+00 38341 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dhO3M2s659Op8yeRLqZxtWdjWyw=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.587174+00 2025-12-17 18:00:01.587179+00 38342 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I-3pFVNCae37dCDmVKWFfxm6beQ=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.589926+00 2025-12-17 18:00:01.589931+00 38343 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6WDYzCEP4-N9zrGT1q6rIR06r9U=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:00:01.593083+00 2025-12-17 18:00:01.59309+00 38344 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=1766080800&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2vS-XvcD4YPDNc34ESFiFUpFh5s=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.373682+00 2025-12-17 18:10:00.373692+00 38345 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CHY_EosG6_Eat3R-VWCYG4MR38A=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.3786+00 2025-12-17 18:10:00.378606+00 38346 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-NuWSlsghXWjDzC4UNetMZVO1LQ=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.382448+00 2025-12-17 18:10:00.382454+00 38347 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8-UAcKUclsUKZDtaLqHDfUn5UKU=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.385439+00 2025-12-17 18:10:00.385445+00 38348 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B5ktKVWl8H2oYE2_Mn8wZBSjsKs=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.388528+00 2025-12-17 18:10:00.388534+00 38349 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VK8h8VekBlJZuM-wNDiRlhgbp28=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.391533+00 2025-12-17 18:10:00.391538+00 38350 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L7PaHBoM--DHGpAG-u6FVoBeMts=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.39443+00 2025-12-17 18:10:00.394435+00 38351 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xTtu2HXc4qwgoqXJ9mxIQehsN60=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.397199+00 2025-12-17 18:10:00.397204+00 38352 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y7-8x8C7lTzPXtjZucjoondKNh4=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.400255+00 2025-12-17 18:10:00.400259+00 38353 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZOICXEcR-Vxm_MuDdK5zkGXIL4s=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.403518+00 2025-12-17 18:10:00.403523+00 38354 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ovC56jqLU18D62LHE-kmSm0SWKk=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.407002+00 2025-12-17 18:10:00.407008+00 38355 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Q_EWI8JhQd6KXp0t21c9tTAA9M=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.410907+00 2025-12-17 18:10:00.410913+00 38356 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xl923VkBvVViwKrn0jX4lZUa_1g=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.414686+00 2025-12-17 18:10:00.414692+00 38357 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LDrdbB_ifWYojoxxCNKp2Z617l0=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.418779+00 2025-12-17 18:10:00.418786+00 38358 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NLKuJq3tXThFElOpLZTzQ00PrJg=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.422869+00 2025-12-17 18:10:00.422876+00 38359 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lWlXNg9GS3T8yv0r5dZX9zpHvIY=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.427442+00 2025-12-17 18:10:00.427451+00 38360 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cTOjdCFSczn3otv_2eNEUuMXFNo=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.432226+00 2025-12-17 18:10:00.432232+00 38361 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MPjoz_GuifoiiI06Nk8orJHpE4o=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.436622+00 2025-12-17 18:10:00.436629+00 38362 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wJrPlLgWX1Jefa4RmobP4eDcWYE=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.440618+00 2025-12-17 18:10:00.440626+00 38363 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJKbhfVEUY1yqsRd3OFKiftpbRU=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.444013+00 2025-12-17 18:10:00.444019+00 38364 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7uJu9tGbT6yLB66UrytUiyAmwRU=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.447288+00 2025-12-17 18:10:00.447295+00 38365 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LA1khZ7V7VVQtxSfgfuA3OTf3aE=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.450432+00 2025-12-17 18:10:00.450439+00 38366 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2s5LRY-MExelIutyuPP4iEnXFFE=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.453392+00 2025-12-17 18:10:00.453398+00 38367 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0iU29pDncolq9Ssxh68j5BdzOto=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.456492+00 2025-12-17 18:10:00.456499+00 38368 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dOWkQs6b9S_jZ7d_9Jy0tctHIBM=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.459836+00 2025-12-17 18:10:00.459842+00 38369 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HA5qvQ281BjJ_VhGdVoQTDLEQ2g=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.463009+00 2025-12-17 18:10:00.463013+00 38370 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZkXtI4Dt487hQkuMuTrse65IfYI=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.465789+00 2025-12-17 18:10:00.465794+00 38371 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R8jgCNH8Rxps3JwUXnfuESu0dpI=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.469369+00 2025-12-17 18:10:00.469374+00 38372 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OaFgVqp_cdBqpsyQJCQryxasJhU=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.472375+00 2025-12-17 18:10:00.472381+00 38373 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dRp5YMSJa3Xr9-aP7fcyqyz7ZDg=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.475385+00 2025-12-17 18:10:00.47539+00 38374 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xZ6NKRLrHIRbQH0KDk8OJ4FsL24=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.478317+00 2025-12-17 18:10:00.478322+00 38375 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ahoyeBpA2yXvFKhvvp1T5ZhoARs=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.481081+00 2025-12-17 18:10:00.481085+00 38376 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3jcxr_a814orpDkeOSF7KLjP5ag=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.484244+00 2025-12-17 18:10:00.484249+00 38377 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NsTBBh2nfwHbN4aj7uaF41GmoBo=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.487648+00 2025-12-17 18:10:00.487653+00 38378 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ky77KvyIdelLDUxqgafXf529PcI=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.490992+00 2025-12-17 18:10:00.490997+00 38379 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KgD2fuTShWH1Wz_9orQtRQjHaVQ=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.494272+00 2025-12-17 18:10:00.49428+00 38380 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:McGLCUqiSOqb-OBDIX6JAru7Snk=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.497798+00 2025-12-17 18:10:00.497803+00 38381 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ndI17KdBZLQa86CEdXKQR1w2kn4=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.501148+00 2025-12-17 18:10:00.501155+00 38382 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dq6lHYN2cyLRYcUOpXpGrDVqhZQ=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.505047+00 2025-12-17 18:10:00.505053+00 38383 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:agq3z2GEIG3ZLeDd25ugdeNbkv0=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.509284+00 2025-12-17 18:10:00.509292+00 38384 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:znpJxoXhq9nCwTPV95dsI_6eFw8=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.513463+00 2025-12-17 18:10:00.513469+00 38385 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hAeT5UtlouTEeVimpRftTTvUSAo=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.517401+00 2025-12-17 18:10:00.517409+00 38386 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OXKH_6jWnKamgKsqeg0rEXMt3tk=", "createTime": "2024-08-15 15:04:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.521537+00 2025-12-17 18:10:00.521543+00 38387 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pv3MAq1A-XoxIKyIGKlTI_eRVwY=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.525672+00 2025-12-17 18:10:00.525683+00 38388 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FHJdqUuNiaWAXEp77_mHCHMgRwk=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.529163+00 2025-12-17 18:10:00.52917+00 38389 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4-eidV3ovwqKKWSUXd1rb2uqzSQ=", "createTime": "2024-08-15 15:04:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.532211+00 2025-12-17 18:10:00.532217+00 38390 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vTSsifnpgIAzNKAqy69ueUIzHWM=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.535344+00 2025-12-17 18:10:00.535351+00 38391 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5zrxs-vTqeov3scZ-RTO1bhfy1Q=", "createTime": "2024-08-15 15:04:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.538512+00 2025-12-17 18:10:00.538518+00 38392 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qg-uGcCfi7jIxDvoBT661_Lwhu0=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.542181+00 2025-12-17 18:10:00.542187+00 38393 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C9qE-16EYs54i8iDerY-xm036f4=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.545666+00 2025-12-17 18:10:00.545673+00 38394 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OJKvOm-Il_vCITXHdQlfKpoyEu4=", "createTime": "2024-08-15 15:04:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.548853+00 2025-12-17 18:10:00.548858+00 38395 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iCEbniJ06o5g2mieW9l6kOVtC6g=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.552217+00 2025-12-17 18:10:00.552225+00 38396 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YtPQuNUL7iIGpfycMe3X0sTOooU=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.555505+00 2025-12-17 18:10:00.555512+00 38397 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FNY1H6SbT_qKz-TZxpEQhAkTjCo=", "createTime": "2024-08-15 15:04:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.558689+00 2025-12-17 18:10:00.558695+00 38398 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8SUxuXWcD3zMwTG-PO0sVIiGGeI=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.561608+00 2025-12-17 18:10:00.561613+00 38399 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yMhf4QjgwbWWnFjswmxtV3KIfrg=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.564251+00 2025-12-17 18:10:00.564255+00 38400 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o7Tx4N0tMzCXwtkSekH5C-l3Hag=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.567035+00 2025-12-17 18:10:00.56704+00 38401 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2S0D6grp3ga5tiRzYQ6y-bQ90M0=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.570039+00 2025-12-17 18:10:00.570044+00 38402 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E_loXLSGbYiw38xE-tDcRmG6EFc=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.572819+00 2025-12-17 18:10:00.572824+00 38403 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XN6feGjus8TraposRAWUHpkizi0=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.575534+00 2025-12-17 18:10:00.575538+00 38404 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XtjLtD2TQNzViroFDCCj3cALVp4=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.578326+00 2025-12-17 18:10:00.578331+00 38405 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wjgENJVUqI32utUH643JE7Q777E=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.581111+00 2025-12-17 18:10:00.581116+00 38406 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iufJGvo23v-jxEHn0av8iADr5xs=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.58399+00 2025-12-17 18:10:00.583996+00 38407 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KnfpC8Pt_17FustKFqu14WvJALU=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.587213+00 2025-12-17 18:10:00.587218+00 38408 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QoaOJWsqrZXurqjOgGEReOkj9EY=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.590779+00 2025-12-17 18:10:00.590784+00 38409 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wcRnz_qGnNSk1B6LEyLQ_6fYbMc=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.593977+00 2025-12-17 18:10:00.593982+00 38410 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VyCM4_4wqieedQ6uddf152k0c8k=", "createTime": "2024-08-15 15:04:49"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.596764+00 2025-12-17 18:10:00.596769+00 38411 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8L5euik7YghfumkgcgaVpzGHRiw=", "createTime": "2024-08-15 15:04:49"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.599486+00 2025-12-17 18:10:00.599491+00 38412 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EBYOqawr0EGfpyxpZ52P3x4mDbQ=", "createTime": "2024-08-15 15:04:49"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.602323+00 2025-12-17 18:10:00.602328+00 38413 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qRzH2VKARKWDL865nSOBLASOFOw=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.605244+00 2025-12-17 18:10:00.60525+00 38414 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Hm0-rGQOLVMV2aa5hk_2p36a3s=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.6083+00 2025-12-17 18:10:00.608305+00 38415 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UlkZMmpTppqh77e-k1sPHHEgVyA=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.61112+00 2025-12-17 18:10:00.611125+00 38416 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qMd8EA6C1sn8GZqO3exI5tvHSNo=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.614311+00 2025-12-17 18:10:00.614317+00 38417 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xFxeFlG83FVv62hABVVwciHr04E=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.617467+00 2025-12-17 18:10:00.617472+00 38418 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r-Ktd45BomRaNqHCuh_z-WCCqlY=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.62059+00 2025-12-17 18:10:00.620596+00 38419 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N1S8gFn64YAi2tDTcXKy3dkyahY=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.623697+00 2025-12-17 18:10:00.623701+00 38420 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3FWDNGbe-WZG5Qaz2lHaWpqidsA=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.626918+00 2025-12-17 18:10:00.626924+00 38421 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SB2_Aq-Ogn7NkT-kTgMgOESnVMQ=", "createTime": "2024-08-15 15:04:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.697137+00 2025-12-17 18:10:00.697143+00 38442 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OLL1uAJbjfJM7oFnbG6kL6gDuK0=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.629904+00 2025-12-17 18:10:00.629909+00 38422 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JId_imCOMaToz23x3b6xWrWm93w=", "createTime": "2024-08-15 15:04:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.632846+00 2025-12-17 18:10:00.632852+00 38423 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0K56t7o0o6MAB8SGRDVfmg54K04=", "createTime": "2024-08-15 15:04:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.635868+00 2025-12-17 18:10:00.635874+00 38424 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SIZYVu2BA0S1uKDmllSLTiae5e0=", "createTime": "2024-08-15 15:04:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.639689+00 2025-12-17 18:10:00.639695+00 38425 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Asf5olX4Kqvr92CCGVdH9vbn4I=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.643027+00 2025-12-17 18:10:00.643032+00 38426 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQpp-oBKZWAxoPOxh-pGVhpITyY=", "createTime": "2024-08-15 15:04:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.645985+00 2025-12-17 18:10:00.645991+00 38427 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:azRPHJx_6D1yGcppE9myuw3Q328=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.648826+00 2025-12-17 18:10:00.648831+00 38428 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wGcpSxbRMiXKDue-VmjO2Zt9Mac=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.651806+00 2025-12-17 18:10:00.651812+00 38429 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7GpbGoQZ1xdTF0NIBD_WwsE4CdQ=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.65539+00 2025-12-17 18:10:00.655396+00 38430 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kD1Wzb4hi7_t2bflGKATtlsKWas=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.658765+00 2025-12-17 18:10:00.658771+00 38431 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fh2SgfGmyqRJBKoYLKirbWZqWKQ=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.661956+00 2025-12-17 18:10:00.661963+00 38432 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fobHCoj5TXzcw-HYtbAhqgwuEkY=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.665149+00 2025-12-17 18:10:00.665154+00 38433 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T2UriD1jb0ya5scKQYRSfzDMRmY=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.668345+00 2025-12-17 18:10:00.668351+00 38434 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2IBflvlnON2t2ldTgKMH7LJv1_Y=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.671468+00 2025-12-17 18:10:00.671474+00 38435 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bZiFcnMS_mXW19Q108NmpFvgdYM=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.674553+00 2025-12-17 18:10:00.674558+00 38436 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OEIYTtcAeT7iuvL98u2h_Q92DPo=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.677731+00 2025-12-17 18:10:00.677738+00 38437 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b-y1mnKeq7FpSjAbLUFUr2csZg0=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.680923+00 2025-12-17 18:10:00.680929+00 38438 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mc81ZOFeztxqBkuAVuBoPijm1q4=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.684842+00 2025-12-17 18:10:00.684849+00 38439 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2PmOQFKZugKw3sd3F7zEVnWEE_Q=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.688741+00 2025-12-17 18:10:00.688749+00 38440 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LOeWPwpBPgA2tZS2lnxrhXwNRoo=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.69278+00 2025-12-17 18:10:00.692785+00 38441 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mKYV7rwdD6MFzEL7wANp7Q8ROW0=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.70039+00 2025-12-17 18:10:00.700396+00 38443 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2N2E9zUUHNyz-nLQmlZsSbZTnYw=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:00.703712+00 2025-12-17 18:10:00.703718+00 38444 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=1766081399&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_XaC0Wr-3DuEKM7nTDXMabQ44-o=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.060991+00 2025-12-17 18:10:01.061+00 38445 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qCCbsMMH6KNkpEI1ulvQuU3LEts=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.064876+00 2025-12-17 18:10:01.064882+00 38446 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-svRPmj9emJMmvB-y4ZsygkjVgE=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.068453+00 2025-12-17 18:10:01.068461+00 38447 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5wSxuRBZ89lLeERt85BiEHSd6N8=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.071539+00 2025-12-17 18:10:01.071545+00 38448 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2LX5JY2gKHEAGC81I5W5cgBhT2w=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.074679+00 2025-12-17 18:10:01.074684+00 38449 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S0HjMW8qzYj_KnoJE3eVnBBQ8jo=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.077778+00 2025-12-17 18:10:01.077784+00 38450 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rkPd3jVBk6xNIhBEwqpo23dmYYY=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.180397+00 2025-12-17 18:10:01.180402+00 38479 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GGHx2lCNWJ-H4MYc6whWSY94Z98=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.080684+00 2025-12-17 18:10:01.080689+00 38451 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KYl7r1GjYb5_EtHzbUSQM6HCnKU=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.083603+00 2025-12-17 18:10:01.083608+00 38452 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wS7cPRICnvsa23CENAb_4AR8Ne0=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.086658+00 2025-12-17 18:10:01.086664+00 38453 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8vjCsfgM5x_ROh7mmAiejOHvVJ4=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.090426+00 2025-12-17 18:10:01.090432+00 38454 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mvJmivwJM0pUiTjcqZ5teMB0Ds4=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.093881+00 2025-12-17 18:10:01.093887+00 38455 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HbE5oGydqYiMDSXcSplVWF5Zr44=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.097477+00 2025-12-17 18:10:01.097483+00 38456 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xSGe13s07DAA_99Pgsy3eigE_Gk=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.100999+00 2025-12-17 18:10:01.101005+00 38457 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:usqKbq4giXnq-Qt2OfiQnT_s16Q=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.104591+00 2025-12-17 18:10:01.104598+00 38458 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bnu0mGBwbDCqUoEaqXIx_AuvMr8=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.10833+00 2025-12-17 18:10:01.108336+00 38459 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:daJxtHaYWFcEi79DNV2b8bMVvgA=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.111942+00 2025-12-17 18:10:01.111948+00 38460 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_9G9ACAbrshafXZRwAWHfjFYEH8=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.115289+00 2025-12-17 18:10:01.115295+00 38461 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZFVlgQw3J8F6ksVP4YsrJ7n9qAw=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.118736+00 2025-12-17 18:10:01.118742+00 38462 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O-NM0Ke-4Xm5zU5x_eap5DrgTGo=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.122367+00 2025-12-17 18:10:01.122373+00 38463 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oFEgUuDPjyohkq7s7t1UP9fKLoA=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.128926+00 2025-12-17 18:10:01.128933+00 38465 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3SKn1UrYIAcTLpi9-P-ZdYqquU0=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.132061+00 2025-12-17 18:10:01.132067+00 38466 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ELdDo6QqzgiTGLc-cp9xM8KIRNU=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.135278+00 2025-12-17 18:10:01.135284+00 38467 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5tiwZKrqfu0I2_eoRvtuuH9bfzY=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.138578+00 2025-12-17 18:10:01.138585+00 38468 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZxmsJGTwHsKQA2SM4NALfr7tqAs=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.141846+00 2025-12-17 18:10:01.141852+00 38469 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dPqLBSzJnAYlqMpjTIjHF9Z4_U0=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.125637+00 2025-12-17 18:10:01.125643+00 38464 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f_rKJSbkbVJkDUEFVcLDkPaAzz8=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.149426+00 2025-12-17 18:10:01.149432+00 38470 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aEbEG9GufanV_FSzEH4dEiLbzyo=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.152975+00 2025-12-17 18:10:01.152982+00 38471 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oDnm11qHB0BfOPWineU4mCxgsW0=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.156524+00 2025-12-17 18:10:01.15653+00 38472 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Dgm6Jhn1RmlX4E03qoPv5Z6XrA=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.160003+00 2025-12-17 18:10:01.16001+00 38473 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1CGBSu84b9qkFL09KFD5bw8ZNH4=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.163337+00 2025-12-17 18:10:01.163343+00 38474 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j4ggEsVWKOylEEGNduPIdrMxfE4=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.16658+00 2025-12-17 18:10:01.166587+00 38475 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pVnciCk-7IMnOUh2UNUws6pLWv0=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.170069+00 2025-12-17 18:10:01.170075+00 38476 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jj_-cdDzOM8rIgrgzJVYNQ0yqFw=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.173763+00 2025-12-17 18:10:01.173769+00 38477 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8NQC6jy4JSbjrgCF_roCOvB0VrE=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.177321+00 2025-12-17 18:10:01.177327+00 38478 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uEHAMAVi_RxGFeyuIwH5zLd-dLY=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.183294+00 2025-12-17 18:10:01.183299+00 38480 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mFoBy4X6iCVCAkO-iHsODSBQ9pM=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.187065+00 2025-12-17 18:10:01.187072+00 38481 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Duwsa7BFqg8_wAX-0ONP-e8OM7E=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.191024+00 2025-12-17 18:10:01.19103+00 38482 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m7tUZZS5keEmwBlvY6cs-vGG_9I=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.194666+00 2025-12-17 18:10:01.194672+00 38483 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HNAbFy145uL0Dui_XYh5Wgis2-o=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.198004+00 2025-12-17 18:10:01.19801+00 38484 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mRtSVD8t60i3wZ93_eSWVSS4Kl0=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.20175+00 2025-12-17 18:10:01.201757+00 38485 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sgIcE8o9KPGLPRAjvNtLTeOavZY=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.205592+00 2025-12-17 18:10:01.205599+00 38486 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ksebdR-D6ZyN5uT7IcC0B9x-aAg=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.209199+00 2025-12-17 18:10:01.209205+00 38487 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yf20c1K7xLDEvF16Gs4d31TVNno=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.212521+00 2025-12-17 18:10:01.212527+00 38488 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lo_YDvKa0PtqoDvKEGdzz9NbbVI=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.218058+00 2025-12-17 18:10:01.218072+00 38489 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g_vDya9n4Xh-S0AlebKuS2uqtf8=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.223093+00 2025-12-17 18:10:01.2231+00 38490 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n_YXMU5vS6aNsl6oL5rHXst0E0I=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.226104+00 2025-12-17 18:10:01.22611+00 38491 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LoRcNoW5TKVV5AjW_LmMiQ4jkqA=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.228999+00 2025-12-17 18:10:01.229004+00 38492 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YAan5Nv-vzaD4DAygLkPNhNTTCk=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.232115+00 2025-12-17 18:10:01.23212+00 38493 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fAHAeK72DQyVKWBwtS9FKN_EB6I=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.235578+00 2025-12-17 18:10:01.235587+00 38494 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D31sczcNK7TAcaN0oOWbohz-TF8=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.239395+00 2025-12-17 18:10:01.239401+00 38495 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sdKgGsGlWX3mU4Oqvd6gvEwQZjQ=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.243843+00 2025-12-17 18:10:01.243847+00 38496 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O4aDZorj981r4CxW3oIUej1yVr0=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.247335+00 2025-12-17 18:10:01.247342+00 38497 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hy-pB5Z8ao-TQR-RQvgDHs1oPKI=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.250442+00 2025-12-17 18:10:01.250447+00 38498 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zQUx1oBu4K7cWMOoK-HfbhQNjj4=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.253269+00 2025-12-17 18:10:01.253274+00 38499 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P4x2YhqwdcYClS8JJZt9qZSQDF0=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.255919+00 2025-12-17 18:10:01.255924+00 38500 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b08LCS08j8GUidAl4wj97bpKbXU=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.258826+00 2025-12-17 18:10:01.25883+00 38501 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nw-A-EUlZj03a7Xrh2qkvn0OqHo=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.261674+00 2025-12-17 18:10:01.261678+00 38502 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AIFWq6JLE7cYCBtHjE6JZNHqw7Y=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.264224+00 2025-12-17 18:10:01.264228+00 38503 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R5-Qlq7hHwxzKms6fSO0K_6UhpU=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.266702+00 2025-12-17 18:10:01.266706+00 38504 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gf3Ea-dSsVHw0L8tRXCdPBRsh40=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.269271+00 2025-12-17 18:10:01.269276+00 38505 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:id27XslnMPPtxoNNcpWdOBQqh94=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.27196+00 2025-12-17 18:10:01.271965+00 38506 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N46yjgWeX696eRLWa6SY2arz01c=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.274608+00 2025-12-17 18:10:01.274613+00 38507 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LBmMMAmTPnzveGPKXdzy3XFk8Qs=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.277159+00 2025-12-17 18:10:01.277164+00 38508 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:keOcNPLzwdrsY1mjat7ZmFFjjq8=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.280034+00 2025-12-17 18:10:01.280038+00 38509 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:krkKmVNkBZVmanjxQ6iuml11W7I=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.282847+00 2025-12-17 18:10:01.282851+00 38510 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y485NtkSr9i8T8NbLGZ39emqkFY=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.285352+00 2025-12-17 18:10:01.285357+00 38511 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SdLC72QqhxUXwAdLZKBsmPEdMmk=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.287976+00 2025-12-17 18:10:01.28798+00 38512 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_QzhFkWmpI5JDS0bWCkyC_gj4As=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.290765+00 2025-12-17 18:10:01.29077+00 38513 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yyQ-FqztWMlueYAX8P6JcTiEJDw=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.29373+00 2025-12-17 18:10:01.293736+00 38514 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_UhVRBYKILgieSwfN2i4o9PW4FM=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.296862+00 2025-12-17 18:10:01.296866+00 38515 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L-rJbPqOnI12RB1WG9ile6mOjR4=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.299667+00 2025-12-17 18:10:01.299673+00 38516 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mq-BKe2WMBArstOwtggPG_90TYk=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.302846+00 2025-12-17 18:10:01.302851+00 38517 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qj-o_elmqxx3rSaxw0ZgURFYzpE=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.306059+00 2025-12-17 18:10:01.306065+00 38518 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1QKbsrQMoQvJMUCg59oN1PYSNfE=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.309148+00 2025-12-17 18:10:01.309154+00 38519 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xLnrfNf6TsKx7NKtgdOP9ZMS9zM=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.312124+00 2025-12-17 18:10:01.31213+00 38520 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ga7AIWlZRkX7vmyZsj_g3gs0iTE=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.315639+00 2025-12-17 18:10:01.315645+00 38521 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FoDR6Mty4y2QbHk6TTBF4g7cvJI=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.3195+00 2025-12-17 18:10:01.319506+00 38522 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fPOvQw1ytFIO-sbHO3HBkMIyQNs=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.323012+00 2025-12-17 18:10:01.323018+00 38523 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KPqigs1SBoF98arCeSJQ1GR7Me0=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.326058+00 2025-12-17 18:10:01.326064+00 38524 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4cm3k6kiFVDSWyoAHt_i_81eMsI=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.329023+00 2025-12-17 18:10:01.329028+00 38525 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X9McqDSOSsI9WCbxSUjPjMAc028=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.331879+00 2025-12-17 18:10:01.331884+00 38526 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oEi5ZjYbD33f05Pm0vxOnGoeEVg=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.33472+00 2025-12-17 18:10:01.334726+00 38527 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Ud-HW0GNrREWz750quDdmKXcIE=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.337665+00 2025-12-17 18:10:01.33767+00 38528 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6LYtJ5IAEJcpT2PtykrTuTOz_-w=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.340751+00 2025-12-17 18:10:01.340757+00 38529 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:136yR6YAwT1kWcTIQWjR8lcq1e8=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.34419+00 2025-12-17 18:10:01.344195+00 38530 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N1c6sg76SGCLx6_WRQ0I3bW2dio=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.347378+00 2025-12-17 18:10:01.347383+00 38531 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0VHQsqQSU2vXSVpVCFPPvVaw3NU=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.350302+00 2025-12-17 18:10:01.350308+00 38532 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_3Y4EZCEpDoslI6Gl2Ux1Wl21iM=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.353535+00 2025-12-17 18:10:01.353542+00 38533 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uW0NtCBIFwYK0b5klcsE18JFkzE=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.3569+00 2025-12-17 18:10:01.356906+00 38534 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aFgTztK5SAlcpqp4mch9kLdi8UI=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.360137+00 2025-12-17 18:10:01.360142+00 38535 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6nW4_JCu4zXxJHiiGrin0uPKUJE=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.36322+00 2025-12-17 18:10:01.363225+00 38536 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ljJ62YBi2ishLZhbmBHG1PLU1Tg=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.366195+00 2025-12-17 18:10:01.366201+00 38537 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jUHwrj9KYIZ7qBNVUzt4erfPuHM=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.369687+00 2025-12-17 18:10:01.369693+00 38538 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O4DEp_XdIEXFL-jLNBplV85Mq-4=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.373234+00 2025-12-17 18:10:01.37324+00 38539 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yBKgrLP62y3YTAsbTqadl3_SFN0=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.376428+00 2025-12-17 18:10:01.376434+00 38540 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0uuUOlcsNHcUInYnuHCIWNYJqLs=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.379306+00 2025-12-17 18:10:01.37931+00 38541 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CMnXLDqLypsGjqHXOBEyXeupny4=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.3821+00 2025-12-17 18:10:01.382105+00 38542 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nrmyC8AdHl50vZC8neYSfx5HJQ0=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:10:01.385134+00 2025-12-17 18:10:01.38514+00 38543 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=1766081400&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:82AUL3KdlrYk8wpRQHWqQOi0b9U=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.577022+00 2025-12-17 18:20:00.577034+00 38544 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OO4dvNkj0w-fYw3StrJK6Lve3hA=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.582868+00 2025-12-17 18:20:00.582877+00 38545 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bdK_18YA94qDxLc99Tqn-HM3WIo=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.587599+00 2025-12-17 18:20:00.587607+00 38546 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j1URLFGCYxjzK2r-gYhpkmw77ik=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.591396+00 2025-12-17 18:20:00.591401+00 38547 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SVtJWlJtU7zp-ad1Z2LVCps6JDE=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.594374+00 2025-12-17 18:20:00.594379+00 38548 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hRbrKf5pbtbsfomLEPnw89xUzpY=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.597657+00 2025-12-17 18:20:00.597662+00 38549 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xbk6pjr_nkEWP67NnIena8Y2AGE=", "createTime": "2024-08-15 15:05:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.60089+00 2025-12-17 18:20:00.600898+00 38550 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:POCadftFiCeszJMUD2JosJbj1Uw=", "createTime": "2024-08-15 15:05:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.603912+00 2025-12-17 18:20:00.603917+00 38551 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oBdpuLk2hiJK8jGZZ7hoMNiuk8Y=", "createTime": "2024-08-15 15:05:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.6069+00 2025-12-17 18:20:00.606906+00 38552 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WrBuvgo1MiQMkoZtWvgyQYN5YcU=", "createTime": "2024-08-15 15:05:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.610212+00 2025-12-17 18:20:00.610217+00 38553 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6IGM-olqB812KP_zWeQNbUXKO1g=", "createTime": "2024-08-15 15:05:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.613522+00 2025-12-17 18:20:00.613528+00 38554 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LaAJod1zdoQNxqI6VJwsh73lPUI=", "createTime": "2024-08-15 15:05:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.616682+00 2025-12-17 18:20:00.616689+00 38555 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NWT2PF2AL6Ynfo3-WcfXBp_Z1Xw=", "createTime": "2024-08-15 15:05:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.619749+00 2025-12-17 18:20:00.619754+00 38556 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BNOQDl8fce_Sl15Unl7dOXYK3u8=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.622675+00 2025-12-17 18:20:00.62268+00 38557 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ecFK_SFaqC1SVNVhHBdDCdN7-h8=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.62562+00 2025-12-17 18:20:00.625625+00 38558 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WWVVHbWoZmBBVt1JHNDH5OQHqAs=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.628277+00 2025-12-17 18:20:00.628282+00 38559 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fl5uwQ3HwSZ5LsyjLDyQgZl3ewA=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.630892+00 2025-12-17 18:20:00.630896+00 38560 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FZpZUDJVAe3HkzBTfOiOwEFCBMM=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.633971+00 2025-12-17 18:20:00.633977+00 38561 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6LQ6wOWBlh8qssOxSF3tgGGX5Pk=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.637398+00 2025-12-17 18:20:00.637403+00 38562 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BVDqjOAnAzrd6k3ksVXTcaP9-KE=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.640324+00 2025-12-17 18:20:00.64033+00 38563 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rf7eROLBCw3I55WxKIVxqaixkxY=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.643278+00 2025-12-17 18:20:00.643284+00 38564 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9jkIjQNceouBPWV7HU5dptZYuRc=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.64661+00 2025-12-17 18:20:00.646615+00 38565 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MTufZvE5VgWoppvmLsLa2kzq6fA=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.649957+00 2025-12-17 18:20:00.649963+00 38566 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sw1eACToB4g-GpgJR-7640-h2xI=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.653309+00 2025-12-17 18:20:00.653314+00 38567 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7lUPJzIFISPhcGO17EjDQ7kXG5U=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.656535+00 2025-12-17 18:20:00.656541+00 38568 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GPja4rdrzT4iI6HPMIdsruorMlw=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.659779+00 2025-12-17 18:20:00.659785+00 38569 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LyGz2T-TJ9Dtr72c56RfifN8jVE=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.663093+00 2025-12-17 18:20:00.663098+00 38570 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FVn7xrQ-uA2C0Wt1lHwS6LLBluY=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.666079+00 2025-12-17 18:20:00.666084+00 38571 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2PxP6KPf41a8pcZSexj_1s3mgfI=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.66923+00 2025-12-17 18:20:00.669236+00 38572 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jnlBdqT2QB2EUtf6NhntGtwTH_s=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.672597+00 2025-12-17 18:20:00.672603+00 38573 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s8GkWpXy5k9aE5iSxya8wJbE7ZU=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.675812+00 2025-12-17 18:20:00.67582+00 38574 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cI7suOl9KD2ZcLDZt0pB64i_Cuc=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.67948+00 2025-12-17 18:20:00.679486+00 38575 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1iGMWSiBPquDLYTgcJcDRSds-N8=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.683444+00 2025-12-17 18:20:00.683451+00 38576 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w0mMjAGf2Fv4YpfQTSz8fA1XkLQ=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.687524+00 2025-12-17 18:20:00.687531+00 38577 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pe9cHjkOfhR8vqoj6lkTDjDAX6w=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.69135+00 2025-12-17 18:20:00.691356+00 38578 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J-5HBBtsnJ1ekz2chw4iw1rH5Ow=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.694987+00 2025-12-17 18:20:00.694994+00 38579 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qOR4GlkqSUFvJ-fRYphvnihjqpo=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.698329+00 2025-12-17 18:20:00.698336+00 38580 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W0_UlLP6-YgluwJzIUbuCk2hnTM=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.70201+00 2025-12-17 18:20:00.702016+00 38581 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aZHKwQAuVoFDv8fPJeG0k5wXxdw=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.705428+00 2025-12-17 18:20:00.705434+00 38582 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lqqPiAQI0gwIV8_An_BFHFVjDmg=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.708511+00 2025-12-17 18:20:00.708516+00 38583 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ndUslWR_f2JUSgkS9A4cQnCRW1A=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.71158+00 2025-12-17 18:20:00.711587+00 38584 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UdVAUwksv8daICgzOpAY48Gnigg=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.715074+00 2025-12-17 18:20:00.71508+00 38585 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:znqnElPn8KfQfLqV1djcaYjhg7U=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.718836+00 2025-12-17 18:20:00.718843+00 38586 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FvkjgV_jIhoJaS-HElV3HwDDfgI=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.722543+00 2025-12-17 18:20:00.722549+00 38587 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UiKVhRZ8G009CesCDBRQNbAXNaI=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.72603+00 2025-12-17 18:20:00.726035+00 38588 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HgorpCoiorXUXojYCuOFZ_azX7g=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.729522+00 2025-12-17 18:20:00.729528+00 38589 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KZ5WKph74SSkAkzhC5ylbB8TpUo=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.732956+00 2025-12-17 18:20:00.732961+00 38590 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v-Ra1BqZx4r7O2qDHca1zs25XaA=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.73696+00 2025-12-17 18:20:00.736966+00 38591 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NEosDTV1pQ8D2R9ks2-IQu1xQF0=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.739938+00 2025-12-17 18:20:00.739944+00 38592 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P1nvqvWB0Gd8lgS9s_sz49K0yUk=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.743024+00 2025-12-17 18:20:00.743029+00 38593 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MfFzgF6brZzsJJliSESA9Qki1r8=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.746458+00 2025-12-17 18:20:00.746464+00 38594 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T4URMLX_0fex4O-hZSai39NLkfg=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.749806+00 2025-12-17 18:20:00.749813+00 38595 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iifNFL0vLHa5AH_JMIj4R6M4p7A=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.753107+00 2025-12-17 18:20:00.753114+00 38596 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eDFGfImQuOKv72TStHLmf8mXYU8=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.756479+00 2025-12-17 18:20:00.756485+00 38597 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZLa4ETBiQ_MsWJEp5C_FZWoXc6s=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.759692+00 2025-12-17 18:20:00.759697+00 38598 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B4GnseehbDn-tz0TEZ9i8q7L-tg=", "createTime": "2024-08-15 15:05:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.762762+00 2025-12-17 18:20:00.762768+00 38599 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oRZ8m3AklwC9t8PsC1ticD_v-Sg=", "createTime": "2024-08-15 15:05:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.765714+00 2025-12-17 18:20:00.765719+00 38600 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E2oWrLl3EB-zKlK4vcRmhVc5F2c=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.769161+00 2025-12-17 18:20:00.769166+00 38601 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iFfSoyPIJ6DeNJzXBQMgGcOZcOE=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.772332+00 2025-12-17 18:20:00.772337+00 38602 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MtJQkuqY2N4cM-PfbpP4f_wBSHY=", "createTime": "2024-08-15 15:05:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.77525+00 2025-12-17 18:20:00.775256+00 38603 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lKxAe-42IU2WvWifCbdIb8gzA_k=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.778356+00 2025-12-17 18:20:00.778363+00 38604 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wVmhWy4cUw4TDrtneIV1-kb1AzE=", "createTime": "2024-08-15 15:05:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.781659+00 2025-12-17 18:20:00.781664+00 38605 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aFFtWZtlBQr3hEB6VSwb1Bv-2t4=", "createTime": "2024-08-15 15:05:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.785071+00 2025-12-17 18:20:00.785078+00 38606 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nweWAGRYtGdznvYXYu5IjD8lB08=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.788221+00 2025-12-17 18:20:00.788226+00 38607 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yXcnnWQIs-oX60fCki4MRRcuNyY=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.791143+00 2025-12-17 18:20:00.791147+00 38608 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vgZON7ZFTdcxgvK7n1gkdZFZ4hE=", "createTime": "2024-08-15 15:05:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.794432+00 2025-12-17 18:20:00.794438+00 38609 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:taINbx_6cuMkHQfNFf8FCWpzcKA=", "createTime": "2024-08-15 15:05:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.797822+00 2025-12-17 18:20:00.797827+00 38610 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fw7Mm-4ZOsUQF8dt3rkwuQiz2JM=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.801315+00 2025-12-17 18:20:00.801321+00 38611 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3g8ln7PMRt1QZLTYRcasvNyTi88=", "createTime": "2024-08-15 15:05:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.804702+00 2025-12-17 18:20:00.804708+00 38612 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DlumQW6laD9vCDeSDnEEgGVahgI=", "createTime": "2024-08-15 15:05:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.807973+00 2025-12-17 18:20:00.807978+00 38613 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:idbEpy2ehzkMJkZSPnN9iBilxyw=", "createTime": "2024-08-15 15:05:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.81123+00 2025-12-17 18:20:00.811236+00 38614 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WZhncIWzoG5rmTHJfKm6QeJsyns=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.814498+00 2025-12-17 18:20:00.814504+00 38615 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xc8ZXVxA1yLJuyFKO72-12c8p7o=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.817974+00 2025-12-17 18:20:00.81798+00 38616 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2gqxbuVH0CzDof_NjX_Amm3tA2Q=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.821402+00 2025-12-17 18:20:00.821408+00 38617 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SUcmFKddPnyfMcf9Li4cvCDOh1c=", "createTime": "2024-08-15 15:05:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.824676+00 2025-12-17 18:20:00.824682+00 38618 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jq4tSopwR_hN9evzjGixvklWWio=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.827728+00 2025-12-17 18:20:00.827733+00 38619 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rNpwOh8KBXcN6-92hzWNTGPjhH4=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.830786+00 2025-12-17 18:20:00.830791+00 38620 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yGjhenwkvXJs1iZ06pq1f-jN3ZI=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.834199+00 2025-12-17 18:20:00.834206+00 38621 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UdNhixONW9EI0SiovQ-tGyER_Go=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.837664+00 2025-12-17 18:20:00.83767+00 38622 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C19iRaJNwv5r6aNHTzSGionktoU=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.840659+00 2025-12-17 18:20:00.840663+00 38623 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1W0PFZIHfFrOhKftx_gXLOx8nPQ=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.888988+00 2025-12-17 18:20:00.888998+00 38636 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ni53cBdA-DgVlUDkx1DAPJ66o7s=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.843481+00 2025-12-17 18:20:00.843485+00 38624 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VOIHr8izs1-ubF_pamscQygmD6w=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.846892+00 2025-12-17 18:20:00.846898+00 38625 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bic_cvaMn7J2iZArttODL5i3f6g=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.850193+00 2025-12-17 18:20:00.850199+00 38626 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dbpX2KVoNAxGRg8-ShJdSJ6lGAc=", "createTime": "2024-08-15 15:05:14"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.853398+00 2025-12-17 18:20:00.853404+00 38627 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:st6AnEXc9ea_f6lAnt6pI_ppjO0=", "createTime": "2024-08-15 15:05:14"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.856433+00 2025-12-17 18:20:00.856439+00 38628 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Fpvf28YMHfygBEZ_JaQg2TGNj8=", "createTime": "2024-08-15 15:05:14"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.86067+00 2025-12-17 18:20:00.860679+00 38629 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CLPybWOVCEUAOmpr7yQ9L6TH2Ww=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.865248+00 2025-12-17 18:20:00.865255+00 38630 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QOoRQb12eouyXMJewMEdPqbHEeQ=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.869387+00 2025-12-17 18:20:00.869394+00 38631 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T7i_5yuUXCBKcj6AkrXhmCvzdVs=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.872855+00 2025-12-17 18:20:00.872862+00 38632 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_4G4tIkYXmU9e7ENBOx8eYRK2nM=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.876519+00 2025-12-17 18:20:00.876526+00 38633 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0_0cl10CMyg_lMgQZWEZIrHzHCs=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.880599+00 2025-12-17 18:20:00.880608+00 38634 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uPnyTG28I9_4KGu70TeBtQW9Zvc=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.884466+00 2025-12-17 18:20:00.884473+00 38635 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pFGgN_gqccdxo4yrxmm4c9UsyBQ=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.892536+00 2025-12-17 18:20:00.892543+00 38637 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fF-7CfXw_igCjACQ30xcKjQcsHE=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.896703+00 2025-12-17 18:20:00.896709+00 38638 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XYIkr3ra3AvvRT-WUuQfo5KvZcE=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.900678+00 2025-12-17 18:20:00.900684+00 38639 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iRJBbALFhtwTqBXsTbgKZGjQyak=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.904117+00 2025-12-17 18:20:00.904122+00 38640 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v2786jjpzYORHRFtTqqwuUtSwoA=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.907326+00 2025-12-17 18:20:00.907331+00 38641 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4rU7-NWMDSQ2PB8HV335jUVGtSM=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.910728+00 2025-12-17 18:20:00.910735+00 38642 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mxurnzt5RHZmvItvxcrm-zYdb4A=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:00.914069+00 2025-12-17 18:20:00.914075+00 38643 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=1766081999&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eO3yQO5PKoQdsUFEc9J56rCIVm8=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.279463+00 2025-12-17 18:20:01.279472+00 38644 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HgQV_BC7xzFbTlJpxNfQjBs4ahI=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.283692+00 2025-12-17 18:20:01.2837+00 38645 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lB5tt1q9UTQ4tHM0L1YDryqJhQk=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.289962+00 2025-12-17 18:20:01.289972+00 38646 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Io1KXTP8GR1hq-_MNLvSPhHKL4Q=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.293653+00 2025-12-17 18:20:01.293658+00 38647 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ff9PxFFAZgwgSxOaEfS2tGxJaiQ=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.296704+00 2025-12-17 18:20:01.296709+00 38648 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L4mFguXMei1ldlVvrXGJMALSFV4=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.299372+00 2025-12-17 18:20:01.299377+00 38649 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ql0BYqse5xoI7sJoIiDQZqtecPY=", "createTime": "2024-08-15 15:05:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.302346+00 2025-12-17 18:20:01.302351+00 38650 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oF__3b_vjQMYUxW8-LRHcpGRUms=", "createTime": "2024-08-15 15:05:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.305557+00 2025-12-17 18:20:01.305562+00 38651 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DfEvWa5CsOO4gFllZHPBP0Fkj0U=", "createTime": "2024-08-15 15:05:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.308511+00 2025-12-17 18:20:01.308516+00 38652 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fnLM1ZyjFdgZPvkKVQU2Bdybf84=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.311502+00 2025-12-17 18:20:01.311508+00 38653 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MMI9gw4K_RyvpKDahsXe3RlVEOU=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.314743+00 2025-12-17 18:20:01.314748+00 38654 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:foAZXxMezWOhOV-YL5zjeTNrYR4=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.318202+00 2025-12-17 18:20:01.318209+00 38655 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fGo6IIigaGa2NvnPSZNk9HI2Dvw=", "createTime": "2024-08-15 15:05:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.321294+00 2025-12-17 18:20:01.3213+00 38656 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dj42DJxsEP37LDJvgv5mMc7EIq0=", "createTime": "2024-08-15 15:05:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.32428+00 2025-12-17 18:20:01.324285+00 38657 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iplpcIlZiWblwW9dpnEjYo3loIk=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.327521+00 2025-12-17 18:20:01.327527+00 38658 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kZ3bngCcC9FBfTWJumlvnPMySP8=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.330708+00 2025-12-17 18:20:01.330713+00 38659 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fRabYl1fNbgZHTv05SvLIZleL5o=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.333628+00 2025-12-17 18:20:01.333633+00 38660 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7VUQBQTByi_pH3srEPVZi8BKrWE=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.340193+00 2025-12-17 18:20:01.340199+00 38661 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CrzHQ2BsnKenmgKO6sFZvYUGbB8=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.343632+00 2025-12-17 18:20:01.343639+00 38662 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iDjx2X2MSyDnZ9u_bAdygvCmJfU=", "createTime": "2024-08-15 15:05:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.346949+00 2025-12-17 18:20:01.346955+00 38663 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lIO9bjdTbvyuBre_tYbfuUbATFs=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.350135+00 2025-12-17 18:20:01.350141+00 38664 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aASx5M1e9XsoThAayt0WY9x89yc=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.353665+00 2025-12-17 18:20:01.353671+00 38665 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bEWligazhnqCjLCBdEmL68Co6hk=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.356967+00 2025-12-17 18:20:01.356973+00 38666 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YHfbw5hP8-tZH3VtF08wq8UStfw=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.359858+00 2025-12-17 18:20:01.359864+00 38667 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gZVQb5OPcAFQT5BgG090S1P8xHg=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.363072+00 2025-12-17 18:20:01.363078+00 38668 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WG5ErNa-oemFCcxQBD3xYT_NHXg=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.366516+00 2025-12-17 18:20:01.366522+00 38669 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9gfG4oTRbjxAkGeWWveXg6CZeCA=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.369901+00 2025-12-17 18:20:01.369906+00 38670 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oU7fT3DVvUj6jgiLUPbdEQHUHDA=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.372891+00 2025-12-17 18:20:01.372896+00 38671 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dlm1f_C8B6hjQHYBDmGxmowbt3M=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.37572+00 2025-12-17 18:20:01.375725+00 38672 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WgI9V8RNP-uOY6jLKVoowTCbcPM=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.379182+00 2025-12-17 18:20:01.379188+00 38673 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mRemlEzcdn0hVkQhCmchYBritB8=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.382617+00 2025-12-17 18:20:01.382622+00 38674 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WMXtUTQ_QkyGbP4MDuOqTN5oX0A=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.385766+00 2025-12-17 18:20:01.385773+00 38675 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xqAUVKNCAhsJ610Yy3f6RKbHIUo=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.388857+00 2025-12-17 18:20:01.388863+00 38676 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J4X9-CvVyXdb2EakBQ4S6wp67QM=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.392094+00 2025-12-17 18:20:01.392099+00 38677 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TtvfwEzX-r9pJzglVcjuhfVnoUQ=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.395606+00 2025-12-17 18:20:01.395613+00 38678 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WD2lK4rSB7zDUEyK6aV1cM0lGfg=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.398685+00 2025-12-17 18:20:01.39869+00 38679 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O9TDQvhaB2D1wW41J6OS9MSF3So=", "createTime": "2024-08-15 15:05:21"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.401845+00 2025-12-17 18:20:01.401851+00 38680 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZEpgczAiKs9m9ITfa0TES7w-jks=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.405328+00 2025-12-17 18:20:01.405334+00 38681 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H2i7u-DGAqlsisAzQto5Qbq6p2U=", "createTime": "2024-08-15 15:05:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.408735+00 2025-12-17 18:20:01.408741+00 38682 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zWH1gsZaewPX3xWeBfe4R_vts-o=", "createTime": "2024-08-15 15:05:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.411793+00 2025-12-17 18:20:01.411798+00 38683 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BovhCz7WQKxIMuZs7szsnDLXqMU=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.414881+00 2025-12-17 18:20:01.414886+00 38684 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rjg8kEXOFRDaAIRo21dxeZsNZBg=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.41823+00 2025-12-17 18:20:01.418237+00 38685 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5w92keLIYx0IeZTitXa8CpSYQc0=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.421785+00 2025-12-17 18:20:01.421791+00 38686 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ihc6Z2nUmfc3638FbZg87qsr1RY=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.424855+00 2025-12-17 18:20:01.424861+00 38687 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xo1eM17q48pKDO0fhcdP_sUZYEI=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.427896+00 2025-12-17 18:20:01.427902+00 38688 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K4SEt1TJD9BEwKjDRsaebNRfMU8=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.431378+00 2025-12-17 18:20:01.431384+00 38689 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xWard_qfi_ca5UAj7YINQOoMBXA=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.43481+00 2025-12-17 18:20:01.434815+00 38690 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MA0lVYslyz8edbXaZ4BZQ-jOyQ0=", "createTime": "2024-08-15 15:05:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.438088+00 2025-12-17 18:20:01.438094+00 38691 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uOIlVTsAZ8uKBafdIhvtN_veoZ8=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.441153+00 2025-12-17 18:20:01.441158+00 38692 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gWlowTplroxyLRLPMJgiyXjLxzs=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.444622+00 2025-12-17 18:20:01.444629+00 38693 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NqlGzU7JtXOGdlKHd0BUSJJwViA=", "createTime": "2024-08-15 15:05:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.448129+00 2025-12-17 18:20:01.448135+00 38694 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n1Oxd_jSt2wD7f2spNF6Yb2k2lM=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.451316+00 2025-12-17 18:20:01.451322+00 38695 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cJmWTRugtQQWOCnI8iFDORf_0jg=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.454555+00 2025-12-17 18:20:01.454561+00 38696 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uMQ_aBxUsmEcdQUJ6SkahzabhIw=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.457918+00 2025-12-17 18:20:01.457924+00 38697 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:omh4_MhIWjFglPiFvR1YtIRqfns=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.461491+00 2025-12-17 18:20:01.461497+00 38698 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rvrC8_xfcSaBmCR-s0RM5ZSnMZ4=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.464824+00 2025-12-17 18:20:01.464829+00 38699 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oVNwXhWfdW73Mng7TwattVuKbcY=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.468021+00 2025-12-17 18:20:01.468027+00 38700 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VbHAfwbiJuuUL45qRea6hFxIti8=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.472098+00 2025-12-17 18:20:01.472105+00 38701 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wSi7StVXdq_6v-cCL8OPdsJgfYc=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.476462+00 2025-12-17 18:20:01.476471+00 38702 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OMUVw7fsbQKhmTpD8uvwYBOdq1A=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.480099+00 2025-12-17 18:20:01.480105+00 38703 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KQIxywayrnlX0Tfj1w4UkYBOO2I=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.483498+00 2025-12-17 18:20:01.483503+00 38704 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iAJ1XWfRUlK4MFdk9zA9RZPwygs=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.486936+00 2025-12-17 18:20:01.486942+00 38705 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p9kZxmDNrQHWbwfDmps7f-R_LD4=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.49045+00 2025-12-17 18:20:01.490456+00 38706 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P-uMI9wQ3zVVDIuh_kwrzp3MfSM=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.493344+00 2025-12-17 18:20:01.493349+00 38707 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DdSe7zYEqliUxdHtZW0st8gB98c=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.49651+00 2025-12-17 18:20:01.496515+00 38708 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tmnu5aHNCz5aSy9j2j1S0IyEUPI=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.514209+00 2025-12-17 18:20:01.514215+00 38713 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WuAlNAnh9j91BgMvYfGpLJOO1Gk=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.499755+00 2025-12-17 18:20:01.49976+00 38709 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:31iLiiQDTOhm8ojzBW2cyuxqQyQ=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.503485+00 2025-12-17 18:20:01.503491+00 38710 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fo7VR2ssY9hhLIR7bKeLDOvGr0E=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.50691+00 2025-12-17 18:20:01.506916+00 38711 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lKSPYNyCan5fP2zAQ9C8bIUiszM=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.5104+00 2025-12-17 18:20:01.510407+00 38712 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nROwP7GuSjo3gYute7HApSg_iXo=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.518383+00 2025-12-17 18:20:01.51839+00 38714 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IWwiC-6xMBQJQM9dl_0WEvh1UoA=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.521857+00 2025-12-17 18:20:01.521862+00 38715 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EGdVCwUHaYxvgBr4QA6Q9VBok9Y=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.525021+00 2025-12-17 18:20:01.525026+00 38716 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VzTx7sHqHQbn8Xonsw1FQ3BCll8=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.52793+00 2025-12-17 18:20:01.527935+00 38717 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UJpcJ-ineAxeM1U56kitCO6RuOo=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.530577+00 2025-12-17 18:20:01.530582+00 38718 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3WzoQLhNJPIBNUgsuQechHGATEU=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.533374+00 2025-12-17 18:20:01.533378+00 38719 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DSigICdn0T6lkEe2gz_kiNgFM20=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.536708+00 2025-12-17 18:20:01.536714+00 38720 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WVeH2YOOf_Dxkjv_Uouz08ST5xw=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.539956+00 2025-12-17 18:20:01.539961+00 38721 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SeERtazBZ2K_csNCxSoq1Fl-D9w=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.542747+00 2025-12-17 18:20:01.542753+00 38722 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a1gI-xB66sBG0f9GUPNhKbg7NHY=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.545833+00 2025-12-17 18:20:01.545838+00 38723 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yOOYgRq71rgZCr9KiHpAkMpXFAE=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.549094+00 2025-12-17 18:20:01.5491+00 38724 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:47ww7rHFOqw1IPQUMn-29YqsMGc=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.552559+00 2025-12-17 18:20:01.552568+00 38725 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_PUnsB5I9KZpxBU81A5XV00xSP4=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.555579+00 2025-12-17 18:20:01.555584+00 38726 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j8lzWgFNE6s22KoC8SRii-mB73w=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.558457+00 2025-12-17 18:20:01.558462+00 38727 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0vBoahVcj9eBtqbP-WiQ6PdQ81g=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.561868+00 2025-12-17 18:20:01.561873+00 38728 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:auLPfdAsSpkD5cXJC6jyyOWZGLc=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.565049+00 2025-12-17 18:20:01.565054+00 38729 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hJDDgpy_JJc2zOKV-aGVpsnrU0k=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.568153+00 2025-12-17 18:20:01.568157+00 38730 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iLbcJTx7w7ZxYSWV955p7gKyc2o=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.571479+00 2025-12-17 18:20:01.571485+00 38731 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FtFEWlUx5RsLStzRHpb9QnjoDx8=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.574836+00 2025-12-17 18:20:01.574842+00 38732 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PoTBMl4oxLPCc8MNQMrRy1xNfhc=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.578247+00 2025-12-17 18:20:01.578253+00 38733 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y1Q3ls09HlKKUH8da67AzUWqLp0=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.581579+00 2025-12-17 18:20:01.581584+00 38734 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YeUuvHguMjxxAzBY8KUnXYbE1uI=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.584838+00 2025-12-17 18:20:01.584844+00 38735 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ggyIsU6_FesP2k38LpYrjqwhVI=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.588211+00 2025-12-17 18:20:01.588217+00 38736 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pLOVL7mrBWGuebj0PjPj4pMbgEM=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.591586+00 2025-12-17 18:20:01.591591+00 38737 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K67Xxo20lfmCJxz1lm-maBor1hU=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.594647+00 2025-12-17 18:20:01.594652+00 38738 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JNTnapulvX_Yc9xYtdrJRhW_YI4=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.597751+00 2025-12-17 18:20:01.597757+00 38739 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DEju-vQjOXzSANaQVwxrHCRG-Lg=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.60108+00 2025-12-17 18:20:01.601086+00 38740 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zTn7yOamsizPcrRADakHXBJSp1Y=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.60441+00 2025-12-17 18:20:01.604415+00 38741 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XAAAnwDLdtk_olm4VO1AaGqJsWA=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:20:01.60743+00 2025-12-17 18:20:01.607436+00 38742 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=1766082000&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cfA9KTkSVoPxINGSndoZYxwLq84=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.375773+00 2025-12-17 18:30:00.375785+00 38743 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZRq91URW6BIRCKQyG0hWcw-Mih0=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.380534+00 2025-12-17 18:30:00.380541+00 38744 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tJNupoofW5Bnu95Xp_s5Bw25_Ek=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.384493+00 2025-12-17 18:30:00.384499+00 38745 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x1D1-H9SZzlJdZY1dC2V0dPtmW8=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.38837+00 2025-12-17 18:30:00.388378+00 38746 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mbhY2lXjK55Ns4DiUZ4T7VieABc=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.392432+00 2025-12-17 18:30:00.392439+00 38747 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:btnbXWEs9oWJnCDJyJPiTnDLG4c=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.396421+00 2025-12-17 18:30:00.396427+00 38748 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IklFsim7gxPMU1XxGB0-64Lkdww=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.400221+00 2025-12-17 18:30:00.400227+00 38749 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pKdnBW5mRFJp86pDbOFvHCgRVFk=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.40377+00 2025-12-17 18:30:00.403776+00 38750 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TjFrfzVIEEV2XvIKR0-THTbT7NY=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.406914+00 2025-12-17 18:30:00.406919+00 38751 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YouWRL88MtoD9qGtXjpKVT4XPnc=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.410266+00 2025-12-17 18:30:00.410271+00 38752 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PoBRcqE9wqcz__1X_fT5V_VWx4I=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.413877+00 2025-12-17 18:30:00.413883+00 38753 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WwuOS9FjnhXM8NKtrhQoagcz1pc=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.4169+00 2025-12-17 18:30:00.416905+00 38754 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:msmuXFmIIdma1Vua3za4nGhWFjM=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.433192+00 2025-12-17 18:30:00.433198+00 38759 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HlM96xTFeE5Hg5EN3XsvQRQ5gZU=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.420133+00 2025-12-17 18:30:00.420139+00 38755 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HxBIrbDgm_m2lM1V0nkVuoJFpCY=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.423383+00 2025-12-17 18:30:00.423389+00 38756 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DyUozXxmAZuAh34gqfaLtbNp6NU=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.42664+00 2025-12-17 18:30:00.426646+00 38757 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JoWnBCyCI_jgetcREZ_0aTXBdD8=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.429843+00 2025-12-17 18:30:00.429848+00 38758 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e7Jig0AlJCd2KWqJ7bla4T3FuBk=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.436674+00 2025-12-17 18:30:00.43668+00 38760 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ilun7XLoA88VAYdaj4Q0m84zvFA=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.44011+00 2025-12-17 18:30:00.440116+00 38761 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fcH_KGgA2dRwRYLHNP6MI4V66x0=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.443408+00 2025-12-17 18:30:00.443413+00 38762 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_vrKZBcFbjGl7szEAhJyr6-Gesk=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.446998+00 2025-12-17 18:30:00.447004+00 38763 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nE5vsTJhK7HWY530_xmdenYZbsM=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.450629+00 2025-12-17 18:30:00.450634+00 38764 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NUPw9_l-sSz0oSwqtK96Xxt38pQ=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.454153+00 2025-12-17 18:30:00.454159+00 38765 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O1c-Ybw8NrmF2EEX_SiagDtZe1w=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.457541+00 2025-12-17 18:30:00.457547+00 38766 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EFHAH8VxJ_-dG0HLwHHIwOftRuY=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.461029+00 2025-12-17 18:30:00.461035+00 38767 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UbGkI8FoZnNaCg3i1H6Rm7l_NGM=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.464635+00 2025-12-17 18:30:00.464641+00 38768 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cofDRldYeiYUIR8_IFXPw8vRPiw=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.467935+00 2025-12-17 18:30:00.46794+00 38769 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ajg8VdUsmEXQ4wq1EUJyUpwMJrQ=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.470902+00 2025-12-17 18:30:00.470908+00 38770 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t2aIz4TAj2mObm2rQS85ddfdvIA=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.473757+00 2025-12-17 18:30:00.473761+00 38771 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gvbgYyG2bepIk_a0BEpEXT6XWY0=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.477027+00 2025-12-17 18:30:00.477035+00 38772 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pnGNkReOwz8Fo34en8Y4eTqVicQ=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.480424+00 2025-12-17 18:30:00.48043+00 38773 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uZf7_CwjCMBmog1bIbxc4sPzPDs=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.483651+00 2025-12-17 18:30:00.483657+00 38774 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9I4WaYPO739Wf33kqXlvITohTsI=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.48679+00 2025-12-17 18:30:00.486795+00 38775 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3sCv2_vr6yBDhw5Ws63xhfCyxp8=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.490056+00 2025-12-17 18:30:00.490061+00 38776 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RL18QoqNOtkZp70Ig_Upoe0YQiI=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.493261+00 2025-12-17 18:30:00.493266+00 38777 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bU3V6oBEAuTAg1xVfjypyekHurk=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.496099+00 2025-12-17 18:30:00.496104+00 38778 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VFE2qmhF4fXoD5UxqNN5m41xB8U=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.499205+00 2025-12-17 18:30:00.499211+00 38779 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KL5dMdludjaG9sIFZbKO0XPL7y8=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.502319+00 2025-12-17 18:30:00.502325+00 38780 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:elpddRXkR_2hcVrBUHvfFg9HNNg=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.505373+00 2025-12-17 18:30:00.505379+00 38781 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:chAqRdUsL1OAMOjjE_olvMyqqXo=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.508666+00 2025-12-17 18:30:00.508672+00 38782 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fbZULM8bfDF1Ut8nW_tJW0U2j1I=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.511879+00 2025-12-17 18:30:00.511884+00 38783 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TL6ljCngwPHTOvxZqYzzOLHPvjM=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.515388+00 2025-12-17 18:30:00.515395+00 38784 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lEPuEAXZ5o1SK1jC5ruqlI67x7E=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.520084+00 2025-12-17 18:30:00.52009+00 38785 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UC5X8jQCTqRk1FSIgwGy_xtM5zY=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.523353+00 2025-12-17 18:30:00.52336+00 38786 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zuLm7JD1BvaIgRdgk86g-SctfVA=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.526397+00 2025-12-17 18:30:00.526402+00 38787 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CJsmY0F6tQLsQUgm-9C-Jx9nsoE=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.529272+00 2025-12-17 18:30:00.529277+00 38788 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:66VqFylRyHJ5piQ4SwY2bCUJm2k=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.532293+00 2025-12-17 18:30:00.532298+00 38789 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gFaSfO4cUVSCREcJHshDdZZqXlc=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.535011+00 2025-12-17 18:30:00.535016+00 38790 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-L-LDmiwZExFNwXTKDs3Au5OVc4=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.537734+00 2025-12-17 18:30:00.537738+00 38791 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ln4XntqmM06SdRR1goOqyOrGuLs=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.540683+00 2025-12-17 18:30:00.540687+00 38792 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5RRqGzqBS9w4PCggnkGYmn9Es94=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.543699+00 2025-12-17 18:30:00.543703+00 38793 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8yzVSM3r5PCv8hWuPf4XEqLcJWA=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.54684+00 2025-12-17 18:30:00.546846+00 38794 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a8DUP_7h14LNJFW1nsdxa_pr4Ts=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.54981+00 2025-12-17 18:30:00.549815+00 38795 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KkS5Q3TkCMmLqvRcNwL9VBz-ofo=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.552671+00 2025-12-17 18:30:00.552676+00 38796 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0XGQul0192OeNlAU5dc7ohz5JtE=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.55551+00 2025-12-17 18:30:00.555514+00 38797 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vr07KNjD-VwbQSpBr_wj1P4vMPY=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.558344+00 2025-12-17 18:30:00.55835+00 38798 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HwUMsNntlBqp9nLVBTwC4Gc1dZA=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.561302+00 2025-12-17 18:30:00.561308+00 38799 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:01GAfQNRFqhSObbyfNic1Gd4Moo=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.564749+00 2025-12-17 18:30:00.564755+00 38800 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OC6ITbJ6QKmTCtxUJdzzfsTrreA=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.568038+00 2025-12-17 18:30:00.568043+00 38801 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48VhxISizMFWP0CmEml2uQetPcA=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.571067+00 2025-12-17 18:30:00.571073+00 38802 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fxy_YkB1hD1pvo9cH3gx1fHFfEk=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.574016+00 2025-12-17 18:30:00.574022+00 38803 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dIlSIWQqLBTHLBMb524Y1xXG7SA=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.577073+00 2025-12-17 18:30:00.577079+00 38804 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v6f41A5V5R3RkQqloLkbbebcOjI=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.58028+00 2025-12-17 18:30:00.580286+00 38805 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CcRldSy7yFG4gIPr4Bz6OZAXjH0=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.583516+00 2025-12-17 18:30:00.583522+00 38806 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J-ArgUKAwOEyyKGwM1Ad7AcU0xQ=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.586708+00 2025-12-17 18:30:00.586715+00 38807 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qwdojx2UPYmC0cq5fbQRhJ79GYU=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.590094+00 2025-12-17 18:30:00.590099+00 38808 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cuwLgERj7AwiHs_sfXVWEUgOhZ8=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.593413+00 2025-12-17 18:30:00.593418+00 38809 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OUZSo3oLCwUCusM37MTOwh_IVvk=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.596373+00 2025-12-17 18:30:00.596379+00 38810 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mqLMNUG6rts3Z-0PrJmgoW-UzNI=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.599649+00 2025-12-17 18:30:00.599655+00 38811 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I_sZiRXPoJs2M07CQIV4HiHzOO0=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.602902+00 2025-12-17 18:30:00.602909+00 38812 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SJxBCnATJpOgTKXiPWZ8QDg-J_I=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.606081+00 2025-12-17 18:30:00.606087+00 38813 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fbu_zNRzHTX9o__IAjCyOfFcwDU=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.609135+00 2025-12-17 18:30:00.60914+00 38814 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HtsUjnvrYDKYV9DoJk_y-NkSp_c=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.611964+00 2025-12-17 18:30:00.611969+00 38815 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EJpKLbNr_qCfi4_bWQRaiNwMkM0=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.615579+00 2025-12-17 18:30:00.615585+00 38816 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3E3WdQxeU3ld0HpUKUM5AY1dr54=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.619106+00 2025-12-17 18:30:00.619112+00 38817 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:czYMeJaOEvfL3TZxgegdBEV-kmE=", "createTime": "2024-08-15 15:05:34"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.622318+00 2025-12-17 18:30:00.622323+00 38818 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Lx_FqBfH0C6xLqgZ55DY-Ig0TQ=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.625476+00 2025-12-17 18:30:00.625482+00 38819 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K5utBs4dMH66dP3rjOboqGuOIUY=", "createTime": "2024-08-15 15:05:34"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.628445+00 2025-12-17 18:30:00.62845+00 38820 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qVnLe9M0L-CBI1YTowG7VLAitPQ=", "createTime": "2024-08-15 15:05:37"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.631694+00 2025-12-17 18:30:00.6317+00 38821 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aB9VqrmeQzpKIPywPR_NwVq9aIc=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.635004+00 2025-12-17 18:30:00.63501+00 38822 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PEMXMq2stipEgIZk54Umwqqdhes=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.638382+00 2025-12-17 18:30:00.638388+00 38823 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jVBzlTeTXjchAYfHHtoJdGI9QCk=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.642001+00 2025-12-17 18:30:00.642007+00 38824 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K8ijds6b7jgjvKXbeX4DksywAMs=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.645294+00 2025-12-17 18:30:00.645299+00 38825 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kxRiZA9-EBlLtIYp_Y-BYJwhTp4=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.648249+00 2025-12-17 18:30:00.648254+00 38826 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YIGeQvLqnm6VxIM6Nj9sF5nwNWk=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.651109+00 2025-12-17 18:30:00.651115+00 38827 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6BNQvnHxlzvwPTZQaPFKMOWZbPY=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.654294+00 2025-12-17 18:30:00.6543+00 38828 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yDjERYD0Q6i_1MWi5YPXGdazLQ4=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.657466+00 2025-12-17 18:30:00.657472+00 38829 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R20MquiU8-NwOxkAHGteYGYXyo8=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.660583+00 2025-12-17 18:30:00.660589+00 38830 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ctKXp8rXFzus-GgWeWJzt7UYEg=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.663843+00 2025-12-17 18:30:00.66385+00 38831 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cCqfYMM2Pqs5a082ly-xFKEPb58=", "createTime": "2024-08-15 15:05:37"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.667301+00 2025-12-17 18:30:00.667307+00 38832 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZeyXenObqD7Dl8gC2NbRKhnXFjg=", "createTime": "2024-08-15 15:05:39"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.670647+00 2025-12-17 18:30:00.670653+00 38833 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QhE8vRRGb7VLAH7GpiCu8BOpfBs=", "createTime": "2024-08-15 15:05:39"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.673709+00 2025-12-17 18:30:00.673714+00 38834 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LrMeaIdvHmlvbrJLNYTdEddU990=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.67691+00 2025-12-17 18:30:00.676916+00 38835 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pbCvNIhBEAFaipfG7WJLI4BXonQ=", "createTime": "2024-08-15 15:05:39"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.680411+00 2025-12-17 18:30:00.680418+00 38836 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:91S2ach4WfxZXbT1AlAmK5-MBK0=", "createTime": "2024-08-15 15:05:39"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.685391+00 2025-12-17 18:30:00.685398+00 38837 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m3gg77fwrV2ksfQZf3OLKeKl3l4=", "createTime": "2024-08-15 15:05:39"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.689208+00 2025-12-17 18:30:00.689214+00 38838 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rDcU2NV4tGNCKjTJ4qj2zVNQROU=", "createTime": "2024-08-15 15:05:40"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.692382+00 2025-12-17 18:30:00.692388+00 38839 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qm277wXoMYuSN2OlWaZzJGGBRB8=", "createTime": "2024-08-15 15:05:40"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.695884+00 2025-12-17 18:30:00.69589+00 38840 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:85pbSGvjqDareSfpCAe5ZZvna78=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.699557+00 2025-12-17 18:30:00.699569+00 38841 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5jsyv4ntcW_aKoOZy2zNxP_HDmc=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:00.702799+00 2025-12-17 18:30:00.702806+00 38842 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=1766082599&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4KnSAx3Y_72ZDHk5cuCVpe7cn5s=", "createTime": "2024-08-15 15:05:40"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.062058+00 2025-12-17 18:30:01.06207+00 38843 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yalibq_ffyyN_e3qnwyl2e7d0ME=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.066095+00 2025-12-17 18:30:01.066102+00 38844 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hr2aRJ3gISoOcqPjsD0NKynQ6ic=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.06959+00 2025-12-17 18:30:01.069596+00 38845 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9fSAqtjLp5bDoWHWtSgnJp8FWuY=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.07293+00 2025-12-17 18:30:01.072936+00 38846 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7HDPbyl7q7jg0lJPv9DmfbeGKgI=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.076588+00 2025-12-17 18:30:01.076594+00 38847 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MsXRfa7FInhPooHMieiMhp6EUcY=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.080332+00 2025-12-17 18:30:01.080339+00 38848 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ElSpH5sCh9LXVFcIw8bZsn6nAV4=", "createTime": "2024-08-15 15:05:40"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.083475+00 2025-12-17 18:30:01.08348+00 38849 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QbY4Di2A-tKY2TJ8DvDcHuxnCgE=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.086587+00 2025-12-17 18:30:01.086592+00 38850 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JcgHRotxwZ5YHgDQs10NO2SiXSE=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.089444+00 2025-12-17 18:30:01.089448+00 38851 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ELKeLm1RaqcZbkgR4tS1DvoqEJs=", "createTime": "2024-08-15 15:05:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.092052+00 2025-12-17 18:30:01.092056+00 38852 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:appiSaucEgZ_uikZGzCx8Q8rq5A=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.094908+00 2025-12-17 18:30:01.094913+00 38853 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5H0wIjYbCEybES0L279SMrk53bQ=", "createTime": "2024-08-15 15:05:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.097871+00 2025-12-17 18:30:01.097877+00 38854 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GrdNq6VARG-O8u-993a26qhvDlE=", "createTime": "2024-08-15 15:05:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.100741+00 2025-12-17 18:30:01.100747+00 38855 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQ0TrGWaQ16xaZAEuW37elHSfrQ=", "createTime": "2024-08-15 15:05:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.103669+00 2025-12-17 18:30:01.103676+00 38856 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:97sTq1Y5E2h25QhDDRav-g0EHkA=", "createTime": "2024-08-15 15:05:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.106556+00 2025-12-17 18:30:01.106561+00 38857 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3voYb_6ZGrej_GdqK1Cw62uFkqQ=", "createTime": "2024-08-15 15:05:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.10945+00 2025-12-17 18:30:01.109454+00 38858 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mmBTR9L3mj4EubMx8BI78i_Qlcg=", "createTime": "2024-08-15 15:05:42"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.112251+00 2025-12-17 18:30:01.112256+00 38859 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:At83QoRYRR1h6G6DSUOIlEYJnu0=", "createTime": "2024-08-15 15:05:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.115259+00 2025-12-17 18:30:01.115264+00 38860 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pxtCQO8t9BX0QfUr1VCB6Z8rcc8=", "createTime": "2024-08-15 15:05:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.118537+00 2025-12-17 18:30:01.118542+00 38861 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DrQhzQsYp40ZQvHzfkvJJXA3BDQ=", "createTime": "2024-08-15 15:05:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.121835+00 2025-12-17 18:30:01.12184+00 38862 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0VLrsiGxRtwgrPCSwV0-Dlown8Q=", "createTime": "2024-08-15 15:05:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.124954+00 2025-12-17 18:30:01.124962+00 38863 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fkhx8Kwx6gUlXkx0oD9aeE9EGfs=", "createTime": "2024-08-15 15:05:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.12809+00 2025-12-17 18:30:01.128097+00 38864 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yTYWPh-DOXPPo1BlLARrpLrfZYY=", "createTime": "2024-08-15 15:05:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.131174+00 2025-12-17 18:30:01.131181+00 38865 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FvpI1Q7X9A9BpBf-5NbG-aBPynA=", "createTime": "2024-08-15 15:05:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.134396+00 2025-12-17 18:30:01.134404+00 38866 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R7qhYh_6bUpdeSAltr8DycCV6nQ=", "createTime": "2024-08-15 15:05:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.137655+00 2025-12-17 18:30:01.137661+00 38867 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r6GhXCVdRS_IAujTJjgIC6QW8z0=", "createTime": "2024-08-15 15:05:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.140876+00 2025-12-17 18:30:01.140884+00 38868 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vVnUjJZ0j350xDfp_o2n0PJ8Bxg=", "createTime": "2024-08-15 15:05:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.144353+00 2025-12-17 18:30:01.144362+00 38869 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5X6s7SbTvnEAx2sGVmupmxW3F_A=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.14813+00 2025-12-17 18:30:01.148137+00 38870 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hQpdaAwgb_nvDjAzpJA0w59eeu8=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.151423+00 2025-12-17 18:30:01.15143+00 38871 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dYoUXjGFKw8zavCA9Ndc1zilFnM=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.15478+00 2025-12-17 18:30:01.154789+00 38872 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3AaCSy5wbQ_RsLbJc7qp9ILgqMg=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.158182+00 2025-12-17 18:30:01.158189+00 38873 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8NJwLdtHn53XMLtfSqCfLNTyzqU=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.161551+00 2025-12-17 18:30:01.161559+00 38874 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9QLXFirGDStPYm1hty4LxejlA5M=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.164937+00 2025-12-17 18:30:01.164943+00 38875 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OSS0X7q69aXoDexAj2QT1i_OUEo=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.168379+00 2025-12-17 18:30:01.168388+00 38876 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Coe9r5lvP6Oy1cH8jQmUI1KuQrs=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.172141+00 2025-12-17 18:30:01.172149+00 38877 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7UT4CUmkOmoJOjwAmC0Q0_fooTk=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.175857+00 2025-12-17 18:30:01.175864+00 38878 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_4YY8oUMnfEmRNnPSVHix75FaOU=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.179227+00 2025-12-17 18:30:01.179233+00 38879 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SHxT_52CuyaVyphobq3RvH7jA6Y=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.18254+00 2025-12-17 18:30:01.182547+00 38880 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Hiv9a4pdfxyRmod3kHtFKAWA44=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.18589+00 2025-12-17 18:30:01.185897+00 38881 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qMy791QRb1KCt6noGYW0g4DIBeE=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.189265+00 2025-12-17 18:30:01.189271+00 38882 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xVB7j3l1nwxro_js4U64oTQL06k=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.192535+00 2025-12-17 18:30:01.192541+00 38883 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LgpVtpSIBEIarwXSaCJ4FrLWV3Q=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.195699+00 2025-12-17 18:30:01.195705+00 38884 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AQE0pGevN0iZ-LWaA6G_ygdgElw=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.199315+00 2025-12-17 18:30:01.199322+00 38885 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rew5E_OZMhmDWlfB8Y5V6K62GuE=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.202908+00 2025-12-17 18:30:01.202914+00 38886 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e-rCkcN3tdgk2OsvV7A6fJMaFT8=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.206678+00 2025-12-17 18:30:01.206684+00 38887 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NFMQN76Ezwx6tkfp3SLyL2LVAlc=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.210406+00 2025-12-17 18:30:01.210412+00 38888 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-msPlNHhZtHwqw7sbUEgBwt59Uw=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.213943+00 2025-12-17 18:30:01.21395+00 38889 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QPbwYttQsH9BCviPdiBMNj_OVgM=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.217406+00 2025-12-17 18:30:01.217412+00 38890 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:En_J0HaAFYM7sk5ObelXXL5prLo=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.220907+00 2025-12-17 18:30:01.220913+00 38891 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SGgu9jFVqwJzCRIBqaPnlUj3zLw=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.224468+00 2025-12-17 18:30:01.224474+00 38892 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tbzSj9vPIhO97sSVOnqt6tkiD9Y=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.22803+00 2025-12-17 18:30:01.228037+00 38893 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1-N7_5D4Dr_jlS40Jn2Pz3pm3aY=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.23156+00 2025-12-17 18:30:01.231571+00 38894 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p887U30M78AdirfS4JbqorGELhQ=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.234814+00 2025-12-17 18:30:01.23482+00 38895 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uqkgCODCUIF5sokEAnvVExBakb4=", "createTime": "2024-08-15 15:05:48"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.238201+00 2025-12-17 18:30:01.238208+00 38896 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CVG36bYZtWU5GUbYOyJkQFmVVGw=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.241498+00 2025-12-17 18:30:01.241504+00 38897 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ATMEgV-y6A8-0nhhMRzmZeIKYw=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.244741+00 2025-12-17 18:30:01.244747+00 38898 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:asLgkBnQp8ur1H6dW9JhKPtBLv8=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.248059+00 2025-12-17 18:30:01.248065+00 38899 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:THZ-Vw9Il3arz5T5MhLuZTDFc6E=", "createTime": "2024-08-15 15:05:48"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.251267+00 2025-12-17 18:30:01.251273+00 38900 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iloV5RzFhU0bfzstdD3jOVG-9kU=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.254802+00 2025-12-17 18:30:01.254808+00 38901 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fb2RCK1LqdezvFr4YyZAxlHXvHg=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.258821+00 2025-12-17 18:30:01.258829+00 38902 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:76W9QwBrOoFuyd5tOUJr63Ya-oQ=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.262555+00 2025-12-17 18:30:01.262562+00 38903 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9xInF_Hq5xrU3Z_WaoKRMmSM3T4=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.266121+00 2025-12-17 18:30:01.266128+00 38904 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kLFsK9O1crn1P5uJSkjD6LYyCiA=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.269432+00 2025-12-17 18:30:01.269438+00 38905 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lRkemIryUvuDkrOyylSadTgtJFI=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.272766+00 2025-12-17 18:30:01.272772+00 38906 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:39uJDnYbhVxrbqbiulJbiapDxjc=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.275805+00 2025-12-17 18:30:01.275811+00 38907 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0juAlLyAkm_vBh3X1kXOauv0bU4=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.278608+00 2025-12-17 18:30:01.278612+00 38908 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PIzV_K0UBFlJM-OfNDj8Vw3dz5Q=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.282138+00 2025-12-17 18:30:01.282144+00 38909 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-RLoCzyn_u1YTLCPdDz9h4LpJ_4=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.285682+00 2025-12-17 18:30:01.285688+00 38910 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DL8D4090tSAIqO0OSljj-wBsQKI=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.289066+00 2025-12-17 18:30:01.289072+00 38911 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rL1gEdjR6qcRdyBfUwsmYD4tYjQ=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.292325+00 2025-12-17 18:30:01.292331+00 38912 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uh8PjZX07NlZIqfP6pRiBXB799o=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.295232+00 2025-12-17 18:30:01.295237+00 38913 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zqlsVu33H9PghmrHytIDdF_SYBQ=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.298463+00 2025-12-17 18:30:01.298468+00 38914 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5fRWJTGqiDiVmLCCx2qPl7CrgJ8=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.301496+00 2025-12-17 18:30:01.3015+00 38915 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4W5W9xYbTx58Eksxq0Tn5KRUR8g=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.304845+00 2025-12-17 18:30:01.304852+00 38916 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GynDtOGDdOf4C3zR5br9AgVuhWw=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.308367+00 2025-12-17 18:30:01.308373+00 38917 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yL4v1qy49YbNfjnIdeY6N_fZLLA=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.311762+00 2025-12-17 18:30:01.311768+00 38918 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6i_a8iYn2QDmK86xC5Xn7nh4Nns=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.315213+00 2025-12-17 18:30:01.315218+00 38919 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wfePmepFINfEQYrzCs1fkV7-VYQ=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.31826+00 2025-12-17 18:30:01.318265+00 38920 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k_WViIR4PdVuK-BQ-i2Xgob14jI=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.321376+00 2025-12-17 18:30:01.321382+00 38921 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cfIG2r04dCxtS1pt9sBgBk0wu3k=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.324405+00 2025-12-17 18:30:01.32441+00 38922 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w5Xlj-VRzBEqgk87qjwhPcIDkmQ=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.327365+00 2025-12-17 18:30:01.32737+00 38923 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p6nTyqLIqtBLrTB-vuW9VLVIV4Y=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.330416+00 2025-12-17 18:30:01.330422+00 38924 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l1m8FqDb7slcmvTdPN5QzRzJrGE=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.333784+00 2025-12-17 18:30:01.333789+00 38925 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D9wzN7S3JwgyJd1GwdtUpFX_A0M=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.337779+00 2025-12-17 18:30:01.337787+00 38926 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BufthgKFx_1x9-L_Aama0JrBaCg=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.341621+00 2025-12-17 18:30:01.341627+00 38927 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VDuIl0tZRsDBHU3lYt1r8-7bZOA=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.345224+00 2025-12-17 18:30:01.34523+00 38928 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g4nyftKc8sfnjTeLAtZTPfuqtEQ=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.348567+00 2025-12-17 18:30:01.348574+00 38929 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CwJBEe7foXD-vdQ2_W-JkptWFkg=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.351675+00 2025-12-17 18:30:01.351681+00 38930 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AHV4FV-SuTQM0XbdtzuDwIeUnqY=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.354736+00 2025-12-17 18:30:01.354742+00 38931 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p7fAB5Sw3ds7Xq8s06QHwjJoC-M=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.357723+00 2025-12-17 18:30:01.357728+00 38932 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5mRLKauEQFulBrO8kD2lNn35KLA=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.361134+00 2025-12-17 18:30:01.36114+00 38933 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JFzC6V6OydV_kmQni6BoFultjz8=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.365152+00 2025-12-17 18:30:01.365159+00 38934 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FqaJspDIhzEP3JJq9m-CttE4_Ac=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.368703+00 2025-12-17 18:30:01.368711+00 38935 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jKYNuWJmM1iCbf2t61jRbBro2Ks=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.372857+00 2025-12-17 18:30:01.372866+00 38936 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Tjdag9hFkMRZHgaIciGNRy_rUE=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.376519+00 2025-12-17 18:30:01.376525+00 38937 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:26aYkOE0ilao9YkqehjtmoHNyg0=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.380247+00 2025-12-17 18:30:01.380253+00 38938 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3-eoFtnXo115sUCbe3GBvDr5RCg=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.383908+00 2025-12-17 18:30:01.383917+00 38939 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:En3H8bMmf4qGe5s5FebE0IZWU3s=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.388033+00 2025-12-17 18:30:01.388038+00 38940 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nfT9uTaBEMML7A6_hoYo8IIWnUU=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.390846+00 2025-12-17 18:30:01.390851+00 38941 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VlQYMHAYHoOmABPB55_KjNAaQpw=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.652033+00 2025-12-17 18:40:00.652038+00 38966 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bwShX1qDKJr831pgVY-NZGqThOk=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:30:01.393504+00 2025-12-17 18:30:01.393508+00 38942 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=1766082600&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9WTnK34M2uCSXyeEr69RkRBOgOM=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.570928+00 2025-12-17 18:40:00.570938+00 38943 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i6dtvMecymnCZvMKE-OTJOoytnM=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.575651+00 2025-12-17 18:40:00.57566+00 38944 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hRcHNP1_fwciXgpUPIjzntRRXLk=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.579495+00 2025-12-17 18:40:00.579503+00 38945 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xpjeTuWXvpXFTQH2bmwIC5LR30w=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.582926+00 2025-12-17 18:40:00.582932+00 38946 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9hnjX5FDBxd8QemxVU_t_B_Jb6w=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.586879+00 2025-12-17 18:40:00.586888+00 38947 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qKJAQmLznInrQobHGd-29DCUepY=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.590959+00 2025-12-17 18:40:00.590965+00 38948 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F6fAlb0OJoZLcrfJD6JEJi72UHo=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.594925+00 2025-12-17 18:40:00.594932+00 38949 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1oUSTognEhum-CJVYspRRgOL9M0=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.598629+00 2025-12-17 18:40:00.598635+00 38950 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MRTgguwISx6YTjUX64U8VAfqc70=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.602207+00 2025-12-17 18:40:00.602212+00 38951 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XH27b6IJ3bCcY-01Qpp1O-AlUto=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.605578+00 2025-12-17 18:40:00.605584+00 38952 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:38ntXiKlYWu9FC60veiWtJLHonc=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.608743+00 2025-12-17 18:40:00.608748+00 38953 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hfS0Kt_otglbgzvxCLDEpcCmfb0=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.612346+00 2025-12-17 18:40:00.612351+00 38954 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UNBae_OB4JnIPa6cMZTEvpUidWw=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.615912+00 2025-12-17 18:40:00.615917+00 38955 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MFDp_9aQp7tvRB8gBnf2y54GPNI=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.619501+00 2025-12-17 18:40:00.619506+00 38956 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5FzD4DGSJYTZicV017IPxRDfHBw=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.622855+00 2025-12-17 18:40:00.62286+00 38957 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bQcfdtwaeBk1lE5xrrvu2L9sMV0=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.625918+00 2025-12-17 18:40:00.625924+00 38958 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OdQK7OoUOiHmrU1y5QA_R4gVJlw=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.629075+00 2025-12-17 18:40:00.629081+00 38959 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T1rYzWbAzwFnjVsiqoZOfuXNr-E=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.632421+00 2025-12-17 18:40:00.632426+00 38960 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8NkuTYge04OKhYiBdGEYvV57D10=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.635681+00 2025-12-17 18:40:00.635687+00 38961 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lbrwuV-FaRYMn_dhn6Anhp8Stio=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.638623+00 2025-12-17 18:40:00.638628+00 38962 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lcgD-StoH6GigGhEw5AnFbfjJXQ=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.641568+00 2025-12-17 18:40:00.641573+00 38963 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eqy-2jFm_3uFjs1OAmhyASxxq8U=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.645144+00 2025-12-17 18:40:00.64515+00 38964 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4k81TC5CQXEBeX6WQbcCRFc16XE=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.648859+00 2025-12-17 18:40:00.648864+00 38965 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kGmAAB56hMmeXWN4jmHmQcMOlzw=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.654915+00 2025-12-17 18:40:00.65492+00 38967 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xip7p5mkr1T64pG4tktAFMv5Bwc=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.657722+00 2025-12-17 18:40:00.657727+00 38968 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lQVYQUCltghdJlhZ4jGzj9KaCgg=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.660715+00 2025-12-17 18:40:00.660721+00 38969 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:032o8aqdyf46L6J53p28dhAv5gk=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.663993+00 2025-12-17 18:40:00.664+00 38970 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NvSVctwHyeSOQbeC0Tx3khglIaA=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.667213+00 2025-12-17 18:40:00.667219+00 38971 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QKPN9aNYuYF_vqGvUbeADT7Czm8=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.670592+00 2025-12-17 18:40:00.670597+00 38972 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:meiI65LDDVTvVTUwqQsk9sHwSgY=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.674077+00 2025-12-17 18:40:00.674082+00 38973 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XNZi2vJu5p2aeOx8B_2P4790mGc=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.677672+00 2025-12-17 18:40:00.67768+00 38974 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fwKgb9zR_DOzuWuLFtsdhy_T5nQ=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.681536+00 2025-12-17 18:40:00.681544+00 38975 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GhAS8F0NwLr6TOxkyz-myM6YzX4=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.685325+00 2025-12-17 18:40:00.685331+00 38976 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d4CaJmw8GBs0PGbQaIhgGEEkU5o=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.689165+00 2025-12-17 18:40:00.689171+00 38977 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xikw4XmzbWHBFpaC14QwLKKPrEk=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.693103+00 2025-12-17 18:40:00.69311+00 38978 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H9wJyXXbCBGbEMA2bKE0jlQjGUo=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.697223+00 2025-12-17 18:40:00.697229+00 38979 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AGdaqouX6HUNhmVhF5cb_LhX47Q=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.701391+00 2025-12-17 18:40:00.701398+00 38980 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3R7U5y1c_QvoyebRN5FAQPeA1BQ=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.705311+00 2025-12-17 18:40:00.705317+00 38981 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xm_WhXAU6Pef8lcyj-G2g1Kygtc=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.708618+00 2025-12-17 18:40:00.708624+00 38982 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XEfs-cn9ogkXGjzLzl4a5A_zwKk=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.71193+00 2025-12-17 18:40:00.711935+00 38983 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rc0Bwk2CI_mnIRuRPmD3D5lONHQ=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.715589+00 2025-12-17 18:40:00.715594+00 38984 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qxsVkJvBM3DmREqc8KOJn1aZbz8=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.718914+00 2025-12-17 18:40:00.71892+00 38985 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tSMOzd6CC0SvewhxREpy230ZKMs=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.721975+00 2025-12-17 18:40:00.72198+00 38986 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0wRG4c8WlTbrrLFspp_n7i0EOfA=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.724989+00 2025-12-17 18:40:00.724995+00 38987 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fjvF8ZzwSxALiEHrAcwFfT-NL4U=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.728513+00 2025-12-17 18:40:00.728518+00 38988 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Mps2UjZziy3vOPzVW3S9mircVg=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.732286+00 2025-12-17 18:40:00.732292+00 38989 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OrvG2NyO8CMrzpmpCYjBcG3oqRM=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.735591+00 2025-12-17 18:40:00.735597+00 38990 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ThKMoWg9uPMiQFtESbScNo2xlvU=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.738617+00 2025-12-17 18:40:00.738622+00 38991 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9tvoiUqmtlCuQU7k3UEPnq-DEcg=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.741535+00 2025-12-17 18:40:00.741541+00 38992 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kZitk-BDIMU6WduLBngsw_rSfU4=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.74492+00 2025-12-17 18:40:00.744926+00 38993 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQH_SmPPe178XnucXj-L_m9xevk=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.748385+00 2025-12-17 18:40:00.748391+00 38994 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQwZGjo_BoHWrz88q-SpFIBgzxk=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.751632+00 2025-12-17 18:40:00.751638+00 38995 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1z0nFQ1XCNDGJcd5iP43CatGCTQ=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.754974+00 2025-12-17 18:40:00.754979+00 38996 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-XUlYSC09aPjW0V3gm5R7rDriWU=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.758339+00 2025-12-17 18:40:00.758345+00 38997 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jzeeD-yUUuXzBP30204Hru-k-hI=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.761674+00 2025-12-17 18:40:00.761681+00 38998 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yj2HTyMqrk1BKxmOuffcjGBFIV8=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.765304+00 2025-12-17 18:40:00.765311+00 38999 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VZ7T_B15N4Nqbvw7d1odWuZwdiA=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.768675+00 2025-12-17 18:40:00.768681+00 39000 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PvYf24eJc0dswKOTR3Ko1lUursU=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.771699+00 2025-12-17 18:40:00.771704+00 39001 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kZVKIHh9-F7EyWK8rt3skCOh42A=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.774594+00 2025-12-17 18:40:00.774598+00 39002 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gx3Tqd1QXv9vqQ1NuWKwJr672EI=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.777697+00 2025-12-17 18:40:00.777702+00 39003 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vey7RkkcSl3c5PBYK14t0wwnGho=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.781555+00 2025-12-17 18:40:00.781561+00 39004 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lRa7Mg8k6kqWPVTF5JXSwGbirEk=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.785255+00 2025-12-17 18:40:00.785261+00 39005 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d_Nvgnd0BPxzyA5FLnuxku4wATM=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.78835+00 2025-12-17 18:40:00.788356+00 39006 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B6FepttzYXVwqtNunEB24Gkslf4=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.791242+00 2025-12-17 18:40:00.791246+00 39007 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xkCMhT3pe9AzNasbPdO_q1SPTrY=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.794417+00 2025-12-17 18:40:00.794423+00 39008 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XRfWhQehbqiPctfZqnmMJmGiFcI=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.797981+00 2025-12-17 18:40:00.797987+00 39009 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lBNwNeYfqSTS9PLgsveBArZN4-c=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.801419+00 2025-12-17 18:40:00.801426+00 39010 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d7PvebE9QY1fPXUgis16Q9hfK3g=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.804708+00 2025-12-17 18:40:00.804714+00 39011 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Axc3IbDFw950H0W1mxBSNnPEERE=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.808244+00 2025-12-17 18:40:00.80825+00 39012 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7SvKdTM1DP9fYC3ydD9ZJZUcPzQ=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.811842+00 2025-12-17 18:40:00.811848+00 39013 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EoUs9sBojBuWZzmXx7O9eWslf18=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.815333+00 2025-12-17 18:40:00.815338+00 39014 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZtCG2pEQ7H3OdZ5krFnbbxHXYPc=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.819672+00 2025-12-17 18:40:00.81968+00 39015 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DwmST_N6xNTstWkSK1hQ4L3fkMI=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.823506+00 2025-12-17 18:40:00.823513+00 39016 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PppgX7t4YrU053xOREr1W4-jz8A=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.827047+00 2025-12-17 18:40:00.827054+00 39017 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:irNxk4j6nLN2399WwsPWNEN-3VM=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.83077+00 2025-12-17 18:40:00.830777+00 39018 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XDwwqR5CXdkUi0brZLA6t2S-QTI=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.834195+00 2025-12-17 18:40:00.834201+00 39019 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZiEYs965NW4JaoWLcReYD2LKKq0=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.837819+00 2025-12-17 18:40:00.837825+00 39020 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A-WpWahMgFCCEKYZOPHFAfxMpfE=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.841333+00 2025-12-17 18:40:00.841339+00 39021 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7bCEMZJasDP0AnKrfZCJURLfY0k=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.844562+00 2025-12-17 18:40:00.844572+00 39022 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9MaiNZZ87ftqV6CfNl5YcNB0jsE=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.847995+00 2025-12-17 18:40:00.848002+00 39023 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wu5ElIaqd4935X5u0p6M7hQ_v64=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.851349+00 2025-12-17 18:40:00.851354+00 39024 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kPn24S-DOMWg4YeNQ7lKcFJ_at0=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.85441+00 2025-12-17 18:40:00.854415+00 39025 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7-TO7Hw8bXQEtJdzwWTEFMq4f2w=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.857406+00 2025-12-17 18:40:00.857411+00 39026 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tZDUNhLYFXL3uz1F9QhbLUR7JLY=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.860511+00 2025-12-17 18:40:00.860516+00 39027 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tqfhQjdPCYEtjVf9u6tAflW5Gjg=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.864451+00 2025-12-17 18:40:00.864457+00 39028 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oTdsk8b-jmK9Krkooa7CtzB4-bg=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.868171+00 2025-12-17 18:40:00.868177+00 39029 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:afSDm4OgzDyB0g57WCjTSXTY8OQ=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.871259+00 2025-12-17 18:40:00.871265+00 39030 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dJBSzQo-_mA7Hz5apl86uP8AO1A=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.874206+00 2025-12-17 18:40:00.874211+00 39031 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bl1WMzpnYIEDK_0wcx0we9SpTGc=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.877418+00 2025-12-17 18:40:00.877425+00 39032 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:49cgWykiqSLeg1CXVcAux8k-mOU=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.880767+00 2025-12-17 18:40:00.880773+00 39033 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JBoHFbBUUlcTSl0VMsNf3a9OM88=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.884346+00 2025-12-17 18:40:00.884352+00 39034 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XjMw-77U9IE5eTZrm3ZsZiOSCSI=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.888076+00 2025-12-17 18:40:00.888083+00 39035 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oRGk2vMpd2hecTRLkldvYXmM4qU=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.89145+00 2025-12-17 18:40:00.891457+00 39036 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J-YSqTHsBzHHLBATA8wt1CjxtKc=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.895052+00 2025-12-17 18:40:00.895059+00 39037 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uCWM2BXvGZYJI_gZdTK0uUwjEHM=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.898469+00 2025-12-17 18:40:00.898477+00 39038 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lvy5kMiSvl__lIMcHUT4MamDX38=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.90185+00 2025-12-17 18:40:00.901855+00 39039 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n7WDcqMGPrYRHJfPuOVHsH7dNpA=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.904913+00 2025-12-17 18:40:00.904918+00 39040 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D1ghwAqR-xhTAHNuZWrtszfv1HM=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.908133+00 2025-12-17 18:40:00.908138+00 39041 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jH-GbC-BB5KppJ08JivXwQjcM8k=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:00.911448+00 2025-12-17 18:40:00.911452+00 39042 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=1766083199&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KQ4VEUan2wHDUI-8l_jRpN6ymeI=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.272131+00 2025-12-17 18:40:01.272143+00 39043 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RXlUajYUa_1gzQA6adfRqjlP9tY=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.276735+00 2025-12-17 18:40:01.276741+00 39044 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0mu1EuJDq648-czMwG4Y4AKgMcU=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.279815+00 2025-12-17 18:40:01.279821+00 39045 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VowNF605WJ27CURK2C-HM_bnRaU=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.282876+00 2025-12-17 18:40:01.282881+00 39046 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IA1xdsV1yPfh5Rqg5U48lJF3eEE=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.285918+00 2025-12-17 18:40:01.285923+00 39047 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F1lwAeckBy50opQHYjh3Lj5fWvA=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.288909+00 2025-12-17 18:40:01.288915+00 39048 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SH3Q1u8_Ux4eKT4EJuTJFBBcdJM=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.292244+00 2025-12-17 18:40:01.29225+00 39049 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g2pBsY2WCzIO3uQTdguXDaAW5uU=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.295981+00 2025-12-17 18:40:01.295988+00 39050 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ugs6eVNuHraLlVRkmk1hrzcwCZs=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.299974+00 2025-12-17 18:40:01.299981+00 39051 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3t6yFAH-EPOBHh5Dpf2DRTPToD4=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.303467+00 2025-12-17 18:40:01.303472+00 39052 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2emnQjZLktFtATHfX0LrhaYCKx0=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.30658+00 2025-12-17 18:40:01.306587+00 39053 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HUCI0flgXzh_WoYn66N-Tx2KSOo=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.309587+00 2025-12-17 18:40:01.309594+00 39054 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YGx_YsZZdxh09GnNr6JoCRQGI3A=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.31272+00 2025-12-17 18:40:01.312727+00 39055 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GV48Hwa1hiVSsPaRFQZC3d36ob4=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.315912+00 2025-12-17 18:40:01.315918+00 39056 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1gBDAe887eM_i0evb9z9CmDijs8=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.319749+00 2025-12-17 18:40:01.319755+00 39057 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WvKi57J2_LOn5JcNrsBc0SNFtMA=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.323393+00 2025-12-17 18:40:01.323399+00 39058 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NeHeromIGfA81qUPYhu2J5Ypr8g=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.326421+00 2025-12-17 18:40:01.326426+00 39059 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oHAH8iVr9B-g4JkhPrpzP1Zit4g=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.32944+00 2025-12-17 18:40:01.329446+00 39060 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XbSA2MN5H4Qzu5BUVz6tq25xYNo=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.332525+00 2025-12-17 18:40:01.33253+00 39061 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B3ZaaB4f_Y_qOcsSfWIH0W9ocbM=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.33552+00 2025-12-17 18:40:01.335525+00 39062 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3VKWbfDo9AlUFm5WeGqqbwEhAEQ=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.33856+00 2025-12-17 18:40:01.33857+00 39063 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gz9RopVHMGah_JWs49-J_3MjD4k=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.341592+00 2025-12-17 18:40:01.341598+00 39064 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JtZyetFfHJABXST3yM01oUYf65w=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.345331+00 2025-12-17 18:40:01.345339+00 39065 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jZSqZQKPCyc9Z_ilu05seXp1_s4=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.3491+00 2025-12-17 18:40:01.349106+00 39066 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_bjcUIckmUKbOJy_x3fF17CE6as=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.352318+00 2025-12-17 18:40:01.352323+00 39067 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yhTG6kLCG-uzl5gw8RkD-KFjWSo=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.355363+00 2025-12-17 18:40:01.355369+00 39068 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y083YM-J4ilXXkVtOMK1Zcu1WaQ=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.358543+00 2025-12-17 18:40:01.358549+00 39069 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d6ffpJZFu_PZKeAU0oqUPAhMn-M=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.361742+00 2025-12-17 18:40:01.361748+00 39070 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X71GLvNfAMCAM-hGl5GszBz-Hpk=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.365122+00 2025-12-17 18:40:01.365128+00 39071 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fi81UEYN0Ia6Fmcuyk6AvcUSg8Y=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.368269+00 2025-12-17 18:40:01.368274+00 39072 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N1ziSU_PsR0Pnjd98XO-Pp2UiXA=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.371503+00 2025-12-17 18:40:01.371508+00 39073 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:354xENo6iCO3HQUovCNvH2rWc_I=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.374677+00 2025-12-17 18:40:01.374682+00 39074 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BLiNQr2un6imGpYnHcxaZi_6E1k=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.378255+00 2025-12-17 18:40:01.378261+00 39075 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9VfSXKJSEUHboEk_NTx85JD6rlc=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.382043+00 2025-12-17 18:40:01.382048+00 39076 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mMi6UGexLyDNRy1trbkgBtylDXg=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.385596+00 2025-12-17 18:40:01.385601+00 39077 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sA-1mUZppCUXtIS0_N8G3Ub2kCU=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.388692+00 2025-12-17 18:40:01.388696+00 39078 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y5QzWDVifEvAZ93d4oNAiGvjwU8=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.391715+00 2025-12-17 18:40:01.39172+00 39079 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w6NlQnTlSi_ZBhCKr2OAvTz30oM=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.394987+00 2025-12-17 18:40:01.394993+00 39080 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AQ8GWryxONjS0a1XTcfEtgC8QzY=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.398314+00 2025-12-17 18:40:01.39832+00 39081 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U9xGtveQX1-D-JJVu6nt3xhlxGE=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.40157+00 2025-12-17 18:40:01.401576+00 39082 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m1H2XYlLXpTVNBrD6Lr_vEVtXns=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.404533+00 2025-12-17 18:40:01.404538+00 39083 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oAME0QYiLl_PRY5_IfuP8KhqkQE=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.407451+00 2025-12-17 18:40:01.407456+00 39084 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G3krV0t_7Kd9G2lsenVr8rV6DsE=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.41043+00 2025-12-17 18:40:01.410436+00 39085 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WDG5exCSnnAfpRCNvMWSzx5k654=", "createTime": "2024-08-15 15:06:07"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.413656+00 2025-12-17 18:40:01.413663+00 39086 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GCOv_WZRA4XxxUiACDFD7IM4FbE=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.416935+00 2025-12-17 18:40:01.41694+00 39087 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sfio8EtlkFr8LiTU0hdBbPyr7Ro=", "createTime": "2024-08-15 15:06:07"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.420015+00 2025-12-17 18:40:01.42002+00 39088 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F2S9njEVBVvAH1e8wJsDj21PitI=", "createTime": "2024-08-15 15:06:07"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.423287+00 2025-12-17 18:40:01.423293+00 39089 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5PxHaBAH9s4fYt84PgQouDwyHBc=", "createTime": "2024-08-15 15:06:07"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.426706+00 2025-12-17 18:40:01.426712+00 39090 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CJGUsWwMaOX0y8ricko-sh-Pswc=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.430142+00 2025-12-17 18:40:01.430149+00 39091 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oj1HuBRC3XwUmn7aXupTu-tq2nk=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.433391+00 2025-12-17 18:40:01.433397+00 39092 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zo7vz1SaQioPF6cfRkS09NpR72M=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.436585+00 2025-12-17 18:40:01.43659+00 39093 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rzx6avOfIgWxzwLHrDzg-R-uEHg=", "createTime": "2024-08-15 15:06:08"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.439493+00 2025-12-17 18:40:01.439498+00 39094 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nmh1QfVngc0h0OcBof_XI-jqWi4=", "createTime": "2024-08-15 15:06:08"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.442392+00 2025-12-17 18:40:01.442397+00 39095 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7fU0uRIr6BJd9jKosiAHEIrCCC8=", "createTime": "2024-08-15 15:06:08"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.445847+00 2025-12-17 18:40:01.445854+00 39096 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zT4TW7G-KRsXfPU9Z0WDAqAO1HI=", "createTime": "2024-08-15 15:06:08"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.449322+00 2025-12-17 18:40:01.449327+00 39097 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xc5yrAlBGVWU-6zUgKS_ZYg2a_Y=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.452238+00 2025-12-17 18:40:01.452243+00 39098 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xKUoYbY2Xq6H-mcdKOZ_g8qT7hg=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.454899+00 2025-12-17 18:40:01.454903+00 39099 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:37u2SIBAbAihP81pHTgCxlz38DQ=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.45756+00 2025-12-17 18:40:01.457568+00 39100 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v_-DoRFFJIY9IkGwoIvyhWn09B0=", "createTime": "2024-08-15 15:06:08"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.460267+00 2025-12-17 18:40:01.460272+00 39101 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wofcaidXQ2QKbJ7lgH54QoUGQn0=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.463685+00 2025-12-17 18:40:01.463692+00 39102 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7OY1jZZ5HpHoFOWqMpn-7jw2598=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.467226+00 2025-12-17 18:40:01.467232+00 39103 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J82LfExOIOZWBijmoKGz-uCGjFQ=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.470643+00 2025-12-17 18:40:01.47065+00 39104 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MXtOsaUt4Iq0F4nSvUBElUeNwK8=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.474189+00 2025-12-17 18:40:01.474195+00 39105 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sl0kYc6my3dZlJQs0v6Md5CGTQc=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.477631+00 2025-12-17 18:40:01.477636+00 39106 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sTbWQ2iwA9l73mqYO7f-7GVGVIc=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.480829+00 2025-12-17 18:40:01.480835+00 39107 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e3UwgODhyfnPeCaK7OylP0q-5PA=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.484098+00 2025-12-17 18:40:01.484104+00 39108 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uv4-nTllyVT-yBwD3ywcruKgW0M=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.487251+00 2025-12-17 18:40:01.487256+00 39109 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jKmKFuHRru6g6UxOszkmPtdAuDQ=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.49025+00 2025-12-17 18:40:01.490255+00 39110 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zaYPvHGflT3p54M9qaAqMtapifc=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.493205+00 2025-12-17 18:40:01.493211+00 39111 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:92a6JrOPX0hNORnQr_jcV6KuXII=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.496494+00 2025-12-17 18:40:01.496501+00 39112 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g0CqwsvCKQTdjo6qhA_29lMSeYY=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.50004+00 2025-12-17 18:40:01.500045+00 39113 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XiJIdQEHKaUw8L1ddhmN-ePqAEE=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.503395+00 2025-12-17 18:40:01.5034+00 39114 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UMcx47LaZDSZMbxCV4EeAD8mCnY=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.506295+00 2025-12-17 18:40:01.5063+00 39115 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o-4k5bYBMpwJeyJ9A22KXHBnUTA=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.509135+00 2025-12-17 18:40:01.50914+00 39116 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iC5gf-Ro6JTAQBBF2qb9U_XnFFw=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.513223+00 2025-12-17 18:40:01.51323+00 39117 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TjMtCYx2bMBTHKAmMHcOeo22umU=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.517034+00 2025-12-17 18:40:01.517041+00 39118 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z38iCPeRdWShMteFVI7FcaaaBjk=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.520686+00 2025-12-17 18:40:01.520692+00 39119 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7bs79eKgA9Q23Sy0L3tIoDrqPyE=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.524782+00 2025-12-17 18:40:01.524792+00 39120 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nPNS-iHDuBZ7sFvBE_08XTWjR_s=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.529507+00 2025-12-17 18:40:01.529514+00 39121 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CBAU6SBIzXOuB_mq_Wsq5q6Cnu8=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.533244+00 2025-12-17 18:40:01.533251+00 39122 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vLVwxQsNhGHPkl13KFsjOHBA8jk=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.536717+00 2025-12-17 18:40:01.536722+00 39123 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iraq_0b64GswT2tgmSdKuSnrfBs=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.539983+00 2025-12-17 18:40:01.539988+00 39124 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wI1vG1cwBCCthzmpEQnOpv1dCTA=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.543234+00 2025-12-17 18:40:01.54324+00 39125 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZImnOm9SmkotQ9YLO3k219TGOPY=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.546302+00 2025-12-17 18:40:01.546309+00 39126 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N-KKTCi59-2gJu5AsGxjxlpGTSw=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.549568+00 2025-12-17 18:40:01.549573+00 39127 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lc5ATH-b0haXJ5SU3NicXtSVK5Q=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.552807+00 2025-12-17 18:40:01.552813+00 39128 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4HMxcxfEqOIBVoC96UTAHsOc3w4=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.555721+00 2025-12-17 18:40:01.555725+00 39129 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lr8XWIt8dAJ1y4gvJtGV1bdtJ8M=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.558536+00 2025-12-17 18:40:01.558541+00 39130 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bltAuo3LDc-8E82Z23Bp1Hqtc1g=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.56196+00 2025-12-17 18:40:01.561967+00 39131 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ZmjWT_1eCf3ZPuVA_JIIRL1g94=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.565668+00 2025-12-17 18:40:01.565674+00 39132 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZwqEdQJVLCz0X19WBRcwvf5154o=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.569599+00 2025-12-17 18:40:01.569606+00 39133 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ND5t-7beprG50kbWrJSKx2T7rg=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.573045+00 2025-12-17 18:40:01.573051+00 39134 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sHBBUlZf1iFtkM1ggtlwdieSlm4=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.576235+00 2025-12-17 18:40:01.576241+00 39135 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wCgpYgoGN5fJk85LktLnyb1buaU=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.579505+00 2025-12-17 18:40:01.57951+00 39136 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WPpLmbDUAyn4KlkkYmcOgVZxo2Y=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.58277+00 2025-12-17 18:40:01.582775+00 39137 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_laJrJRb1SruP9nlm2zet5coKlo=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.585886+00 2025-12-17 18:40:01.585891+00 39138 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hHBZvBZ_tloBkzDGtw9vpeZB2-E=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.588952+00 2025-12-17 18:40:01.588959+00 39139 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fzUPsLBKzDDJDGjPUJa9I0onLvQ=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.592948+00 2025-12-17 18:40:01.592955+00 39140 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IuGpPUa7hycS8zDQUP51trxI7Q8=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.5972+00 2025-12-17 18:40:01.597207+00 39141 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zt_jKh71wmG9iif-Fzr5Wgtyqxg=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:40:01.600887+00 2025-12-17 18:40:01.600892+00 39142 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=1766083200&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xe99EWbnDCyD3EQGtLWc2pw04xQ=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.351083+00 2025-12-17 18:50:00.351092+00 39143 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gGiYtczjrOUipNn2J_CzpFGyCAI=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.356039+00 2025-12-17 18:50:00.356047+00 39144 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ix1lr6X5urGrapjrj21MbF99pEM=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.359813+00 2025-12-17 18:50:00.359819+00 39145 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7hfAwWTjmbr-XyO4ngi2Fv5y_1c=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.363223+00 2025-12-17 18:50:00.363229+00 39146 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HMorGwo8AZtPffnkdEv62G8c74o=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.366223+00 2025-12-17 18:50:00.366229+00 39147 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qHpv-GJL7-QeCpYgT5XUxUFqVUs=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.369146+00 2025-12-17 18:50:00.369151+00 39148 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oJmHbiDcoeNllkNhbGuYImr16YU=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.372357+00 2025-12-17 18:50:00.372365+00 39149 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ctim2V1mPBpVNKKpMRkiHMHqwuc=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.376338+00 2025-12-17 18:50:00.376344+00 39150 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N9yNdwXe7eg5SI5nTJwtwA-UtlQ=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.380414+00 2025-12-17 18:50:00.380421+00 39151 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vTB8ZQlu83D4qX_wj4UIwusEBx8=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.383999+00 2025-12-17 18:50:00.384005+00 39152 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:38SZvd3xvtTJM9QQcG1okKO5xuU=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.387082+00 2025-12-17 18:50:00.387088+00 39153 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Px9dDti2JQVitXaVAy3RCfDU1_c=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.390661+00 2025-12-17 18:50:00.390669+00 39154 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJFRMGYg9rnMA4B683fkoA3gN9M=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.395041+00 2025-12-17 18:50:00.395047+00 39155 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pm96VlG_HEIwodRALfwuzuzKlyg=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.398665+00 2025-12-17 18:50:00.398671+00 39156 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BOBPt1Gf_SOxlJ5bXqzrtHvlll8=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.402074+00 2025-12-17 18:50:00.402079+00 39157 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZL9uSapemRELMtiAz_OrOYCYkIE=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.405239+00 2025-12-17 18:50:00.405245+00 39158 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RBNo1ThDzxxf5J1OcsJLp2X1YMg=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.409046+00 2025-12-17 18:50:00.409052+00 39159 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L8G9z-2UbUrqu0-mV5tdPCu3J7s=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.412882+00 2025-12-17 18:50:00.412888+00 39160 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2xYqP4DNV0p_yW4OnAUsAcSdebs=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.417283+00 2025-12-17 18:50:00.417289+00 39161 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g9t5fYAMt-wCDJvCWcy4YJnY3Tg=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.421781+00 2025-12-17 18:50:00.421788+00 39162 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_8ohrbT885CKEQ2g-LwlUIaVWNA=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.426044+00 2025-12-17 18:50:00.426054+00 39163 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:18TeNsdLXrhPcGpyuy0ugtwl35U=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.430087+00 2025-12-17 18:50:00.430093+00 39164 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lZJgI5UJJtNEdpMvizL3chbVpfU=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.433932+00 2025-12-17 18:50:00.433939+00 39165 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pcwEzt7pVPtcIlE5DC7FPPUAMls=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.436954+00 2025-12-17 18:50:00.436959+00 39166 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PSScAzD7uecPBWg5VcHNb2xdgJo=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.440559+00 2025-12-17 18:50:00.440568+00 39167 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4RjeGCT7GvF-SOeO4KKdfGPF3kc=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.444175+00 2025-12-17 18:50:00.444181+00 39168 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6J2thr7acGow7FeWc5n2aVCpxhA=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.447171+00 2025-12-17 18:50:00.447177+00 39169 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2RQDJj7wx6t4X65puVzEwsZ8v_Q=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.450045+00 2025-12-17 18:50:00.45005+00 39170 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5i-tiJbnCMIW5L7ihfsOwL-E8bw=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.452937+00 2025-12-17 18:50:00.452942+00 39171 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gg_yl3wH5H1mTxqZXASrMPPzxiA=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.456439+00 2025-12-17 18:50:00.456445+00 39172 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hHzEI0lpbfFvxWO4O0U4JohHCFA=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.459695+00 2025-12-17 18:50:00.4597+00 39173 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dxxB1i4qnGqJ-pQw6hInirSyK40=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.462804+00 2025-12-17 18:50:00.462809+00 39174 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YmFFEfVqpvqFbtZSx2YLupUPMv4=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.466098+00 2025-12-17 18:50:00.466103+00 39175 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OSUTfPkUcBlGiBEva4deZ1RV3LU=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.469619+00 2025-12-17 18:50:00.469624+00 39176 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ccL4GvhRI3xbeAoH0NPeI1d5jQk=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.473006+00 2025-12-17 18:50:00.473012+00 39177 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7iJCK7B5hTfU2Hdjb9JmC92uQ7c=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.476349+00 2025-12-17 18:50:00.476354+00 39178 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S7p-w5-ZkQq-oyzwjdMjhs0_0QI=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.479462+00 2025-12-17 18:50:00.479467+00 39179 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x5FbfCuNxiBb-gQUVlDSoA4i4No=", "createTime": "2024-08-15 15:06:15"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.482344+00 2025-12-17 18:50:00.482349+00 39180 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wjjiix7FZYJihySXViGrCLmYFMA=", "createTime": "2024-08-15 15:06:15"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.485181+00 2025-12-17 18:50:00.485186+00 39181 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sbmJaPIZ1c3Zs0KX4GR9u0btfbs=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.488328+00 2025-12-17 18:50:00.488333+00 39182 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AotQBOk8tgNgQ42A2iJ1KfLQ1AY=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.492191+00 2025-12-17 18:50:00.492198+00 39183 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MvwlTg-5g4dtLzTFZ_VFZu_bPTY=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.496005+00 2025-12-17 18:50:00.496011+00 39184 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XTwj-XN5QU-EYqj9aZb0ROgFYC0=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.499421+00 2025-12-17 18:50:00.499429+00 39185 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PkEBPAMcUOxVBcMVUMpdlyOmz70=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.503432+00 2025-12-17 18:50:00.503439+00 39186 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KFJgHjIRXUrdDMYLVZMmKxlgjbA=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.507354+00 2025-12-17 18:50:00.50736+00 39187 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lFBuWrK20i6NRRir9UzXkG74iR8=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.511027+00 2025-12-17 18:50:00.511033+00 39188 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gaEgM4YJMvJs-KcLn9bzLEyHjq8=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.514254+00 2025-12-17 18:50:00.514259+00 39189 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vqRnsij31t24ckrDI_htOeNORho=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.51725+00 2025-12-17 18:50:00.517256+00 39190 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yXchCJw94M8HznZ0PPclQuu6RxI=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.520496+00 2025-12-17 18:50:00.520502+00 39191 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bi968svctz5lEYPM37DaGe8lqLY=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.524283+00 2025-12-17 18:50:00.524289+00 39192 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tqFtq9kFUlMy3zYpU67gkWS3VYg=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.527668+00 2025-12-17 18:50:00.527673+00 39193 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:14nxc2-X1Beuow7jAZ3gU8F4uEM=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.530714+00 2025-12-17 18:50:00.530719+00 39194 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uz0FoKa1RiXoMXjqojdbzAyOQ7A=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.533645+00 2025-12-17 18:50:00.53365+00 39195 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7liijLbGLVqqTc97EsJjnVTDq8o=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.53653+00 2025-12-17 18:50:00.536535+00 39196 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YSrNz8rF-PuzYk2dYUrL1iAY3Yc=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.540716+00 2025-12-17 18:50:00.540726+00 39197 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:so-Y8PyJcRPJl6J4ZeZ0DsO-T20=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.545932+00 2025-12-17 18:50:00.545942+00 39198 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DRRYMOtoFYD1P_LZUuAcm1jjHoI=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.55009+00 2025-12-17 18:50:00.550096+00 39199 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E-MstPFYfjWaIQW4Gkdv0eJ7QNs=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.555499+00 2025-12-17 18:50:00.555512+00 39200 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HkWv2Na9CSKEiwMITqmXDvykEYo=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.561002+00 2025-12-17 18:50:00.561011+00 39201 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gQPgc3_9Dtn507LsH-v9bnnvt4w=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.564881+00 2025-12-17 18:50:00.564886+00 39202 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xE_Y7vg14we-00MUy01y8WcR0Zk=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.567963+00 2025-12-17 18:50:00.56797+00 39203 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dAtsfPrVI_G-2OS3vA-GyyCSIsw=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.57104+00 2025-12-17 18:50:00.571046+00 39204 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n0-07FiWE3rCxU6_JCIvX6D0eeM=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.574468+00 2025-12-17 18:50:00.574473+00 39205 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YAv914pYlLihfXR3UFa1kH0BO_c=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.577794+00 2025-12-17 18:50:00.577799+00 39206 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uCItL7zkLBWEXCwl8Ou1YMgTUqw=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.581193+00 2025-12-17 18:50:00.581198+00 39207 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FENyO50iFFh_Ox8zPboMvr-UVro=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.584415+00 2025-12-17 18:50:00.58442+00 39208 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NmD6pNS1AdSirv2MN-V_p7CBwhc=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.58728+00 2025-12-17 18:50:00.587285+00 39209 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ef69TsKdh-7BJbF5-5egbGCv0iM=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.590547+00 2025-12-17 18:50:00.590552+00 39210 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-HkKbcfuFZfMY3PeU7M2EyxYDyU=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.593791+00 2025-12-17 18:50:00.593796+00 39211 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ysmofL6QfJ3iKsZZkecbkrxv5Oc=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.596807+00 2025-12-17 18:50:00.596812+00 39212 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aXKnaYcQ26bkH3QGXCThzQDqZkg=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.599644+00 2025-12-17 18:50:00.599649+00 39213 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NB-yOhe5q69ivdt_rlNrsnZuOHk=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.602492+00 2025-12-17 18:50:00.602496+00 39214 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6OMoLu-81SG7Z8O1ZCnSgjwGWiM=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.605986+00 2025-12-17 18:50:00.605992+00 39215 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IF0YCcB2elp7PBPozL_9h6GIcCI=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.609457+00 2025-12-17 18:50:00.609462+00 39216 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vkuv8FTPF1LjH0XjzE9BhM_KbHk=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.612407+00 2025-12-17 18:50:00.612412+00 39217 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H6sFdzjYPKWivSCqnHKXN2qRcVE=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.615404+00 2025-12-17 18:50:00.61541+00 39218 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qtr5TpT_4qBKLm1QFE4vOgqu2wE=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.61864+00 2025-12-17 18:50:00.618646+00 39219 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MtBH50HyHv0Ft4BpEzoPhQAov1I=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.622319+00 2025-12-17 18:50:00.622328+00 39220 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2iUj1IrPZpKrKoBTYQNbipIt4H8=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.626055+00 2025-12-17 18:50:00.62606+00 39221 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SGs10lgqy7TyZwbzoYO3HBQgG7Y=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.629237+00 2025-12-17 18:50:00.629241+00 39222 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ks4TbnlxK4TBoJ_xVM81rydPBpM=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.632228+00 2025-12-17 18:50:00.632233+00 39223 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:supFwhnxwNvKZxA8ot_jN76HQGg=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.635203+00 2025-12-17 18:50:00.635209+00 39224 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WukD-4bWCnH3t2PraoTd5n-_Tj8=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.637889+00 2025-12-17 18:50:00.637893+00 39225 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NFe7rpphHTokXrwYqUxScmHeUO4=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.6411+00 2025-12-17 18:50:00.641105+00 39226 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VdnobHd3okwRgX9YQtMH9ixEpg4=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.644316+00 2025-12-17 18:50:00.644321+00 39227 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vM8ASmqoC-WL1h7KKZ57pXAyjWU=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.647437+00 2025-12-17 18:50:00.647442+00 39228 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fn6SIJYF2UpPrnsxPO924Hhm-Sc=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.650365+00 2025-12-17 18:50:00.65037+00 39229 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Dzyou0SXGIWT0QS7xl_ayf_Vos=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.653266+00 2025-12-17 18:50:00.653271+00 39230 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VMQkJMkMP9WtUXo-5s_NrzDTdv8=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.65699+00 2025-12-17 18:50:00.656997+00 39231 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5HLOhDnWGiB0yIllraLTsQ7K6ck=", "createTime": "2024-08-15 15:06:21"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.660652+00 2025-12-17 18:50:00.660657+00 39232 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C7BS_93Ut1IbfOXsCWqn8F12_Uk=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.663652+00 2025-12-17 18:50:00.663658+00 39233 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kjtX8_uVyHsjbWrxPo1vRm4eUAs=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.666605+00 2025-12-17 18:50:00.66661+00 39234 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iDYQKKwZWJbgVCCeX4jl1vXrSQg=", "createTime": "2024-08-15 15:06:21"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.669469+00 2025-12-17 18:50:00.669474+00 39235 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CjaJdkA7GvGA7MjRq6uPfDmNUNQ=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.672655+00 2025-12-17 18:50:00.672662+00 39236 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7lYcx43HkBpOWooXPVzY4_sjnpc=", "createTime": "2024-08-15 15:06:21"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.67631+00 2025-12-17 18:50:00.676316+00 39237 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:isiTLJyHr2-kOTQLRi8gJNZEnV0=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.679667+00 2025-12-17 18:50:00.679672+00 39238 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2hE1ZMBHt_jwBo-VisfW-W8glNg=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.683412+00 2025-12-17 18:50:00.683417+00 39239 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z6wKd_4DFwySZTSNxpHjqlV3JWI=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.688101+00 2025-12-17 18:50:00.688107+00 39240 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5IEq6Z-H4zwgablWsH3Kj0C6yrc=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.693212+00 2025-12-17 18:50:00.693219+00 39241 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NhnoxwVyNpIF_qBpclXnIotQjTw=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:00.696917+00 2025-12-17 18:50:00.696923+00 39242 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H5VG2yBbUMLKZwyXHhAkPW4D6O0=", "createTime": "2024-08-15 15:06:21"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.035316+00 2025-12-17 18:50:01.035325+00 39243 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w0Hon162WyDS0QX7G2RGcg-G4AE=", "createTime": "2024-08-15 15:06:21"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.039865+00 2025-12-17 18:50:01.039873+00 39244 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vg5IEv1RORBiICi3mYpV3B7TH0U=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.043958+00 2025-12-17 18:50:01.043965+00 39245 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_E9CBdv9_4vvNMupm16gnA8wcCY=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.047755+00 2025-12-17 18:50:01.047762+00 39246 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CFKbRwPnPcqTr5HTCucTlTWLgdc=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.050766+00 2025-12-17 18:50:01.05077+00 39247 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ogatZcOnj5OEA3w-S3M66kiqFJ4=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.053659+00 2025-12-17 18:50:01.053664+00 39248 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m9NsRNKSwZ2-g23jxyn6WWPJpl8=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.057032+00 2025-12-17 18:50:01.05704+00 39249 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fLmdKb5fQLWxS5WFBALeyuOBLgs=", "createTime": "2024-08-15 15:06:21"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.060474+00 2025-12-17 18:50:01.060479+00 39250 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OshYS3kMUZDAVMINp1RuK2lg2PU=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.063694+00 2025-12-17 18:50:01.063699+00 39251 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ngT2abNNZ9ihHc5TcR6PZTMVuk=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.066503+00 2025-12-17 18:50:01.066507+00 39252 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O5MZpJj8UCq1uKR8yh3m1qON5h4=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.069511+00 2025-12-17 18:50:01.069515+00 39253 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Je8j_9xOGkT36TY3GGwUF2Wmvw=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.07275+00 2025-12-17 18:50:01.072755+00 39254 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dv6rk27i7ZjTUYTwJZxw_cwoZ2o=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.075648+00 2025-12-17 18:50:01.075652+00 39255 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-a9UH0Tz1UGuyOV24M2uOeTUWmA=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.078368+00 2025-12-17 18:50:01.078373+00 39256 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Az2l8ZjO9moB-1hFAtnlmZCchgs=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.080993+00 2025-12-17 18:50:01.080997+00 39257 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sT9JuGIdKLFKGSEmRH_Z7Oaxea8=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.08363+00 2025-12-17 18:50:01.083634+00 39258 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TnoDOTQodxi94QdWNOseUB4lkZI=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.086261+00 2025-12-17 18:50:01.086265+00 39259 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S1vUXYBxAIJPXAXpQpOJGcu3GyA=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.089214+00 2025-12-17 18:50:01.089221+00 39260 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:359N2i_sNw-n7unDTiBtYgX5RsU=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.092742+00 2025-12-17 18:50:01.092747+00 39261 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qcbPNQpu9PqqCSTUC1_-YCxyDtk=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.096251+00 2025-12-17 18:50:01.096257+00 39262 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:72LNz_1uUaXhcuN_7OcP_WP0B9s=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.09922+00 2025-12-17 18:50:01.099226+00 39263 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KTLkgFqUQ5hfqxLODrnI_i9BDDA=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.102111+00 2025-12-17 18:50:01.102116+00 39264 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:spwKiTDsgB2HjRL9531jQCtZHM0=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.10521+00 2025-12-17 18:50:01.105218+00 39265 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WNTgdU89rzAs-cNs-L9ded7QX5I=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.10858+00 2025-12-17 18:50:01.108586+00 39266 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:szV2TbmZGEp_N62Ef_mQbviMZsc=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.111969+00 2025-12-17 18:50:01.111975+00 39267 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2zeFfUzzo8GmNpiMA5nez9EQVMU=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.115209+00 2025-12-17 18:50:01.115216+00 39268 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xl--MWppAHWFOfrmDG6BXMcI9Qk=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.118734+00 2025-12-17 18:50:01.118739+00 39269 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W2PbjBcetwInC4n5q2N04bOwpUA=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.1225+00 2025-12-17 18:50:01.122509+00 39270 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XGWRHHtQAwE1AA3PQ91mtxOQwAo=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.126662+00 2025-12-17 18:50:01.126668+00 39271 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LnMnRk0tJqIActs3GmQVGJR3X2Q=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.130624+00 2025-12-17 18:50:01.130631+00 39272 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZpoRG5a5POVoqvQ4ds6VEGnT73c=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.134049+00 2025-12-17 18:50:01.134056+00 39273 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lEOLDVoRMSGNaGwSpnUnri3Zmpg=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.138555+00 2025-12-17 18:50:01.138567+00 39274 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GWyISmqKXpLK9uEZkSgo6S0nOi0=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.143283+00 2025-12-17 18:50:01.143291+00 39275 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LiQJwQ4M314nC6NkUMhdQPm6qWA=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.146983+00 2025-12-17 18:50:01.146989+00 39276 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iHlIwpM7waNuSr3Mn1S4mKg7i2M=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.150939+00 2025-12-17 18:50:01.150945+00 39277 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QcMjTtl_ZDB-9ByWPRCQ5RzkLBk=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.154718+00 2025-12-17 18:50:01.154724+00 39278 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iFryLUwVDOlS79-McsBagosZnms=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.158412+00 2025-12-17 18:50:01.158418+00 39279 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1yfMOufriEx4pGvEjPVeGIA0Bmg=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.162024+00 2025-12-17 18:50:01.16203+00 39280 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tLUlu_tHW79gq1lc_bIMv6bB-JA=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.16545+00 2025-12-17 18:50:01.165456+00 39281 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VyT3vE_Z7yGusZCMP6oIPt27HQk=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.184243+00 2025-12-17 18:50:01.18425+00 39286 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ga6FU8k4P2nZqk4lEKqdX8xvAFw=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.168768+00 2025-12-17 18:50:01.168774+00 39282 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2cVRZ7yN0H_KVos0UCqGLult5Qk=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.172491+00 2025-12-17 18:50:01.1725+00 39283 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OoEB__pqFa0ABv-_8luPp9m7bF4=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.176319+00 2025-12-17 18:50:01.176326+00 39284 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fkBtsiAYpDwi_PagYFuSybzfx1A=", "createTime": "2024-11-12 16:43:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.180363+00 2025-12-17 18:50:01.18037+00 39285 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SQWrVjQLzFopHSlWq1Y6SpoNct4=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.187581+00 2025-12-17 18:50:01.187587+00 39287 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VZ_yGpSrJSkQqcwDduCvhG4gu24=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.191069+00 2025-12-17 18:50:01.191076+00 39288 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LN5RihqPXkLlT1YeOrFnpD_MDas=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.194467+00 2025-12-17 18:50:01.194473+00 39289 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6fdWCma-rwIk5FWphFRdh7HAsZ0=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.1975+00 2025-12-17 18:50:01.197506+00 39290 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:83Kb7c94C1MBjWI1KAVRbpx6-5Y=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.200362+00 2025-12-17 18:50:01.200367+00 39291 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jKKsP1lVNxYCQWwYn2lCt42FdFA=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.203199+00 2025-12-17 18:50:01.203204+00 39292 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l_RGdXYvztyZXfWD2Zgx2fX0Ois=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.206638+00 2025-12-17 18:50:01.206644+00 39293 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oUkFq56lJYonTeUYsxrbbKEPuYg=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.210158+00 2025-12-17 18:50:01.210164+00 39294 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:npm4hIaL4_xrX7WnyBMBZEgpCEY=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.213479+00 2025-12-17 18:50:01.213484+00 39295 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DwYoUF9rAoV1kMta0TdXqL_S4RA=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.216824+00 2025-12-17 18:50:01.216829+00 39296 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rWvzxuxpPj1DlghBM82KWmvkQXg=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.220219+00 2025-12-17 18:50:01.220224+00 39297 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jsiAzhGLD3Lf72IqTqVQLJfrdcE=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.223789+00 2025-12-17 18:50:01.223794+00 39298 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xx5nAeT3PoKaivek84yuXgIKYRo=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.227294+00 2025-12-17 18:50:01.2273+00 39299 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dyn7i8aGyC0nJzu7hj1L2AcsDXk=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.232369+00 2025-12-17 18:50:01.232378+00 39300 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9qVvzdWDfeQtgpsR07fY-a3XVEg=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.236205+00 2025-12-17 18:50:01.23621+00 39301 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8pzwyiV210rVD8PlkBovEVqVOb0=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.239712+00 2025-12-17 18:50:01.239718+00 39302 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nX7QMUxKnTPo4Imvkf5AcIkegOU=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.242695+00 2025-12-17 18:50:01.2427+00 39303 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sqaTMjErPmHCHUKKSEWImMajbZg=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.245724+00 2025-12-17 18:50:01.245729+00 39304 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cJT2ubXq7EEKptT6NcsVaj1UUKc=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.248716+00 2025-12-17 18:50:01.248721+00 39305 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mL-8fXLGAWocYIJ61xK5cXZNfQw=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.251464+00 2025-12-17 18:50:01.251468+00 39306 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OOFgPgJvtPooLlQR56C-4DDeFyM=", "createTime": "2024-11-12 16:43:43"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.254533+00 2025-12-17 18:50:01.254539+00 39307 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tdk2gBf3xQSiRYLh7Q77fV7gYCs=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.257894+00 2025-12-17 18:50:01.257899+00 39308 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QJUZ0p125yvn8peVmXxjiLK4tQE=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.261592+00 2025-12-17 18:50:01.261597+00 39309 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jw6nnjIdEvi354cbDtVVqPZcqFU=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.265016+00 2025-12-17 18:50:01.265021+00 39310 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3q617a6rLkYVAblBHLWidg0Ot1U=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.267877+00 2025-12-17 18:50:01.267883+00 39311 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BRe0aovbibd0Zxl_99-qVWZQaBI=", "createTime": "2024-11-12 16:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.270702+00 2025-12-17 18:50:01.270706+00 39312 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZLQtr_95BzkeTwBBYTMxbZIRvco=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.27401+00 2025-12-17 18:50:01.274016+00 39313 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zCmq5f8H9nS4YcH-3JoyjyVN7rc=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.277317+00 2025-12-17 18:50:01.277323+00 39314 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:roNyfTLcKA5h83P87oQALDz85SU=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.280374+00 2025-12-17 18:50:01.280379+00 39315 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jqgNFqTyRGxS2DSG6cEpzrwZi0o=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.284019+00 2025-12-17 18:50:01.284026+00 39316 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lztpBTjsqXhpHEJLZrsfFI6tBJQ=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.28785+00 2025-12-17 18:50:01.287856+00 39317 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LHBvXH91YfTyXRgBkdT_C3k7q74=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.291858+00 2025-12-17 18:50:01.291863+00 39318 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3nVInvtq5hmpO2EN4f6lFZMusG4=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.295409+00 2025-12-17 18:50:01.295415+00 39319 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:boQszbyc2Z6sqRaGbYi_dRYUrKk=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.298611+00 2025-12-17 18:50:01.298617+00 39320 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xq2JRsfaafesseQYgyCFhOX4Au4=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.301531+00 2025-12-17 18:50:01.301536+00 39321 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rW8Rb5DIEIj40Z5ZcaG2TGW7TFY=", "createTime": "2024-11-12 16:43:44"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.304454+00 2025-12-17 18:50:01.304459+00 39322 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dI0UOQ-5NhZbUEFbk8SHTEq6Y08=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.308054+00 2025-12-17 18:50:01.308062+00 39323 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SceWkQ537g2LFDs3q5QGUfjEHhs=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.311545+00 2025-12-17 18:50:01.311551+00 39324 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JQ7NWHU_C-e4Q4fVxEsH0b8koGs=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.314998+00 2025-12-17 18:50:01.315004+00 39325 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:usjID9iLBJOfcKFn_vGjIsOYeN0=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.318476+00 2025-12-17 18:50:01.318481+00 39326 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9zExeITTfcdJpyhnfSnFEiXJXtM=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.321661+00 2025-12-17 18:50:01.321669+00 39327 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2R6S21oQsckzi7_1zQOJYazDwW4=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.325106+00 2025-12-17 18:50:01.325112+00 39328 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WoO58408jCCi1V06gF26hHd-ixU=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.328408+00 2025-12-17 18:50:01.328413+00 39329 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bK700pbo2ayRRalE2vas-DhBHR0=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.331476+00 2025-12-17 18:50:01.331482+00 39330 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U2Ohp9SfbPiLskhIk3uuP9yDa_A=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.334399+00 2025-12-17 18:50:01.334404+00 39331 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S4BKO-kWo14V2fQAC0gCwdBhluw=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.337314+00 2025-12-17 18:50:01.337318+00 39332 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qb8qclkgYXcnfLzCAZIHmc8A0ic=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.34126+00 2025-12-17 18:50:01.341266+00 39333 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Xx3R3bspzqcXhCbrKqteeUaVEQ=", "createTime": "2024-11-12 16:43:45"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.345086+00 2025-12-17 18:50:01.345092+00 39334 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zYoraaA5lfsxNhiKpsEFiRu9y10=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.348301+00 2025-12-17 18:50:01.348307+00 39335 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q3DgfvyjzpkLarChyVglv5PaQcs=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.351388+00 2025-12-17 18:50:01.351393+00 39336 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LXFePkzGOwvLs5jGCs7FQ3D2Z-E=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.354328+00 2025-12-17 18:50:01.354333+00 39337 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sUbmMra1LJnnJk8wn8G8s3keOJE=", "createTime": "2024-11-12 16:43:46"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.358081+00 2025-12-17 18:50:01.358088+00 39338 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eHI09UF58gxHaMPAqJcmLFri-Fs=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.361682+00 2025-12-17 18:50:01.361689+00 39339 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oW-RVSCZLWdeBOS1Mh0Ws5RzbX0=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.365069+00 2025-12-17 18:50:01.365075+00 39340 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kswfV8p0miOZxXPvWEkZWjn7fmM=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.368742+00 2025-12-17 18:50:01.368749+00 39341 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KHfW0qAAlB5VemMgCvoaS42ApGk=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N +2025-12-17 18:50:01.372908+00 2025-12-17 18:50:01.372915+00 39342 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=1766083799&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kwxgDEpvrtjMu_lF_3yWnj4lMoc=", "createTime": "2024-08-15 15:06:29"}] \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-12-15 11:54:10.841385+00 2025-12-15 11:54:10.841401+00 2229 1.51米 1.51米 幅宽 +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 +14 2025-12-10 05:58:53.449106+00 2025-12-10 05:58:53.44911+00 2 2 3 0.00 1 0.00 0.00 \N {} \N \N \N f \N 809 1 \N +15 2025-12-11 08:57:07.668206+00 2025-12-11 08:57:07.668211+00 2 2 4 0.00 1 0.00 0.00 \N {} \N \N \N f \N 809 1 \N +16 2025-12-11 08:57:53.289522+00 2025-12-11 08:57:53.28953+00 2 2 5 0.00 1 0.00 0.00 \N {} \N \N \N f \N 809 1 \N +17 2025-12-11 08:59:03.254113+00 2025-12-11 08:59:03.254118+00 2 2 6 0.00 1 0.00 0.00 \N {} \N \N \N f \N 809 1 \N +18 2025-12-11 09:00:28.098438+00 2025-12-11 09:00:28.098443+00 2 2 7 0.00 1 0.00 0.00 \N {} \N \N \N f \N 809 1 \N +19 2025-12-11 09:09:08.750184+00 2025-12-11 09:09:08.750189+00 2 2 8 0.00 1 0.00 0.00 \N {} \N \N \N f \N 809 1 \N +20 2025-12-11 10:10:00.363937+00 2025-12-11 10:10:00.363942+00 2 2 9 2116.00 1 -1116.00 1000.00 \N {} \N \N \N f \N 3 1 \N +21 2025-12-11 10:14:46.572697+00 2025-12-11 10:14:46.572702+00 2 4 3 500.00 1 1000.00 1500.00 \N {} \N \N \N f \N 3 1 \N +22 2025-12-12 06:58:04.375534+00 2025-12-12 06:58:04.37554+00 2 2 11 41040.00 1 0.00 41040.00 \N {} \N \N \N f \N 809 1 \N +23 2025-12-12 07:03:40.978466+00 2025-12-12 07:03:40.97847+00 2 2 12 6400.00 1 41040.00 47440.00 \N {} \N \N \N f \N 809 1 \N +24 2025-12-12 07:54:13.448427+00 2025-12-12 07:54:13.448433+00 2 2 10 0.00 1 47440.00 47440.00 \N {} \N \N \N f \N 809 1 \N +25 2025-12-12 07:56:07.193209+00 2025-12-12 07:56:07.193217+00 2 2 13 5000.00 1 47440.00 52440.00 \N {} \N \N \N f \N 809 1 \N +26 2025-12-12 09:36:45.757006+00 2025-12-12 09:36:45.757011+00 2 4 4 -5000.00 2 52440.00 47440.00 \N {} \N \N \N f \N 809 1 \N +27 2025-12-12 12:26:32.473284+00 2025-12-12 12:26:32.473289+00 2 2 15 912.00 1 47440.00 48352.00 \N {} \N \N \N f \N 809 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-11 10:14:46.572318+00 1500.00 3 1 +3 2025-12-10 05:58:53.448291+00 2025-12-12 12:26:32.472881+00 48352.00 809 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 +76 2025-12-15 03:48:44.649522+00 2025-12-15 03:48:44.649527+00 PlateOrder-80036 2 28 80036 +77 2025-12-15 03:54:01.322311+00 2025-12-15 03:54:01.322315+00 PlateOrder-80037 2 28 80037 +78 2025-12-15 07:55:20.896504+00 2025-12-15 07:55:20.896508+00 PlateOrder-80038 6 28 80038 +79 2025-12-15 07:56:44.320574+00 2025-12-15 07:56:44.320578+00 PlateOrder-80039 8 28 80039 +80 2025-12-15 08:23:04.947804+00 2025-12-15 08:23:04.94781+00 PlateOrder-80040 4 28 80040 +81 2025-12-15 08:31:55.382553+00 2025-12-15 08:31:55.382559+00 PlateOrder-80041 2 28 80041 +82 2025-12-15 08:34:09.754163+00 2025-12-15 08:34:09.754168+00 PlateOrder-80042 2 28 80042 +83 2025-12-15 08:37:13.886739+00 2025-12-15 08:37:13.886744+00 PlateOrder-80043 2 28 80043 +84 2025-12-15 08:40:39.357044+00 2025-12-15 08:40:39.357051+00 PlateOrder-80044 2 28 80044 +85 2025-12-15 08:42:51.897447+00 2025-12-15 08:42:51.897452+00 PlateOrder-80045 2 28 80045 +86 2025-12-15 08:44:42.653965+00 2025-12-15 08:44:42.65397+00 PlateOrder-80046 2 28 80046 +100 2025-12-15 09:54:10.423582+00 2025-12-15 09:54:10.423586+00 6 \N 80059 +104 2025-12-15 14:15:30.032462+00 2025-12-15 14:15:30.032468+00 8 \N 80062 +106 2025-12-15 14:15:30.032462+00 2025-12-15 14:15:30.032468+00 8 \N 80063 +108 2025-12-15 14:15:30.032462+00 2025-12-15 14:15:30.032468+00 8 \N 80064 +109 2025-12-15 15:06:02.391828+00 2025-12-15 15:06:02.391833+00 PlateOrder-80065 开版订单 80065 的流程实例 8 28 80065 +110 2025-12-15 14:15:30.032462+00 2025-12-15 14:15:30.032468+00 8 \N 80065 +111 2025-12-16 00:31:10.7068+00 2025-12-16 00:31:10.706806+00 PlateOrder-80066 开版订单 80066 的流程实例 8 28 80066 +112 2025-12-16 00:32:10.179517+00 2025-12-16 00:32:10.179525+00 PlateOrder-80067 开版订单 80067 的流程实例 8 28 80067 +113 2025-12-16 00:33:47.80565+00 2025-12-16 00:33:47.805658+00 PlateOrder-80068 开版订单 80068 的流程实例 2 28 80068 +114 2025-12-16 00:34:13.193357+00 2025-12-16 00:34:13.193362+00 PlateOrder-80069 开版订单 80069 的流程实例 2 28 80069 +115 2025-12-16 00:38:18.244427+00 2025-12-16 00:38:18.244433+00 PlateOrder-80070 开版订单 80070 的流程实例 2 28 80070 +116 2025-12-16 00:39:13.97407+00 2025-12-16 00:39:13.974076+00 PlateOrder-80071 开版订单 80071 的流程实例 2 28 80071 +125 2025-12-17 01:36:09.434505+00 2025-12-17 01:36:09.43451+00 PlateOrder-80073 开版订单 80073 的流程实例 2 28 80075 +118 2025-12-16 00:42:20.291123+00 2025-12-16 00:42:20.291128+00 PlateOrder-80072 开版订单 80072 的流程实例 2 28 80072 +119 2025-12-16 00:33:47.80565+00 2025-12-16 00:33:47.805658+00 PlateOrder-80068 开版订单 80068 的流程实例 2 28 80072 +66 2025-12-10 05:57:57.813923+00 2025-12-10 05:57:57.813928+00 PrintingJob-16 印染任务 16 的流程实例 1 27 16 +67 2025-12-11 05:52:04.475247+00 2025-12-11 05:52:04.475254+00 PrintingJob-17 印染任务 17 的流程实例 1 27 17 +68 2025-12-11 07:49:04.299103+00 2025-12-11 07:49:04.299108+00 PrintingJob-18 印染任务 18 的流程实例 1 27 18 +69 2025-12-12 10:01:20.184168+00 2025-12-12 10:01:20.184173+00 PrintingJob-19 印染任务 19 的流程实例 1 27 19 +70 2025-12-12 10:01:20.266117+00 2025-12-12 10:01:20.266122+00 PrintingJob-20 印染任务 20 的流程实例 1 27 20 +71 2025-12-12 10:01:20.338055+00 2025-12-12 10:01:20.33806+00 PrintingJob-21 印染任务 21 的流程实例 1 27 21 +72 2025-12-13 08:28:44.023288+00 2025-12-13 08:28:44.023292+00 PrintingJob-22 印染任务 22 的流程实例 1 27 22 +73 2025-12-13 09:20:53.509309+00 2025-12-13 09:20:53.509314+00 PrintingJob-23 印染任务 23 的流程实例 1 27 23 +74 2025-12-13 09:20:53.547294+00 2025-12-13 09:20:53.547299+00 PrintingJob-24 印染任务 24 的流程实例 1 27 24 +75 2025-12-13 09:23:11.98986+00 2025-12-13 09:23:11.989865+00 PrintingJob-25 印染任务 25 的流程实例 1 27 25 +87 2025-12-15 08:46:00.707823+00 2025-12-15 08:46:00.707827+00 PlateOrder-80047 2 28 80047 +88 2025-12-15 08:46:55.788224+00 2025-12-15 08:46:55.788229+00 PlateOrder-80048 2 28 80048 +89 2025-12-15 08:58:39.013943+00 2025-12-15 08:58:39.01395+00 PlateOrder-80049 2 28 80049 +90 2025-12-15 09:53:52.447777+00 2025-12-15 09:53:52.447786+00 PlateOrder-80050 6 28 80050 +91 2025-12-15 09:54:10.423582+00 2025-12-15 09:54:10.423586+00 PlateOrder-80051 6 28 80051 +92 2025-12-15 09:54:29.847834+00 2025-12-15 09:54:29.847838+00 PlateOrder-80052 6 28 80052 +93 2025-12-15 09:55:07.100804+00 2025-12-15 09:55:07.100811+00 PlateOrder-80053 6 28 80053 +94 2025-12-15 10:10:35.374099+00 2025-12-15 10:10:35.374105+00 PlateOrder-80054 6 28 80054 +95 2025-12-15 10:23:26.600186+00 2025-12-15 10:23:26.600192+00 PlateOrder-80055 6 28 80055 +96 2025-12-15 10:28:16.883502+00 2025-12-15 10:28:16.883508+00 PlateOrder-80056 6 28 80056 +97 2025-12-15 10:32:17.850729+00 2025-12-15 10:32:17.850733+00 PlateOrder-80057 6 28 80057 +98 2025-12-15 10:32:35.895728+00 2025-12-15 10:32:35.895732+00 PlateOrder-80058 6 28 80058 +99 2025-12-15 10:33:18.821609+00 2025-12-15 10:33:18.821614+00 PlateOrder-80059 6 28 80059 +101 2025-12-15 11:56:11.600426+00 2025-12-15 11:56:11.600433+00 PlateOrder-80060 2 28 80060 +102 2025-12-15 14:15:30.032462+00 2025-12-15 14:15:30.032468+00 PlateOrder-80061 8 28 80061 +103 2025-12-15 14:16:02.547155+00 2025-12-15 14:16:02.54716+00 PlateOrder-80062 8 28 80062 +105 2025-12-15 14:36:06.071113+00 2025-12-15 14:36:06.071118+00 PlateOrder-80063 8 28 80063 +107 2025-12-15 14:36:41.908845+00 2025-12-15 14:36:41.908849+00 PlateOrder-80064 8 28 80064 +117 2025-12-16 00:33:47.80565+00 2025-12-16 00:33:47.805658+00 PlateOrder-80068 开版订单 80068 的流程实例 2 28 80068 +120 2025-12-17 01:36:09.434505+00 2025-12-17 01:36:09.43451+00 PlateOrder-80073 开版订单 80073 的流程实例 2 28 80073 +121 2025-12-15 08:44:42.653965+00 2025-12-15 08:44:42.65397+00 PlateOrder-80046 2 28 80073 +122 2025-12-17 01:38:43.272137+00 2025-12-17 01:38:43.272142+00 PlateOrder-80074 开版订单 80074 的流程实例 2 28 80074 +123 2025-12-17 01:36:09.434505+00 2025-12-17 01:36:09.43451+00 PlateOrder-80073 开版订单 80073 的流程实例 2 28 80074 +124 2025-12-17 01:39:55.608425+00 2025-12-17 01:39:55.608429+00 PlateOrder-80075 开版订单 80075 的流程实例 2 28 80075 +127 2025-12-17 01:36:09.434505+00 2025-12-17 01:36:09.43451+00 PlateOrder-80073 开版订单 80073 的流程实例 2 28 80076 +128 2025-12-17 08:27:19.898198+00 2025-12-17 08:27:19.898205+00 PlateOrder-80077 开版订单 80077 的流程实例 2 28 80077 +\. + + +-- +-- 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 +2025-12-11 10:14:43.528993+00 2025-12-11 10:14:46.570884+00 3 2025-12-11 -500.00 2 3 1 1 1 \N 0.00 +2025-12-12 09:36:41.749645+00 2025-12-12 09:36:45.755613+00 4 2025-12-12 5000.00 2 809 1 1 \N \N 0.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 +2025-12-10 05:58:49.958159+00 2025-12-10 05:58:53.447169+00 3 2025-12-10 1 2 809 1 1 5 +2025-12-11 08:57:03.857553+00 2025-12-11 08:57:07.666735+00 4 2025-12-11 1 2 809 1 1 5 +2025-12-11 08:57:50.283486+00 2025-12-11 08:57:53.287179+00 5 2025-12-11 1 2 809 1 1 5 +2025-12-11 08:58:55.930842+00 2025-12-11 08:59:03.252747+00 6 2025-12-11 1 2 809 1 1 5 +2025-12-11 09:00:18.466629+00 2025-12-11 09:00:28.096865+00 7 2025-12-11 1 2 809 1 1 3 +2025-12-11 09:01:42.911895+00 2025-12-11 09:09:08.748837+00 8 2025-12-11 1 2 809 1 1 3 +2025-12-11 10:09:37.883441+00 2025-12-11 10:10:00.362479+00 9 2025-12-11 1 2 3 1 1 3 +2025-12-12 05:16:02.505742+00 2025-12-12 06:58:04.373784+00 11 2025-12-12 1 2 809 1 1 3 +2025-12-12 07:03:26.729519+00 2025-12-12 07:03:40.977113+00 12 2025-12-12 1 2 809 1 1 3 +2025-12-11 10:35:17.885678+00 2025-12-12 07:54:13.446977+00 10 2025-12-11 1 2 809 1 1 5 +2025-12-12 07:55:46.673554+00 2025-12-12 07:56:07.19091+00 13 2025-12-12 1 2 809 1 1 3 +2025-12-12 12:22:17.289661+00 2025-12-12 12:22:17.289669+00 14 2025-12-12 1 1 809 1 1 5 +2025-12-12 12:24:38.29782+00 2025-12-12 12:26:32.471842+00 15 2025-12-12 1 2 809 1 1 3 +\. + + +-- +-- 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, printing_job_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 \N +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 \N +2025-12-10 05:58:49.958859+00 2025-12-10 05:58:49.958863+00 3 0.00 457.00 米 0.00 \N 1 \N 2799 3 \N +2025-12-11 08:57:03.858266+00 2025-12-11 08:57:03.858271+00 4 0.00 95克纬弹 50.00 米 1.5米 0.00 \N 1 \N PO-22 来自生产订单: PO-22 2800 4 18 +2025-12-11 08:57:50.28413+00 2025-12-11 08:57:50.284134+00 5 0.00 95克纬弹 80.00 米 1.5米 0.00 \N 3 \N PO-22 来自生产订单: PO-22 2800 5 18 +2025-12-11 08:58:55.93148+00 2025-12-11 08:58:55.931484+00 6 0.00 95克纬弹 80.00 米 1.5米 0.00 \N 3 \N PO-22 来自生产订单: PO-22 2800 6 18 +2025-12-11 09:00:18.467241+00 2025-12-11 09:00:18.467245+00 7 0.00 95克纬弹 60.00 米 1.5米 0.00 10,50 2 \N PO-22 来自生产订单: PO-22 2800 7 18 +2025-12-11 09:01:42.912542+00 2025-12-11 09:01:42.912546+00 8 0.00 95克纬弹 20.00 米 1.5米 0.00 10,10 2 \N PO-22 来自生产订单: PO-22 2800 8 18 +2025-12-11 10:09:37.884699+00 2025-12-11 10:09:37.884709+00 9 2116.00 1.00 米 0.00 1 1 \N 2800 9 \N +2025-12-11 10:35:17.886857+00 2025-12-11 10:35:17.886863+00 10 0.00 95克纬弹 15.00 米 1.5米 0.00 \N 1 \N PO-22 来自生产订单: PO-22 2800 10 18 +2025-12-12 05:32:50.280964+00 2025-12-12 05:32:50.280969+00 15 10.00 95克纬弹 1368.00 米 1.5米 0.00 456,456,456 3 \N PO-22 来自生产订单: PO-22 2800 11 \N +2025-12-12 05:32:50.280992+00 2025-12-12 05:32:50.280994+00 16 20.00 四面弹. 1368.00 米 1.5米 0.00 456,456,456 3 \N PO-20 来自生产订单: PO-20 2799 11 \N +2025-12-12 07:03:26.730162+00 2025-12-12 07:03:26.730165+00 17 20.00 220.00 米 0.00 100,120 2 \N 2800 12 \N +2025-12-12 07:03:26.730186+00 2025-12-12 07:03:26.730188+00 18 10.00 200.00 米 0.00 200 1 \N 2799 12 \N +2025-12-12 07:56:03.136839+00 2025-12-12 07:56:03.136845+00 20 20.00 95克纬弹 250.00 米 1.5米 0.00 100,150 2 \N PO-22 来自生产订单: PO-22 2800 13 \N +2025-12-12 12:22:17.290341+00 2025-12-12 12:22:17.290346+00 21 0.00 95克纬弹 912.00 米 1.5米 0.00 \N 2 \N PO-22 来自生产订单: PO-22,待出数量: -5 2800 14 18 +2025-12-12 12:26:13.220846+00 2025-12-12 12:26:13.220851+00 23 2.00 95克纬弹 456.00 米 1.5米 0.00 456 1 \N PO-22 来自生产订单: PO-22,待出数量: -917 2800 15 \N +\. + + +-- +-- 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 +2025-12-12 03:08:41.514772+00 2025-12-12 03:08:41.514781+00 9 2025-12-12 1 809 1 1 \N 3 +2025-12-12 03:08:56.374493+00 2025-12-12 03:08:56.374506+00 10 2025-12-12 1 809 1 1 \N 3 +\. + + +-- +-- 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 +2025-12-12 03:08:41.515763+00 2025-12-12 03:08:41.515769+00 9 0.00 50.00 1 0.00 50 1 \N 2800 9 +2025-12-12 03:08:56.375707+00 2025-12-12 03:08:56.375715+00 10 0.00 55.00 1 0.00 23,32 2 \N 2800 10 +\. + + +-- +-- 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 +469 2025-12-15 06:43:07.969515+00 40 15826351321 2 [{"changed": {"fields": ["password"]}}] 4 1 +470 2025-12-15 06:45:51.849072+00 40 15826351321 2 [{"changed": {"fields": ["password"]}}] 4 1 +471 2025-12-15 06:50:37.564616+00 65 15217923367 2 [{"changed": {"fields": ["password"]}}] 4 1 +472 2025-12-15 06:56:38.597698+00 4 设计组 1 [{"added": {}}] 3 1 +473 2025-12-15 06:57:01.546498+00 32 13066304456 2 [{"changed": {"fields": ["Groups"]}}] 4 1 +474 2025-12-15 06:57:58.887079+00 51 13250208813 2 [{"changed": {"fields": ["Groups"]}}] 4 1 +475 2025-12-15 06:58:04.158894+00 49 13377678673 2 [{"changed": {"fields": ["Groups"]}}] 4 1 +476 2025-12-15 06:58:10.313908+00 45 13430306747 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +477 2025-12-15 06:58:39.443015+00 40 15826351321 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +478 2025-12-15 06:58:58.588678+00 48 19958760068 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +479 2025-12-15 06:59:07.393186+00 34 19886187951 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +480 2025-12-15 06:59:29.715969+00 31 18975997125 2 [{"changed": {"fields": ["Groups"]}}] 4 1 +481 2025-12-15 06:59:39.039213+00 33 18819215091 2 [{"changed": {"fields": ["Groups"]}}] 4 1 +482 2025-12-15 06:59:52.968875+00 38 18774480424 2 [{"changed": {"fields": ["Groups"]}}] 4 1 +483 2025-12-15 07:00:01.137974+00 65 15217923367 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +484 2025-12-15 07:00:07.279129+00 56 13574999921 2 [{"changed": {"fields": ["Groups"]}}] 4 1 +485 2025-12-15 07:00:29.212704+00 61 15688226201 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +486 2025-12-15 07:00:42.358398+00 42 17872123771 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +487 2025-12-15 07:00:53.172512+00 58 15889803652 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +488 2025-12-15 07:00:57.67173+00 62 15170331713 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +489 2025-12-15 07:01:02.667713+00 37 17620876714 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +490 2025-12-15 07:01:07.955888+00 53 17820135077 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +491 2025-12-15 07:01:21.127261+00 50 18674036273 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +492 2025-12-15 07:01:26.376629+00 39 15521071458 2 [{"changed": {"fields": ["Groups"]}}] 4 1 +493 2025-12-15 07:01:37.855746+00 59 18376993583 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +494 2025-12-15 07:02:26.821817+00 29 18218677806 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +495 2025-12-15 07:03:21.498656+00 47 17796077643 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +496 2025-12-15 07:03:45.933216+00 41 15579632458 2 [{"changed": {"fields": ["Groups"]}}] 4 1 +497 2025-12-15 07:03:54.529361+00 63 15631237370 2 [{"changed": {"fields": ["Groups"]}}] 4 1 +498 2025-12-15 07:04:04.561779+00 55 15918642634 2 [{"changed": {"fields": ["Groups"]}}] 4 1 +499 2025-12-15 07:04:18.314316+00 66 18502084425 2 [{"changed": {"fields": ["Groups"]}}] 4 1 +500 2025-12-15 07:05:37.432937+00 54 18062290898 2 [{"changed": {"fields": ["Groups"]}}] 4 1 +501 2025-12-15 07:06:29.769967+00 36 18334106374 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 +502 2025-12-15 07:06:46.87566+00 28 18257317991 2 [{"changed": {"fields": ["Groups"]}}] 4 1 +503 2025-12-15 07:40:08.969835+00 51 钟永盛 2 [{"changed": {"fields": ["Username", "First name"]}}] 4 1 +504 2025-12-15 07:40:18.476778+00 49 夏志明 2 [{"changed": {"fields": ["Username", "First name"]}}] 4 1 +505 2025-12-15 07:40:27.756202+00 56 熊思晴 2 [{"changed": {"fields": ["Username", "First name"]}}] 4 1 +506 2025-12-15 07:40:36.360002+00 65 夏帅 2 [{"changed": {"fields": ["Username", "First name", "Last login"]}}] 4 1 +507 2025-12-15 07:41:01.144618+00 40 李兴 3 8 1 +508 2025-12-15 07:41:10.76842+00 41 15579632458 3 4 1 +509 2025-12-15 07:41:19.879228+00 61 徐佩文 2 [{"changed": {"fields": ["Username", "First name"]}}] 4 1 +510 2025-12-15 07:41:28.588288+00 60 陈晓惠 2 [{"changed": {"fields": ["Username", "First name", "Last login"]}}] 4 1 +511 2025-12-15 07:41:37.204369+00 58 陈达城 2 [{"changed": {"fields": ["Username", "First name"]}}] 4 1 +512 2025-12-15 07:42:02.584317+00 63 陈海 3 8 1 +513 2025-12-15 07:42:25.199665+00 64 17666594904 3 4 1 +514 2025-12-15 07:42:34.672238+00 57 夏佳佑 2 [{"changed": {"fields": ["Username", "First name", "Last login"]}}] 4 1 +515 2025-12-15 07:42:52.458832+00 53 秦焌 3 8 1 +516 2025-12-15 07:43:09.315414+00 54 18062290898 3 4 1 +517 2025-12-15 07:43:17.743556+00 48 谢芳盛 2 [{"changed": {"fields": ["Username", "First name"]}}] 4 1 +518 2025-12-15 07:43:54.104628+00 61 徐佩文 2 [{"changed": {"fields": ["Groups"]}}] 4 1 +519 2025-12-15 08:02:15.381259+00 66 陈海 2 [{"changed": {"fields": ["password"]}}] 4 1 +520 2025-12-15 09:48:02.962782+00 88 电脑位置 1 [{"added": {}}] 31 1 +521 2025-12-15 09:50:24.929368+00 13 找图开发完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +522 2025-12-15 09:50:35.242924+00 7 画图完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +523 2025-12-16 05:30:54.925036+00 38 马锦文 2 [{"changed": {"fields": ["password"]}}] 4 1 +524 2025-12-16 08:44:09.963562+00 89 开始时间 1 [{"added": {}}] 31 1 +525 2025-12-16 08:44:14.979334+00 89 开始时间 2 [{"changed": {"fields": ["\\u53c2\\u6570\\u503c"]}}] 31 1 +526 2025-12-16 08:44:57.582659+00 90 完成时间 1 [{"added": {}}] 31 1 +527 2025-12-16 08:45:02.253311+00 91 状态 1 [{"added": {}}] 31 1 +528 2025-12-16 08:45:18.571755+00 92 设计师名称 1 [{"added": {}}] 31 1 +529 2025-12-16 08:45:24.163375+00 93 描述 1 [{"added": {}}] 31 1 +530 2025-12-16 08:45:30.143549+00 94 附件 1 [{"added": {}}] 31 1 +531 2025-12-16 08:45:39.566192+00 95 完成数量 1 [{"added": {}}] 31 1 +532 2025-12-16 08:46:38.348543+00 7 画图完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +533 2025-12-16 08:47:24.856485+00 7 画图完成 2 [] 29 1 +534 2025-12-16 08:47:58.213883+00 96 开版编号 1 [{"added": {}}] 31 1 +535 2025-12-16 08:49:01.578727+00 8 调色完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +536 2025-12-16 08:50:06.422388+00 9 套样完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +537 2025-12-16 08:50:17.795753+00 10 改图完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +538 2025-12-16 08:50:24.941825+00 10 改图完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +539 2025-12-16 08:52:19.134043+00 11 P图完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +540 2025-12-16 08:52:37.849459+00 12 配色完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +541 2025-12-16 08:52:48.215387+00 7 画图完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +542 2025-12-16 08:53:38.204123+00 13 找图开发完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +543 2025-12-16 08:54:58.756298+00 15 画图中 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +544 2025-12-16 08:55:46.703366+00 16 调色中 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +545 2025-12-16 08:55:57.554922+00 17 套样中 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +546 2025-12-16 08:58:05.654403+00 18 配色中 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +547 2025-12-16 08:58:26.130487+00 19 找图开发中 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +548 2025-12-16 08:58:40.77101+00 20 P图中 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +549 2025-12-16 08:58:50.090809+00 21 改图中 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 +550 2025-12-17 01:38:25.844761+00 15 画图中 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 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 +55 printing salesorderprintingjobrelation +56 printing printingjobbatchadvancerecord +57 api_v1 mdyplateorderstaging +\. + + +-- +-- 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 +112 business 0017_salesorderitem_printing_job 2025-12-11 04:49:33.669602+00 +113 printing 0022_printingjob_work_state 2025-12-11 04:49:33.679727+00 +114 business 0018_alter_salesorderitem_printing_job 2025-12-11 04:51:19.507695+00 +115 printing 0023_alter_printingjob_work_state 2025-12-11 05:17:08.055078+00 +116 business 0019_alter_salesorderitem_quantity_of_rolls 2025-12-11 09:13:45.119221+00 +117 printing 0024_printingjobbatchadvancerecord 2025-12-12 10:04:20.098548+00 +118 printing 0025_plateorder_created_by 2025-12-16 12:00:09.336706+00 +120 api_v1 0004_mdy_plate_order_staging 2025-12-17 07:51:43.42866+00 +121 printing 0026_plateorder_printingjob_original_id 2025-12-17 11:45:28.526043+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:1vVhg6:UeC-6LMSpQpm0Jgb85ofxEtWc3rMVPRZOcDydLvAtIg 2025-12-31 02:54:14.651843+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 +0qv1nnfydmil7knzisuz8cbfc9a92fqv .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:1vTy0Y:Zq2F6-PesqhUAssGhFddMRaYQBYO_TUdmxQuEQbkacU 2025-12-26 07:56:10.117032+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 +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 +twcf48q580n6we49gc7fnusbl1r9o5an .eJzNnEtzpDYQgP_K1px3bV4SYo-555hTnHIJITysGSA8vOWk9r9HEjMekHsYIUjBZRlDqyV9LVpqqdl_D8-0a4_PXcPr5yw5fD-4h6_DezFlr7yQD5IftHgpH1hZtHUWP0iRh_PT5uH3MuH5b2fZkYIjbY6iNCeYYYJjzDGLcJiQmIZ-gFLuY-ZGqedHKPQJYtiPvSgUV85934koJg5PXA9JpSdedI3Q9ee_T4eCnvjT4fuXp8PTUxdwl4oL8qgrLph68oJCFD4dvgqJTLS5l01p_SWl31hWs5z3D0-y5Y18DKhNiNQX-1zq8xEy0NfVef_skSanrHiMuyYreNM8VvRddKAt64TXj70sTZI_jMSF4LlIXHOasLo7xbfabIfi19cvi7v_6y_5mGeJfOo6jgcpTVEkLhGJEqVUVSFaKy8kjh35V7oMdExzWjDOjmK88pozgdCAN1RqG-yrENJt4YM1RbHUxqNAXlCAteoXGKHpqirPeH3GamAAvcRG8Bch0akHQBUopp5spueH6-FmXdOWpzm49RKb4LZloXNGgG6MfLye9xYegWeVsfceiW-Cdnb3daYYUBq5TBqKJF6yxozY1cLdNtx4ShzJb0J1NgCdamimVDQTO9JwIWd4NcZZy09zOasye2E9B4tOntytInIcp_8rXHF017zt6mLuGB-W2gH92Wh0-tHMKlYe_gOcM18CveTujGH9RrgOVBNSuhHy1pg1G5rzxnToD4S3gTy36zpP10zpaoP7CsxwTGsF9kJ5yRiGYsxxFet6dYVwnkv_VGQH3Jf6cxeKJ6eqWHPIz3fmYLHdmcH-LQj06RZyRQFP40EvkkBeQurES3fJhnBQnMoYjjDsWti5aWnL07z8-WG6Mv7BWXvbxDdLzLGuHRcQsR0L3Z5Q7IUSLl0l8UJVhc9U5IxCZxFn9auitaipnfJmN0tswtmWhc4ZisaGDROX1FVhtB95izhXdcmkJzIAfBHdhKxt73WyULQ11k08Iq0WOnG0fAQbD9w9UDXvuU4ViqJu6xZtd0Nf3nRQsMboLcQsMGMEK_Gd8Z7DRKPvQfFS6MXqDRFT7rVekmKm-aWlpxvaMM7Llw8XfO-I437RTWz0f5DTLQYtg6bqXdVG8tdM2wyK7M4m9lbwdDcGbdcjX9kah4l8O8NYdSYMHJNwYWJ1OlZ72Q1PnXRxTFLVWdFmxcvHjx9lfNvQoLS5jW3p3AVtS0S3MXjSNaqJ9Gc9lgH4J353ou8b8jsgbs5BZwy-NqmKIEMvICsyzoUvMgZ8Fd6GriUBnS7Wb0BbHChMZcQRkqCP24NATVORyRJ2Moamah8mYIoDC3uH7pmE5p_2SmiTseesSEu5Dks61jJhIDH-3yc2Sm6XmWFTSzZgHG3HQzchFIWMdc8z4X3Wcxjvge0MVRpbKBYJuHqfEY_8Ndn-pDU_ll0zldcASW_E146BxteHog0gPWUR2EvOjRHXD-FtsM7tus4TigWQn6oUt9Cn_UK3T5nwbPYuB6Te-DETcm1Ni6Yq6_ZuEtrdopsgt6Wjk4fOaFCAVF7beSPPCZiycZAM_H1IFs5__FTl5Tvn7Xtl5jpGBbZhvgoX3QLgUmZc01q--oJwFu9dsLb21GDs06cOnjPbROys4qoU82V0T1xmJRRtw1u1-DaBrJfZhrUlD501GAONda81ki_cZkHeBV3rkQyeO41yNFeje8k_NaL7IbwNXUsCOl3otAmlXPp07IdKd6oWjcjFVkkKV2B_dxl7zYqqMxu9A_FtCFtS0AlD8V6IPAJbT97E6kiA2SWFXAHKT11EVJdmudnEN5TfhPg6VHT-UEx49vUoclb1Hwl_yxhXP02AD8Q34W1LQSMcQFHheWVOUoLXXD1fQhHTxfNQfhvGlhx0xmAeX5Aq3UQtyEnifcy3ixjHtHiljJWd4TJjKL8JY1sOOmP9TMgDJ8d-DwXFap0eYhWOqvPbZWdCrsKh5pfrRs3Co7-Svfb_mn13dqvADKNawoE4LwOi2xaMhwattcWbFW_qi8iJjWxdcBucxn3VyYHRzahhyI1VYo7cZFw0TNOa838mszl00c1Zzum9ThaMbMa6R19aLjsb_vR2J7ylWT7DHZwL7IG5JRfdAvcd_DkKCF1sM6sOEDYFrZpj-XlKLbo83xamcRd1fES_Ae3pkZgG6qLOdlBAmIqqSL-NGwDNb2SdzTHjefKN5u3duXMYN8AdkKENbCH5nwKoyOf2e3AVMR_5K3T6ToA01VHNLAhMEuMMyDVrLkqab6x8mUD2UpdddYdZL7M5NKOO6shcfWiDYWRKUO-GVGzqRTJfhTipyWfTkyfvjlz6BKmn8hEQUR8i89TG69Mqe35zH7sqL2nCk-nNAEh4hvksaYDnlXYEdCtC_uicwId9rILfwFGjLFbLzGUL7jO-hLa0eS_YXc4fgpswXoeDThxaZ5_n50jYQ5kxUq_3KEUGY5UOa7kUP_M8Je_XxJ-mpS-TpxFThbYxyJqYdLsg_YYIdg-__gMzvoWb:1vVmKW:5zKJrk_1Cd2GnmHnxrDPVNCeh4sJiESO7KX9zk1KUmQ 2025-12-31 07:52:16.217937+00 +k6es86irqfs3i5m09ih87pfk6itl0ric .eJzNnEtzpDYQgP_K1px3bV4SYo-555hTnHIJITysGSA8vOWk9r9HEjMekHsYIUjBZRlDqyV9LVpqqdl_D8-0a4_PXcPr5yw5fD-4h6_DezFlr7yQD5IftHgpH1hZtHUWP0iRh_PT5uH3MuH5b2fZkYIjbY6iNCeYYYJjzDGLcJiQmIZ-gFLuY-ZGqedHKPQJYtiPvSgUV85934koJg5PXA9JpSdedI3Q9ee_T4eCnvjT4fuXp8PTUxdwl4oL8qgrLph68oJCFD4dvgqJTLS5l01p_SWl31hWs5z3D0-y5Y18DKhNiNQX-1zq8xEy0NfVef_skSanrHiMuyYreNM8VvRddKAt64TXj70sTZI_jMSF4LlIXHOasLo7xbfabIfi19cvi7v_6y_5mGeJfOo6jgcpTVEkLhGJEqVUVSFaKy8kjh35V7oMdExzWjDOjmK88pozgdCAN1RqG-yrENJt4YM1RbHUxqNAXlCAteoXGKHpqirPeH3GamAAvcRG8Bch0akHQBUopp5spueH6-FmXdOWpzm49RKb4LZloXNGgG6MfLye9xYegWeVsfceiW-Cdnb3daYYUBq5TBqKJF6yxozY1cLdNtx4ShzJb0J1NgCdamimVDQTO9JwIWd4NcZZy09zOasye2E9B4tOntytInIcp_8rXHF017zt6mLuGB-W2gH92Wh0-tHMKlYe_gOcM18CveTujGH9RrgOVBNSuhHy1pg1G5rzxnToD4S3gTy36zpP10zpaoP7CsxwTGsF9kJ5yRiGYsxxFet6dYVwnkv_VGQH3Jf6cxeKJ6eqWHPIz3fmYLHdmcH-LQj06RZyRQFP40EvkkBeQurES3fJhnBQnMoYjjDsWti5aWnL07z8-WG6Mv7BWXvbxDdLzLGuHRcQsR0L3Z5Q7IUSLl0l8UJVhc9U5IxCZxFn9auitaipnfJmN0tswtmWhc4ZisaGDROX1FVhtB95izhXdcmkJzIAfBHdhKxt73WyULQ11k08Iq0WOnG0fAQbD9w9UDXvuU4ViqJu6xZtd0Nf3nRQsMboLcQsMGMEK_Gd8Z7DRKPvQfFS6MXqDRFT7rVekmKm-aWlpxvaMM7Llw8XfO-I437RTWz0f5DTLQYtg6bqXdVG8tdM2wyK7M4m9lbwdDcGbdcjX9kah4l8O8NYdSYMHJNwYWJ1OlZ72Q1PnXRxTFLVWdFmxcvHjx9lfNvQoLS5jW3p3AVtS0S3MXjSNaqJ9Gc9lgH4J353ou8b8jsgbs5BZwy-NqmKIEMvICsyzoUvMgZ8Fd6GriUBnS7Wb0BbHChMZcQRkqCP24NATVORyRJ2Moamah8mYIoDC3uH7pmE5p_2SmiTseesSEu5Dks61jJhIDH-3yc2Sm6XmWFTSzZgHG3HQzchFIWMdc8z4X3Wcxjvge0MVRpbKBYJuHqfEY_8Ndn-pDU_ll0zldcASW_E146BxteHog0gPWUR2EvOjRHXD-FtsM7tus4TigWQn6oUt9Cn_UK3T5nwbPYuB6Te-DETcm1Ni6Yq6_ZuEtrdopsgt6Wjk4fOaFCAVF7beSPPCZiycZAM_H1IFs5__FTl5Tvn7Xtl5jpGBbZhvgoX3QLgUmZc01q--oJwFu9dsLb21GDs06cOnjPbROys4qoU82V0T1xmJRRtw1u1-DaBrJfZhrUlD501GAONda81ki_cZkHeBV3rkQyeO41yNFeje8k_NaL7IbwNXUsCOl3otAmlXPp07IdKd6oWjcjFVkkKV2B_dxl7zYqqMxu9A_FtCFtS0AlD8V6IPAJbT97E6kiA2SWFXAHKT11EVJdmudnEN5TfhPg6VHT-UEx49vUoclb1Hwl_yxhXP02AD8Q34W1LQSMcQFHheWVOUoLXXD1fQhHTxfNQfhvGlhx0xmAeX5Aq3UQtyEnifcy3ixjHtHiljJWd4TJjKL8JY1sOOmP9TMgDJ8d-DwXFap0eYhWOqvPbZWdCrsKh5pfrRs3Co7-Svfb_mn13dqvADKNawoE4LwOi2xaMhwattcWbFW_qi8iJjWxdcBucxn3VyYHRzahhyI1VYo7cZFw0TNOa838mszl00c1Zzum9ThaMbMa6R19aLjsb_vR2J7ylWT7DHZwL7IG5JRfdAvcd_DkKCF1sM6sOEDYFrZpj-XlKLbo83xamcRd1fES_Ae3pkZgG6qLOdlBAmIqqSL-NGwDNb2SdzTHjefKN5u3duXMYN8AdkKENbCH5nwKoyOf2e3AVMR_5K3T6ToA01VHNLAhMEuMMyDVrLkqab6x8mUD2UpdddYdZL7M5NKOO6shcfWiDYWRKUO-GVGzqRTJfhTipyWfTkyfvjlz6BKmn8hEQUR8i89TG69Mqe35zH7sqL2nCk-nNAEh4hvksaYDnlXYEdCtC_uicwId9rILfwFGjLFbLzGUL7jO-hLa0eS_YXc4fgpswXoeDThxaZ5_n50jYQ5kxUq_3KEUGY5UOa7kUP_M8Je_XxJ-mpS-TpxFThbYxyJqYdLsg_YYIdg-__gMzvoWb:1vVqHA:xu9zJ9Qv3LLzxuBhg1Xc_ynTTOeKTBp09AcLKoybcZA 2025-12-31 12:05:04.530244+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, created_by_id, original_id) FROM stdin; +80058 2025-12-15 10:32:35.893965+00 2025-12-15 10:32:35.893972+00 \N 测试 2025-12-15 10:32:24+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f \N \N \N \N 2025-12-14 16:00:00+00 2025-12-16 10:32:24+00 95克纬弹 1.5米 \N 定位 \N \N \N f \N 98 807 60 65 f 6 客户布 \N \N 1 \N \N +80057 2025-12-15 10:32:17.848595+00 2025-12-15 10:32:17.848605+00 \N 测试 2025-12-15 10:32:05+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f \N \N \N \N 2025-12-14 16:00:00+00 2025-12-16 10:32:05+00 95克纬弹 1.5米 \N 定位 \N \N \N f \N 97 807 60 65 f 6 客户布 \N \N 1 \N \N +80055 2025-12-15 10:23:26.598369+00 2025-12-15 10:23:26.598376+00 \N 测试 2025-12-15 10:23:02+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f \N \N \N \N 2025-12-14 16:00:00+00 2025-12-16 10:23:02+00 95克纬弹 1.5米 \N 定位 \N \N \N f \N 95 807 60 65 f 6 客户布 \N \N 1 \N \N +80053 2025-12-15 09:55:07.098801+00 2025-12-15 09:55:07.098807+00 \N 测试 2025-12-15 09:54:53+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f \N \N \N \N 2025-12-14 16:00:00+00 2025-12-16 09:54:53+00 95克纬弹 1.5米 \N 定位 \N \N \N f \N 93 807 60 65 f 6 客户布 \N \N 1 \N \N +80041 2025-12-15 08:31:55.380556+00 2025-12-15 08:31:55.380566+00 \N 首版 2025-12-15 08:27:52+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/296b5a57a95d4e8b9aa15dce3c3c3e0b.png", "name": "周焕光2025-12-15.1.png", "path": "uploads/2025/12/15/296b5a57a95d4e8b9aa15dce3c3c3e0b.png", "size": 1096558, "file_id": 86, "uploaded_at": "2025-12-15T08:29:54.791218+00:00", "content_type": "image/png"}] 加急 用雪纺打2米出来 加急起版 幅宽150 加够6个色 \N 加急 龙潭 \N f 画图难度1 调色难度1 \N \N 2025-12-14 16:00:00+00 2025-12-16 08:27:52+00 消光破卡 1.5米 \N 匹布 \N \N \N f \N 81 690 \N \N f 2 \N \N 周焕光2025-12-15.1.png 3 \N \N +80037 2025-12-15 03:54:01.320188+00 2025-12-15 03:54:01.320195+00 \N 首版 2025-12-15 03:52:02+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/851e079955b840f882e17c0c10773fe4.jpg", "name": "张晓鹏2025-12-15.2.jpg", "path": "uploads/2025/12/15/851e079955b840f882e17c0c10773fe4.jpg", "size": 180072, "file_id": 85, "uploaded_at": "2025-12-15T03:52:20.323119+00:00", "content_type": "image/jpeg"}] 图片起板 加急 布料玲珑麻 陈旋开过 画图谢芳盛 调色 陈达城 款号78256,用LWQ15调色 加急 \N f 画图难度1 调色难度1 \N \N 2025-12-14 16:00:00+00 2025-12-16 03:52:02+00 玲珑麻 1.5米 \N 匹布 \N \N \N f \N 77 6 \N \N f 2 客户布 \N 张晓鹏2025-12-15.2.jpg 1 \N \N +80039 2025-12-15 07:56:44.31893+00 2025-12-15 07:56:44.318937+00 \N 测试 2025-12-15 07:56:03+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f \N \N \N \N 2025-12-14 16:00:00+00 2025-12-16 07:56:03+00 95克纬弹 1.5米 \N 定位 \N \N \N f \N 79 807 \N \N f 8 客户布 \N \N 0 \N \N +80042 2025-12-15 08:34:09.752352+00 2025-12-15 08:37:37.29545+00 80042 首版 2025-12-15 08:33:21+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/b7d4c53f852d4cfdb675d1acc27a7efd.png", "name": "周焕光2025-12-15.2.png", "path": "uploads/2025/12/15/b7d4c53f852d4cfdb675d1acc27a7efd.png", "size": 807995, "file_id": 87, "uploaded_at": "2025-12-15T08:33:37.207090+00:00", "content_type": "image/png"}, {"url": "https://image.yuwen.cloud/uploads/2025/12/15/368cc19f6af54cffab1d84cb77de0a57.png", "name": "周焕光2025-12-15.2 (2).png", "path": "uploads/2025/12/15/368cc19f6af54cffab1d84cb77de0a57.png", "size": 1599765, "file_id": 88, "uploaded_at": "2025-12-15T08:33:44.852269+00:00", "content_type": "image/png"}] 图片起板消光破卡起版 加急 7003# 群里有视频 加够6个色 \N 加急 龙潭 \N f 画图难度1 调色难度1 \N \N 2025-12-14 16:00:00+00 2025-12-16 08:33:21+00 消光破卡 1.5米 \N 匹布 \N \N \N f \N 82 690 \N \N f 2 客户布 \N 周焕光2025-12-15.2.png 3 \N \N +80044 2025-12-15 08:40:39.35516+00 2025-12-15 08:40:39.355168+00 \N 首版 2025-12-15 08:37:47+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/18bfb7f1c3434e78ad4ccf22de0289b1.png", "name": "周焕光2025-12-15.4.png", "path": "uploads/2025/12/15/18bfb7f1c3434e78ad4ccf22de0289b1.png", "size": 616061, "file_id": 91, "uploaded_at": "2025-12-15T08:38:05.354185+00:00", "content_type": "image/png"}, {"url": "https://image.yuwen.cloud/uploads/2025/12/15/dae4b5e3402545e49b746fa30aa42ea7.png", "name": "周焕光2025-12-15.4 (2).png", "path": "uploads/2025/12/15/dae4b5e3402545e49b746fa30aa42ea7.png", "size": 1044345, "file_id": 93, "uploaded_at": "2025-12-15T08:38:18.338584+00:00", "content_type": "image/png"}] 图片起板 加急起版 雪纺 幅宽150 7053# 群里有视频 加够6个色 \N 加急 龙潭 \N f 画图难度1 调色难度1 \N \N 2025-12-14 16:00:00+00 2025-12-16 08:37:47+00 珍珠雪纺 1.5米 \N 定位 \N \N \N f \N 84 690 \N \N f 2 客户布 \N 周焕光2025-12-15.4.png 1 \N \N +80043 2025-12-15 08:37:13.885094+00 2025-12-15 08:40:58.519845+00 80043 首版 2025-12-15 08:34:07+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/93e90d4010db4cc7aafbefef934cefd7.png", "name": "周焕光2025-12-15.3.png", "path": "uploads/2025/12/15/93e90d4010db4cc7aafbefef934cefd7.png", "size": 1756504, "file_id": 89, "uploaded_at": "2025-12-15T08:34:35.938889+00:00", "content_type": "image/png"}, {"url": "https://image.yuwen.cloud/uploads/2025/12/15/6fcbb036fd2d45e38b19f30383a9cee2.png", "name": "周焕光2025-12-15.3 (2).png", "path": "uploads/2025/12/15/6fcbb036fd2d45e38b19f30383a9cee2.png", "size": 781021, "file_id": 90, "uploaded_at": "2025-12-15T08:34:40.814576+00:00", "content_type": "image/png"}] 图片起板 加急起版 雪纺 幅宽150 6998# 群里有视频 加够6个色 \N 加急 龙潭 \N f 画图难度1 调色难度1 \N \N 2025-12-14 16:00:00+00 2025-12-16 08:34:07+00 珍珠雪纺 1.5米 \N 定位 \N \N \N f \N 83 690 \N \N f 2 \N \N 周焕光2025-12-15.3.png 1 \N \N +80045 2025-12-15 08:42:51.895725+00 2025-12-15 08:42:51.895732+00 \N 首版 2025-12-15 08:41:30+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/296f4776ce604cfd84a6cb347d8e4b70.png", "name": "周焕光2025-12-15.5.png", "path": "uploads/2025/12/15/296f4776ce604cfd84a6cb347d8e4b70.png", "size": 1366256, "file_id": 94, "uploaded_at": "2025-12-15T08:42:01.844344+00:00", "content_type": "image/png"}, {"url": "https://image.yuwen.cloud/uploads/2025/12/15/45db395d203449f79ab5d7b5061dd8d2.png", "name": "周焕光2025-12-15.5 (2).png", "path": "uploads/2025/12/15/45db395d203449f79ab5d7b5061dd8d2.png", "size": 241045, "file_id": 95, "uploaded_at": "2025-12-15T08:42:02.556476+00:00", "content_type": "image/png"}] 图片起板 加急起版 雪纺 幅宽150 7055# 群里有视频 加够6个色 \N 加急 龙潭 \N f 画图难度1 调色难度1 \N \N 2025-12-14 16:00:00+00 2025-12-16 08:41:30+00 珍珠雪纺 1.5米 \N 定位 \N \N \N f \N 85 690 \N \N f 2 客户布 \N 周焕光2025-12-15.5.png 1 \N \N +80051 2025-12-15 09:54:10.421774+00 2025-12-15 09:54:10.42178+00 \N 测试 2025-12-15 09:53:57+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f \N \N \N \N 2025-12-14 16:00:00+00 2025-12-16 09:53:57+00 95克纬弹 1.5米 \N 定位 \N \N \N f \N 91 807 60 65 f 6 客户布 \N \N 0 \N \N +80061 2025-12-15 14:15:30.0306+00 2025-12-15 14:15:30.030608+00 \N 修改单 2025-12-15 14:13:53+00 文件开版 [] \N \N 加急 龙潭 \N f 画图难度1 调色难度1 套样难度1 难度1 2025-12-14 16:00:00+00 2025-12-16 14:13:53+00 190克罗马布 1.51米 \N 定位 \N \N 待审批 f \N 102 809 \N \N f 8 客户布 \N \N 0 \N \N +80040 2025-12-15 08:23:04.945325+00 2025-12-15 08:23:04.945333+00 \N 测试 2025-12-15 08:22:47+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f \N \N \N \N 2025-12-14 16:00:00+00 2025-12-16 08:22:47+00 95克纬弹 1.5米 \N 定位 \N \N \N f \N 80 808 \N \N f 4 客户布 \N \N 4 \N \N +80063 2025-12-15 14:36:06.069342+00 2025-12-15 14:36:28.186439+00 \N 修改单 2025-12-15 14:35:53+00 文件开版 [] \N \N 加急 龙潭 \N f 画图难度1 调色难度1 套样难度1 难度1 2025-12-14 16:00:00+00 2025-12-16 14:35:53+00 190克罗马布 1.51米 \N 定位 \N \N 待审批 f \N 105 809 \N \N t 8 客户布 \N \N 0 \N \N +80056 2025-12-15 10:28:16.881341+00 2025-12-15 10:28:16.881348+00 \N 测试 2025-12-15 10:27:57+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f \N \N \N \N 2025-12-14 16:00:00+00 2025-12-16 10:27:57+00 95克纬弹 1.5米 \N 定位 \N \N \N f \N 96 807 60 65 f 6 客户布 \N \N 1 \N \N +80046 2025-12-15 08:44:42.651766+00 2025-12-15 08:44:42.651774+00 \N 首版 2025-12-15 08:43:38+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/7274eca7d001454395d85e4fa65e6917.png", "name": "周焕光2025-12-15.6.png", "path": "uploads/2025/12/15/7274eca7d001454395d85e4fa65e6917.png", "size": 1446348, "file_id": 96, "uploaded_at": "2025-12-15T08:43:58.948355+00:00", "content_type": "image/png"}, {"url": "https://image.yuwen.cloud/uploads/2025/12/15/75f0696f70bb49f899bfc76d9fb95170.png", "name": "周焕光2025-12-15.6 (2).png", "path": "uploads/2025/12/15/75f0696f70bb49f899bfc76d9fb95170.png", "size": 767996, "file_id": 97, "uploaded_at": "2025-12-15T08:44:01.682029+00:00", "content_type": "image/png"}] 图片起板 加急起版 雪纺 幅宽150 7056# 群里有视频 加够6个色 \N 加急 龙潭 \N f 画图难度1 调色难度1 \N \N 2025-12-14 16:00:00+00 2025-12-16 08:43:38+00 珍珠雪纺 1.5米 \N 匹布 \N \N \N f \N 86 690 \N \N f 2 \N \N 周焕光2025-12-15.6.png 3 \N \N +80065 2025-12-15 15:06:02.388934+00 2025-12-16 00:30:59.535139+00 \N 修改单 2025-12-15 15:05:49+00 文件开版 [] \N \N 加急 龙潭 \N f 画图难度1 调色难度1 套样难度1 难度1 2025-12-14 16:00:00+00 2025-12-16 15:05:49+00 190克罗马布 1.51米 \N 定位 \N \N 待审批 f \N 109 809 \N \N t 8 客户布 \N \N 0 \N \N +80036 2025-12-15 03:48:44.647503+00 2025-12-15 03:48:44.647511+00 \N 首版 2025-12-15 03:45:32+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/8a58e9b800e24901b297bc3eac7261d8.jpg", "name": "张晓鹏2025-12-15.1.jpg", "path": "uploads/2025/12/15/8a58e9b800e24901b297bc3eac7261d8.jpg", "size": 140300, "file_id": 84, "uploaded_at": "2025-12-15T03:45:50.774469+00:00", "content_type": "image/jpeg"}] 图片起板 加急 布料玲珑麻 永利开过 画图夏志名 调色高万林 款号80433,用LWQ15调色 加急 \N f 画图难度1 调色难度1 \N \N 2025-12-14 16:00:00+00 2025-12-16 03:45:32+00 玲珑麻 1.5米 \N 匹布 \N \N \N f \N 76 6 \N \N f 2 \N \N 张晓鹏2025-12-15.1.jpg 1 \N \N +80038 2025-12-15 07:55:20.894174+00 2025-12-15 07:55:20.894181+00 \N 测试 2025-12-15 07:54:07+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f \N \N \N \N 2025-12-14 16:00:00+00 2025-12-16 07:54:07+00 95克纬弹 1.5米 \N 定位 \N \N \N f \N 78 807 60 65 f 6 客户布 \N \N 0 \N \N +80069 2025-12-16 00:34:13.191624+00 2025-12-16 00:37:50.532698+00 \N 测试 2025-12-16 00:34:06+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f 画图难度1 调色难度1 套样难度1 难度1 2025-12-15 16:00:00+00 2025-12-17 00:34:06+00 190克罗马布 1.51米 \N 匹布 \N \N \N f \N 114 809 65 64 t 2 客户布 \N \N 0 \N \N +80071 2025-12-16 00:39:13.971436+00 2025-12-16 00:40:53.58501+00 \N 测试 2025-12-16 00:39:10+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f 画图难度1 调色难度1 套样难度1 难度1 2025-12-15 16:00:00+00 2025-12-17 00:39:10+00 190克罗马布 1.51米 \N 匹布 \N \N \N f \N 116 809 65 64 t 2 客户布 \N \N 0 \N \N +80050 2025-12-15 09:53:52.444575+00 2025-12-15 09:53:52.444587+00 \N 测试 2025-12-15 09:53:41+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f \N \N \N \N 2025-12-14 16:00:00+00 2025-12-16 09:53:41+00 95克纬弹 1.5米 \N 定位 \N \N \N f \N 90 807 60 65 f 6 客户布 \N \N 1 \N \N +80059 2025-12-15 10:33:18.819648+00 2025-12-15 10:33:18.819659+00 \N 测试 2025-12-15 10:33:07+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f \N \N \N \N 2025-12-14 16:00:00+00 2025-12-16 10:33:07+00 95克纬弹 1.5米 \N 定位 \N \N \N f \N 99 807 60 65 f 6 客户布 \N \N 1 \N \N +80054 2025-12-15 10:10:35.371806+00 2025-12-15 10:10:35.371813+00 \N 测试 2025-12-15 10:10:22+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f \N \N \N \N 2025-12-14 16:00:00+00 2025-12-16 10:10:22+00 95克纬弹 1.5米 \N 定位 \N \N \N f \N 94 807 60 65 f 6 客户布 \N \N 1 \N \N +80048 2025-12-15 08:46:55.781126+00 2025-12-15 08:46:55.781133+00 \N 首版 2025-12-15 08:46:08+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/c0085e3b13f34d299a81a40a53ea9c31.png", "name": "周焕光2025-12-15.8.png", "path": "uploads/2025/12/15/c0085e3b13f34d299a81a40a53ea9c31.png", "size": 975037, "file_id": 100, "uploaded_at": "2025-12-15T08:46:34.635229+00:00", "content_type": "image/png"}, {"url": "https://image.yuwen.cloud/uploads/2025/12/15/6f1c845cb24f413386dd5803170e6661.png", "name": "周焕光2025-12-15.8 (2).png", "path": "uploads/2025/12/15/6f1c845cb24f413386dd5803170e6661.png", "size": 685571, "file_id": 101, "uploaded_at": "2025-12-15T08:46:38.612239+00:00", "content_type": "image/png"}] 图片起板 加急起版 雪纺 幅宽150 7051# 群里有视频 加够6个色 \N 加急 龙潭 \N f 画图难度1 调色难度1 \N \N 2025-12-14 16:00:00+00 2025-12-16 08:46:08+00 珍珠雪纺 1.5米 \N 定位 \N \N \N f \N 88 690 \N \N f 2 \N \N 周焕光2025-12-15.8.png 4 \N \N +80073 2025-12-17 01:36:09.431708+00 2025-12-17 01:36:09.431715+00 \N 首版 2025-12-17 01:36:06+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/7274eca7d001454395d85e4fa65e6917.png", "name": "周焕光2025-12-15.6.png", "path": "uploads/2025/12/15/7274eca7d001454395d85e4fa65e6917.png", "size": 1446348, "file_id": 96, "uploaded_at": "2025-12-15T08:43:58.948355+00:00", "content_type": "image/png"}, {"url": "https://image.yuwen.cloud/uploads/2025/12/15/75f0696f70bb49f899bfc76d9fb95170.png", "name": "周焕光2025-12-15.6 (2).png", "path": "uploads/2025/12/15/75f0696f70bb49f899bfc76d9fb95170.png", "size": 767996, "file_id": 97, "uploaded_at": "2025-12-15T08:44:01.682029+00:00", "content_type": "image/png"}] 图片起板 加急起版 雪纺 幅宽150 7056# 群里有视频 加够6个色 \N 加急 龙潭 \N f 画图难度1 调色难度1 \N \N 2025-12-16 16:00:00+00 2025-12-18 01:36:06+00 珍珠雪纺 1.5米 \N 匹布 \N \N \N f \N 120 690 \N \N f 2 \N \N 周焕光2025-12-15.6.png 0 2 \N +80067 2025-12-16 00:32:10.176437+00 2025-12-16 00:32:10.176447+00 \N 修改单 2025-12-16 00:32:07+00 文件开版 [] \N \N 加急 龙潭 \N f 画图难度1 调色难度1 套样难度1 难度1 2025-12-15 16:00:00+00 2025-12-17 00:32:07+00 190克罗马布 1.51米 \N 定位 \N \N 待审批 f \N 112 809 \N \N f 8 客户布 \N \N 7 \N \N +80052 2025-12-15 09:54:29.846083+00 2025-12-15 09:54:29.84609+00 \N 测试 2025-12-15 09:54:18+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f \N \N \N \N 2025-12-14 16:00:00+00 2025-12-16 09:54:18+00 95克纬弹 1.5米 \N 定位 \N \N \N f \N 92 807 60 65 f 6 客户布 \N \N 1 \N \N +80060 2025-12-15 11:56:11.598419+00 2025-12-15 11:56:11.598431+00 \N 首版 2025-12-15 11:52:45+00 样衣开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/a62c2bc2f56b418e8111bb51d4ba163e.png", "name": "张晓鹏2025-12-15.3.png", "path": "uploads/2025/12/15/a62c2bc2f56b418e8111bb51d4ba163e.png", "size": 1616860, "file_id": 104, "uploaded_at": "2025-12-15T11:53:13.160626+00:00", "content_type": "image/png"}] 样衣起板 加急加急 四面弹,使用软件调色,用LWQ15调色 \N 加急 \N f 画图难度1 调色难度1 \N \N 2025-12-14 16:00:00+00 2025-12-16 11:52:45+00 四面弹. 1.51米 \N 匹布 \N \N \N f \N 101 6 \N \N f 2 \N \N 张晓鹏2025-12-15.3.png 1 \N \N +80047 2025-12-15 08:46:00.70611+00 2025-12-15 08:46:00.706117+00 \N 首版 2025-12-15 08:45:00+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/16161ca653384d1e83e9a7036042848c.png", "name": "周焕光2025-12-15.7.png", "path": "uploads/2025/12/15/16161ca653384d1e83e9a7036042848c.png", "size": 630147, "file_id": 98, "uploaded_at": "2025-12-15T08:45:35.601946+00:00", "content_type": "image/png"}, {"url": "https://image.yuwen.cloud/uploads/2025/12/15/13c712ab11804e3b8774bbe9ef967208.png", "name": "周焕光2025-12-15.7 (2).png", "path": "uploads/2025/12/15/13c712ab11804e3b8774bbe9ef967208.png", "size": 1266007, "file_id": 99, "uploaded_at": "2025-12-15T08:45:41.554471+00:00", "content_type": "image/png"}] 图片起板 加急起版 雪纺 幅宽150 7057# 群里有视频 加够6个色 \N 加急 龙潭 \N f 画图难度1 调色难度1 \N \N 2025-12-14 16:00:00+00 2025-12-16 08:45:00+00 珍珠雪纺 1.5米 \N 定位 \N \N \N f \N 87 690 \N \N f 2 \N \N 周焕光2025-12-15.7.png 1 \N \N +80049 2025-12-15 08:58:39.012035+00 2025-12-15 08:58:39.012041+00 \N 首版 2025-12-15 08:57:59+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/18dd8241b9af4b6486203025bb0169fe.png", "name": "周焕光2025-12-15.9.png", "path": "uploads/2025/12/15/18dd8241b9af4b6486203025bb0169fe.png", "size": 1134358, "file_id": 102, "uploaded_at": "2025-12-15T08:58:17.570558+00:00", "content_type": "image/png"}, {"url": "https://image.yuwen.cloud/uploads/2025/12/15/1c0c28c1746445378c57027fd5759da9.png", "name": "周焕光2025-12-15.9 (2).png", "path": "uploads/2025/12/15/1c0c28c1746445378c57027fd5759da9.png", "size": 767935, "file_id": 103, "uploaded_at": "2025-12-15T08:58:20.518709+00:00", "content_type": "image/png"}] 图片起板 加急起版 雪纺 幅宽150 7052# 群里有视频 加够6个色 \N 加急 龙潭 \N f 画图难度1 调色难度1 \N \N 2025-12-14 16:00:00+00 2025-12-16 08:57:59+00 珍珠雪纺 1.5米 \N 定位 \N \N \N f \N 89 690 \N \N f 2 \N \N 周焕光2025-12-15.9.png 4 \N \N +80062 2025-12-15 14:16:02.545301+00 2025-12-15 14:16:20.566759+00 \N 修改单 2025-12-15 14:15:48+00 文件开版 [] \N \N 加急 龙潭 \N f 画图难度1 调色难度1 套样难度1 难度1 2025-12-14 16:00:00+00 2025-12-16 14:15:48+00 190克罗马布 1.51米 \N 定位 \N \N 待审批 f \N 103 809 \N \N t 8 客户布 \N \N 0 \N \N +80066 2025-12-16 00:31:10.704063+00 2025-12-16 00:32:02.541104+00 \N 修改单 2025-12-16 00:31:05+00 文件开版 [] \N \N 加急 龙潭 \N f 画图难度1 调色难度1 套样难度1 难度1 2025-12-15 16:00:00+00 2025-12-17 00:31:05+00 190克罗马布 1.51米 \N 定位 \N \N 待审批 f \N 111 809 \N \N t 8 客户布 \N \N 0 \N \N +80064 2025-12-15 14:36:41.901628+00 2025-12-15 14:38:43.247077+00 \N 修改单 2025-12-15 14:36:26+00 文件开版 [] \N \N 加急 龙潭 \N f 画图难度1 调色难度1 套样难度1 难度1 2025-12-14 16:00:00+00 2025-12-16 14:36:26+00 190克罗马布 1.51米 \N 定位 \N \N 待审批 f \N 107 809 \N \N t 8 客户布 \N \N 0 \N \N +80070 2025-12-16 00:38:18.241885+00 2025-12-16 00:39:07.400899+00 \N 测试 2025-12-16 00:38:13+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f 画图难度1 调色难度1 套样难度1 难度1 2025-12-15 16:00:00+00 2025-12-17 00:38:13+00 190克罗马布 1.51米 \N 匹布 \N \N \N f \N 115 809 65 64 t 2 客户布 \N \N 0 \N \N +80077 2025-12-17 08:27:19.895165+00 2025-12-17 08:27:19.895173+00 \N 首版 2025-12-17 08:24:24+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/17/b44a3211e70f4ddeab419c0baebc4801.jpg", "name": "鲁小超2025-12-17.1.jpg", "path": "uploads/2025/12/17/b44a3211e70f4ddeab419c0baebc4801.jpg", "size": 113938, "file_id": 105, "uploaded_at": "2025-12-17T08:25:55.863473+00:00", "content_type": "image/jpeg"}] 色卡+3米 \N 加急 周边 \N f 画图难度1 调色难度1 \N \N 2025-12-16 16:00:00+00 2025-12-18 08:24:24+00 120克本白四面弹 1.5米 \N 匹布 \N \N \N f \N 128 2261 \N \N f 2 客户布 \N 鲁小超2025-12-17.1.jpg 1 29 \N +80068 2025-12-16 00:33:47.802507+00 2025-12-16 00:39:14.498417+00 \N 测试 2025-12-16 00:33:05+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f 画图难度1 调色难度1 套样难度1 难度1 2025-12-15 16:00:00+00 2025-12-17 00:33:05+00 190克罗马布 1.51米 \N 匹布 \N \N \N f \N 117 809 65 64 f 2 客户布 \N \N 1 \N \N +80072 2025-12-16 00:42:20.288477+00 2025-12-16 00:42:20.893494+00 \N 测试 2025-12-16 00:42:17+00 文件开版 [] \N \N 紧急已下单 龙潭 \N f 画图难度1 调色难度1 套样难度1 难度1 2025-12-15 16:00:00+00 2025-12-17 00:42:17+00 190克罗马布 1.51米 \N 匹布 \N \N \N f \N 119 809 65 64 f 2 客户布 \N \N 4 \N \N +80074 2025-12-17 01:38:43.263997+00 2025-12-17 01:38:43.264004+00 \N 首版 2025-12-17 01:38:35+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/7274eca7d001454395d85e4fa65e6917.png", "name": "周焕光2025-12-15.6.png", "path": "uploads/2025/12/15/7274eca7d001454395d85e4fa65e6917.png", "size": 1446348, "file_id": 96, "uploaded_at": "2025-12-15T08:43:58.948355+00:00", "content_type": "image/png"}, {"url": "https://image.yuwen.cloud/uploads/2025/12/15/75f0696f70bb49f899bfc76d9fb95170.png", "name": "周焕光2025-12-15.6 (2).png", "path": "uploads/2025/12/15/75f0696f70bb49f899bfc76d9fb95170.png", "size": 767996, "file_id": 97, "uploaded_at": "2025-12-15T08:44:01.682029+00:00", "content_type": "image/png"}] 图片起板 加急起版 雪纺 幅宽150 7056# 群里有视频 加够6个色 \N 加急 龙潭 \N f 画图难度1 调色难度1 \N \N 2025-12-16 16:00:00+00 2025-12-18 01:38:35+00 珍珠雪纺 1.5米 \N 匹布 \N \N \N f \N 122 690 \N \N f 2 \N \N 周焕光2025-12-15.6.png 0 2 \N +80075 2025-12-17 01:39:55.606332+00 2025-12-17 01:39:55.60634+00 \N 首版 2025-12-17 01:39:51+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/7274eca7d001454395d85e4fa65e6917.png", "name": "周焕光2025-12-15.6.png", "path": "uploads/2025/12/15/7274eca7d001454395d85e4fa65e6917.png", "size": 1446348, "file_id": 96, "uploaded_at": "2025-12-15T08:43:58.948355+00:00", "content_type": "image/png"}, {"url": "https://image.yuwen.cloud/uploads/2025/12/15/75f0696f70bb49f899bfc76d9fb95170.png", "name": "周焕光2025-12-15.6 (2).png", "path": "uploads/2025/12/15/75f0696f70bb49f899bfc76d9fb95170.png", "size": 767996, "file_id": 97, "uploaded_at": "2025-12-15T08:44:01.682029+00:00", "content_type": "image/png"}] 图片起板 加急起版 雪纺 幅宽150 7056# 群里有视频 加够6个色 \N 加急 龙潭 \N f 画图难度1 调色难度1 \N \N 2025-12-16 16:00:00+00 2025-12-18 01:39:51+00 珍珠雪纺 1.5米 \N 匹布 \N \N \N f \N 124 690 \N \N f 2 \N \N 周焕光2025-12-15.6.png 0 2 \N +80076 2025-12-17 02:47:00.70989+00 2025-12-17 02:47:00.709902+00 \N 首版 2025-12-17 02:46:58+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/15/7274eca7d001454395d85e4fa65e6917.png", "name": "周焕光2025-12-15.6.png", "path": "uploads/2025/12/15/7274eca7d001454395d85e4fa65e6917.png", "size": 1446348, "file_id": 96, "uploaded_at": "2025-12-15T08:43:58.948355+00:00", "content_type": "image/png"}, {"url": "https://image.yuwen.cloud/uploads/2025/12/15/75f0696f70bb49f899bfc76d9fb95170.png", "name": "周焕光2025-12-15.6 (2).png", "path": "uploads/2025/12/15/75f0696f70bb49f899bfc76d9fb95170.png", "size": 767996, "file_id": 97, "uploaded_at": "2025-12-15T08:44:01.682029+00:00", "content_type": "image/png"}] 图片起板 加急起版 雪纺 幅宽150 7056# 群里有视频 加够6个色 \N 加急 龙潭 \N f 画图难度1 调色难度1 \N \N 2025-12-16 16:00:00+00 2025-12-18 02:46:58+00 珍珠雪纺 1.5米 \N 匹布 \N \N \N f \N 127 690 \N \N f 2 \N \N 周焕光2025-12-15.6.png 0 2 \N +\. + + +-- +-- 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, work_state, original_id) FROM stdin; +16 2025-12-10 05:57:57.812934+00 2025-12-10 05:57:57.814275+00 24 米 0 \N 2799 20 66 0 \N +17 2025-12-11 05:52:04.474216+00 2025-12-11 05:52:04.475605+00 500 米 0 \N 2797 21 67 0 \N +18 2025-12-11 07:49:04.298075+00 2025-12-11 07:49:04.299454+00 300 米 0 \N 2800 22 68 0 \N +19 2025-12-12 10:01:20.183118+00 2025-12-12 10:01:20.184839+00 32 米 0 \N 2800 23 69 0 \N +20 2025-12-12 10:01:20.265206+00 2025-12-12 10:01:20.266441+00 42 米 0 \N 2797 23 70 0 \N +21 2025-12-12 10:01:20.337169+00 2025-12-12 10:01:20.338373+00 42 米 0 \N 2798 23 71 0 \N +22 2025-12-13 08:28:44.022362+00 2025-12-13 08:28:44.023633+00 45 米 0 \N 2794 24 72 0 \N +23 2025-12-13 09:20:53.508262+00 2025-12-13 09:20:53.509647+00 50 米 0 \N 2735 25 73 0 \N +24 2025-12-13 09:20:53.546384+00 2025-12-13 09:20:53.547613+00 50 米 0 \N 2751 25 74 0 \N +25 2025-12-13 09:23:11.988933+00 2025-12-13 09:23:11.990189+00 100 米 0 \N 2796 26 75 0 \N +\. + + +-- +-- Data for Name: printing_printingjobbatchadvancerecord; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.printing_printingjobbatchadvancerecord (id, created_at, updated_at, parameters, created_by_id, printing_order_id, state_id) FROM stdin; +1 2025-12-12 10:04:25.816856+00 2025-12-12 10:04:25.816866+00 {"(印染厂生产)日期": "104", "(印染厂生产)设备": "106", "(印染厂生产)提交人": "105", "(印染厂生产)打印米数": "103", "(印染厂生产)生产记录": "101", "(印染厂生产)生产订单详情": "102"} 2 23 1 +2 2025-12-13 09:48:51.751583+00 2025-12-13 09:48:51.751591+00 {"(印染厂滚筒)日期": "2025-12-13 09:47:59", "(印染厂滚筒)设备": "2", "(印染厂滚筒)提交人": "jimi", "(印染厂滚筒)温度转速": "220。45转速", "(印染厂滚筒)生产单上传": "https://image.yuwen.cloud/uploads/2025/12/13/7a511cbb52894e3eb95c32700c64f318.jpg"} 2 23 2 +3 2025-12-13 11:11:51.97199+00 2025-12-13 11:11:51.971998+00 {"(印染厂生产)日期": "2025-12-13 11:11:37", "(印染厂生产)提交人": "ruicai16888", "(印染厂生产)打印米数": "100"} 27 26 1 +4 2025-12-13 11:20:49.766479+00 2025-12-13 11:20:49.766486+00 {"(印染厂生产)日期": "2025-12-13 11:20:15", "(印染厂生产)设备": "2", "(印染厂生产)提交人": "ruicai16888", "(印染厂生产)打印米数": "100"} 27 25 1 +5 2025-12-13 11:23:57.33414+00 2025-12-13 11:23:57.334147+00 {"(印染厂滚筒)日期": "2025-12-13 11:22:10", "(印染厂滚筒)提交人": "ruicai16888", "(印染厂滚筒)生产单上传": "https://image.yuwen.cloud/uploads/2025/12/13/e0070166832248f9819fc652215fd2fd.jpg"} 27 25 2 +\. + + +-- +-- Data for Name: printing_printingjobbatchadvancerecord_printing_jobs; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.printing_printingjobbatchadvancerecord_printing_jobs (id, printingjobbatchadvancerecord_id, printingjob_id) FROM stdin; +1 1 19 +2 1 20 +3 1 21 +4 2 19 +5 2 20 +6 2 21 +7 3 25 +8 4 24 +9 4 23 +10 5 24 +11 5 23 +\. + + +-- +-- 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; +20 2025-12-10 05:57:57.642463+00 2025-12-10 05:57:57.642473+00 四面弹. 1.5米 f 周边 客户布 f 批布 \N 2025-12-11 测试 3124123 \N \N \N \N 809 f 1 0 +21 2025-12-11 05:52:04.250293+00 2025-12-11 05:52:04.250301+00 95克纬弹 1.5米 f 周边 客户布 f 批布 \N 2025-12-12 测试 3124123 \N \N \N \N 804 f 1 0 +22 2025-12-11 07:49:04.087233+00 2025-12-11 07:49:04.087242+00 95克纬弹 1.5米 f 周边 客户布 f 批布 \N 2025-12-12 测试 3124123 电脑位置 打印注意 打印注意 打印注意 809 f 1 0 +23 2025-12-12 10:01:19.945422+00 2025-12-13 07:57:13.367278+00 95克纬弹 1.5米 f 周边 客户布 f 批布 \N 2025-12-13 测试 3124123 1 1 1 1 808 f 1 1 +24 2025-12-13 08:28:43.909462+00 2025-12-13 08:28:43.90947+00 95克纬弹 1.5米 f 周边 客户布 f 批布 \N 2025-12-14 测试 3124123 \N \N \N \N 806 f 1 0 +26 2025-12-13 09:23:11.946849+00 2025-12-13 09:23:11.946857+00 95克纬弹 1.5米 f 周边 客户布 f 批布 \N 2025-12-14 测试 \N 测试 测试123 测试123 测试 806 f 1 2 +25 2025-12-13 09:20:53.398055+00 2025-12-13 09:20:53.398063+00 170克仿棉拉架 1.5米 f 周边 客户布 f 批布 \N 2025-12-14 测试 3124123 电脑位置 打印不要刮纸 滚筒要注意 做货也要记住 440 f 1 3 +\. + + +-- +-- 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; +92 2025-12-12 10:04:25.82247+00 2025-12-12 10:04:25.82248+00 2025-12-12 10:04:25.822491+00 2 69 1 \N f +93 2025-12-12 10:04:25.827469+00 2025-12-12 10:04:25.827475+00 2025-12-12 10:04:25.827481+00 2 70 1 \N f +94 2025-12-12 10:04:25.831901+00 2025-12-12 10:04:25.831907+00 2025-12-12 10:04:25.831913+00 2 71 1 \N f +95 2025-12-13 09:48:51.75619+00 2025-12-13 09:48:51.756196+00 2025-12-13 09:48:51.756201+00 2 69 2 \N f +96 2025-12-13 09:48:51.760909+00 2025-12-13 09:48:51.760914+00 2025-12-13 09:48:51.760919+00 2 70 2 \N f +97 2025-12-13 09:48:51.765517+00 2025-12-13 09:48:51.765522+00 2025-12-13 09:48:51.765528+00 2 71 2 \N f +98 2025-12-13 11:11:51.976686+00 2025-12-13 11:11:51.976692+00 2025-12-13 11:11:51.976698+00 27 75 1 \N f +99 2025-12-13 11:20:49.770981+00 2025-12-13 11:20:49.770986+00 2025-12-13 11:20:49.770992+00 27 73 1 \N f +100 2025-12-13 11:20:49.775588+00 2025-12-13 11:20:49.775592+00 2025-12-13 11:20:49.775598+00 27 74 1 \N f +101 2025-12-13 11:23:57.338643+00 2025-12-13 11:23:57.338648+00 2025-12-13 11:23:57.338654+00 27 73 2 \N f +102 2025-12-13 11:23:57.343322+00 2025-12-13 11:23:57.343327+00 2025-12-13 11:23:57.343333+00 27 74 2 \N f +103 2025-12-15 06:58:46.60128+00 2025-12-15 06:58:46.601288+00 2025-12-15 06:58:46.601295+00 40 77 15 \N f +105 2025-12-15 07:34:55.391389+00 2025-12-15 07:34:55.391397+00 2025-12-15 07:34:55.391403+00 50 77 16 2025-12-15 07:34:58.756412+00 t +104 2025-12-15 07:34:50.046367+00 2025-12-15 07:34:50.046376+00 2025-12-15 07:34:50.046382+00 50 77 7 2025-12-15 07:35:00.563762+00 t +107 2025-12-15 07:36:06.939748+00 2025-12-15 07:36:06.939756+00 2025-12-15 07:36:06.939763+00 50 77 16 2025-12-15 07:36:09.316247+00 t +106 2025-12-15 07:35:16.61907+00 2025-12-15 07:35:16.619077+00 2025-12-15 07:35:16.619084+00 50 77 7 2025-12-15 07:47:08.293252+00 t +108 2025-12-15 07:48:07.932935+00 2025-12-15 07:48:07.932943+00 2025-12-15 07:48:07.93295+00 65 77 7 2025-12-15 07:48:08.930563+00 t +109 2025-12-15 07:48:27.103367+00 2025-12-15 07:48:27.103375+00 2025-12-15 07:48:27.103383+00 65 77 7 2025-12-15 07:48:28.223466+00 t +110 2025-12-15 07:49:31.101125+00 2025-12-15 07:49:31.101133+00 2025-12-15 07:49:31.10114+00 65 77 7 2025-12-15 07:49:32.838249+00 t +111 2025-12-15 07:55:35.771246+00 2025-12-15 07:55:35.771254+00 2025-12-15 07:55:35.771261+00 29 78 19 \N f +112 2025-12-15 07:56:05.654648+00 2025-12-15 07:56:05.654656+00 2025-12-15 07:56:05.654662+00 29 78 13 \N f +113 2025-12-15 07:57:06.691933+00 2025-12-15 07:57:06.69194+00 2025-12-15 07:57:06.691947+00 29 79 21 \N f +114 2025-12-15 08:26:32.290922+00 2025-12-15 08:26:32.29093+00 2025-12-15 08:26:32.290936+00 65 78 14 \N f +115 2025-12-15 08:41:51.240852+00 2025-12-15 08:41:51.240861+00 2025-12-15 08:41:51.240867+00 43 77 7 \N f +116 2025-12-15 09:22:47.848112+00 2025-12-15 09:22:47.848121+00 2025-12-15 09:22:47.848128+00 40 76 15 \N f +117 2025-12-15 09:23:00.856085+00 2025-12-15 09:23:00.856095+00 2025-12-15 09:23:00.856102+00 47 89 15 \N f +118 2025-12-15 09:23:43.143945+00 2025-12-15 09:23:43.143958+00 2025-12-15 09:23:43.143966+00 40 76 7 \N f +119 2025-12-15 09:24:12.226377+00 2025-12-15 09:24:12.226386+00 2025-12-15 09:24:12.226393+00 47 85 15 \N f +120 2025-12-15 09:24:30.965488+00 2025-12-15 09:24:30.965512+00 2025-12-15 09:24:30.965519+00 47 84 15 \N f +121 2025-12-15 09:24:41.513292+00 2025-12-15 09:24:41.513301+00 2025-12-15 09:24:41.513308+00 47 83 15 \N f +122 2025-12-15 09:36:31.142391+00 2025-12-15 09:36:31.1424+00 2025-12-15 09:36:31.142406+00 33 86 15 \N f +123 2025-12-15 09:37:27.990096+00 2025-12-15 09:37:27.990105+00 2025-12-15 09:37:27.990113+00 33 88 15 \N f +124 2025-12-15 09:38:29.937966+00 2025-12-15 09:38:29.937975+00 2025-12-15 09:38:29.937982+00 33 87 15 \N f +125 2025-12-15 09:39:03.779452+00 2025-12-15 09:39:03.779461+00 2025-12-15 09:39:03.779468+00 33 82 15 \N f +126 2025-12-15 09:39:39.138746+00 2025-12-15 09:39:39.138754+00 2025-12-15 09:39:39.138761+00 33 81 15 \N f +127 2025-12-15 09:54:21.532211+00 2025-12-15 09:54:21.53222+00 2025-12-15 09:54:21.532226+00 2 91 19 \N f +128 2025-12-15 09:54:21.532211+00 2025-12-15 09:54:21.53222+00 2025-12-15 09:54:21.532226+00 2 100 19 \N f +129 2025-12-15 10:47:48.363317+00 2025-12-15 10:47:48.363326+00 2025-12-15 10:47:48.363333+00 47 83 7 \N f +130 2025-12-15 11:42:43.535483+00 2025-12-15 11:42:43.535492+00 2025-12-15 11:42:43.535499+00 45 76 16 \N f +131 2025-12-15 12:49:12.072654+00 2025-12-15 12:49:12.072662+00 2025-12-15 12:49:12.072668+00 28 101 15 \N f +132 2025-12-15 13:03:34.384337+00 2025-12-15 13:03:34.384346+00 2025-12-15 13:03:34.384353+00 43 77 16 \N f +133 2025-12-15 13:03:39.712067+00 2025-12-15 13:03:39.712081+00 2025-12-15 13:03:39.712088+00 43 77 8 \N f +134 2025-12-15 13:24:12.009466+00 2025-12-15 13:24:12.009474+00 2025-12-15 13:24:12.009481+00 33 87 7 \N f +135 2025-12-15 13:53:13.93954+00 2025-12-15 13:53:13.939549+00 2025-12-15 13:53:13.939555+00 47 85 7 \N f +136 2025-12-15 14:20:10.324188+00 2025-12-15 14:20:10.324197+00 2025-12-15 14:20:10.324204+00 2 102 21 \N f +137 2025-12-15 14:20:10.324188+00 2025-12-15 14:20:10.324197+00 2025-12-15 14:20:10.324204+00 2 106 21 \N f +138 2025-12-15 14:20:10.324188+00 2025-12-15 14:20:10.324197+00 2025-12-15 14:20:10.324204+00 2 108 21 \N f +139 2025-12-15 14:20:10.324188+00 2025-12-15 14:20:10.324197+00 2025-12-15 14:20:10.324204+00 2 110 21 \N f +140 2025-12-16 00:38:00.847389+00 2025-12-16 00:38:00.847398+00 2025-12-16 00:38:00.847406+00 2 113 15 \N f +141 2025-12-16 00:38:00.847389+00 2025-12-16 00:38:00.847398+00 2025-12-16 00:38:00.847406+00 2 117 15 \N f +142 2025-12-16 00:38:00.847389+00 2025-12-16 00:38:00.847398+00 2025-12-16 00:38:00.847406+00 2 119 15 \N f +143 2025-12-16 02:17:50.928433+00 2025-12-16 02:17:50.928442+00 2025-12-16 02:17:50.928448+00 52 83 16 \N f +144 2025-12-16 02:18:04.045402+00 2025-12-16 02:18:04.045412+00 2025-12-16 02:18:04.045419+00 52 85 16 \N f +145 2025-12-16 03:05:30.743075+00 2025-12-16 03:05:30.743083+00 2025-12-16 03:05:30.74309+00 43 87 16 \N f +146 2025-12-16 03:41:50.440175+00 2025-12-16 03:41:50.440183+00 2025-12-16 03:41:50.44019+00 47 84 7 \N f +147 2025-12-16 03:52:15.77395+00 2025-12-16 03:52:15.773958+00 2025-12-16 03:52:15.773965+00 33 88 7 \N f +148 2025-12-16 04:51:30.976504+00 2025-12-16 04:51:30.976513+00 2025-12-16 04:51:30.976522+00 28 101 7 \N f +149 2025-12-16 04:51:35.068631+00 2025-12-16 04:51:35.06864+00 2025-12-16 04:51:35.06865+00 28 101 16 \N f +150 2025-12-16 05:05:00.817153+00 2025-12-16 05:05:00.817164+00 2025-12-16 05:05:00.817172+00 52 88 16 \N f +151 2025-12-16 05:18:56.894155+00 2025-12-16 05:18:56.894164+00 2025-12-16 05:18:56.894172+00 33 82 7 \N f +152 2025-12-16 05:59:39.772925+00 2025-12-16 05:59:39.772934+00 2025-12-16 05:59:39.772941+00 43 82 16 \N f +153 2025-12-16 06:48:00.266004+00 2025-12-16 06:48:00.266013+00 2025-12-16 06:48:00.26602+00 47 89 7 \N f +154 2025-12-16 06:57:12.115708+00 2025-12-16 06:57:12.115717+00 2025-12-16 06:57:12.115724+00 45 89 16 \N f +155 2025-12-16 06:57:30.645944+00 2025-12-16 06:57:30.645953+00 2025-12-16 06:57:30.645959+00 45 84 16 \N f +156 2025-12-16 08:14:55.104923+00 2025-12-16 08:14:55.104935+00 2025-12-16 08:14:55.104946+00 28 101 8 \N f +157 2025-12-16 09:00:41.406451+00 2025-12-16 09:00:41.406459+00 2025-12-16 09:00:41.406466+00 33 81 7 \N f +158 2025-12-16 10:51:06.265974+00 2025-12-16 10:51:06.265983+00 2025-12-16 10:51:06.26599+00 30 81 16 \N f +159 2025-12-16 11:28:39.784354+00 2025-12-16 11:28:39.784365+00 2025-12-16 11:28:39.784376+00 45 76 8 \N f +160 2025-12-16 13:54:19.072298+00 2025-12-16 13:54:19.072308+00 2025-12-16 13:54:19.072317+00 45 89 8 \N f +161 2025-12-16 13:54:28.184332+00 2025-12-16 13:54:28.18434+00 2025-12-16 13:54:28.184348+00 45 84 8 \N f +162 2025-12-15 09:36:31.142391+00 2025-12-15 09:36:31.1424+00 2025-12-15 09:36:31.142406+00 33 121 15 \N f +163 2025-12-17 01:36:47.283485+00 2025-12-17 01:36:47.283493+00 2025-12-17 01:36:47.2835+00 2 120 15 \N f +164 2025-12-17 01:36:47.283485+00 2025-12-17 01:36:47.283493+00 2025-12-17 01:36:47.2835+00 2 123 15 \N f +165 2025-12-17 01:36:47.283485+00 2025-12-17 01:36:47.283493+00 2025-12-17 01:36:47.2835+00 2 125 15 \N f +166 2025-12-17 01:36:47.283485+00 2025-12-17 01:36:47.283493+00 2025-12-17 01:36:47.2835+00 2 127 15 \N f +167 2025-12-17 02:54:39.825864+00 2025-12-17 02:54:39.825872+00 2025-12-17 02:54:39.825879+00 43 82 8 \N f +168 2025-12-17 03:55:09.9946+00 2025-12-17 03:55:09.994608+00 2025-12-17 03:55:09.994614+00 33 86 7 \N f +169 2025-12-17 08:34:23.528824+00 2025-12-17 08:34:23.528833+00 2025-12-17 08:34:23.52884+00 30 86 16 \N f +170 2025-12-17 09:39:47.452403+00 2025-12-17 09:39:47.452413+00 2025-12-17 09:39:47.452422+00 55 81 8 \N f +171 2025-12-17 13:17:21.611128+00 2025-12-17 13:17:21.611139+00 2025-12-17 13:17:21.611148+00 30 86 8 \N f +\. + + +-- +-- 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; +45 2025-12-12 10:04:25.822969+00 {"(印染厂生产)日期": "104", "(印染厂生产)设备": "106", "(印染厂生产)提交人": "105", "(印染厂生产)打印米数": "103", "(印染厂生产)生产记录": "101", "(印染厂生产)生产订单详情": "102"} 2025-12-12 10:04:25.822982+00 92 +46 2025-12-12 10:04:25.827676+00 {"(印染厂生产)日期": "104", "(印染厂生产)设备": "106", "(印染厂生产)提交人": "105", "(印染厂生产)打印米数": "103", "(印染厂生产)生产记录": "101", "(印染厂生产)生产订单详情": "102"} 2025-12-12 10:04:25.827684+00 93 +47 2025-12-12 10:04:25.832152+00 {"(印染厂生产)日期": "104", "(印染厂生产)设备": "106", "(印染厂生产)提交人": "105", "(印染厂生产)打印米数": "103", "(印染厂生产)生产记录": "101", "(印染厂生产)生产订单详情": "102"} 2025-12-12 10:04:25.832161+00 94 +48 2025-12-13 09:48:51.756459+00 {"(印染厂滚筒)日期": "2025-12-13 09:47:59", "(印染厂滚筒)设备": "2", "(印染厂滚筒)提交人": "jimi", "(印染厂滚筒)温度转速": "220。45转速", "(印染厂滚筒)生产单上传": "https://image.yuwen.cloud/uploads/2025/12/13/7a511cbb52894e3eb95c32700c64f318.jpg"} 2025-12-13 09:48:51.756468+00 95 +49 2025-12-13 09:48:51.761116+00 {"(印染厂滚筒)日期": "2025-12-13 09:47:59", "(印染厂滚筒)设备": "2", "(印染厂滚筒)提交人": "jimi", "(印染厂滚筒)温度转速": "220。45转速", "(印染厂滚筒)生产单上传": "https://image.yuwen.cloud/uploads/2025/12/13/7a511cbb52894e3eb95c32700c64f318.jpg"} 2025-12-13 09:48:51.761124+00 96 +50 2025-12-13 09:48:51.765745+00 {"(印染厂滚筒)日期": "2025-12-13 09:47:59", "(印染厂滚筒)设备": "2", "(印染厂滚筒)提交人": "jimi", "(印染厂滚筒)温度转速": "220。45转速", "(印染厂滚筒)生产单上传": "https://image.yuwen.cloud/uploads/2025/12/13/7a511cbb52894e3eb95c32700c64f318.jpg"} 2025-12-13 09:48:51.765754+00 97 +51 2025-12-13 11:11:51.977013+00 {"(印染厂生产)日期": "2025-12-13 11:11:37", "(印染厂生产)提交人": "ruicai16888", "(印染厂生产)打印米数": "100"} 2025-12-13 11:11:51.977023+00 98 +52 2025-12-13 11:20:49.771232+00 {"(印染厂生产)日期": "2025-12-13 11:20:15", "(印染厂生产)设备": "2", "(印染厂生产)提交人": "ruicai16888", "(印染厂生产)打印米数": "100"} 2025-12-13 11:20:49.771241+00 99 +53 2025-12-13 11:20:49.775799+00 {"(印染厂生产)日期": "2025-12-13 11:20:15", "(印染厂生产)设备": "2", "(印染厂生产)提交人": "ruicai16888", "(印染厂生产)打印米数": "100"} 2025-12-13 11:20:49.775808+00 100 +54 2025-12-13 11:23:57.338903+00 {"(印染厂滚筒)日期": "2025-12-13 11:22:10", "(印染厂滚筒)提交人": "ruicai16888", "(印染厂滚筒)生产单上传": "https://image.yuwen.cloud/uploads/2025/12/13/e0070166832248f9819fc652215fd2fd.jpg"} 2025-12-13 11:23:57.338912+00 101 +55 2025-12-13 11:23:57.343528+00 {"(印染厂滚筒)日期": "2025-12-13 11:22:10", "(印染厂滚筒)提交人": "ruicai16888", "(印染厂滚筒)生产单上传": "https://image.yuwen.cloud/uploads/2025/12/13/e0070166832248f9819fc652215fd2fd.jpg"} 2025-12-13 11:23:57.343536+00 102 +56 2025-12-15 06:58:46.602177+00 {"(印染厂开版画图)开始时间": "2025-12-15 14:58:37", "(印染厂开版画图)设计师名称": "15826351321"} 2025-12-15 06:58:46.60219+00 103 +57 2025-12-15 07:34:50.046749+00 {"(印染厂开版画图)设计师名称": "18674036273"} 2025-12-15 07:34:50.046761+00 104 +58 2025-12-15 07:34:55.391773+00 {"(印染厂开版调色)开始时间": "2025-12-15 15:34:45", "(印染厂开版调色)设计师名称": "18674036273"} 2025-12-15 07:34:55.391783+00 105 +59 2025-12-15 07:35:16.619407+00 {"(印染厂开版画图)设计师名称": "18674036273"} 2025-12-15 07:35:16.619417+00 106 +60 2025-12-15 07:36:06.940172+00 {"(印染厂开版调色)开始时间": "2025-12-15 15:35:49", "(印染厂开版调色)设计师名称": "18674036273"} 2025-12-15 07:36:06.940186+00 107 +61 2025-12-15 07:48:07.9333+00 {"(印染厂开版画图)设计师名称": "夏帅"} 2025-12-15 07:48:07.93331+00 108 +62 2025-12-15 07:48:27.103724+00 {"(印染厂开版画图)设计师名称": "夏帅"} 2025-12-15 07:48:27.103734+00 109 +63 2025-12-15 07:49:31.101467+00 {"(印染厂开版画图)设计师名称": "夏帅"} 2025-12-15 07:49:31.101477+00 110 +64 2025-12-15 07:55:35.771673+00 {"(印染厂开版找图)开始时间": "2025-12-15 15:55:25", "(印染厂开版找图)设计师名称": "18218677806"} 2025-12-15 07:55:35.771685+00 111 +65 2025-12-15 07:56:05.654993+00 {"(印染厂开版找图)设计师名称": "18218677806"} 2025-12-15 07:56:05.655003+00 112 +66 2025-12-15 07:57:06.692287+00 {"(印染厂开版改图)开始时间": "2025-12-15 15:56:56", "(印染厂开版改图)设计师名称": "18218677806"} 2025-12-15 07:57:06.692297+00 113 +67 2025-12-15 08:41:51.241245+00 {"(印染厂开版画图)设计师名称": "18620499805"} 2025-12-15 08:41:51.241255+00 115 +68 2025-12-15 09:22:47.848505+00 {"(印染厂开版画图)开始时间": "2025-12-15 17:22:35", "(印染厂开版画图)设计师名称": "15826351321"} 2025-12-15 09:22:47.848517+00 116 +69 2025-12-15 09:23:00.856437+00 {"(印染厂开版画图)开始时间": "2025-12-15 17:22:54", "(印染厂开版画图)设计师名称": "17796077643"} 2025-12-15 09:23:00.856448+00 117 +70 2025-12-15 09:23:43.144314+00 {"(印染厂开版画图)完成时间": "2025-12-15 17:23:33", "(印染厂开版画图)电脑位置": "G-G", "(印染厂开版画图)设计师名称": "15826351321"} 2025-12-15 09:23:43.144324+00 118 +71 2025-12-15 09:24:12.226736+00 {"(印染厂开版画图)开始时间": "2025-12-15 17:24:07", "(印染厂开版画图)设计师名称": "17796077643"} 2025-12-15 09:24:12.226747+00 119 +72 2025-12-15 09:24:30.965879+00 {"(印染厂开版画图)开始时间": "2025-12-15 17:24:26", "(印染厂开版画图)设计师名称": "17796077643"} 2025-12-15 09:24:30.965889+00 120 +73 2025-12-15 09:24:41.513636+00 {"(印染厂开版画图)开始时间": "2025-12-15 17:24:34", "(印染厂开版画图)设计师名称": "17796077643"} 2025-12-15 09:24:41.513646+00 121 +74 2025-12-15 09:36:31.142744+00 {"(印染厂开版画图)开始时间": "2025-12-15 17:36:21", "(印染厂开版画图)设计师名称": "徐煜耀"} 2025-12-15 09:36:31.142754+00 122 +75 2025-12-15 09:37:27.990445+00 {"(印染厂开版画图)开始时间": "2025-12-15 17:37:18", "(印染厂开版画图)设计师名称": "徐煜耀"} 2025-12-15 09:37:27.990455+00 123 +76 2025-12-15 09:38:29.938315+00 {"(印染厂开版画图)开始时间": "2025-12-15 17:38:21", "(印染厂开版画图)设计师名称": "徐煜耀"} 2025-12-15 09:38:29.938324+00 124 +77 2025-12-15 09:39:03.779799+00 {"(印染厂开版画图)开始时间": "2025-12-15 17:38:54", "(印染厂开版画图)设计师名称": "徐煜耀"} 2025-12-15 09:39:03.779809+00 125 +78 2025-12-15 09:39:39.139101+00 {"(印染厂开版画图)开始时间": "2025-12-15 17:39:30", "(印染厂开版画图)设计师名称": "徐煜耀"} 2025-12-15 09:39:39.139111+00 126 +79 2025-12-15 09:54:21.532577+00 {"(印染厂开版找图)开始时间": "2025-12-15 17:54:11", "(印染厂开版找图)设计师名称": "jimi"} 2025-12-15 09:54:21.532586+00 127 +80 2025-12-15 09:54:21.532577+00 {"(印染厂开版找图)开始时间": "2025-12-15 17:54:11", "(印染厂开版找图)设计师名称": "jimi"} 2025-12-15 09:54:21.532586+00 128 +81 2025-12-15 10:47:48.363664+00 {"(印染厂开版画图)设计师名称": "17796077643"} 2025-12-15 10:47:48.363674+00 129 +82 2025-12-15 11:42:43.535828+00 {"(印染厂开版调色)开始时间": "2025-12-15 19:42:24", "(印染厂开版调色)设计师名称": "13430306747"} 2025-12-15 11:42:43.535839+00 130 +83 2025-12-15 12:49:12.073006+00 {"(印染厂开版画图)开始时间": "2025-12-15 20:49:01", "(印染厂开版画图)设计师名称": "王中文"} 2025-12-15 12:49:12.073016+00 131 +84 2025-12-15 13:03:34.384757+00 {"(印染厂开版调色)开始时间": "2025-12-15 21:03:24", "(印染厂开版调色)设计师名称": "18620499805"} 2025-12-15 13:03:34.384768+00 132 +85 2025-12-15 13:03:39.712449+00 {"(印染厂开版调色)设计师名称": "18620499805"} 2025-12-15 13:03:39.71246+00 133 +86 2025-12-15 13:24:12.009821+00 {"(印染厂开版画图)开版编号": "80047", "(印染厂开版画图)设计师名称": "徐煜耀"} 2025-12-15 13:24:12.00983+00 134 +87 2025-12-15 13:53:13.939887+00 {"(印染厂开版画图)设计师名称": "17796077643"} 2025-12-15 13:53:13.939898+00 135 +88 2025-12-15 14:20:10.324609+00 {"(印染厂开版改图)开始时间": "2025-12-15 22:19:58", "(印染厂开版改图)设计师名称": "jimi"} 2025-12-15 14:20:10.324619+00 136 +89 2025-12-15 14:20:10.324609+00 {"(印染厂开版改图)开始时间": "2025-12-15 22:19:58", "(印染厂开版改图)设计师名称": "jimi"} 2025-12-15 14:20:10.324619+00 137 +90 2025-12-15 14:20:10.324609+00 {"(印染厂开版改图)开始时间": "2025-12-15 22:19:58", "(印染厂开版改图)设计师名称": "jimi"} 2025-12-15 14:20:10.324619+00 138 +91 2025-12-15 14:20:10.324609+00 {"(印染厂开版改图)开始时间": "2025-12-15 22:19:58", "(印染厂开版改图)设计师名称": "jimi"} 2025-12-15 14:20:10.324619+00 139 +92 2025-12-16 00:38:00.847796+00 {"(印染厂开版画图)开始时间": "2025-12-16 08:37:59", "(印染厂开版画图)设计师名称": "jimi"} 2025-12-16 00:38:00.847809+00 140 +93 2025-12-16 00:38:00.847796+00 {"(印染厂开版画图)开始时间": "2025-12-16 08:37:59", "(印染厂开版画图)设计师名称": "jimi"} 2025-12-16 00:38:00.847809+00 141 +94 2025-12-16 00:38:00.847796+00 {"(印染厂开版画图)开始时间": "2025-12-16 08:37:59", "(印染厂开版画图)设计师名称": "jimi"} 2025-12-16 00:38:00.847809+00 142 +95 2025-12-16 02:17:50.928795+00 {"(印染厂开版调色)开始时间": "2025-12-16 10:17:47", "(印染厂开版调色)设计师名称": "廖智仁"} 2025-12-16 02:17:50.928806+00 143 +96 2025-12-16 02:18:04.045757+00 {"(印染厂开版调色)开始时间": "2025-12-16 10:18:02", "(印染厂开版调色)设计师名称": "廖智仁"} 2025-12-16 02:18:04.045767+00 144 +97 2025-12-16 03:05:30.743432+00 {"(印染厂开版调色)开始时间": "2025-12-16 11:05:24", "(印染厂开版调色)设计师名称": "18620499805"} 2025-12-16 03:05:30.743443+00 145 +98 2025-12-16 03:41:50.440522+00 {"(印染厂开版画图)设计师名称": "17796077643"} 2025-12-16 03:41:50.440531+00 146 +99 2025-12-16 03:52:15.774304+00 {"(印染厂开版画图)设计师名称": "徐煜耀"} 2025-12-16 03:52:15.774314+00 147 +100 2025-12-16 04:51:30.976928+00 {"(印染厂开版画图)设计师名称": "王中文"} 2025-12-16 04:51:30.976941+00 148 +101 2025-12-16 04:51:35.069117+00 {"(印染厂开版调色)开始时间": "2025-12-16 12:51:36", "(印染厂开版调色)设计师名称": "王中文"} 2025-12-16 04:51:35.069131+00 149 +102 2025-12-16 05:05:00.817549+00 {"(印染厂开版调色)开始时间": "2025-12-16 13:04:59", "(印染厂开版调色)设计师名称": "廖智仁"} 2025-12-16 05:05:00.817559+00 150 +103 2025-12-16 05:18:56.894512+00 {"(印染厂开版画图)设计师名称": "徐煜耀"} 2025-12-16 05:18:56.894523+00 151 +104 2025-12-16 05:59:39.773273+00 {"(印染厂开版调色)开始时间": "2025-12-16 13:59:38", "(印染厂开版调色)设计师名称": "18620499805"} 2025-12-16 05:59:39.773283+00 152 +105 2025-12-16 06:48:00.266358+00 {"(印染厂开版画图)设计师名称": "17796077643"} 2025-12-16 06:48:00.266368+00 153 +106 2025-12-16 06:57:12.11606+00 {"(印染厂开版调色)开始时间": "2025-12-16 14:57:10", "(印染厂开版调色)设计师名称": "13430306747"} 2025-12-16 06:57:12.11607+00 154 +107 2025-12-16 06:57:30.646296+00 {"(印染厂开版调色)开始时间": "2025-12-16 14:57:31", "(印染厂开版调色)设计师名称": "13430306747"} 2025-12-16 06:57:30.646306+00 155 +108 2025-12-16 08:14:55.105342+00 {"(印染厂开版调色)设计师名称": "王中文"} 2025-12-16 08:14:55.105355+00 156 +109 2025-12-16 09:00:41.40681+00 {"设计师名称": "徐煜耀"} 2025-12-16 09:00:41.406821+00 157 +110 2025-12-16 10:51:06.266328+00 {"开始时间": "2025-12-16 18:50:31", "设计师名称": "15817101407"} 2025-12-16 10:51:06.266338+00 158 +111 2025-12-16 11:28:39.784829+00 {"电脑位置": "A1-D", "设计师名称": "13430306747"} 2025-12-16 11:28:39.784842+00 159 +112 2025-12-16 13:54:19.072712+00 {"完成时间": "2025-12-16 21:54:11", "电脑位置": "A1-D", "设计师名称": "13430306747"} 2025-12-16 13:54:19.072724+00 160 +113 2025-12-16 13:54:28.184681+00 {"完成时间": "2025-12-16 21:54:27", "电脑位置": "A1-D", "设计师名称": "13430306747"} 2025-12-16 13:54:28.184694+00 161 +114 2025-12-15 09:36:31.142744+00 {"(印染厂开版画图)开始时间": "2025-12-15 17:36:21", "(印染厂开版画图)设计师名称": "徐煜耀"} 2025-12-15 09:36:31.142754+00 162 +115 2025-12-17 01:36:47.283838+00 {"设计师名称": "jimi"} 2025-12-17 01:36:47.283849+00 163 +116 2025-12-17 01:36:47.283838+00 {"设计师名称": "jimi"} 2025-12-17 01:36:47.283849+00 164 +117 2025-12-17 01:36:47.283838+00 {"设计师名称": "jimi"} 2025-12-17 01:36:47.283849+00 165 +118 2025-12-17 01:36:47.283838+00 {"设计师名称": "jimi"} 2025-12-17 01:36:47.283849+00 166 +119 2025-12-17 02:54:39.826299+00 {"设计师名称": "18620499805"} 2025-12-17 02:54:39.826312+00 167 +120 2025-12-17 03:55:09.994984+00 {"设计师名称": "徐煜耀"} 2025-12-17 03:55:09.994996+00 168 +121 2025-12-17 08:34:23.529222+00 {"开始时间": "2025-12-17 16:34:23", "设计师名称": "15817101407"} 2025-12-17 08:34:23.529235+00 169 +122 2025-12-17 09:39:47.452816+00 {"设计师名称": "邓盛峰"} 2025-12-17 09:39:47.452829+00 170 +123 2025-12-17 13:17:21.611577+00 {"设计师名称": "15817101407"} 2025-12-17 13:17:21.611591+00 171 +\. + + +-- +-- 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 任务完成 +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 滚筒完成 +8 2025-11-18 08:12:47.849927+00 2025-12-16 08:49:01.576855+00 调色完成 +9 2025-11-18 08:13:08.015847+00 2025-12-16 08:50:06.420608+00 套样完成 套样完成 +10 2025-11-18 08:13:23.679914+00 2025-12-16 08:50:24.940758+00 改图完成 +11 2025-11-18 08:13:31.882922+00 2025-12-16 08:52:19.132296+00 P图完成 +12 2025-11-18 08:13:40.576658+00 2025-12-16 08:52:37.847745+00 配色完成 +7 2025-11-18 08:12:38.120754+00 2025-12-16 08:52:48.21428+00 画图完成 画图完成 +13 2025-11-18 08:13:49.180348+00 2025-12-16 08:53:38.201502+00 找图开发完成 +16 2025-12-04 06:56:50.977125+00 2025-12-16 08:55:46.701647+00 调色中 +17 2025-12-04 07:02:44.449707+00 2025-12-16 08:55:57.553302+00 套样中 套样中 +18 2025-12-04 07:08:06.62627+00 2025-12-16 08:58:05.652794+00 配色中 +19 2025-12-04 07:10:17.79009+00 2025-12-16 08:58:26.128582+00 找图开发中 +20 2025-12-04 07:12:27.674282+00 2025-12-16 08:58:40.769445+00 P图中 +21 2025-12-04 07:14:41.007709+00 2025-12-16 08:58:50.089224+00 改图中 +15 2025-12-04 06:55:42.047003+00 2025-12-17 01:38:25.843112+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 +160 18 89 +161 18 92 +162 19 89 +163 19 92 +164 20 89 +165 20 92 +166 21 89 +167 21 92 +168 15 89 +91 13 88 +92 7 88 +93 7 90 +94 7 91 +95 7 92 +96 7 93 +97 7 94 +98 7 95 +99 8 96 +100 8 88 +101 8 90 +102 8 91 +103 8 92 +104 8 93 +105 8 94 +106 8 95 +107 9 96 +108 9 88 +109 9 90 +110 9 91 +111 9 92 +112 9 93 +113 9 94 +114 9 95 +115 10 96 +116 10 88 +118 10 90 +119 10 91 +120 10 92 +121 10 93 +122 10 94 +123 10 95 +124 11 96 +125 11 88 +126 11 90 +127 11 91 +128 11 92 +129 11 93 +130 11 94 +131 11 95 +132 12 96 +133 12 88 +134 12 90 +135 12 91 +136 12 92 +137 12 93 +138 12 94 +139 12 95 +140 7 96 +141 13 96 +142 13 90 +143 13 91 +144 13 92 +145 13 93 +146 13 94 +147 13 95 +152 15 92 +156 16 89 +157 16 92 +158 17 89 +159 17 92 +\. + + +-- +-- 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 +88 2025-12-15 09:48:02.961848+00 2025-12-15 09:48:02.961855+00 电脑位置 \N 电脑位置 f f +89 2025-12-16 08:44:09.96314+00 2025-12-16 08:44:14.978948+00 开始时间 \N f f +90 2025-12-16 08:44:57.581902+00 2025-12-16 08:44:57.581912+00 完成时间 \N f f +91 2025-12-16 08:45:02.252646+00 2025-12-16 08:45:02.252656+00 状态 \N f f +92 2025-12-16 08:45:18.571382+00 2025-12-16 08:45:18.571389+00 设计师名称 \N f f +93 2025-12-16 08:45:24.163011+00 2025-12-16 08:45:24.163018+00 描述 \N f f +94 2025-12-16 08:45:30.143174+00 2025-12-16 08:45:30.143181+00 附件 \N f t +95 2025-12-16 08:45:39.56552+00 2025-12-16 08:45:39.56553+00 完成数量 \N f f +96 2025-12-16 08:47:58.213502+00 2025-12-16 08:47:58.213508+00 开版编号 \N f f +\. + + +-- +-- 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 +2025-12-10 05:58:53.624905+00 2025-12-10 05:58:53.62491+00 369 457.00 1 1 2799 33 f \N +2025-12-11 08:57:07.853192+00 2025-12-11 08:57:07.853197+00 370 50.00 1 1 2800 34 f \N +2025-12-11 08:57:53.31033+00 2025-12-11 08:57:53.310336+00 371 26.67 1 1 2800 35 f \N +2025-12-11 08:57:53.31081+00 2025-12-11 08:57:53.310814+00 372 26.67 1 1 2800 35 f \N +2025-12-11 08:57:53.311+00 2025-12-11 08:57:53.311003+00 373 26.66 1 1 2800 35 f \N +2025-12-11 08:59:03.270135+00 2025-12-11 08:59:03.27014+00 374 26.67 1 1 2800 36 f \N +2025-12-11 08:59:03.270587+00 2025-12-11 08:59:03.27059+00 375 26.67 1 1 2800 36 f \N +2025-12-11 08:59:03.270772+00 2025-12-11 08:59:03.270775+00 376 26.66 1 1 2800 36 f \N +2025-12-11 09:00:28.116581+00 2025-12-11 09:00:28.116586+00 377 10.00 1 1 2800 37 f \N +2025-12-11 09:00:28.117032+00 2025-12-11 09:00:28.117036+00 378 50.00 1 1 2800 37 f \N +2025-12-11 09:09:08.765565+00 2025-12-11 09:09:08.765569+00 379 10.00 1 1 2800 38 f \N +2025-12-11 09:09:08.766045+00 2025-12-11 09:09:08.766049+00 380 10.00 1 1 2800 38 f \N +2025-12-11 10:10:00.537072+00 2025-12-11 10:10:00.537077+00 381 1.00 1 1 2800 39 f \N +2025-12-12 06:58:04.548127+00 2025-12-12 06:58:04.548131+00 382 456.00 1 1 2800 40 f \N +2025-12-12 06:58:04.548598+00 2025-12-12 06:58:04.548601+00 383 456.00 1 1 2800 40 f \N +2025-12-12 06:58:04.548787+00 2025-12-12 06:58:04.548791+00 384 456.00 1 1 2800 40 f \N +2025-12-12 06:58:04.549272+00 2025-12-12 06:58:04.549277+00 385 456.00 1 1 2799 40 f \N +2025-12-12 06:58:04.549452+00 2025-12-12 06:58:04.549455+00 386 456.00 1 1 2799 40 f \N +2025-12-12 06:58:04.549605+00 2025-12-12 06:58:04.549608+00 387 456.00 1 1 2799 40 f \N +2025-12-12 07:03:40.996649+00 2025-12-12 07:03:40.996654+00 388 100.00 1 1 2800 41 f \N +2025-12-12 07:03:40.997122+00 2025-12-12 07:03:40.997125+00 389 120.00 1 1 2800 41 f \N +2025-12-12 07:03:40.997627+00 2025-12-12 07:03:40.997631+00 390 200.00 1 1 2799 41 f \N +2025-12-12 07:54:13.633301+00 2025-12-12 07:54:13.633307+00 391 15.00 1 1 2800 42 f \N +2025-12-12 07:56:07.213271+00 2025-12-12 07:56:07.213278+00 392 100.00 1 1 2800 43 f \N +2025-12-12 07:56:07.213738+00 2025-12-12 07:56:07.213741+00 393 150.00 1 1 2800 43 f \N +2025-12-12 12:26:32.652825+00 2025-12-12 12:26:32.652832+00 394 456.00 1 1 2800 44 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 +2025-12-10 05:58:53.623415+00 2025-12-10 05:58:53.623423+00 33 2 6 3 f \N \N 2 1 5 +2025-12-11 08:57:07.851842+00 2025-12-11 08:57:07.851851+00 34 2 6 4 f \N \N 2 1 5 +2025-12-11 08:57:53.308452+00 2025-12-11 08:57:53.308464+00 35 2 6 5 f \N \N 2 1 5 +2025-12-11 08:59:03.268833+00 2025-12-11 08:59:03.268841+00 36 2 6 6 f \N \N 2 1 5 +2025-12-11 09:00:28.115395+00 2025-12-11 09:00:28.115404+00 37 2 6 7 f \N \N 2 1 3 +2025-12-11 09:09:08.764336+00 2025-12-11 09:09:08.764345+00 38 2 6 8 f \N \N 2 1 3 +2025-12-11 10:10:00.53586+00 2025-12-11 10:10:00.535868+00 39 2 6 9 f \N \N 2 1 3 +2025-12-12 06:58:04.546867+00 2025-12-12 06:58:04.546875+00 40 2 6 11 f \N \N 2 1 3 +2025-12-12 07:03:40.995415+00 2025-12-12 07:03:40.995423+00 41 2 6 12 f \N \N 2 1 3 +2025-12-12 07:54:13.631429+00 2025-12-12 07:54:13.631442+00 42 2 6 10 f \N \N 2 1 5 +2025-12-12 07:56:07.212043+00 2025-12-12 07:56:07.212051+00 43 2 6 13 f \N \N 2 1 3 +2025-12-12 12:26:32.651595+00 2025-12-12 12:26:32.651602+00 44 2 6 15 f \N \N 2 1 3 +\. + + +-- +-- 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', 791, true); + + +-- +-- Name: api_mdy_plate_order_staging_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.api_mdy_plate_order_staging_id_seq', 1, false); + + +-- +-- Name: api_uploaded_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.api_uploaded_file_id_seq', 107, true); + + +-- +-- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.auth_group_id_seq', 4, true); + + +-- +-- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.auth_group_permissions_id_seq', 663, true); + + +-- +-- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.auth_permission_id_seq', 233, true); + + +-- +-- Name: auth_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.auth_user_groups_id_seq', 119, true); + + +-- +-- Name: auth_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.auth_user_id_seq', 67, 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', 2261, 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', 66, true); + + +-- +-- Name: basic_info_employeetype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.basic_info_employeetype_id_seq', 9, 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', 39342, 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', 2229, 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', 27, true); + + +-- +-- Name: business_customerbalance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.business_customerbalance_id_seq', 3, 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', 4, true); + + +-- +-- Name: business_salesorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.business_salesorder_id_seq', 15, true); + + +-- +-- Name: business_salesorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.business_salesorderitem_id_seq', 23, true); + + +-- +-- Name: business_salesreturnorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.business_salesreturnorder_id_seq', 10, true); + + +-- +-- Name: business_salesreturnorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.business_salesreturnorderitem_id_seq', 10, 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', 550, true); + + +-- +-- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.django_content_type_id_seq', 57, true); + + +-- +-- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.django_migrations_id_seq', 121, true); + + +-- +-- Name: printing_plateorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.printing_plateorder_id_seq', 80077, true); + + +-- +-- Name: printing_printingjob_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.printing_printingjob_id_seq', 25, true); + + +-- +-- Name: printing_printingjobbatchadvancerecord_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.printing_printingjobbatchadvancerecord_id_seq', 5, true); + + +-- +-- Name: printing_printingjobbatchadvancerecord_printing_jobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.printing_printingjobbatchadvancerecord_printing_jobs_id_seq', 11, true); + + +-- +-- Name: printing_printingorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.printing_printingorder_id_seq', 26, 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', 123, true); + + +-- +-- Name: stateflow_order_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.stateflow_order_id_seq', 128, true); + + +-- +-- Name: stateflow_orderstatelog_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.stateflow_orderstatelog_id_seq', 171, 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', 168, true); + + +-- +-- Name: stateflow_stateparameter_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.stateflow_stateparameter_id_seq', 96, 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', 394, true); + + +-- +-- Name: stock_stockchangerecord_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.stock_stockchangerecord_id_seq', 44, 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_mdy_plate_order_staging api_mdy_plate_order_staging_mdy_rowid_key; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.api_mdy_plate_order_staging + ADD CONSTRAINT api_mdy_plate_order_staging_mdy_rowid_key UNIQUE (mdy_rowid); + + +-- +-- Name: api_mdy_plate_order_staging api_mdy_plate_order_staging_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.api_mdy_plate_order_staging + ADD CONSTRAINT api_mdy_plate_order_staging_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_printingjobbatchadvancerecord_printing_jobs printing_printingjobbatc_printingjobbatchadvancer_a6aac755_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord_printing_jobs + ADD CONSTRAINT printing_printingjobbatc_printingjobbatchadvancer_a6aac755_uniq UNIQUE (printingjobbatchadvancerecord_id, printingjob_id); + + +-- +-- Name: printing_printingjobbatchadvancerecord printing_printingjobbatchadvancerecord_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord + ADD CONSTRAINT printing_printingjobbatchadvancerecord_pkey PRIMARY KEY (id); + + +-- +-- Name: printing_printingjobbatchadvancerecord_printing_jobs printing_printingjobbatchadvancerecord_printing_jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord_printing_jobs + ADD CONSTRAINT printing_printingjobbatchadvancerecord_printing_jobs_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_mdy_plate_order_staging_mdy_rowid_47a415a9_like; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX api_mdy_plate_order_staging_mdy_rowid_47a415a9_like ON public.api_mdy_plate_order_staging USING btree (mdy_rowid varchar_pattern_ops); + + +-- +-- 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_printing_job_id_cadc4cb0; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX business_salesorderitem_printing_job_id_cadc4cb0 ON public.business_salesorderitem USING btree (printing_job_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_created_by_id_dd0abe29; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX printing_plateorder_created_by_id_dd0abe29 ON public.printing_plateorder USING btree (created_by_id); + + +-- +-- 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_printingjobbatcha_printing_order_id_f76a3784; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX printing_printingjobbatcha_printing_order_id_f76a3784 ON public.printing_printingjobbatchadvancerecord USING btree (printing_order_id); + + +-- +-- Name: printing_printingjobbatcha_printingjob_id_fd12a8bc; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX printing_printingjobbatcha_printingjob_id_fd12a8bc ON public.printing_printingjobbatchadvancerecord_printing_jobs USING btree (printingjob_id); + + +-- +-- Name: printing_printingjobbatcha_printingjobbatchadvancerec_304a04ae; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX printing_printingjobbatcha_printingjobbatchadvancerec_304a04ae ON public.printing_printingjobbatchadvancerecord_printing_jobs USING btree (printingjobbatchadvancerecord_id); + + +-- +-- Name: printing_printingjobbatchadvancerecord_created_by_id_835b510e; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX printing_printingjobbatchadvancerecord_created_by_id_835b510e ON public.printing_printingjobbatchadvancerecord USING btree (created_by_id); + + +-- +-- Name: printing_printingjobbatchadvancerecord_state_id_de366c02; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX printing_printingjobbatchadvancerecord_state_id_de366c02 ON public.printing_printingjobbatchadvancerecord USING btree (state_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_printing_job_id_cadc4cb0_fk_printing_; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.business_salesorderitem + ADD CONSTRAINT business_salesorderi_printing_job_id_cadc4cb0_fk_printing_ FOREIGN KEY (printing_job_id) REFERENCES public.printing_printingjob(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_created_by_id_dd0abe29_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.printing_plateorder + ADD CONSTRAINT printing_plateorder_created_by_id_dd0abe29_fk_auth_user_id FOREIGN KEY (created_by_id) REFERENCES public.auth_user(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_printingjobbatchadvancerecord printing_printingjob_created_by_id_835b510e_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord + ADD CONSTRAINT printing_printingjob_created_by_id_835b510e_fk_auth_user FOREIGN KEY (created_by_id) REFERENCES public.auth_user(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_printingjobbatchadvancerecord printing_printingjob_printing_order_id_f76a3784_fk_printing_; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord + ADD CONSTRAINT printing_printingjob_printing_order_id_f76a3784_fk_printing_ FOREIGN KEY (printing_order_id) REFERENCES public.printing_printingorder(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: printing_printingjobbatchadvancerecord_printing_jobs printing_printingjob_printingjob_id_fd12a8bc_fk_printing_; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord_printing_jobs + ADD CONSTRAINT printing_printingjob_printingjob_id_fd12a8bc_fk_printing_ FOREIGN KEY (printingjob_id) REFERENCES public.printing_printingjob(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: printing_printingjobbatchadvancerecord_printing_jobs printing_printingjob_printingjobbatchadva_304a04ae_fk_printing_; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord_printing_jobs + ADD CONSTRAINT printing_printingjob_printingjobbatchadva_304a04ae_fk_printing_ FOREIGN KEY (printingjobbatchadvancerecord_id) REFERENCES public.printing_printingjobbatchadvancerecord(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_printingjobbatchadvancerecord printing_printingjob_state_id_de366c02_fk_stateflow; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord + ADD CONSTRAINT printing_printingjob_state_id_de366c02_fk_stateflow FOREIGN KEY (state_id) REFERENCES public.stateflow_state(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 rySwd6Qh33oXQktWVKwYFIDWB84LoCc2TXus2e8nttjTa9Cz1YKkidXKHTxchP9 + diff --git a/docs/2025-12-17.md b/docs/2025-12-17.md new file mode 100644 index 0000000..d5d3493 --- /dev/null +++ b/docs/2025-12-17.md @@ -0,0 +1,59 @@ +### 2025-12-17 工作总结(flower.utils 重构) + +#### 目标 +- **降低 `flower.utils` 单文件复杂度**:将明道云/同步相关能力拆分为可维护的模块化结构。 +- **保持向后兼容**:不改动现有调用方(例如 `api_v1/tasks.py` 中 `from flower.utils import fetch_products_from_mingdaoyun`)。 +- **为后续“开版数据表”关联查询打基础**:沉淀 worksheetId、rowId 查询封装、类型定义与测试。 + +#### 主要改动 +- **`flower.utils` 目录化(从单文件改为包)** + - 将原 `flower/utils.py` 拆分为 `flower/utils/` 包,并删除旧文件。 + - 新增 `flower/utils/__init__.py` 作为兼容入口,继续导出原先常用符号。 + - 明道云相关实现统一放到 `flower/utils/mingdaoyun/`。 + +- **明道云客户端与拉取函数模块化** + - 新增客户端:`flower/utils/mingdaoyun/client.py` + - `MingDaoYunClient`(aiohttp 异步客户端) + - `get_default_mingdaoyun_client()`(复用现有 appKey/sign 的默认构造) + - 新增拉取函数:`flower/utils/mingdaoyun/fetch.py` + - `fetch_products_from_mingdaoyun` / `fetch_customers_from_mingdaoyun`(保持原行为) + - `fetch_plate_orders_from_mingdaoyun`:开版表拉取(先返回原始 rows dict,不做字段映射) + - `fetch_row_by_rowid_from_mingdaoyun`:按 rowId 等值 filters 查询单条记录(后续关联表查询的通用工具) + +- **明道云映射与类型定义沉淀** + - `flower/utils/mingdaoyun/mappings.py` + - 维护 worksheetId 常量与映射:产品/客户/面料/开版表 + - 补充开版表关联数据 worksheetId:画图/调色/套纸样/改图/配色/照图开发 + - 新增 `plate_order_related_worksheet_map` 与 `plate_order_related_worksheet_map_cn`,便于后续跨表关联查询定位目标表 + - `flower/utils/mingdaoyun/models.py` + - Pydantic 类型:`Product/Customer/Fabric` 等 + - 通用结构:`MDYRelationItem/MDYAttachmentItem/MDYCollaboratorItem` + - 开版表类型占位:`MDYPlateOrder`(仅用于后续解析阶段) + - `flower/utils/mingdaoyun/parsers.py` + - `pick_product/pick_customer/pick_fabric`:保持现有同步风格的字段提取方法 + +#### 测试与质量保障(与 utils 重构直接相关) +- **新增独立单元测试**:`api_v1/test_mingdaoyun_utils.py` + - 使用 mock,避免真实网络请求。 + - 覆盖: + - `pick_*` 解析与类型转换 + - `fetch_*` 请求 payload 组装与返回解析 + - `fetch_row_by_rowid_from_mingdaoyun`(以产品表 `spmx` 为例的 rowId 查询) + - `MingDaoYunClient.post` 的认证参数合并与 header 透传 +- **运行方式**(项目约定): + - `uv run python manage.py test api_v1.test_mingdaoyun_utils` + +#### 配套改动(为开版同步做隔离暂存,不影响业务数据) +- **新增暂存模型**:`api_v1.models.MDYPlateOrderStaging` + - **仅保留**:`mdy_rowid`(唯一 + 索引)与 `raw(JSON)`(整行原始数据) + - 迁移:`api_v1/migrations/0004_mdy_plate_order_staging.py` + - admin 注册:`api_v1/admin.py` + +#### 穿插的测试修复(独立简述) +- **问题**:`api_v1` 打印相关测试大量失败,根因是 `stateflow.services.advance_to_next_state` 对 `BusinessObject.content_type/object_id` 的强约束与部分“非标准创建路径”不兼容。 +- **修复**:在 `advance_to_next_state` 内加入“自愈绑定”逻辑:当未绑定/解析不到 `content_object` 时,尝试通过 `business_object.printing_job / plate_order` 反向一对一关系推断真实业务对象并补齐绑定,再继续推进。 +- **结果**:`uv run manage.py test api_v1` 全绿(`265 tests`,`skipped=2`,`expected failures=1`)。 + +#### 后续建议 +- 将明道云 `appKey/sign` 从硬编码迁移到环境变量或 Django settings(避免泄露与便于多环境配置)。 +- 在“开版表关联查询”落地时,基于 `plate_order_related_worksheet_map(_cn)` + `fetch_row_by_rowid_from_mingdaoyun` 补齐跨表解析与字段属性化提取策略。 diff --git a/docs/api_v1_mdy_plate_order_staging.md b/docs/api_v1_mdy_plate_order_staging.md new file mode 100644 index 0000000..8d52613 --- /dev/null +++ b/docs/api_v1_mdy_plate_order_staging.md @@ -0,0 +1,112 @@ +## API:开版暂存(明道云)查询 + +### 概述 +该接口用于查询 `api_v1.models.MDYPlateOrderStaging` 中的“开版暂存”数据。 + +- **只读**:仅提供 `list/retrieve`(不支持创建/更新/删除) +- **分页**:LimitOffset(`limit` / `offset`) +- **默认排序**:按 `ctime` 倒序(`-ctime`),并将 `ctime = null` 的记录排在最后 +- **过滤**:支持按明道云字段 `62d52f4b8d2972284492dd0e`(设计编号/订单id)精确匹配 +- **返回结构**:`raw` 与 `related` 两个 JSONField 在输出时会做“可读化/碾平”处理 + +### Endpoint +- **List**:`GET /api/v1/mdy-plate-order-staging/` +- **Detail**:`GET /api/v1/mdy-plate-order-staging/{id}/` + +### 权限与认证 +- 当前接口权限行为 **遵循项目 DRF 全局配置**。 +- 如启用 `DjangoModelPermissions`,则需要用户具备 `api_v1.view_mdyplateorderstaging` 权限。 + +### Query Params +#### 分页 +- **limit**:返回条数 +- **offset**:偏移量 + +#### 过滤 +- **raw__62d52f4b8d2972284492dd0e**:设计编号/订单id(精确匹配) + +示例: + +```http +GET /api/v1/mdy-plate-order-staging/?limit=20&offset=0&raw__62d52f4b8d2972284492dd0e=82724 +``` + +### 默认排序规则 +接口固定按以下规则排序(不开放 `ordering=` 参数): + +1. `ctime` 倒序:`-ctime`(`nulls_last=True`) +2. `id` 倒序:`-id` + +### 返回字段说明(results[] 内的对象) +- **id**:本地数据库主键 +- **mdy_rowid**:明道云 rowid(唯一) +- **ctime**:明道云系统字段 ctime(模型字段,便于排序) +- **utime**:明道云系统字段 utime(模型字段) +- **created_at / updated_at**:本地记录创建/更新时间(ModelBase) +- **design_no**:便捷字段,等价于 `raw["62d52f4b8d2972284492dd0e"]` +- **raw**:对 `MDYPlateOrderStaging.raw` 的“可读化/碾平”输出 +- **related**:对 `MDYPlateOrderStaging.related` 的“碾平”输出(list[dict]) + +### raw / related 的碾平规则 +#### raw +输出时会把明道云 `controlId -> 字段中文名`,并做基础 normalize: + +- **已知字段映射**:来自 `flower.utils.mingdaoyun.mappings.plate_order_field_definitions` + - 输出 key 使用字段中文名(例如 `设计编号`、`款号名称`) + - value 会尝试把字符串 JSON(如 `"[]"`、`"[{...}]"`)解析成 Python/JSON 对象 +- **系统字段**:若 `raw` 内存在 `rowid/ctime/utime`,会一并输出 +- **未映射字段不丢失**:如果 `raw` 中存在未在 `plate_order_field_definitions` 里声明的字段,仍会保留,key 使用原始 `controlId` 字符串 + +#### related +`related` 在入库阶段已经是“单条关联记录一个 dict”的结构(`list[dict]`)。 + +输出时: +- 对每个 dict 的 value 做一次 normalize(同上) +- 如果出现非 dict 的异常元素,兜底返回 `{ "value": <原值> }` 便于排查 + +### 响应示例 +```json +{ + "count": 1, + "next": null, + "previous": null, + "results": [ + { + "id": 123, + "mdy_rowid": "66xxxxxxxxxxxxxxxxxxxxxx", + "ctime": "2025-12-17T03:20:00Z", + "utime": "2025-12-17T03:21:00Z", + "created_at": "2025-12-17T03:30:00Z", + "updated_at": "2025-12-17T03:30:00Z", + "design_no": "82724", + "raw": { + "rowid": "66xxxxxxxxxxxxxxxxxxxxxx", + "ctime": "2025-12-17 11:20:00", + "utime": "2025-12-17 11:21:00", + "设计编号": "82724", + "款号名称": "某款号", + "62d52f4b8d2972284492dd99": "(未映射字段示例:以 controlId 原样返回)" + }, + "related": [ + { + "source": "drawing", + "source_name": "画图", + "worksheet_id": "668ba100fb551c850214066b", + "rowid": "66yyyyyyyyyyyyyyyyyyyyyy", + "设计师名字": "张三", + "电脑位置": "D:/xxx" + } + ] + } + ] +} +``` + +### 性能说明 +- 过滤字段 `raw__62d52f4b8d2972284492dd0e` 对应 PostgreSQL 表达式索引(见迁移 `api_v1/migrations/0006_mdy_plate_order_staging_raw_id_index.py`),用于加速按设计编号检索。 + +### 实现位置 +- View/Serializer:`api_v1/views/mingdaoyun/plate_order_staging.py` +- 路由注册:`api_v1/urls.py`(`mdy-plate-order-staging`) +- 字段映射:`flower/utils/mingdaoyun/mappings.py`(`plate_order_field_definitions`) +- 碾平工具:`flower/utils/mingdaoyun/relations.py`(`flatten_row_by_field_definitions` / `normalize_mdy_value`) diff --git a/docs/api_v2_plate_orders_batch_update.md b/docs/api_v2_plate_orders_batch_update.md new file mode 100644 index 0000000..bd5191d --- /dev/null +++ b/docs/api_v2_plate_orders_batch_update.md @@ -0,0 +1,156 @@ +## API v2:PlateOrder 批量更新(batch-update) + +### 1. 概述 +用于把**同一份更新数据**(`data`)批量应用到多条开版订单(`PlateOrder`)。 + +- **一致性**:全成功 / 全失败(任意 id 不存在或校验失败则全部不更新) +- **字段控制**:仅允许更新“白名单字段”(服务端控制,前端不可越权更新) +- **不触发流程副作用**:内部使用 `queryset.update()` 批量写库,不会触发 `save()` 逻辑(例如自动创建/更新流程实例等) +- **支持 dry_run**:只校验与预览,不实际写库 + +### 2. Endpoint +- **Method**:POST +- **Path**:`/api/v2/plate-orders/batch-update/` +- **Content-Type**:`application/json` + +### 3. 权限要求 +- 需要登录(`IsAuthenticated`) +- 需要工厂用户(`IsPrintingFactory`) +- 需要权限:`printing.change_plateorder` +- 若 `data` 包含 `is_invalid`: + - `is_invalid=true` 额外需要 `printing.can_invalidate_plateorder` + - `is_invalid=false` 额外需要 `printing.can_activate_plateorder` + +### 4. 请求参数(Body) + +#### 4.1 JSON Schema +```json +{ + "plate_order_ids": [1, 2, 3], + "data": { + "urgency_level": "加急", + "designer": 10 + }, + "dry_run": false +} +``` + +#### 4.2 字段说明 +- **plate_order_ids**:`int[]`(必填) + - 需要更新的 PlateOrder id 列表 + - 会自动去重(保持首个出现顺序) + - 任意一个 id 不存在:直接 400(不做部分更新) +- **data**:`object`(必填) + - 仅包含需要更新的字段键值对(字段必须在“白名单字段”中) + - 只要 `data` 校验失败:直接 400,且不会更新任何订单 +- **dry_run**:`boolean`(可选,默认 `false`) + - `true`:仅校验、返回匹配到的 id 与原始 data,不写库 + +### 5. 允许批量更新的字段(白名单) +> 只允许更新以下字段;其它字段(例如 `process`/`business_object`/`created_by`/`plate_image` 等)都会被拒绝。 + +| 字段名 | 类型 | 示例 | 备注 | +|---|---|---|---| +| original_id | int \| null | 12345 | 克隆来源订单ID | +| design_code | string \| null | "D20251218" | 设计编号 | +| plate_type | string \| null | "首版" | 起版情况 | +| plate_date | datetime \| null | "2025-12-18T10:00:00Z" | 下版时间 | +| plate_method | string \| null | "圆网" | 开版方式 | +| image_name | string \| null | "图A" | 图片名称 | +| plate_notes | string \| null | "注意事项" | 打版注意事项 | +| reprint_reason | string \| null | "复版原因" | 复版原因 | +| urgency_level | string | "正常"/"加急" | 紧急程度 | +| is_invalid | boolean | true/false | 作废/恢复(有额外权限要求) | +| customer | int | 100 | 客户ID(不可为 null) | +| area | string \| null | "广州" | 区域 | +| default_address | string \| null | "XX路" | 默认地址 | +| salesperson | int \| null | 11 | 销售员 Employee ID | +| merchandiser | int \| null | 12 | 跟单员 Employee ID | +| designer | int \| null | 13 | 设计师 Employee ID | +| style_name | string \| null | "S1" | 款号名称 | +| fabric | string \| null | "棉" | 布料 | +| fabric_source | string \| null | "现货" | 布料来源 | +| width | string \| null | "150cm" | 幅宽 | +| production_method | string \| null | "现货" | 做货方式 | +| is_mark_frame | boolean | true/false | 是否套唛架 | +| drawing_rating | string \| null | "A" | 画图评级 | +| color_matching_rating | string \| null | "B" | 调色评级 | +| sample_rating | string \| null | "C" | 套样评级 | +| difficulty_rating | string \| null | "简单" | 难度评级 | +| sample_meter | string \| null | "5米" | 米样(文本) | +| required_sample_meters | number \| null | 12.5 | 客户要求米样米数(Decimal) | +| required_completion_date | datetime \| null | "2025-12-20T00:00:00Z" | 要求完成时间 | +| completion_date | datetime \| null | "2025-12-19T12:00:00Z" | 完成时间 | +| approval_result | string \| null | "通过" | 审批结果 | +| is_ordered | boolean | true/false | 是否已下单 | +| customer_feedback | string \| null | "请改色" | 客户修改意见 | + +> datetime 建议使用 ISO 8601 字符串(Django/DRF 默认可解析)。 + +### 6. 响应 + +#### 6.1 成功(dry_run=false) +- **HTTP 200** +```json +{ + "detail": "批量更新成功", + "updated_count": 3, + "plate_order_ids": [1, 2, 3] +} +``` + +#### 6.2 成功(dry_run=true) +- **HTTP 200** +```json +{ + "dry_run": true, + "plate_order_ids": [1, 2, 3], + "matched_count": 3, + "data": { + "urgency_level": "加急", + "designer": 10 + } +} +``` + +### 7. 错误返回 + +#### 7.1 字段不在白名单 +- **HTTP 400** +```json +{ + "detail": "不支持批量更新字段: process", + "allowed_fields": ["..." ] +} +``` + +#### 7.2 部分 id 不存在 +- **HTTP 400** +```json +{ + "detail": "以下 PlateOrder 不存在: 999999" +} +``` + +#### 7.3 权限不足 +- **HTTP 403** +```json +{ "detail": "您没有权限批量更新开版订单" } +``` +或(作废/恢复权限不足): +```json +{ "detail": "您没有权限作废开版订单" } +``` + +#### 7.4 字段类型/外键校验失败(DRF 校验错误) +- **HTTP 400**(典型结构示例) +```json +{ + "data": { + "designer": ["Invalid pk \"999\" - object does not exist."] + } +} +``` + +### 8. 使用建议 +- 批量更新是“同一份 data 应用到多个订单”。如果每个订单需要不同字段值,请拆成多次调用或使用单条更新接口。 diff --git a/flower/utils/__init__.py b/flower/utils/__init__.py index e3ddabd..cf6089d 100644 --- a/flower/utils/__init__.py +++ b/flower/utils/__init__.py @@ -43,10 +43,18 @@ from .mingdaoyun import ( pick_fabric, pick_product, plate_order_field_definitions, + plate_order_related_field_definitions, plate_order_related_worksheet_map, plate_order_related_worksheet_map_cn, + plate_order_relation_control_map, plate_order_type_map, product_type_map, + # relations / flatten utils + normalize_mdy_value, + extract_relation_rowids, + extract_plate_order_related_rowids, + flatten_row_by_field_definitions, + flatten_plate_order_related_row, sync_fabric_from_mingdaoyun, ) @@ -75,9 +83,17 @@ __all__ = [ "customer_type_map", "fabric_type_map", "plate_order_field_definitions", + "plate_order_related_field_definitions", "plate_order_related_worksheet_map", "plate_order_related_worksheet_map_cn", + "plate_order_relation_control_map", "plate_order_type_map", + # relations / flatten utils + "normalize_mdy_value", + "extract_relation_rowids", + "extract_plate_order_related_rowids", + "flatten_row_by_field_definitions", + "flatten_plate_order_related_row", # models "Product", "ProductListResponse", diff --git a/flower/utils/mingdaoyun/__init__.py b/flower/utils/mingdaoyun/__init__.py index e539648..5f0fcb9 100644 --- a/flower/utils/mingdaoyun/__init__.py +++ b/flower/utils/mingdaoyun/__init__.py @@ -29,8 +29,10 @@ from .mappings import ( fabric_type_map, mdy_table_map, plate_order_field_definitions, + plate_order_related_field_definitions, plate_order_related_worksheet_map, plate_order_related_worksheet_map_cn, + plate_order_relation_control_map, plate_order_type_map, product_type_map, ) @@ -45,6 +47,13 @@ from .models import ( ProductListResponse, ) from .parsers import pick_customer, pick_fabric, pick_product +from .relations import ( + extract_plate_order_related_rowids, + extract_relation_rowids, + flatten_plate_order_related_row, + flatten_row_by_field_definitions, + normalize_mdy_value, +) __all__ = [ # client @@ -71,8 +80,10 @@ __all__ = [ "customer_type_map", "fabric_type_map", "plate_order_field_definitions", + "plate_order_related_field_definitions", "plate_order_related_worksheet_map", "plate_order_related_worksheet_map_cn", + "plate_order_relation_control_map", "plate_order_type_map", # models "Product", @@ -87,6 +98,12 @@ __all__ = [ "pick_product", "pick_customer", "pick_fabric", + # relations / flatten utils + "normalize_mdy_value", + "extract_relation_rowids", + "extract_plate_order_related_rowids", + "flatten_row_by_field_definitions", + "flatten_plate_order_related_row", # fetch "fetch_products_from_mingdaoyun", "fetch_customers_from_mingdaoyun", diff --git a/flower/utils/mingdaoyun/fetch.py b/flower/utils/mingdaoyun/fetch.py index a48301f..d24d5bb 100644 --- a/flower/utils/mingdaoyun/fetch.py +++ b/flower/utils/mingdaoyun/fetch.py @@ -126,7 +126,12 @@ async def fetch_row_by_rowid_from_mingdaoyun( if not rows: return None if isinstance(rows[0], dict): - return rows[0] + first = rows[0] + # 明道云在 filters 不合法/不生效时可能仍返回默认列表数据。 + # 这里做一次校验,避免“误返回不匹配的第一条记录”。 + if first.get("rowid") != rowid: + return None + return first return None diff --git a/flower/utils/mingdaoyun/mappings.py b/flower/utils/mingdaoyun/mappings.py index 801f585..4ab06ec 100644 --- a/flower/utils/mingdaoyun/mappings.py +++ b/flower/utils/mingdaoyun/mappings.py @@ -45,6 +45,158 @@ plate_order_related_worksheet_map_cn = { "照图开发": MDY_WORKSHEET_ID_PLATE_ORDER_IMAGE_DEVELOPMENT, } +# ------------------------------------------------------------------------------ +# 明道云:开版相关“关联表”字段映射(用于后续关联查询/解析) +# +# 说明: +# - 这里记录的是“字段 controlId -> 字段含义/类型/备注”。 +# - Relation(29) 字段在写入时通常按文档要求使用 rowId 字符串(多条用逗号分割、全量覆盖), +# 但 getFilterRows 拉取时返回结构可能是 list[{"rowid","name","link"}],解析时需兼容两种形态。 +# ------------------------------------------------------------------------------ +plate_order_related_field_definitions: Dict[str, Dict[str, Any]] = { + # 1) 画图 + "drawing": { + "worksheet_id": MDY_WORKSHEET_ID_PLATE_ORDER_DRAWING, + "name": "画图", + "fields": { + "62d7f09ad55983029b644b25": {"name": "设计师名字", "type": "Text"}, + "62d52f4b8d2972284492dda0": {"name": "电脑位置", "type": "Text"}, + "62d52f4b8d2972284492dd9b": { + "name": "附件", + "type": "Attachment", + "note": "json,支持外部链接和 Base64 文件流", + }, + "6412d650120c799be027953d": { + "name": "开版管理", + "type": "Relation", + "note": "String 字符串,多条记录 rowId 用(,)分割,全量覆盖操作", + }, + "62d52f4b8d2972284492dd9d": { + "name": "开发管理", + "type": "Relation", + "note": "String 字符串,多条记录 rowId 用(,)分割,全量覆盖操作", + }, + }, + }, + # 2) 调色 + "coloring": { + "worksheet_id": MDY_WORKSHEET_ID_PLATE_ORDER_COLORING, + "name": "调色", + "fields": { + "62d7f0c2d121077a8492619d": {"name": "设计师名字", "type": "Text"}, + "62d52f4b8d2972284492dda8": {"name": "电脑位置", "type": "Text"}, + "62d52f4b8d2972284492dda3": { + "name": "附件", + "type": "Attachment", + "note": "json,支持外部链接和 Base64 文件流", + }, + "6716620b985d1a2af61776b5": { + "name": "完成数量", + "type": "Number", + "note": "Double(例如 666.66)", + }, + "62d52f4b8d2972284492dda5": { + "name": "开发管理", + "type": "Relation", + "note": "String 字符串,多条记录 rowId 用(,)分割,全量覆盖操作", + }, + }, + }, + # 3) 套纸样 + "pattern_set": { + "worksheet_id": MDY_WORKSHEET_ID_PLATE_ORDER_PATTERN_SET, + "name": "套纸样", + "fields": { + "62d7f0cfa72269e1965389e7": {"name": "设计师名字", "type": "Text"}, + "62d52f4b8d2972284492de8c": {"name": "电脑位置", "type": "Text"}, + "62d52f4b8d2972284492de89": { + "name": "附件", + "type": "Attachment", + "note": "json,支持外部链接和 Base64 文件流", + }, + "671661bc8d15ca93fdec7e5f": { + "name": "完成数量", + "type": "Number", + "note": "Double(例如 666.66)", + }, + "62d52f4b8d2972284492de8d": { + "name": "开版管理", + "type": "Relation", + "note": "String 字符串,多条记录 rowId 用(,)分割,全量覆盖操作", + }, + }, + }, + # 4) 改图 + "modify_drawing": { + "worksheet_id": MDY_WORKSHEET_ID_PLATE_ORDER_MODIFY_DRAWING, + "name": "改图", + "fields": { + "62d7f0cfa72269e1965389e7": {"name": "设计师名字", "type": "Text"}, + "62d52f4b8d2972284492de8c": {"name": "电脑位置", "type": "Text"}, + "62d52f4b8d2972284492de89": { + "name": "附件", + "type": "Attachment", + "note": "json,支持外部链接和 Base64 文件流", + }, + "66e2ebb7da66655f355bf709": { + "name": "开版管理", + "type": "Relation", + "note": "String 字符串,多条记录 rowId 用(,)分割,全量覆盖操作", + }, + }, + }, + # 5) 配色 + "color_scheme": { + "worksheet_id": MDY_WORKSHEET_ID_PLATE_ORDER_COLOR_SCHEME, + "name": "配色", + "fields": { + "62d7f09ad55983029b644b25": {"name": "设计师名字", "type": "Text"}, + "62d52f4b8d2972284492dda0": {"name": "电脑位置", "type": "Text"}, + "62d52f4b8d2972284492dd9b": { + "name": "附件", + "type": "Attachment", + "note": "json,支持外部链接和 Base64 文件流", + }, + "672adc9b156abb9a08ab2a61": { + "name": "开版管理", + "type": "Relation", + "note": "String 字符串,多条记录 rowId 用(,)分割,全量覆盖操作", + }, + # 注:配色表无“完成数量”,用“开发数量”替代 + "66e2ef8d99632ae7376e73ef": { + "name": "开发数量", + "type": "Number", + "note": "Double(例如 666.66)", + }, + }, + }, + # 6) 找图开发(照图开发) + "image_development": { + "worksheet_id": MDY_WORKSHEET_ID_PLATE_ORDER_IMAGE_DEVELOPMENT, + "name": "找图开发", + "fields": { + "62d7f09ad55983029b644b25": {"name": "设计师名字", "type": "Text"}, + "62d52f4b8d2972284492dda0": {"name": "电脑位置", "type": "Text"}, + "62d52f4b8d2972284492dd9b": { + "name": "附件", + "type": "Attachment", + "note": "json,支持外部链接和 Base64 文件流", + }, + "66e2efb0da66655f355bf963": { + "name": "开版管理", + "type": "Relation", + "note": "String 字符串,多条记录 rowId 用(,)分割,全量覆盖操作", + }, + # 注:找图开发表无“完成数量”,用“开发数量”替代 + "66e2ef8d99632ae7376e73ef": { + "name": "开发数量", + "type": "Number", + "note": "Double(例如 666.66)", + }, + }, + }, +} + # ------------------------------------------------------------------------------ # 明道云:字段映射(内部字段名 -> controlId) @@ -165,3 +317,19 @@ plate_order_type_map = { "created_at": "ctime", "rowid": "rowid", } + +# PlateOrder 行中“关联字段 controlId -> 关联表 key” +# 用于从开版主表记录中提取跨表 rowid 并进一步查询关联表数据。 +plate_order_relation_control_map = { + plate_order_type_map["drawing_relation"]: "drawing", + plate_order_type_map["color_relation"]: "coloring", + plate_order_type_map["pattern_set"]: "pattern_set", + plate_order_type_map["modify_drawing_relation"]: "modify_drawing", + plate_order_type_map["color_scheme_relation"]: "color_scheme", + plate_order_type_map["image_development_relation"]: "image_development", +} + +# json key 查询 +# MDYPlateOrderStaging.objects.filter( +# raw__62d52f4b8d2972284492dd0e="82724" # 设计编号/订单id(明道云字段ID) +# ) diff --git a/flower/utils/mingdaoyun/relations.py b/flower/utils/mingdaoyun/relations.py new file mode 100644 index 0000000..7475974 --- /dev/null +++ b/flower/utils/mingdaoyun/relations.py @@ -0,0 +1,159 @@ +from __future__ import annotations + +import json +from typing import Any + +from .mappings import plate_order_related_field_definitions, plate_order_relation_control_map + + +def _json_loads_safe(value: str) -> Any: + try: + return json.loads(value) + except Exception: + return value + + +def normalize_mdy_value(value: Any) -> Any: + """尽量把明道云返回的字符串 JSON 规范化为 Python 对象。 + + 常见情况: + - Relation/Attachment 可能返回字符串形式的 "[]" / "[{...}]" + - 空值经常是 "[]"(字符串) + """ + + if value is None: + return None + + if isinstance(value, str): + s = value.strip() + if s == "[]": + return [] + if (s.startswith("[") and s.endswith("]")) or (s.startswith("{") and s.endswith("}")): + return _json_loads_safe(s) + return value + + return value + + +def extract_relation_rowids(value: Any) -> list[str]: + """从 Relation 字段的 value 中提取 rowid 列表。 + + 兼容形态: + - list[dict](常见:[{rowid,name,link}, ...]) + - str(可能是 JSON 字符串数组,如 "[{...}]" 或 "[]";也可能是逗号分割 rowId) + - dict(单条) + """ + + value = normalize_mdy_value(value) + + if value is None: + return [] + + if isinstance(value, list): + out: list[str] = [] + for item in value: + if isinstance(item, dict): + rid = item.get("rowid") or item.get("rowId") + if rid: + out.append(str(rid)) + elif isinstance(item, str) and item.strip(): + out.append(item.strip()) + return out + + if isinstance(value, dict): + rid = value.get("rowid") or value.get("rowId") + return [str(rid)] if rid else [] + + if isinstance(value, str): + s = value.strip() + if not s or s == "[]": + return [] + # 兜底:逗号分割 + return [x for x in (p.strip() for p in s.split(",")) if x] + + return [] + + +def extract_plate_order_related_rowids(plate_order_row: dict[str, Any]) -> dict[str, list[str]]: + """从开版主表行记录中提取各关联表的 rowid 列表。 + + 返回: + - {related_key: [rowid, ...], ...} + """ + + result: dict[str, list[str]] = {} + for control_id, related_key in plate_order_relation_control_map.items(): + rowids = extract_relation_rowids(plate_order_row.get(control_id)) + if rowids: + result[related_key] = rowids + return result + + +def flatten_row_by_field_definitions( + row: dict[str, Any], + field_definitions: dict[str, dict[str, Any]], + *, + drop_types: set[str] | None = None, + drop_names: set[str] | None = None, + include_system_keys: bool = True, +) -> dict[str, Any]: + """按字段定义把一条明道云 row 转成“可读 dict”。 + + - key 使用字段中文名(若缺失则回退 controlId) + - value 做一定的 JSON 字符串规范化 + - 默认包含系统字段:rowid/ctime/utime(若存在) + """ + + drop_types = drop_types or set() + drop_names = drop_names or set() + + out: dict[str, Any] = {} + + if include_system_keys: + for k in ("rowid", "ctime", "utime"): + if k in row: + out[k] = row.get(k) + + for field_id, meta in field_definitions.items(): + name = meta.get("name") or field_id + ftype = meta.get("type") + + if ftype in drop_types: + continue + if name in drop_names: + continue + + out[name] = normalize_mdy_value(row.get(field_id)) + + return out + + +def flatten_plate_order_related_row(related_key: str, related_row: dict[str, Any]) -> dict[str, Any]: + """将开版关联表的一条 row 扁平化为 dict(用于入库 staging.related)。 + + - 自动删除回溯 Relation 字段(开版管理/开发管理等) + - 保留 rowid/ctime/utime(若存在) + - 额外写入 source 信息,便于排查 + """ + + meta = plate_order_related_field_definitions.get(related_key) or {} + wsid = meta.get("worksheet_id") + cn_name = meta.get("name") + fields = meta.get("fields") or {} + + flat = flatten_row_by_field_definitions( + related_row, + fields, + drop_types={"Relation"}, + drop_names={"开版管理", "开发管理"}, + include_system_keys=True, + ) + + # 扁平化结构:[{key: val}, ...] 里的每个元素是一条记录 + flat["source"] = related_key + if cn_name: + flat["source_name"] = cn_name + if wsid: + flat["worksheet_id"] = wsid + + return flat diff --git a/printing/migrations/0026_plateorder_printingjob_original_id.py b/printing/migrations/0026_plateorder_printingjob_original_id.py new file mode 100644 index 0000000..7a0c235 --- /dev/null +++ b/printing/migrations/0026_plateorder_printingjob_original_id.py @@ -0,0 +1,31 @@ +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('printing', '0025_plateorder_created_by'), + ] + + operations = [ + migrations.AddField( + model_name='plateorder', + name='original_id', + field=models.PositiveBigIntegerField( + blank=True, + help_text='前端克隆概念:记录本订单由哪个订单复制而来(无外键约束)', + null=True, + verbose_name='克隆来源订单ID', + ), + ), + migrations.AddField( + model_name='printingjob', + name='original_id', + field=models.PositiveBigIntegerField( + blank=True, + help_text='前端克隆概念:记录本任务由哪个任务复制而来(无外键约束)', + null=True, + verbose_name='克隆来源任务ID', + ), + ), + ] diff --git a/printing/models.py b/printing/models.py index 0ef2f23..9230a73 100644 --- a/printing/models.py +++ b/printing/models.py @@ -13,6 +13,12 @@ class PlateOrder(ModelBase): # 自动编号相关 design_code = models.CharField(max_length=50, blank=True, null=True, verbose_name='设计编号') + original_id = models.PositiveBigIntegerField( + null=True, + blank=True, + verbose_name='克隆来源订单ID', + help_text='前端克隆概念:记录本订单由哪个订单复制而来(无外键约束)', + ) # 版相关信息 plate_type = models.CharField(max_length=20, blank=True, null=True, verbose_name='起版情况') # 首版/复版等 @@ -335,6 +341,12 @@ class PrintingJob(ModelBase): size = models.CharField(max_length=100, null=True, blank=True, verbose_name='一段尺寸') pieces = models.PositiveIntegerField(null=True, blank=True, verbose_name='件数') description = models.TextField(blank=True, null=True, verbose_name='备注') + original_id = models.PositiveBigIntegerField( + null=True, + blank=True, + verbose_name='克隆来源任务ID', + help_text='前端克隆概念:记录本任务由哪个任务复制而来(无外键约束)', + ) business_object = models.OneToOneField( stateflow_models.BusinessObject, on_delete=models.SET_NULL,