1
0
forked from erp-dev/erp
Files
erpnew/data-bak/db-backup-20251208-190000.sql

8187 lines
746 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
--
-- PostgreSQL database dump
--
\restrict qkhlMlg0xNzGqTKThmiE0C2TGCVMTHMThbmIDwYViGZiIUKDdyEIXubSEqv4dr4
-- Dumped from database version 16.10
-- Dumped by pg_dump version 17.6 (Debian 17.6-0+deb13u1)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET transaction_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: api_data_sync; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.api_data_sync (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
table_name character varying(50) NOT NULL,
page_index integer NOT NULL,
page_size integer NOT NULL,
total_count integer NOT NULL,
synced_rows integer NOT NULL,
last_ctime timestamp with time zone,
last_rowid character varying(64) NOT NULL,
note character varying(255) NOT NULL,
CONSTRAINT api_data_sync_page_index_check CHECK ((page_index >= 0)),
CONSTRAINT api_data_sync_page_size_check CHECK ((page_size >= 0)),
CONSTRAINT api_data_sync_synced_rows_check CHECK ((synced_rows >= 0)),
CONSTRAINT api_data_sync_total_count_check CHECK ((total_count >= 0))
);
ALTER TABLE public.api_data_sync OWNER TO postgres;
--
-- Name: api_data_sync_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.api_data_sync ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.api_data_sync_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: api_uploaded_file; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.api_uploaded_file (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
path character varying(500) NOT NULL,
is_deleted boolean NOT NULL,
original_filename character varying(255) NOT NULL,
file_size bigint,
content_type character varying(100) NOT NULL,
owner_id integer NOT NULL
);
ALTER TABLE public.api_uploaded_file OWNER TO postgres;
--
-- Name: api_uploaded_file_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.api_uploaded_file ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.api_uploaded_file_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_group; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_group (
id integer NOT NULL,
name character varying(150) NOT NULL
);
ALTER TABLE public.auth_group OWNER TO postgres;
--
-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.auth_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_group_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_group_permissions (
id bigint NOT NULL,
group_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_group_permissions OWNER TO postgres;
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.auth_group_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_group_permissions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_permission; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_permission (
id integer NOT NULL,
name character varying(255) NOT NULL,
content_type_id integer NOT NULL,
codename character varying(100) NOT NULL
);
ALTER TABLE public.auth_permission OWNER TO postgres;
--
-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.auth_permission ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_permission_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_user; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_user (
id integer NOT NULL,
password character varying(128) NOT NULL,
last_login timestamp with time zone,
is_superuser boolean NOT NULL,
username character varying(150) NOT NULL,
first_name character varying(150) NOT NULL,
last_name character varying(150) NOT NULL,
email character varying(254) NOT NULL,
is_staff boolean NOT NULL,
is_active boolean NOT NULL,
date_joined timestamp with time zone NOT NULL
);
ALTER TABLE public.auth_user OWNER TO postgres;
--
-- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_user_groups (
id bigint NOT NULL,
user_id integer NOT NULL,
group_id integer NOT NULL
);
ALTER TABLE public.auth_user_groups OWNER TO postgres;
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.auth_user_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_user_groups_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.auth_user ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_user_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_user_user_permissions (
id bigint NOT NULL,
user_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_user_user_permissions OWNER TO postgres;
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.auth_user_user_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_user_user_permissions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_bankaccount; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_bankaccount (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
auto_number character varying(50) NOT NULL,
description text,
attachment character varying(100),
merchant_id bigint NOT NULL
);
ALTER TABLE public.basic_info_bankaccount OWNER TO postgres;
--
-- Name: basic_info_bankaccount_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_bankaccount ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_bankaccount_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_customer; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_customer (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
mobile character varying(20),
area character varying(100),
email character varying(254),
contact character varying,
description text,
merchant_id bigint NOT NULL,
created_by_id bigint,
mdy_uid character varying(100),
from_mdy boolean NOT NULL
);
ALTER TABLE public.basic_info_customer OWNER TO postgres;
--
-- Name: basic_info_customer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_customer ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_customer_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_customer_visible_employees; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_customer_visible_employees (
id bigint NOT NULL,
customer_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.basic_info_customer_visible_employees OWNER TO postgres;
--
-- Name: basic_info_customer_visible_employees_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_customer_visible_employees ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_customer_visible_employees_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_deviceinfo; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_deviceinfo (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
type character varying(20) NOT NULL,
status character varying(20) NOT NULL,
start_working_at date,
stop_working_at date,
is_occupied boolean NOT NULL,
description text,
merchant_id bigint NOT NULL
);
ALTER TABLE public.basic_info_deviceinfo OWNER TO postgres;
--
-- Name: basic_info_deviceinfo_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_deviceinfo ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_deviceinfo_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_employee; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_employee (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
mobile character varying(20),
area character varying(100),
description text,
status character varying(20) NOT NULL,
sys_user_id integer,
merchant_id bigint NOT NULL,
position_id bigint
);
ALTER TABLE public.basic_info_employee OWNER TO postgres;
--
-- Name: basic_info_employee_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_employee ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_employee_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_employeetype; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_employeetype (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
title character varying(50) NOT NULL,
description text,
reverse character varying(100),
merchant_id bigint NOT NULL
);
ALTER TABLE public.basic_info_employeetype OWNER TO postgres;
--
-- Name: basic_info_employeetype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_employeetype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_employeetype_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_merchant; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_merchant (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
type integer NOT NULL,
area character varying(100),
email character varying(254),
mobile character varying(20),
contact text,
description text,
auto_complete_stock_change boolean NOT NULL
);
ALTER TABLE public.basic_info_merchant OWNER TO postgres;
--
-- Name: basic_info_merchant_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_merchant ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_merchant_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_merchantsetting; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_merchantsetting (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
key character varying(100) NOT NULL,
description text,
merchant_id bigint NOT NULL,
val_bool boolean,
val_float double precision,
val_int integer,
val_str character varying(100),
type character varying(20) NOT NULL
);
ALTER TABLE public.basic_info_merchantsetting OWNER TO postgres;
--
-- Name: basic_info_merchantsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_merchantsetting ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_merchantsetting_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_product; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_product (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
human_id character varying(100) NOT NULL,
color character varying(50),
width_size numeric(10,2),
single_price_in numeric(10,2),
single_price_out numeric(10,2),
unit integer NOT NULL,
spec character varying(100),
description text,
image character varying(100),
transform_rate numeric(10,4),
merchant_id bigint NOT NULL,
category_id bigint NOT NULL,
minimum_quantity integer,
from_mdy boolean NOT NULL
);
ALTER TABLE public.basic_info_product OWNER TO postgres;
--
-- Name: basic_info_product_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_product ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_product_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_productcategory; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_productcategory (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
description text,
product_prefix character varying(5) NOT NULL,
merchant_id bigint NOT NULL
);
ALTER TABLE public.basic_info_productcategory OWNER TO postgres;
--
-- Name: basic_info_productcategory_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_productcategory ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_productcategory_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_quickinput; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_quickinput (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
value character varying(200) NOT NULL,
"group" character varying NOT NULL
);
ALTER TABLE public.basic_info_quickinput OWNER TO postgres;
--
-- Name: basic_info_quickinput_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_quickinput ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_quickinput_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_supplier; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_supplier (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
area character varying(100),
email character varying(254),
mobile character varying(20),
contact text,
description text,
merchant_id bigint NOT NULL
);
ALTER TABLE public.basic_info_supplier OWNER TO postgres;
--
-- Name: basic_info_supplier_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_supplier ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_supplier_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_userprofile; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_userprofile (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
description text,
merchant_id bigint NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.basic_info_userprofile OWNER TO postgres;
--
-- Name: basic_info_userprofile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_userprofile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_userprofile_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_vehicletransportrecord; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_vehicletransportrecord (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
driver_name character varying(100) NOT NULL,
contact_number character varying(20),
license_plate character varying(20),
delivery_date date NOT NULL,
merchant_id bigint NOT NULL,
vehicle_type_id bigint NOT NULL
);
ALTER TABLE public.basic_info_vehicletransportrecord OWNER TO postgres;
--
-- Name: basic_info_vehicletransportrecord_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_vehicletransportrecord ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_vehicletransportrecord_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_vehicletype; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_vehicletype (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(50) NOT NULL,
description text,
merchant_id bigint NOT NULL
);
ALTER TABLE public.basic_info_vehicletype OWNER TO postgres;
--
-- Name: basic_info_vehicletype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_vehicletype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_vehicletype_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_warehouse; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_warehouse (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
location character varying(200),
contact character varying(100),
mobile character varying(20),
area character varying(100),
description text,
merchant_id bigint NOT NULL,
mode integer NOT NULL,
type integer NOT NULL
);
ALTER TABLE public.basic_info_warehouse OWNER TO postgres;
--
-- Name: basic_info_warehouse_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_warehouse ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_warehouse_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_balancechangerecord; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_balancechangerecord (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
target_type integer NOT NULL,
source_type integer NOT NULL,
source_id bigint NOT NULL,
delta numeric(15,2) NOT NULL,
direction integer NOT NULL,
balance_before numeric(15,2) NOT NULL,
balance_after numeric(15,2) NOT NULL,
request_id character varying(64),
remarks text,
extra_meta jsonb NOT NULL,
offset_to bigint,
offset_at timestamp with time zone,
offset_id bigint,
cancelled boolean NOT NULL,
cancelled_at timestamp with time zone,
customer_id bigint,
merchant_id bigint NOT NULL,
supplier_id bigint,
CONSTRAINT balance_change_single_counterparty CHECK ((((customer_id IS NULL) AND (supplier_id IS NOT NULL)) OR ((customer_id IS NOT NULL) AND (supplier_id IS NULL))))
);
ALTER TABLE public.business_balancechangerecord OWNER TO postgres;
--
-- Name: business_balancechangerecord_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_balancechangerecord ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_balancechangerecord_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_customerbalance; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_customerbalance (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
balance numeric(15,2) NOT NULL,
customer_id bigint NOT NULL,
merchant_id bigint NOT NULL
);
ALTER TABLE public.business_customerbalance OWNER TO postgres;
--
-- Name: business_customerbalance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_customerbalance ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_customerbalance_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_object; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_object (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
name character varying(100) NOT NULL,
description text NOT NULL,
process_id bigint NOT NULL,
content_type_id integer,
object_id integer,
CONSTRAINT business_object_object_id_check CHECK ((object_id >= 0))
);
ALTER TABLE public.business_object OWNER TO postgres;
--
-- Name: business_paymentorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_paymentorder (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
payment_date date NOT NULL,
amount numeric(15,2) NOT NULL,
status integer NOT NULL,
remarks text,
merchant_id bigint NOT NULL,
operator_id bigint NOT NULL,
supplier_id bigint NOT NULL,
bank_account_id bigint,
markup character varying(255),
discount_amount numeric(15,2) NOT NULL
);
ALTER TABLE public.business_paymentorder OWNER TO postgres;
--
-- Name: business_paymentorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_paymentorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_paymentorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_purchaseorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_purchaseorder (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
remarks text,
merchant_id bigint NOT NULL,
supplier_id bigint NOT NULL,
kind integer NOT NULL,
operator_id bigint NOT NULL,
purchase_date date NOT NULL,
status integer NOT NULL,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.business_purchaseorder OWNER TO postgres;
--
-- Name: business_purchaseorderitem; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_purchaseorderitem (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
price numeric(15,2) NOT NULL,
color character varying(50),
quantity numeric(10,2) NOT NULL,
unit character varying(50) NOT NULL,
empty_diff_percent numeric(15,2) NOT NULL,
quantity_of_rolls character varying(255),
num_of_rolls integer NOT NULL,
batch_number character varying(100),
remarks text,
product_id bigint NOT NULL,
purchase_order_id bigint NOT NULL,
spec character varying(100),
CONSTRAINT business_purchaseorderitem_num_of_rolls_check CHECK ((num_of_rolls >= 0))
);
ALTER TABLE public.business_purchaseorderitem OWNER TO postgres;
--
-- Name: business_purchaseorderitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_purchaseorderitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_purchaseorderitem_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_purchasereturnorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_purchasereturnorder (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
return_date date NOT NULL,
status integer NOT NULL,
remarks text,
merchant_id bigint NOT NULL,
operator_id bigint NOT NULL,
purchase_order_id bigint,
supplier_id bigint NOT NULL,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.business_purchasereturnorder OWNER TO postgres;
--
-- Name: business_purchasereturnorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_purchasereturnorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_purchasereturnorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_purchasereturnorderitem; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_purchasereturnorderitem (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
price numeric(15,2) NOT NULL,
color character varying(50),
quantity numeric(10,2) NOT NULL,
unit character varying(50) NOT NULL,
spec character varying(100),
empty_diff_percent numeric(15,2) NOT NULL,
quantity_of_rolls character varying(255),
num_of_rolls integer NOT NULL,
consume_detail_ids character varying(255),
batch_number character varying(100),
remarks text,
product_id bigint NOT NULL,
purchase_return_order_id bigint NOT NULL,
CONSTRAINT business_purchasereturnorderitem_num_of_rolls_check CHECK ((num_of_rolls >= 0))
);
ALTER TABLE public.business_purchasereturnorderitem OWNER TO postgres;
--
-- Name: business_purchasereturnorderitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_purchasereturnorderitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_purchasereturnorderitem_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_receiptorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_receiptorder (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
receipt_date date NOT NULL,
amount numeric(15,2) NOT NULL,
status integer NOT NULL,
remarks text,
customer_id bigint NOT NULL,
merchant_id bigint NOT NULL,
operator_id bigint NOT NULL,
bank_account_id bigint,
markup character varying(255),
discount_amount numeric(15,2) NOT NULL
);
ALTER TABLE public.business_receiptorder OWNER TO postgres;
--
-- Name: business_receiptorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_receiptorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_receiptorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_salesorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_salesorder (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
sales_date date NOT NULL,
kind integer NOT NULL,
status integer NOT NULL,
remarks text,
customer_id bigint NOT NULL,
merchant_id bigint NOT NULL,
operator_id bigint NOT NULL,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.business_salesorder OWNER TO postgres;
--
-- Name: business_salesorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_salesorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_salesorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_salesorderitem; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_salesorderitem (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
price numeric(15,2) NOT NULL,
color character varying(50),
quantity numeric(10,2) NOT NULL,
unit character varying(50) NOT NULL,
spec character varying(100),
empty_diff_percent numeric(15,2) NOT NULL,
quantity_of_rolls character varying(255),
num_of_rolls integer NOT NULL,
consume_detail_ids character varying(255),
batch_number character varying(100),
remarks text,
product_id bigint NOT NULL,
sales_order_id bigint NOT NULL,
CONSTRAINT business_salesorderitem_num_of_rolls_check CHECK ((num_of_rolls >= 0))
);
ALTER TABLE public.business_salesorderitem OWNER TO postgres;
--
-- Name: business_salesorderitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_salesorderitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_salesorderitem_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_salesreturnorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_salesreturnorder (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
return_date date NOT NULL,
status integer NOT NULL,
remarks text,
customer_id bigint NOT NULL,
merchant_id bigint NOT NULL,
operator_id bigint NOT NULL,
sales_order_id bigint,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.business_salesreturnorder OWNER TO postgres;
--
-- Name: business_salesreturnorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_salesreturnorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_salesreturnorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_salesreturnorderitem; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_salesreturnorderitem (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
price numeric(15,2) NOT NULL,
color character varying(50),
quantity numeric(10,2) NOT NULL,
unit character varying(50) NOT NULL,
spec character varying(100),
empty_diff_percent numeric(15,2) NOT NULL,
quantity_of_rolls character varying(255),
num_of_rolls integer NOT NULL,
consume_detail_ids character varying(255),
batch_number character varying(100),
remarks text,
product_id bigint NOT NULL,
sales_return_order_id bigint NOT NULL,
CONSTRAINT business_salesreturnorderitem_num_of_rolls_check CHECK ((num_of_rolls >= 0))
);
ALTER TABLE public.business_salesreturnorderitem OWNER TO postgres;
--
-- Name: business_salesreturnorderitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_salesreturnorderitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_salesreturnorderitem_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_supplierbalance; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_supplierbalance (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
balance numeric(15,2) NOT NULL,
merchant_id bigint NOT NULL,
supplier_id bigint NOT NULL
);
ALTER TABLE public.business_supplierbalance OWNER TO postgres;
--
-- Name: business_supplierbalance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_supplierbalance ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_supplierbalance_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_admin_log; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_admin_log (
id integer NOT NULL,
action_time timestamp with time zone NOT NULL,
object_id text,
object_repr character varying(200) NOT NULL,
action_flag smallint NOT NULL,
change_message text NOT NULL,
content_type_id integer,
user_id integer NOT NULL,
CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0))
);
ALTER TABLE public.django_admin_log OWNER TO postgres;
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.django_admin_log ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_admin_log_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_content_type; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_content_type (
id integer NOT NULL,
app_label character varying(100) NOT NULL,
model character varying(100) NOT NULL
);
ALTER TABLE public.django_content_type OWNER TO postgres;
--
-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.django_content_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_content_type_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_migrations; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_migrations (
id bigint NOT NULL,
app character varying(255) NOT NULL,
name character varying(255) NOT NULL,
applied timestamp with time zone NOT NULL
);
ALTER TABLE public.django_migrations OWNER TO postgres;
--
-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.django_migrations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_migrations_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_session; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_session (
session_key character varying(40) NOT NULL,
session_data text NOT NULL,
expire_date timestamp with time zone NOT NULL
);
ALTER TABLE public.django_session OWNER TO postgres;
--
-- Name: printing_plateorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.printing_plateorder (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
design_code character varying(50),
plate_type character varying(20),
plate_date timestamp with time zone,
plate_method character varying(50),
plate_image jsonb NOT NULL,
plate_notes text,
reprint_reason text,
urgency_level character varying(20) NOT NULL,
area character varying(255),
default_address character varying(500),
is_mark_frame boolean NOT NULL,
drawing_rating character varying(20),
color_matching_rating character varying(20),
sample_rating character varying(20),
difficulty_rating character varying(20),
required_completion_date timestamp with time zone,
completion_date timestamp with time zone,
fabric character varying(100),
width character varying(50),
style_name character varying(100),
production_method character varying(50),
sample_meter character varying(100),
required_sample_meters numeric(10,2),
approval_result character varying(50),
is_ordered boolean NOT NULL,
customer_feedback text,
business_object_id bigint,
customer_id bigint NOT NULL,
merchandiser_id bigint,
salesperson_id bigint,
is_invalid boolean NOT NULL,
process integer NOT NULL,
fabric_source character varying(100),
designer_id bigint,
image_name text,
print_count integer NOT NULL,
CONSTRAINT printing_plateorder_print_count_check CHECK ((print_count >= 0))
);
ALTER TABLE public.printing_plateorder OWNER TO postgres;
--
-- Name: printing_plateorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.printing_plateorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.printing_plateorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: printing_printingjob; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.printing_printingjob (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
quantity integer NOT NULL,
unit character varying(50) NOT NULL,
size character varying(100),
pieces integer,
description text,
product_id bigint NOT NULL,
printing_order_id bigint NOT NULL,
business_object_id bigint,
CONSTRAINT printing_printingjob_pieces_check CHECK ((pieces >= 0)),
CONSTRAINT printing_printingjob_quantity_check CHECK ((quantity >= 0))
);
ALTER TABLE public.printing_printingjob OWNER TO postgres;
--
-- Name: printing_printingjob_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.printing_printingjob ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.printing_printingjob_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: printing_printingorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.printing_printingorder (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
fabric character varying(100) NOT NULL,
width character varying(100) NOT NULL,
is_urgent boolean NOT NULL,
area character varying(100),
address character varying(200),
fabric_source character varying(100),
is_fabric_received boolean NOT NULL,
craft character varying(100),
description text,
outgoing_date date,
curve character varying(100),
new_curve character varying(100),
"position" text,
printing_warn text,
rolling_warn text,
production_warn text,
customer_id bigint NOT NULL,
is_invalid boolean NOT NULL,
process_id bigint,
print_count integer NOT NULL,
CONSTRAINT printing_printingorder_print_count_check CHECK ((print_count >= 0))
);
ALTER TABLE public.printing_printingorder OWNER TO postgres;
--
-- Name: printing_printingorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.printing_printingorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.printing_printingorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: state_flow_record; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.state_flow_record (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
completed_at timestamp with time zone NOT NULL,
completed_by_id integer,
business_object_id bigint NOT NULL,
state_id bigint NOT NULL,
cancelled_at timestamp with time zone,
is_cancelled boolean NOT NULL
);
ALTER TABLE public.state_flow_record OWNER TO postgres;
--
-- Name: state_log_parameter_record; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.state_log_parameter_record (
id bigint NOT NULL,
updated_at timestamp with time zone NOT NULL,
parameters jsonb NOT NULL,
created_at timestamp with time zone NOT NULL,
remark text NOT NULL,
state_log_id bigint NOT NULL
);
ALTER TABLE public.state_log_parameter_record OWNER TO postgres;
--
-- Name: state_log_parameter_record_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.state_log_parameter_record ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.state_log_parameter_record_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stateflow_order_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_object ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stateflow_order_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stateflow_orderstatelog_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.state_flow_record ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stateflow_orderstatelog_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stateflow_process; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stateflow_process (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
name character varying(100) NOT NULL,
description text NOT NULL
);
ALTER TABLE public.stateflow_process OWNER TO postgres;
--
-- Name: stateflow_process_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stateflow_process ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stateflow_process_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stateflow_processnode; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stateflow_processnode (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
"order" integer NOT NULL,
process_id bigint NOT NULL,
state_id bigint NOT NULL,
CONSTRAINT stateflow_processnode_order_check CHECK (("order" >= 0))
);
ALTER TABLE public.stateflow_processnode OWNER TO postgres;
--
-- Name: stateflow_processnode_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stateflow_processnode ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stateflow_processnode_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stateflow_state; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stateflow_state (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
name character varying(100) NOT NULL,
description character varying(200) NOT NULL
);
ALTER TABLE public.stateflow_state OWNER TO postgres;
--
-- Name: stateflow_state_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stateflow_state ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stateflow_state_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stateflow_state_parameters; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stateflow_state_parameters (
id bigint NOT NULL,
state_id bigint NOT NULL,
stateparameter_id bigint NOT NULL
);
ALTER TABLE public.stateflow_state_parameters OWNER TO postgres;
--
-- Name: stateflow_state_parameters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stateflow_state_parameters ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stateflow_state_parameters_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stateflow_stateparameter; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stateflow_stateparameter (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
key character varying(100) NOT NULL,
value character varying(200),
description character varying(200) NOT NULL,
attachment character varying(100),
is_required boolean NOT NULL,
is_image_path boolean NOT NULL
);
ALTER TABLE public.stateflow_stateparameter OWNER TO postgres;
--
-- Name: stateflow_stateparameter_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stateflow_stateparameter ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stateflow_stateparameter_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_inventory; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stock_inventory (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
quantity numeric(10,2) NOT NULL,
num_of_rolls integer NOT NULL,
spec character varying(100),
description text,
merchant_id bigint NOT NULL,
product_id bigint NOT NULL,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.stock_inventory OWNER TO postgres;
--
-- Name: stock_inventory_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stock_inventory ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_inventory_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_purchaseorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_purchaseorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_purchaseorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_stockchangedetail; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stock_stockchangedetail (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
quantity numeric(10,2) NOT NULL,
unit integer NOT NULL,
merchant_id bigint NOT NULL,
product_id bigint NOT NULL,
stock_change_record_id bigint NOT NULL,
is_consumed boolean NOT NULL,
consume_with_id bigint
);
ALTER TABLE public.stock_stockchangedetail OWNER TO postgres;
--
-- Name: stock_stockchangedetail_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stock_stockchangedetail ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_stockchangedetail_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_stockchangerecord; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stock_stockchangerecord (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
type integer NOT NULL,
source_type integer NOT NULL,
source_id bigint,
is_finished boolean NOT NULL,
finished_at timestamp with time zone,
remarks text,
created_by_id integer,
merchant_id bigint NOT NULL,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.stock_stockchangerecord OWNER TO postgres;
--
-- Name: stock_stockchangerecord_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stock_stockchangerecord ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_stockchangerecord_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_stockfreeze; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stock_stockfreeze (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
quantity numeric(10,2) NOT NULL,
unit integer NOT NULL,
status integer NOT NULL,
frozen_with bigint,
completed_at timestamp with time zone,
completed_with bigint,
cancelled_at timestamp with time zone,
reason text,
cancelled_by_id integer,
completed_by_id integer,
frozen_by_id integer NOT NULL,
merchant_id bigint NOT NULL,
product_id bigint NOT NULL,
stock_detail_id bigint NOT NULL,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.stock_stockfreeze OWNER TO postgres;
--
-- Name: stock_stockfreeze_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stock_stockfreeze ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_stockfreeze_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_stocksnapshot; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stock_stocksnapshot (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
delta numeric(10,2) NOT NULL,
quantity_before numeric(10,2) NOT NULL,
quantity_after numeric(10,2) NOT NULL,
unit integer NOT NULL,
num_of_rolls integer NOT NULL,
offset_to bigint,
offset_at timestamp with time zone,
cancelled boolean NOT NULL,
cancelled_at timestamp with time zone,
offset_id bigint,
merchant_id bigint NOT NULL,
product_id bigint NOT NULL,
stock_change_record_id bigint NOT NULL,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.stock_stocksnapshot OWNER TO postgres;
--
-- Name: stock_stocksnapshot_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stock_stocksnapshot ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_stocksnapshot_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_transferorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stock_transferorder (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
mode integer NOT NULL,
transfer_date date NOT NULL,
status integer NOT NULL,
remarks text,
request_id character varying(64),
created_by_id integer,
from_warehouse_id bigint NOT NULL,
incoming_record_id bigint,
merchant_id bigint NOT NULL,
operator_id bigint NOT NULL,
outgoing_record_id bigint,
to_warehouse_id bigint NOT NULL,
CONSTRAINT transfer_different_warehouses CHECK ((NOT (from_warehouse_id = to_warehouse_id)))
);
ALTER TABLE public.stock_transferorder OWNER TO postgres;
--
-- Name: stock_transferorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stock_transferorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_transferorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_transferorderitem; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stock_transferorderitem (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
unit integer NOT NULL,
total_quantity numeric(10,2) NOT NULL,
num_of_rolls integer NOT NULL,
product_id bigint NOT NULL,
transfer_order_id bigint NOT NULL,
CONSTRAINT stock_transferorderitem_num_of_rolls_check CHECK ((num_of_rolls >= 0))
);
ALTER TABLE public.stock_transferorderitem OWNER TO postgres;
--
-- Name: stock_transferorderitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stock_transferorderitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_transferorderitem_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Data for Name: api_data_sync; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.api_data_sync (id, created_at, updated_at, table_name, page_index, page_size, total_count, synced_rows, last_ctime, last_rowid, note) FROM stdin;
68 2025-12-08 15:00:01.256648+00 2025-12-08 15:00:01.256651+00 customer 2 100 1842 200 2025-12-08 11:14:17+00 e179e64d-fbbd-4f8f-8dbb-c847987ec639
69 2025-12-08 15:00:02.703844+00 2025-12-08 15:00:02.703848+00 product 2 100 485731 200 2025-12-08 14:55:28+00 e545ad7a-df36-4a2d-b16d-171a01471fb8
70 2025-12-08 16:00:01.801477+00 2025-12-08 16:00:01.80148+00 product 1 100 485739 8 2025-12-08 15:47:37+00 24ec5e76-97ad-4141-a9a9-05d07d9199f6 reached existing data
71 2025-12-08 16:00:02.270109+00 2025-12-08 16:00:02.27012+00 customer 1 100 1842 0 2025-12-08 11:14:17+00 e179e64d-fbbd-4f8f-8dbb-c847987ec639 reached existing data
72 2025-12-08 17:00:00.615883+00 2025-12-08 17:00:00.615894+00 customer 1 100 1842 0 2025-12-08 11:14:17+00 e179e64d-fbbd-4f8f-8dbb-c847987ec639 reached existing data
73 2025-12-08 17:00:01.221772+00 2025-12-08 17:00:01.221775+00 product 1 100 485751 12 2025-12-08 16:45:31+00 28c0faaa-7433-4176-9a71-76a6d0d17044 reached existing data
74 2025-12-08 18:00:00.869561+00 2025-12-08 18:00:00.869569+00 product 1 100 485751 0 2025-12-08 16:45:31+00 28c0faaa-7433-4176-9a71-76a6d0d17044 reached existing data
75 2025-12-08 18:00:01.439233+00 2025-12-08 18:00:01.439245+00 customer 1 100 1842 0 2025-12-08 11:14:17+00 e179e64d-fbbd-4f8f-8dbb-c847987ec639 reached existing data
\.
--
-- 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
\.
--
-- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.auth_group (id, name) FROM stdin;
2
3
\.
--
-- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin;
1 2 1
2 2 2
3 2 3
4 2 4
5 2 5
6 2 6
7 2 7
8 2 8
9 2 9
10 2 10
11 2 11
12 2 12
13 2 13
14 2 14
15 2 15
16 2 16
17 2 17
18 2 18
19 2 19
20 2 20
21 2 21
22 2 22
23 2 23
24 2 24
25 2 25
26 2 26
27 2 27
28 2 28
29 2 29
30 2 30
31 2 31
32 2 32
33 2 33
34 2 34
35 2 35
36 2 36
37 2 37
38 2 38
39 2 39
40 2 40
41 2 41
42 2 42
43 2 43
44 2 44
45 2 45
46 2 46
47 2 47
48 2 48
49 2 49
50 2 50
51 2 51
52 2 52
53 2 53
54 2 54
55 2 55
56 2 56
57 2 57
58 2 58
59 2 59
60 2 60
61 2 61
62 2 62
63 2 63
64 2 64
65 2 65
66 2 66
67 2 67
68 2 68
69 2 69
70 2 70
71 2 71
72 2 72
73 2 73
74 2 74
75 2 75
76 2 76
77 2 77
78 2 78
79 2 79
80 2 80
81 2 81
82 2 82
83 2 83
84 2 84
85 2 85
86 2 86
87 2 87
88 2 88
89 2 89
90 2 90
91 2 91
92 2 92
93 2 93
94 2 94
95 2 95
96 2 96
97 2 97
98 2 98
99 2 99
100 2 100
101 2 101
102 2 102
103 2 103
104 2 104
105 2 105
106 2 106
107 2 107
108 2 108
109 2 109
110 2 110
111 2 111
112 2 112
113 2 113
114 2 114
115 2 115
116 2 116
117 2 117
118 2 118
119 2 119
120 2 120
121 2 121
122 2 122
123 2 123
124 2 124
125 2 125
126 2 126
127 2 127
128 2 128
129 2 129
130 2 130
131 2 131
132 2 132
133 2 133
134 2 134
135 2 135
136 2 136
137 2 137
138 2 138
139 2 139
140 2 140
141 2 141
142 2 142
143 2 143
144 2 144
145 2 145
146 2 146
147 2 147
148 2 148
149 2 149
150 2 150
151 2 151
152 2 152
153 2 153
154 2 154
155 2 155
156 2 156
157 2 157
158 2 158
159 2 159
160 2 160
161 2 161
162 2 162
163 2 163
164 2 164
165 2 165
166 2 166
167 2 167
168 2 168
169 2 169
170 2 170
171 2 171
172 2 172
173 2 173
174 2 174
175 2 175
176 2 176
177 2 177
178 2 178
179 2 179
180 2 180
181 2 181
182 2 182
183 2 183
184 2 184
185 2 185
186 2 186
187 2 187
188 2 188
189 2 189
190 2 190
191 2 191
192 2 192
193 2 193
194 2 194
195 2 195
196 2 196
197 2 197
198 2 198
199 2 199
200 2 200
201 2 201
202 2 202
203 2 203
204 2 204
205 2 205
206 2 206
207 2 207
208 2 208
209 2 209
210 2 210
211 2 211
212 2 212
213 2 213
214 2 214
215 2 215
216 2 216
217 2 217
218 3 1
219 3 2
220 3 3
221 3 4
222 3 5
223 3 6
224 3 7
225 3 8
226 3 9
227 3 10
228 3 11
229 3 12
230 3 13
231 3 14
232 3 15
233 3 16
234 3 17
235 3 18
236 3 19
237 3 20
238 3 21
239 3 22
240 3 23
241 3 24
242 3 25
243 3 26
244 3 27
245 3 28
246 3 29
247 3 30
248 3 31
249 3 32
250 3 33
251 3 34
252 3 35
253 3 36
254 3 37
255 3 38
256 3 39
257 3 40
258 3 41
259 3 42
260 3 43
261 3 44
262 3 45
263 3 46
264 3 47
265 3 48
266 3 49
267 3 50
268 3 51
269 3 52
270 3 53
271 3 54
272 3 55
273 3 56
274 3 57
275 3 58
276 3 59
277 3 60
278 3 61
279 3 62
280 3 63
281 3 64
282 3 65
283 3 66
284 3 67
285 3 68
286 3 69
287 3 70
288 3 71
289 3 72
290 3 73
291 3 74
292 3 75
293 3 76
294 3 77
295 3 78
296 3 79
297 3 80
298 3 81
299 3 82
300 3 83
301 3 84
302 3 85
303 3 86
304 3 87
305 3 88
306 3 89
307 3 90
308 3 91
309 3 92
310 3 93
311 3 94
312 3 95
313 3 96
314 3 97
315 3 98
316 3 99
317 3 100
318 3 101
319 3 102
320 3 103
321 3 104
322 3 105
323 3 106
324 3 107
325 3 108
326 3 109
327 3 110
328 3 111
329 3 112
330 3 113
331 3 114
332 3 115
333 3 116
334 3 117
335 3 118
336 3 119
337 3 120
338 3 121
339 3 122
340 3 123
341 3 124
342 3 125
343 3 126
344 3 127
345 3 128
346 3 129
347 3 130
348 3 131
349 3 132
350 3 133
351 3 134
352 3 135
353 3 136
354 3 137
355 3 138
356 3 139
357 3 140
358 3 141
359 3 142
360 3 143
361 3 144
362 3 145
363 3 146
364 3 147
365 3 148
366 3 149
367 3 150
368 3 151
369 3 152
370 3 153
371 3 154
372 3 155
373 3 156
374 3 157
375 3 158
376 3 159
377 3 160
378 3 161
379 3 162
380 3 163
381 3 164
382 3 165
383 3 166
384 3 167
385 3 168
386 3 169
387 3 170
388 3 171
389 3 172
390 3 173
391 3 174
392 3 175
393 3 176
394 3 177
395 3 178
396 3 179
397 3 180
398 3 181
399 3 182
400 3 183
401 3 184
402 3 185
403 3 186
404 3 187
405 3 188
406 3 189
407 3 190
408 3 191
409 3 192
410 3 193
411 3 194
412 3 195
413 3 196
414 3 197
415 3 198
416 3 199
417 3 200
418 3 201
419 3 202
420 3 203
421 3 204
422 3 205
423 3 206
424 3 207
425 3 208
426 3 209
427 3 210
428 3 211
429 3 212
430 3 213
431 3 214
432 3 215
433 3 216
434 3 217
\.
--
-- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.auth_permission (id, name, content_type_id, codename) FROM stdin;
1 Can add log entry 1 add_logentry
2 Can change log entry 1 change_logentry
3 Can delete log entry 1 delete_logentry
4 Can view log entry 1 view_logentry
5 Can add permission 2 add_permission
6 Can change permission 2 change_permission
7 Can delete permission 2 delete_permission
8 Can view permission 2 view_permission
9 Can add group 3 add_group
10 Can change group 3 change_group
11 Can delete group 3 delete_group
12 Can view group 3 view_group
13 Can add user 4 add_user
14 Can change user 4 change_user
15 Can delete user 4 delete_user
16 Can view user 4 view_user
17 Can add content type 5 add_contenttype
18 Can change content type 5 change_contenttype
19 Can delete content type 5 delete_contenttype
20 Can view content type 5 view_contenttype
21 Can add session 6 add_session
22 Can change session 6 change_session
23 Can delete session 6 delete_session
24 Can view session 6 view_session
25 Can add 7 add_merchant
26 Can change 7 change_merchant
27 Can delete 7 delete_merchant
28 Can view 7 view_merchant
29 Can add 8 add_employee
30 Can change 8 change_employee
31 Can delete 8 delete_employee
32 Can view 8 view_employee
33 Can add 9 add_deviceinfo
34 Can change 9 change_deviceinfo
35 Can delete 9 delete_deviceinfo
36 Can view 9 view_deviceinfo
37 Can add 10 add_customer
38 Can change 10 change_customer
39 Can delete 10 delete_customer
40 Can view 10 view_customer
41 Can add 11 add_bankaccount
42 Can change 11 change_bankaccount
43 Can delete 11 delete_bankaccount
44 Can view 11 view_bankaccount
45 Can add 12 add_productcategory
46 Can change 12 change_productcategory
47 Can delete 12 delete_productcategory
48 Can view 12 view_productcategory
49 Can add 13 add_product
50 Can change 13 change_product
51 Can delete 13 delete_product
52 Can view 13 view_product
53 Can add 14 add_supplier
54 Can change 14 change_supplier
55 Can delete 14 delete_supplier
56 Can view 14 view_supplier
57 Can add 15 add_vehicletype
58 Can change 15 change_vehicletype
59 Can delete 15 delete_vehicletype
60 Can view 15 view_vehicletype
61 Can add 16 add_vehicletransportrecord
62 Can change 16 change_vehicletransportrecord
63 Can delete 16 delete_vehicletransportrecord
64 Can view 16 view_vehicletransportrecord
65 Can add 17 add_warehouse
66 Can change 17 change_warehouse
67 Can delete 17 delete_warehouse
68 Can view 17 view_warehouse
69 Can add 18 add_quickinput
70 Can change 18 change_quickinput
71 Can delete 18 delete_quickinput
72 Can view 18 view_quickinput
73 Can add 19 add_purchaseorder
74 Can change 19 change_purchaseorder
75 Can delete 19 delete_purchaseorder
76 Can view 19 view_purchaseorder
77 Can add 20 add_stockchangerecord
78 Can change 20 change_stockchangerecord
79 Can delete 20 delete_stockchangerecord
80 Can view 20 view_stockchangerecord
81 Can add 21 add_stockchangedetail
82 Can change 21 change_stockchangedetail
83 Can delete 21 delete_stockchangedetail
84 Can view 21 view_stockchangedetail
85 Can add 22 add_stocksnapshot
86 Can change 22 change_stocksnapshot
87 Can delete 22 delete_stocksnapshot
88 Can view 22 view_stocksnapshot
89 Can add 23 add_inventory
90 Can change 23 change_inventory
91 Can delete 23 delete_inventory
92 Can view 23 view_inventory
93 Can add 24 add_stockfreeze
94 Can change 24 change_stockfreeze
95 Can delete 24 delete_stockfreeze
96 Can view 24 view_stockfreeze
97 Can add 25 add_uploadedfile
98 Can change 25 change_uploadedfile
99 Can delete 25 delete_uploadedfile
100 Can view 25 view_uploadedfile
101 Can add 26 add_printingorder
102 Can change 26 change_printingorder
103 Can delete 26 delete_printingorder
104 Can view 26 view_printingorder
105 26 can_invalidate_printingorder
106 26 can_activate_printingorder
107 Can add 27 add_printingjob
108 Can change 27 change_printingjob
109 Can delete 27 delete_printingjob
110 Can view 27 view_printingjob
111 Can add 28 add_plateorder
112 Can change 28 change_plateorder
113 Can delete 28 delete_plateorder
114 Can view 28 view_plateorder
115 28 can_invalidate_plateorder
116 28 can_activate_plateorder
117 Can add 29 add_state
118 Can change 29 change_state
119 Can delete 29 delete_state
120 Can view 29 view_state
121 Can add 30 add_process
122 Can change 30 change_process
123 Can delete 30 delete_process
124 Can view 30 view_process
125 Can add 31 add_stateparameter
126 Can change 31 change_stateparameter
127 Can delete 31 delete_stateparameter
128 Can view 31 view_stateparameter
129 Can add 32 add_processnode
130 Can change 32 change_processnode
131 Can delete 32 delete_processnode
132 Can view 32 view_processnode
133 Can add 33 add_businessobject
134 Can change 33 change_businessobject
135 Can delete 33 delete_businessobject
136 Can view 33 view_businessobject
137 Can add 34 add_stateflowrecord
138 Can change 34 change_stateflowrecord
139 Can delete 34 delete_stateflowrecord
140 Can view 34 view_stateflowrecord
141 Can add 35 add_statelogparameterrecord
142 Can change 35 change_statelogparameterrecord
143 Can delete 35 delete_statelogparameterrecord
144 Can view 35 view_statelogparameterrecord
145 Can add 36 add_employeetype
146 Can change 36 change_employeetype
147 Can delete 36 delete_employeetype
148 Can view 36 view_employeetype
149 Can add 37 add_userprofile
150 Can change 37 change_userprofile
151 Can delete 37 delete_userprofile
152 Can view 37 view_userprofile
153 10 view_all_customers
154 Can add 38 add_purchaseorder
155 Can change 38 change_purchaseorder
156 Can delete 38 delete_purchaseorder
157 Can view 38 view_purchaseorder
158 Can add 39 add_purchaseorderitem
159 Can change 39 change_purchaseorderitem
160 Can delete 39 delete_purchaseorderitem
161 Can view 39 view_purchaseorderitem
162 Can add 40 add_merchantsetting
163 Can change 40 change_merchantsetting
164 Can delete 40 delete_merchantsetting
165 Can view 40 view_merchantsetting
166 Can add 41 add_salesorder
167 Can change 41 change_salesorder
168 Can delete 41 delete_salesorder
169 Can view 41 view_salesorder
170 Can add 42 add_supplierbalance
171 Can change 42 change_supplierbalance
172 Can delete 42 delete_supplierbalance
173 Can view 42 view_supplierbalance
174 Can add 43 add_receiptorder
175 Can change 43 change_receiptorder
176 Can delete 43 delete_receiptorder
177 Can view 43 view_receiptorder
178 Can add 44 add_customerbalance
179 Can change 44 change_customerbalance
180 Can delete 44 delete_customerbalance
181 Can view 44 view_customerbalance
182 Can add 45 add_paymentorder
183 Can change 45 change_paymentorder
184 Can delete 45 delete_paymentorder
185 Can view 45 view_paymentorder
186 Can add 46 add_salesorderitem
187 Can change 46 change_salesorderitem
188 Can delete 46 delete_salesorderitem
189 Can view 46 view_salesorderitem
190 Can add 47 add_balancechangerecord
191 Can change 47 change_balancechangerecord
192 Can delete 47 delete_balancechangerecord
193 Can view 47 view_balancechangerecord
194 Can add 退 48 add_purchasereturnorder
195 Can change 退 48 change_purchasereturnorder
196 Can delete 退 48 delete_purchasereturnorder
197 Can view 退 48 view_purchasereturnorder
198 Can add 退 49 add_purchasereturnorderitem
199 Can change 退 49 change_purchasereturnorderitem
200 Can delete 退 49 delete_purchasereturnorderitem
201 Can view 退 49 view_purchasereturnorderitem
202 Can add 退 50 add_salesreturnorder
203 Can change 退 50 change_salesreturnorder
204 Can delete 退 50 delete_salesreturnorder
205 Can view 退 50 view_salesreturnorder
206 Can add 退 51 add_salesreturnorderitem
207 Can change 退 51 change_salesreturnorderitem
208 Can delete 退 51 delete_salesreturnorderitem
209 Can view 退 51 view_salesreturnorderitem
210 Can add 52 add_transferorder
211 Can change 52 change_transferorder
212 Can delete 52 delete_transferorder
213 Can view 52 view_transferorder
214 Can add 53 add_transferorderitem
215 Can change 53 change_transferorderitem
216 Can delete 53 delete_transferorderitem
217 Can view 53 view_transferorderitem
218 Can add 54 add_datasync
219 Can change 54 change_datasync
220 Can delete 54 delete_datasync
221 Can view 54 view_datasync
\.
--
-- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.auth_user (id, password, last_login, is_superuser, username, first_name, last_name, email, is_staff, is_active, date_joined) FROM stdin;
15 pbkdf2_sha256$1000000$oTNIqdOxJquN5Hh4SOLMzS$bkqWiLyuGWrSUliV/x+m+zy96KG1dPeyZY6+jv0jXmY= 2025-12-04 06:48:53.516979+00 f f t 2025-12-04 06:12:00+00
19 pbkdf2_sha256$1000000$r4MzOEUTSt82z1iAuyJV7u$2E6ope6V06oM7XQRCtuMgvhuhwMDeofadB8ifHhoMIM= \N f test_user_1764834638834_409 f t 2025-12-04 07:50:40.177367+00
20 pbkdf2_sha256$1000000$N7B6zdO3RulTvjuJReYhHe$E3jX5WK48MS1aA23csXfuHbJ5XTVnoVDiXf6Y0Uc9jM= \N f test_user_1764834716911_392 test@example.com f t 2025-12-04 07:51:58.2532+00
21 pbkdf2_sha256$1000000$zrrXttxWRJHsISQ55IyIy4$qItgqFbBde6zzuz5LSfrc5ainsjDjkh7B/ZI3u9xuYg= \N f test_user_1764834718055_763 f t 2025-12-04 07:51:59.421495+00
9 pbkdf2_sha256$1000000$7fHcKnjC9MsFNWvgmYndyZ$CNph1RseTOnvjE+ve3ExLeAms+ovmCF3AUnxqw7Ae34= \N f f t 2025-12-04 06:05:00+00
5 pbkdf2_sha256$1000000$6QzgwlV3m9j08p5c6TimM6$dYqey1tpxL2fIuJj+qKVl2z5Dc41BrvHuZlQShmgIM4= \N f testuser_5599 testuser_5599@example.com f t 2025-11-24 05:45:22.629483+00
6 pbkdf2_sha256$1000000$Gc8ss3NEXAAO5mK1nQ51l2$/DOLtcYC+F+dG1LVSuvWvyrLVNR9qViopLL9ntjqojo= \N f apitest2 f t 2025-11-24 06:08:19.098505+00
17 pbkdf2_sha256$1000000$eMSZHdRVGRY1AlkVY64QW3$yap6dGAPHZoSzWr4cfxBPZiFAhtzOJkdX9SS6k57rBQ= \N f f t 2025-12-04 06:13:00+00
7 pbkdf2_sha256$1000000$gXVjPP0SD9cgTNxOOsTPbG$/dtOlfY+1WsASF/pW+EtompccUEORJMTMyhL9YebZxo= \N f apitest666 f t 2025-11-24 06:16:49.620831+00
18 pbkdf2_sha256$1000000$mlouDZHnga4KB4BEozVRx5$sjaHgV7j0EIB9Yxk//5kqzY8N9YhJ4iaH1+bNt6eZr0= \N f f t 2025-12-04 06:13:00+00
3 pbkdf2_sha256$1000000$mlevMIoViCC3iCxkVWY7N7$Hs9ug78RJIMHoORM5k4YzX52IkUubzlzOzXpMDAG5/k= 2025-11-23 12:57:00+00 f f t 2025-11-19 08:12:00+00
10 pbkdf2_sha256$1000000$8y7CVbT0jaOciUXw3SHAQK$tRaPE3XC8WerusH4BSGZRhZUA+VoaCzmPi3/3yWrdoM= \N f f t 2025-12-04 06:06:00+00
11 pbkdf2_sha256$1000000$JtvJXKVoYVlkYWuvNlGjFH$1rG6tXSClFyQhiNabIsaVxvf/t+bXJRRzcJ+3PUsxLM= \N f f t 2025-12-04 06:09:00+00
16 pbkdf2_sha256$1000000$sNNmYwCVibkbbk9bAUW30b$ywTLReGUI6uELjsAartZxhzyc3GquHRIHOsz3ieBkDE= \N f f t 2025-12-04 06:13:00+00
12 pbkdf2_sha256$1000000$r88b7oLTCFkQKYuvLD1Iho$dx0K9teGvYQZx60BpB4WR8xFJuMTaDZhLInhGn3R9uQ= \N f f t 2025-12-04 06:10:00+00
13 pbkdf2_sha256$1000000$AM05i4IzJijKsASZDIEv5y$DxFfl2FDLTRvLEaFugLph1R6EE3Z+DVjRZKD1D/faws= \N f f t 2025-12-04 06:11:00+00
22 pbkdf2_sha256$1000000$O0vPdaovJQ2pob72BQnGqn$XBVQc40r3dFOBJaHeS3rKq/Z7kKoqG5Yg6LLSwUL+Ac= \N f test_user_1764834723457_439 fulltest@example.com f t 2025-12-04 07:52:04.873427+00
23 pbkdf2_sha256$1000000$dpRo76uiBiZP2TMftRb3U2$YmXyHtCYONB6sn7MSr2DY5CEwFum1kLJ7EDu9q3JfY0= \N f test_user_1764836863672_859 test@example.com f t 2025-12-04 08:27:45.007015+00
8 pbkdf2_sha256$1000000$4zkjF3Q1o4FOFhV1JkLWgh$hPlRDRJpV8j7c6N9TjHoDqGrhTb8vqnpEKo4Ve9yczA= 2025-12-04 06:19:48.585223+00 f f t 2025-12-04 06:03:00+00
1 pbkdf2_sha256$1000000$NyR8RyN6CWu3xEJP4rXclZ$vKH5DuApHqxxHaxiWd/b6Ek0BTozUZ+ZaJXcxtfRkiA= 2025-12-08 05:31:01.301459+00 t admin t t 2025-11-18 05:58:19.271303+00
24 pbkdf2_sha256$1000000$XRssJtzwzRAZlrwGNfEq2e$GTd0X5T2w2Vk+9gawVJ+BzfKboyNAavNbXEFBPY57FI= \N f test_user_1764836864862_958 f t 2025-12-04 08:27:46.316135+00
25 pbkdf2_sha256$1000000$c4avrjiDfI4OTUAmGsjbtH$Sl2X4HMQBxDx4XVWq5pT84rPiE8tzK06YWv5YdcSLbo= \N f test_user_1764836870109_178 fulltest@example.com f t 2025-12-04 08:27:51.660225+00
14 pbkdf2_sha256$1000000$3cXzJtomgVsxYpXsRYq2Wj$8fvB061f7icuhK8H8dj34r/srMH5rYDAMZyL+BrEzTA= 2025-12-05 07:58:15.004682+00 f f t 2025-12-04 06:11:00+00
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
2 pbkdf2_sha256$1000000$FQEiwQ12oi0PN5Eiy8yBj8$5K56mG8hMRXmQDNAJaeacM1f7ILZ0cF/6Ad6wTI69QA= 2025-12-08 11:27:24.30894+00 f jimi f t 2025-11-18 05:59: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
\.
--
-- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.auth_user_user_permissions (id, user_id, permission_id) FROM stdin;
1 2 101
2 2 102
3 2 103
4 2 104
5 2 105
6 2 106
7 2 107
8 2 108
9 2 109
10 2 110
11 2 111
12 2 112
13 2 113
14 2 114
15 2 115
16 2 116
17 3 101
18 3 102
19 3 103
20 3 104
21 3 105
22 3 106
23 3 107
24 3 108
25 3 109
26 3 110
27 3 111
28 3 112
29 3 113
30 3 114
31 3 115
32 3 116
33 2 16
34 2 13
35 2 153
36 2 40
37 2 37
38 2 38
39 2 39
\.
--
-- Data for Name: basic_info_bankaccount; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_bankaccount (created_at, updated_at, id, name, auto_number, description, attachment, merchant_id) FROM stdin;
2025-12-03 06:31:51.611411+00 2025-12-03 06:31:51.611424+00 1 001 \N 1
\.
--
-- Data for Name: basic_info_customer; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_customer (created_at, updated_at, id, name, mobile, area, email, contact, description, merchant_id, created_by_id, mdy_uid, from_mdy) FROM stdin;
2025-12-08 15:00:00.669749+00 2025-12-08 15:00:00.669765+00 410 \N \N \N \N 1 \N e179e64d-fbbd-4f8f-8dbb-c847987ec639 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.721998+00 2025-12-08 15:00:00.722002+00 472 A尹志勇 \N \N \N \N 1 \N 07dc7546-47bb-4aab-aa63-b0f98e292f30 t
2025-12-08 15:00:00.722762+00 2025-12-08 15:00:00.722766+00 473 F思雨服饰 \N \N \N \N 1 \N 8de1b506-d152-4990-8edb-cbeb82a3787a t
2025-12-08 15:00:00.723529+00 2025-12-08 15:00:00.723533+00 474 10.4.1 \N \N \N \N 1 \N 94857c54-e39f-4f42-82f5-327fbd59a28c t
2025-12-08 15:00:00.724561+00 2025-12-08 15:00:00.724565+00 475 \N \N \N \N 1 \N d8bc9479-d55a-4ab9-8273-f2f01d561672 t
2025-12-08 15:00:00.725611+00 2025-12-08 15:00:00.725615+00 476 \N \N \N \N 1 \N 781d7852-597b-42ac-adaa-4014cf30f94e t
2025-12-08 15:00:00.726665+00 2025-12-08 15:00:00.726669+00 477 \N \N \N \N 1 \N 959f4ba3-3dba-454d-9986-0a4745bcf897 t
2025-12-08 15:00:00.727699+00 2025-12-08 15:00:00.727706+00 478 \N \N \N \N 1 \N 10fad7ca-1d61-45a9-bdd0-efe2a91c816d t
2025-12-08 15:00:00.72875+00 2025-12-08 15:00:00.728754+00 479 \N \N \N \N 1 \N 5e444b37-c0eb-40ff-bc9b-da05747b2d5a t
2025-12-08 15:00:00.72979+00 2025-12-08 15:00:00.729794+00 480 A欧莉娅服饰 \N \N \N \N 1 \N 4217d1fd-3ab8-428e-aa6e-f813f30607d5 t
2025-12-08 15:00:00.730831+00 2025-12-08 15:00:00.730835+00 481 A青青 \N \N \N \N 1 \N 1ec47792-d568-4909-8d55-9e6a5ae998e8 t
2025-12-08 15:00:00.731871+00 2025-12-08 15:00:00.731875+00 482 \N \N \N \N 1 \N 19466f0d-09a2-4aa5-9c78-44d544e257b6 t
2025-12-08 15:00:00.732612+00 2025-12-08 15:00:00.732615+00 483 \N \N \N \N 1 \N 6c05230c-52ae-4667-bbe6-654bc900870c t
2025-12-08 15:00:00.73335+00 2025-12-08 15:00:00.733354+00 484 \N \N \N \N 1 \N 85047d01-bee0-4e9d-a26c-fa42d5ede100 t
2025-12-08 15:00:00.734097+00 2025-12-08 15:00:00.734102+00 485 \N \N \N \N 1 \N 402235ed-4217-4526-bf0b-6dc0bc66634d t
2025-12-08 15:00:00.734879+00 2025-12-08 15:00:00.734883+00 486 A李华 \N \N \N \N 1 \N b2314055-21f4-4a4d-9c85-642002879feb t
2025-12-08 15:00:00.735707+00 2025-12-08 15:00:00.735711+00 487 A宝发 \N \N \N \N 1 \N 595aba2d-02a6-427e-a33e-3ee40d22168c t
2025-12-08 15:00:00.736588+00 2025-12-08 15:00:00.736591+00 488 A晨林服饰 \N \N \N \N 1 \N fdb9d1fd-27ee-4418-8efd-84ec93115938 t
2025-12-08 15:00:00.737384+00 2025-12-08 15:00:00.737388+00 489 A升都苗子 \N \N \N \N 1 \N 60c88e3b-bffa-46ce-bd94-7235748697d6 t
2025-12-08 15:00:00.738174+00 2025-12-08 15:00:00.738178+00 490 \N \N \N \N 1 \N 05e07c33-2158-44c0-b2ef-9b4318a95ac3 t
2025-12-08 15:00:00.738958+00 2025-12-08 15:00:00.738962+00 491 \N \N \N \N 1 \N 5766c260-b690-4cb2-8c8b-2a78fd1aae4c t
2025-12-08 15:00:00.739722+00 2025-12-08 15:00:00.739726+00 492 \N \N \N \N 1 \N c19e1ccf-0e34-42b4-8dcd-c53adda4f6b6 t
2025-12-08 15:00:00.740499+00 2025-12-08 15:00:00.740503+00 493 A欧阳家杰 \N A欧阳家杰 \N \N \N 1 \N 0142a5c1-6f2a-419e-a31a-2f8998afa1eb t
2025-12-08 15:00:00.741252+00 2025-12-08 15:00:00.741255+00 494 0 \N 0 \N \N \N 1 \N a27e9a2e-1fa4-46b5-b59e-350a4408df63 t
2025-12-08 15:00:00.741997+00 2025-12-08 15:00:00.742+00 495 A唯依服饰 \N \N \N \N 1 \N ae5683f7-ee3f-4a72-811f-3f096984ab87 t
2025-12-08 15:00:00.742742+00 2025-12-08 15:00:00.742746+00 496 10.7 \N \N \N \N 1 \N ca076bcc-2f52-4fce-b713-67994ee02c79 t
2025-12-08 15:00:00.74351+00 2025-12-08 15:00:00.743514+00 497 - \N \N \N \N 1 \N f03963a5-df8f-47c8-b18a-2bb7180741c3 t
2025-12-08 15:00:00.744267+00 2025-12-08 15:00:00.744271+00 498 ATA \N \N \N \N 1 \N a1bf2da2-6a5e-4a8e-ab96-7d4002f183c6 t
2025-12-08 15:00:00.745026+00 2025-12-08 15:00:00.74503+00 499 西 \N \N \N \N 1 \N 493f15db-3241-4c64-ba6b-332fafed6332 t
2025-12-08 15:00:00.745795+00 2025-12-08 15:00:00.745799+00 500 A林中梁 \N \N \N \N 1 \N e260c02b-6666-4ee2-bfe7-ddcd21794623 t
2025-12-08 15:00:00.746572+00 2025-12-08 15:00:00.746575+00 501 10.4 \N \N \N \N 1 \N 132a1896-8e24-4485-8d47-251c2d332813 t
2025-12-08 15:00:00.747334+00 2025-12-08 15:00:00.747338+00 502 Z嘉发 \N \N \N \N 1 \N 35cc3456-9834-46ff-a80d-af6864a000c5 t
2025-12-08 15:00:00.748122+00 2025-12-08 15:00:00.748126+00 503 \N \N \N \N 1 \N 600affab-c734-41fa-98c5-e4c706f9db98 t
2025-12-08 15:00:00.748901+00 2025-12-08 15:00:00.748905+00 504 \N \N \N \N 1 \N 973fab20-ed55-4001-83ce-cb72506a5df3 t
2025-12-08 15:00:00.749655+00 2025-12-08 15:00:00.749659+00 505 \N \N \N \N 1 \N 9eed4771-8ff0-4511-85d8-c0723e8e3a51 t
2025-12-08 15:00:00.75041+00 2025-12-08 15:00:00.750414+00 506 耀 \N \N \N \N 1 \N 90412fa6-180d-4498-a87f-22cce8acf2bb t
2025-12-08 15:00:00.751168+00 2025-12-08 15:00:00.751172+00 507 \N \N \N \N 1 \N 04b07f3e-75a2-4bf0-be08-1ecf4b65fc12 t
2025-12-08 15:00:00.751931+00 2025-12-08 15:00:00.751935+00 508 - \N \N \N \N 1 \N 7a50a5e6-029d-4d79-97f4-b6ecca7bab07 t
2025-12-08 15:00:00.752692+00 2025-12-08 15:00:00.752696+00 509 - \N \N \N \N 1 \N 6cbbedce-b1e3-48c7-aad8-96cac9d688a5 t
2025-12-08 15:00:01.175171+00 2025-12-08 15:00:01.175179+00 510 - \N \N \N \N 1 \N 4a5b23fc-22dc-4442-b425-fc818018e23e t
2025-12-08 15:00:01.176414+00 2025-12-08 15:00:01.176419+00 511 - \N \N \N \N 1 \N 6cd30a34-7090-4b0f-ae96-97488ec06a67 t
2025-12-08 15:00:01.17726+00 2025-12-08 15:00:01.177265+00 512 - \N \N \N \N 1 \N 4ef72246-0489-438e-9220-1be66bfb7346 t
2025-12-08 15:00:01.178073+00 2025-12-08 15:00:01.178078+00 513 \N \N \N \N 1 \N 56ea8491-67ce-4c59-82c8-fa0685e8d369 t
2025-12-08 15:00:01.178889+00 2025-12-08 15:00:01.178894+00 514 - \N \N \N \N 1 \N 77e467be-0278-4883-acea-1fa32b7f8921 t
2025-12-08 15:00:01.179686+00 2025-12-08 15:00:01.17969+00 515 - \N \N \N \N 1 \N f5b09dcd-a73e-4431-8463-846c0792a7fc t
2025-12-08 15:00:01.180463+00 2025-12-08 15:00:01.180467+00 516 - \N \N \N \N 1 \N 2bffeeab-b3ef-4b7b-84c7-d2ec53e10980 t
2025-12-08 15:00:01.181223+00 2025-12-08 15:00:01.181226+00 517 - \N \N \N \N 1 \N ba7c5263-5ea0-4928-a603-598ff9e66421 t
2025-12-08 15:00:01.182013+00 2025-12-08 15:00:01.182017+00 518 - \N \N \N \N 1 \N 572aa878-b229-4591-b47b-60e4ba6866d1 t
2025-12-08 15:00:01.182786+00 2025-12-08 15:00:01.18279+00 519 \N \N \N \N 1 \N 690c1f1f-a89c-4b56-9902-2e82cdec7ee1 t
2025-12-08 15:00:01.183541+00 2025-12-08 15:00:01.183545+00 520 \N \N \N \N 1 \N 2bbb1c25-ebd5-4fc9-b67d-e1011e701e09 t
2025-12-08 15:00:01.184313+00 2025-12-08 15:00:01.184317+00 521 \N \N \N \N 1 \N 2f8d4f7e-e72b-4f00-9b40-14c0a8457d1c t
2025-12-08 15:00:01.185072+00 2025-12-08 15:00:01.185075+00 522 2 \N \N \N \N 1 \N f71c0d7b-3d84-4e39-8e7c-519202232dc9 t
2025-12-08 15:00:01.185835+00 2025-12-08 15:00:01.185839+00 523 \N \N \N \N 1 \N b9dcfd45-9da7-4c04-9c06-066bf5623093 t
2025-12-08 15:00:01.186615+00 2025-12-08 15:00:01.186619+00 524 \N \N \N \N 1 \N 4fee6ddd-bf3d-4b66-ad0a-52b4a4d03696 t
2025-12-08 15:00:01.187386+00 2025-12-08 15:00:01.18739+00 525 - \N \N \N \N 1 \N 2ae3a539-5274-4ede-bbf2-93b4ba1d5246 t
2025-12-08 15:00:01.188168+00 2025-12-08 15:00:01.188172+00 526 \N \N \N \N 1 \N 748f2475-19cf-4c31-8b3d-acc97064d4b4 t
2025-12-08 15:00:01.188944+00 2025-12-08 15:00:01.188948+00 527 \N \N \N \N 1 \N 3ae02dc8-fbf6-49d4-994f-74f8dcda14fd t
2025-12-08 15:00:01.189718+00 2025-12-08 15:00:01.189722+00 528 - \N \N \N \N 1 \N 33f79a90-879c-4542-9775-c1011df05f98 t
2025-12-08 15:00:01.190719+00 2025-12-08 15:00:01.190723+00 529 \N \N \N \N 1 \N 9d0efb7d-b5b5-4dd0-9d5c-6dc539cd3d2f t
2025-12-08 15:00:01.191531+00 2025-12-08 15:00:01.191535+00 530 G() \N \N \N \N 1 \N 0e3c5208-b242-45e5-9544-125f5213d038 t
2025-12-08 15:00:01.192308+00 2025-12-08 15:00:01.192313+00 531 MC时尚 \N \N \N \N 1 \N a77fa988-385e-4b5a-a830-d45a9c7feea6 t
2025-12-08 15:00:01.193087+00 2025-12-08 15:00:01.193091+00 532 \N \N \N \N 1 \N 5ce4be96-1f9f-4e98-af00-fecdad0f3960 t
2025-12-08 15:00:01.193885+00 2025-12-08 15:00:01.193889+00 533 \N \N \N \N 1 \N 08f23e23-ed9c-4eca-b8b0-abb6d198332f t
2025-12-08 15:00:01.19481+00 2025-12-08 15:00:01.194814+00 534 \N \N \N \N 1 \N b0940502-6360-4e51-ba20-4a11829f1fb4 t
2025-12-08 15:00:01.195629+00 2025-12-08 15:00:01.195633+00 535 \N \N \N \N 1 \N d4e0d73f-00ea-4474-b917-5803dc11458a t
2025-12-08 15:00:01.196415+00 2025-12-08 15:00:01.196419+00 536 - \N \N \N \N 1 \N 6f85bb3a-611f-4f56-b49c-774b37c4a91a t
2025-12-08 15:00:01.197205+00 2025-12-08 15:00:01.197209+00 537 \N \N \N \N 1 \N 594e8cc2-9416-498d-bc92-c721ca10e0de t
2025-12-08 15:00:01.197991+00 2025-12-08 15:00:01.197995+00 538 \N \N \N \N 1 \N c984efcb-ffd6-4b2c-ac6e-3cbe2e97e60e t
2025-12-08 15:00:01.198754+00 2025-12-08 15:00:01.198758+00 539 LC- \N \N \N \N 1 \N 940fa8bf-a053-4d53-8d44-60c3fcf6aa1b t
2025-12-08 15:00:01.199535+00 2025-12-08 15:00:01.199539+00 540 耀 \N \N \N \N 1 \N 68626e67-9431-46a7-b5dd-b6139953d665 t
2025-12-08 15:00:01.200322+00 2025-12-08 15:00:01.200325+00 541 2- \N \N \N \N 1 \N 4ee5e3fa-e087-43dc-b886-80a18fbef8b6 t
2025-12-08 15:00:01.201084+00 2025-12-08 15:00:01.201087+00 542 \N \N \N \N 1 \N b4230736-442f-4675-a747-9ef94b5b258d t
2025-12-08 15:00:01.201862+00 2025-12-08 15:00:01.201866+00 543 \N \N \N \N 1 \N 31e4e961-ac61-448d-92aa-e5bea1a7e63a t
2025-12-08 15:00:01.202629+00 2025-12-08 15:00:01.202633+00 544 \N \N \N \N 1 \N 0589f14d-a5c8-403f-939e-26f667fac0f6 t
2025-12-08 15:00:01.203392+00 2025-12-08 15:00:01.203396+00 545 \N \N \N \N 1 \N b8e6d8c4-3519-4914-9e36-741a66755bd3 t
2025-12-08 15:00:01.20417+00 2025-12-08 15:00:01.204174+00 546 \N \N \N \N 1 \N 41a85713-360e-42aa-b436-3d3835dbca7c t
2025-12-08 15:00:01.204936+00 2025-12-08 15:00:01.20494+00 547 \N \N \N \N 1 \N 088e2f7a-e08d-431c-9c08-53f590d66893 t
2025-12-08 15:00:01.2057+00 2025-12-08 15:00:01.205708+00 548 \N \N \N \N 1 \N 802294cb-1a9e-4c73-a71c-64252c618b02 t
2025-12-08 15:00:01.206483+00 2025-12-08 15:00:01.206488+00 549 \N \N \N \N 1 \N 6ff268ee-e5b7-4826-98f3-6af55d5f9477 t
2025-12-08 15:00:01.207239+00 2025-12-08 15:00:01.207242+00 550 \N \N \N \N 1 \N 5f244e73-54cb-44e8-b3e3-2a6b1de0d321 t
2025-12-08 15:00:01.208018+00 2025-12-08 15:00:01.208022+00 551 \N \N \N \N 1 \N 85cfc361-def6-4087-837b-14af20a96f6d t
2025-12-08 15:00:01.208801+00 2025-12-08 15:00:01.208805+00 552 \N \N \N \N 1 \N 2792955d-d043-4349-b219-67a70f04d720 t
2025-12-08 15:00:01.20957+00 2025-12-08 15:00:01.209574+00 553 广 \N \N \N \N 1 \N c91b978f-db1c-42b0-b2a9-304533ebbd1e t
2025-12-08 15:00:01.210352+00 2025-12-08 15:00:01.210357+00 554 \N \N \N \N 1 \N 68497e10-9835-442d-8c65-31c698469eb3 t
2025-12-08 15:00:01.21112+00 2025-12-08 15:00:01.211124+00 555 \N \N \N \N 1 \N e267f649-746f-41ac-b055-eae303d45f5c t
2025-12-08 15:00:01.211889+00 2025-12-08 15:00:01.211893+00 556 广 \N \N \N \N 1 \N 8eeab2d1-9ebb-451b-959a-0d6d66c0cceb t
2025-12-08 15:00:01.212657+00 2025-12-08 15:00:01.212661+00 557 \N \N \N \N 1 \N 761bc55c-1220-4365-8009-f122d1366b68 t
2025-12-08 15:00:01.213435+00 2025-12-08 15:00:01.213439+00 558 亿 \N \N \N \N 1 \N d265c804-aaf9-49ff-96bd-96e7742eb20d t
2025-12-08 15:00:01.214192+00 2025-12-08 15:00:01.214195+00 559 \N \N \N \N 1 \N 141e5763-ddb8-4ed0-b008-48daa2ef5b75 t
2025-12-08 15:00:01.214966+00 2025-12-08 15:00:01.21497+00 560 \N \N \N \N 1 \N 2c8a228d-3842-49a2-b25c-ed374dad82c7 t
2025-12-08 15:00:01.21574+00 2025-12-08 15:00:01.215744+00 561 \N \N \N \N 1 \N 625d315e-5ae5-478b-a7ef-a927ad99f723 t
2025-12-08 15:00:01.216497+00 2025-12-08 15:00:01.216501+00 562 \N \N \N \N 1 \N be60dbf0-ab4a-414a-8fa4-3e55853541e7 t
2025-12-08 15:00:01.21724+00 2025-12-08 15:00:01.217244+00 563 \N \N \N \N 1 \N 0047a2c0-c027-4592-80a1-2eec4a3fbf77 t
2025-12-08 15:00:01.218029+00 2025-12-08 15:00:01.218033+00 564 \N \N \N \N 1 \N b3008556-a66b-41f3-93e0-4a8715236880 t
2025-12-08 15:00:01.21885+00 2025-12-08 15:00:01.218854+00 565 \N \N \N \N 1 \N f8338078-aed1-4c86-979f-1db460884a8c t
2025-12-08 15:00:01.219644+00 2025-12-08 15:00:01.219648+00 566 鸿 \N \N \N \N 1 \N 8f9a6ae8-9750-487e-a566-e9d1594a60d5 t
2025-12-08 15:00:01.220433+00 2025-12-08 15:00:01.220437+00 567 \N \N \N \N 1 \N 6c6786f3-e62f-4f79-90b2-c2060f5e2bff t
2025-12-08 15:00:01.221206+00 2025-12-08 15:00:01.22121+00 568 \N \N \N \N 1 \N bfe59ab1-3773-4eea-b0d9-ed5c1eec224e t
2025-12-08 15:00:01.221988+00 2025-12-08 15:00:01.221992+00 569 鸿亿 \N \N \N \N 1 \N 0ffa5a28-0357-4cb2-95a2-b9ee334d21e3 t
2025-12-08 15:00:01.222768+00 2025-12-08 15:00:01.222773+00 570 \N \N \N \N 1 \N f619fea7-2b1e-4832-85bc-da4f1a5df34a t
2025-12-08 15:00:01.223526+00 2025-12-08 15:00:01.223529+00 571 \N \N \N \N 1 \N d0185c83-bdfc-4229-8ed5-1d7ba88303f2 t
2025-12-08 15:00:01.224279+00 2025-12-08 15:00:01.224283+00 572 - \N \N \N \N 1 \N c70fdce8-37db-4ecb-8ff4-3c668a61ca9b t
2025-12-08 15:00:01.225068+00 2025-12-08 15:00:01.225072+00 573 亿 \N \N \N \N 1 \N 8c669187-3cf1-4158-89a5-34580ad76368 t
2025-12-08 15:00:01.225844+00 2025-12-08 15:00:01.225847+00 574 \N \N \N \N 1 \N 51f955ee-6ece-4732-af21-24738fa7edce t
2025-12-08 15:00:01.226603+00 2025-12-08 15:00:01.226606+00 575 \N \N \N \N 1 \N 369904b8-e1f9-4c1f-a2be-8049ee254c9b t
2025-12-08 15:00:01.22738+00 2025-12-08 15:00:01.227384+00 576 \N \N \N \N 1 \N cf42c4dd-e2dd-4717-8210-ce106f9199e1 t
2025-12-08 15:00:01.228165+00 2025-12-08 15:00:01.228169+00 577 \N \N \N \N 1 \N f519d8df-ee1b-4491-9ea5-5855ea4b75ff t
2025-12-08 15:00:01.228932+00 2025-12-08 15:00:01.228936+00 578 \N \N \N \N 1 \N 2ea8a58c-d054-4455-8f3a-031d347a824b t
2025-12-08 15:00:01.229684+00 2025-12-08 15:00:01.229688+00 579 \N \N \N \N 1 \N 596a9bd3-390b-437d-85b3-16ca689956ec t
2025-12-08 15:00:01.23045+00 2025-12-08 15:00:01.230454+00 580 \N \N \N \N 1 \N 13f5c199-fe92-4559-a1c0-26a93fff2e3e t
2025-12-08 15:00:01.231222+00 2025-12-08 15:00:01.231225+00 581 \N \N \N \N 1 \N c281cc05-0097-4b75-bbcb-6fe9c1a9b527 t
2025-12-08 15:00:01.231989+00 2025-12-08 15:00:01.231992+00 582 Z凯盛 \N \N \N \N 1 \N 27bef759-4a08-454a-8cdc-352d3d23e7d5 t
2025-12-08 15:00:01.232766+00 2025-12-08 15:00:01.23277+00 583 \N \N \N \N 1 \N 86182ba5-59b7-40d3-b9dd-11041275ef0b t
2025-12-08 15:00:01.233593+00 2025-12-08 15:00:01.233597+00 584 \N \N \N \N 1 \N 14acfa7c-e554-43ae-af62-54eb623660d4 t
2025-12-08 15:00:01.234372+00 2025-12-08 15:00:01.234377+00 585 \N \N \N \N 1 \N 7fca6d8b-9a11-4063-879e-1b567b816921 t
2025-12-08 15:00:01.235396+00 2025-12-08 15:00:01.2354+00 586 \N \N \N \N 1 \N 14e23955-b938-498a-90ee-106c2f847faa t
2025-12-08 15:00:01.236176+00 2025-12-08 15:00:01.23618+00 587 \N \N \N \N 1 \N 4ce376c4-8501-406a-a8f6-417fca071d70 t
2025-12-08 15:00:01.236941+00 2025-12-08 15:00:01.236945+00 588 \N \N \N \N 1 \N 37196f84-8c1f-491a-83e0-ce4aeacfd6b1 t
2025-12-08 15:00:01.237733+00 2025-12-08 15:00:01.237737+00 589 \N \N \N \N 1 \N a35f1d8d-1f9a-4333-b495-84e9f8d00a15 t
2025-12-08 15:00:01.238498+00 2025-12-08 15:00:01.238502+00 590 - \N \N \N \N 1 \N 85df8a86-21f1-4c2f-95c4-5c7336f530c3 t
2025-12-08 15:00:01.239244+00 2025-12-08 15:00:01.239248+00 591 \N \N \N \N 1 \N f9e20e66-1a59-4a27-9649-3a9fbbb4024a t
2025-12-08 15:00:01.239993+00 2025-12-08 15:00:01.239997+00 592 \N \N \N \N 1 \N 5e42269d-4b5b-4aad-97de-c256343c91a4 t
2025-12-08 15:00:01.240779+00 2025-12-08 15:00:01.240783+00 593 \N \N \N \N 1 \N b61d6fc7-ea16-436e-a7a2-65ff2ab774f6 t
2025-12-08 15:00:01.241535+00 2025-12-08 15:00:01.241539+00 594 \N \N \N \N 1 \N e1dfc60e-5fcb-49ce-8d27-c131264220d7 t
2025-12-08 15:00:01.242285+00 2025-12-08 15:00:01.242289+00 595 - \N \N \N \N 1 \N bab919a2-7bb1-480a-8c0f-1c143efd7fd1 t
2025-12-08 15:00:01.243067+00 2025-12-08 15:00:01.243071+00 596 \N \N \N \N 1 \N a182f13a-1a1b-4df6-aef3-c6c636419dfe t
2025-12-08 15:00:01.243841+00 2025-12-08 15:00:01.243845+00 597 \N \N \N \N 1 \N 57714eaa-8c55-4f5d-8c1c-f0886c72bb98 t
2025-12-08 15:00:01.244604+00 2025-12-08 15:00:01.244608+00 598 \N \N \N \N 1 \N e49ac18d-31c2-4c9b-93d8-060f2aa3a523 t
2025-12-08 15:00:01.245398+00 2025-12-08 15:00:01.245402+00 599 \N \N \N \N 1 \N bb72e244-f60e-49db-b2a2-b6dfc617571b t
2025-12-08 15:00:01.246165+00 2025-12-08 15:00:01.246169+00 600 \N \N \N \N 1 \N 7438d257-66b5-4576-b5cb-7bdf8512a378 t
2025-12-08 15:00:01.24693+00 2025-12-08 15:00:01.246933+00 601 \N \N \N \N 1 \N d87cc14f-183d-4106-a2ad-4a9424b25713 t
2025-12-08 15:00:01.247692+00 2025-12-08 15:00:01.247696+00 602 \N \N \N \N 1 \N 01ece091-ac49-461b-bb68-e5a47366a836 t
2025-12-08 15:00:01.248999+00 2025-12-08 15:00:01.249005+00 603 \N \N \N \N 1 \N c8ba960b-2ba3-4cd8-b332-2e0fd863ea86 t
2025-12-08 15:00:01.250367+00 2025-12-08 15:00:01.250372+00 604 \N \N \N \N 1 \N c2a73295-098d-4632-8b74-2b7d3e85d92e t
2025-12-08 15:00:01.251563+00 2025-12-08 15:00:01.251568+00 605 -886 \N \N \N \N 1 \N c4464061-fea4-4da0-a497-6e861f3e2fc5 t
2025-12-08 15:00:01.252651+00 2025-12-08 15:00:01.252655+00 606 YOYO \N \N \N \N 1 \N 494eb685-8a12-441e-b3a3-82cee8d1b816 t
2025-12-08 15:00:01.253721+00 2025-12-08 15:00:01.253725+00 607 \N \N \N \N 1 \N 346f7d09-4eb2-4beb-8822-abaedaef8054 t
2025-12-08 15:00:01.25478+00 2025-12-08 15:00:01.254784+00 608 \N \N \N \N 1 \N 0830baa9-1dde-4b05-85d7-86e3842ea2f4 t
2025-12-08 15:00:01.255843+00 2025-12-08 15:00:01.255846+00 609 \N \N \N \N 1 \N 37394b3f-8e52-485a-aaa4-68c8268eb1bb t
\.
--
-- 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
\.
--
-- Data for Name: basic_info_deviceinfo; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_deviceinfo (created_at, updated_at, id, name, type, status, start_working_at, stop_working_at, is_occupied, description, merchant_id) FROM stdin;
2025-12-06 06:52:52.804808+00 2025-12-06 06:52:52.804819+00 1 使 \N \N f \N 1
2025-12-06 07:02:37.085012+00 2025-12-06 07:02:37.085021+00 2 2 使 \N \N f \N 1
\.
--
-- Data for Name: basic_info_employee; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_employee (created_at, updated_at, id, name, mobile, area, description, status, sys_user_id, merchant_id, position_id) FROM stdin;
2025-11-18 06:00:44.202474+00 2025-11-20 06:10:09.963599+00 1 \N \N 2 1 2
2025-11-19 08:14:37.879581+00 2025-11-20 06:10:14.371773+00 2 15361280510 \N 3 1 2
2025-11-24 09:25:06.187356+00 2025-11-24 09:25:06.187366+00 4 123 \N \N \N 5 1 \N
2025-11-24 09:25:22.570921+00 2025-11-24 09:25:22.570928+00 5 312 \N \N \N 7 1 2
2025-11-24 09:25:34.682437+00 2025-12-02 05:15:59.929915+00 6 \N \N \N 6 1 7
2025-12-04 06:20:29.464442+00 2025-12-04 06:20:29.46445+00 7 \N \N 9 1 3
2025-12-04 06:20:54.859664+00 2025-12-04 06:22:16.679034+00 8 \N \N 17 1 8
2025-12-04 06:22:59.122061+00 2025-12-04 06:22:59.122069+00 9 \N \N 8 1 3
2025-12-04 06:23:18.893132+00 2025-12-04 06:23:18.893139+00 10 \N \N 18 1 8
2025-12-04 06:27:04.00585+00 2025-12-04 06:27:04.005857+00 11 \N \N 10 1 3
2025-12-04 06:27:36.454577+00 2025-12-04 06:27:36.454585+00 12 \N \N 11 1 3
2025-12-04 06:28:11.769851+00 2025-12-04 06:28:11.769863+00 13 \N \N 16 1 8
2025-12-04 06:28:36.095811+00 2025-12-04 06:28:36.095818+00 14 \N \N 12 1 3
2025-12-04 06:28:57.226452+00 2025-12-04 06:28:57.22646+00 15 \N \N 13 1 3
2025-12-04 06:29:22.663197+00 2025-12-04 06:29:22.663206+00 16 \N \N 14 1 3
2025-12-04 06:29:45.849442+00 2025-12-04 06:29:45.849449+00 17 \N \N 15 1 8
2025-12-04 07:50:40.284012+00 2025-12-04 07:50:40.284019+00 18 19 1 \N
2025-12-04 07:51:58.358692+00 2025-12-04 07:51:58.358699+00 19 13800138000 API测试创建的员工 20 1 \N
2025-12-04 07:51:59.528492+00 2025-12-04 07:51:59.528498+00 20 21 1 \N
2025-12-04 07:52:04.979807+00 2025-12-04 07:52:04.979813+00 21 13900139000 22 1 \N
2025-12-04 08:27:45.113326+00 2025-12-04 08:27:45.113332+00 22 13800138000 API测试创建的员工 23 1 \N
2025-12-04 08:27:46.423583+00 2025-12-04 08:27:46.42359+00 23 24 1 \N
2025-12-04 08:27:51.773532+00 2025-12-04 08:27:51.773538+00 24 13900139000 25 1 \N
2025-12-05 10:38:28.107141+00 2025-12-05 10:38:28.107148+00 25 26 1 \N
\.
--
-- Data for Name: basic_info_employeetype; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_employeetype (created_at, updated_at, id, title, description, reverse, merchant_id) FROM stdin;
2025-11-20 06:10:02.467608+00 2025-11-20 06:10:02.467618+00 2 \N 1
2025-11-20 06:39:12.672087+00 2025-11-20 06:39:12.672099+00 3 \N \N 1
2025-11-20 06:39:22.85184+00 2025-11-20 06:39:22.851853+00 4 \N \N 1
2025-11-20 06:39:34.031356+00 2025-11-20 06:39:41.998153+00 5 \N \N 1
2025-11-20 06:39:48.043445+00 2025-11-20 06:39:48.043455+00 6 \N \N 1
2025-11-20 06:39:54.142622+00 2025-11-20 06:39:54.14263+00 7 \N \N 1
2025-12-04 06:21:06.866439+00 2025-12-04 06:21:06.866447+00 8 \N 1
\.
--
-- Data for Name: basic_info_merchant; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_merchant (created_at, updated_at, id, name, type, area, email, mobile, contact, description, auto_complete_stock_change) FROM stdin;
2025-11-18 06:00:31.465397+00 2025-11-18 06:00:31.465405+00 1 2 \N \N \N f
2025-11-20 06:02:58.795363+00 2025-11-20 06:02:58.795382+00 2 2 1 \N \N \N \N \N f
2025-11-24 05:45:09.309332+00 2025-11-24 05:45:09.309344+00 3 1 \N \N \N \N \N f
\.
--
-- Data for Name: basic_info_merchantsetting; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_merchantsetting (created_at, updated_at, id, key, description, merchant_id, val_bool, val_float, val_int, val_str, type) FROM stdin;
2025-11-28 06:03:02.924489+00 2025-11-28 08:30:04.435452+00 1 auto_create_stock_change_tasks 1 t \N \N \N bool
\.
--
-- Data for Name: basic_info_product; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_product (created_at, updated_at, id, name, human_id, color, width_size, single_price_in, single_price_out, unit, spec, description, image, transform_rate, merchant_id, category_id, minimum_quantity, from_mdy) 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号色-25LWQ15-151---151cmX274cm-147cmX269cm__佩_preview.jpg \N 1 1 \N f
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号色-24LWQ15-151---151cmX268cm-147cmX253cm__佩_preview.jpg \N 1 1 \N f
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
2025-12-08 15:00:01.990959+00 2025-12-08 15:00:01.990971+00 2202 81150#RC23 SPMX-20251208787077 \N \N \N 1 \N [{"file_id": "24df602e-6805-4676-8cbe-176dcdf36b3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "dc439f1a3ad04fe1b19508f8ebfe7964.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "dc439f1a3ad04fe1b19508f8ebfe7964.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "dc439f1a3ad04fe1b19508f8ebfe7964.jpg", "file_size": 34892, "is_delete": false, "file_type": 1, "original_file_name": "81150#RC23~沈孟军--兴画 斜纹磨毛 花调 RC23_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dc439f1a3ad04fe1b19508f8ebfe7964.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dc439f1a3ad04fe1b19508f8ebfe7964.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dc439f1a3ad04fe1b19508f8ebfe7964.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/dc439f1a3ad04fe1b19508f8ebfe7964.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/dc439f1a3ad04fe1b19508f8ebfe7964.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jJMBoMSGC6hrXMoaNxH4ky4BFx0=", "createTime": "2025-12-08 22:55:28"}] \N 1 1 \N t
2025-12-08 15:00:01.993065+00 2025-12-08 15:00:01.99307+00 2203 81483#-RC23 SPMX-20251208787076 \N \N \N 1 \N [{"file_id": "174a0630-eaa6-4c4a-aefa-01fd7bb5815d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "df8abdf57a0f41578b46e45b2c5fe964.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "df8abdf57a0f41578b46e45b2c5fe964.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "df8abdf57a0f41578b46e45b2c5fe964.jpg", "file_size": 23781, "is_delete": false, "file_type": 1, "original_file_name": "81483#灰-RC23~40D本白涤氨-杰画-沈调色_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/df8abdf57a0f41578b46e45b2c5fe964.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/df8abdf57a0f41578b46e45b2c5fe964.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/df8abdf57a0f41578b46e45b2c5fe964.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/df8abdf57a0f41578b46e45b2c5fe964.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/df8abdf57a0f41578b46e45b2c5fe964.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:udsEVSo_BazHA5uXJU94bEpTb-M=", "createTime": "2025-12-08 22:44:39"}] \N 1 1 \N t
2025-12-08 15:00:01.994158+00 2025-12-08 15:00:01.994165+00 2204 81483#-RC23 SPMX-20251208787075 \N \N \N 1 \N [{"file_id": "0b2eeb93-61cc-4ed9-9074-69b6bc04da8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "dba111117452494da1062451332644a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "dba111117452494da1062451332644a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "dba111117452494da1062451332644a5.jpg", "file_size": 24515, "is_delete": false, "file_type": 1, "original_file_name": "81483#咖色-RC23~40D本白涤氨-杰画-沈调色_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dba111117452494da1062451332644a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dba111117452494da1062451332644a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dba111117452494da1062451332644a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/dba111117452494da1062451332644a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/dba111117452494da1062451332644a5.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:osjTC7P6yHgWMV3-GeyN5ZhbIYY=", "createTime": "2025-12-08 22:44:30"}] \N 1 1 \N t
2025-12-08 15:00:01.995215+00 2025-12-08 15:00:01.99522+00 2205 81483#-RC23 SPMX-20251208787074 \N \N \N 1 \N [{"file_id": "077206f2-3e23-481a-bf52-a5043447ce9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "3a7d63243305456788618867d4e16b94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "3a7d63243305456788618867d4e16b94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "3a7d63243305456788618867d4e16b94.jpg", "file_size": 24326, "is_delete": false, "file_type": 1, "original_file_name": "81483#灰-RC23~40D本白涤氨-杰画-沈调色-10-OK_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3a7d63243305456788618867d4e16b94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3a7d63243305456788618867d4e16b94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3a7d63243305456788618867d4e16b94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/3a7d63243305456788618867d4e16b94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/3a7d63243305456788618867d4e16b94.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CDTioH4qkoCVLwQFpN7hxrbcrks=", "createTime": "2025-12-08 22:44:24"}] \N 1 1 \N t
2025-12-08 15:00:01.996227+00 2025-12-08 15:00:01.996231+00 2206 81483#-RC23-40D本白涤氨-- SPMX-20251208787073 \N \N \N 1 \N [{"file_id": "8377f51a-104b-435d-b60e-e3acb2a46de5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "977c9d35bc8b4a8fa2ff98c72f88dd60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "977c9d35bc8b4a8fa2ff98c72f88dd60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "977c9d35bc8b4a8fa2ff98c72f88dd60.jpg", "file_size": 24565, "is_delete": false, "file_type": 1, "original_file_name": "81483#粉-RC23-40D本白涤氨-杰画-沈调色_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/977c9d35bc8b4a8fa2ff98c72f88dd60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/977c9d35bc8b4a8fa2ff98c72f88dd60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/977c9d35bc8b4a8fa2ff98c72f88dd60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/977c9d35bc8b4a8fa2ff98c72f88dd60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/977c9d35bc8b4a8fa2ff98c72f88dd60.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:akXLVp4eGmFomEKFw5caQmPMD7w=", "createTime": "2025-12-08 22:44:11"}] \N 1 1 \N t
2025-12-08 15:00:01.997257+00 2025-12-08 15:00:01.997261+00 2207 81483#-RC23 SPMX-20251208787072 \N \N \N 1 \N [{"file_id": "130530f2-d742-4831-be53-bdc74397f2ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "ff678c7ce54642fb8dc9a7897ee30b51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "ff678c7ce54642fb8dc9a7897ee30b51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "ff678c7ce54642fb8dc9a7897ee30b51.jpg", "file_size": 25144, "is_delete": false, "file_type": 1, "original_file_name": "81483#咖色-RC23~40D本白涤氨-杰画-沈调色-11-OK_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ff678c7ce54642fb8dc9a7897ee30b51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ff678c7ce54642fb8dc9a7897ee30b51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ff678c7ce54642fb8dc9a7897ee30b51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/ff678c7ce54642fb8dc9a7897ee30b51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/ff678c7ce54642fb8dc9a7897ee30b51.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dh6W0c8f8Az2s7MRVoTw9bxMi1I=", "createTime": "2025-12-08 22:44:05"}] \N 1 1 \N t
2025-12-08 15:00:01.99825+00 2025-12-08 15:00:01.998254+00 2208 81483#-RC23 SPMX-20251208787071 \N \N \N 1 \N [{"file_id": "f59868da-4bcb-4378-ba7f-13132d690b76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "c16313618ba94191ab5d34f65c1b4b15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "c16313618ba94191ab5d34f65c1b4b15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "c16313618ba94191ab5d34f65c1b4b15.jpg", "file_size": 26139, "is_delete": false, "file_type": 1, "original_file_name": "81483#咖色-RC23~杰画-沈调色-11-OK_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c16313618ba94191ab5d34f65c1b4b15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c16313618ba94191ab5d34f65c1b4b15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c16313618ba94191ab5d34f65c1b4b15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/c16313618ba94191ab5d34f65c1b4b15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/c16313618ba94191ab5d34f65c1b4b15.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:myZhMXkN67ongX58EQuMZ_a9_p8=", "createTime": "2025-12-08 22:43:17"}] \N 1 1 \N t
2025-12-08 15:00:01.999213+00 2025-12-08 15:00:01.999217+00 2209 81483#-RC23-- SPMX-20251208787070 \N \N \N 1 \N [{"file_id": "8b38ce33-c424-48bb-934f-54451011b6e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "6fcdc95531b34a0a9b454adb5460466f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "6fcdc95531b34a0a9b454adb5460466f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "6fcdc95531b34a0a9b454adb5460466f.jpg", "file_size": 25895, "is_delete": false, "file_type": 1, "original_file_name": "81483#粉-RC23-杰画-沈调色_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6fcdc95531b34a0a9b454adb5460466f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6fcdc95531b34a0a9b454adb5460466f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6fcdc95531b34a0a9b454adb5460466f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/6fcdc95531b34a0a9b454adb5460466f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/6fcdc95531b34a0a9b454adb5460466f.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K0Q-oYypWXcf-jkx-6ComIWstwo=", "createTime": "2025-12-08 22:42:58"}] \N 1 1 \N t
2025-12-08 15:00:02.000185+00 2025-12-08 15:00:02.000189+00 2210 81483#-RC23 SPMX-20251208787069 \N \N \N 1 \N [{"file_id": "60848253-9bcf-40c2-8ec4-67656353ada5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "3fa9865472c74f2babecf8067a685e6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "3fa9865472c74f2babecf8067a685e6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "3fa9865472c74f2babecf8067a685e6f.jpg", "file_size": 25440, "is_delete": false, "file_type": 1, "original_file_name": "81483#灰-RC23~杰画-沈调色-10-OK_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3fa9865472c74f2babecf8067a685e6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3fa9865472c74f2babecf8067a685e6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3fa9865472c74f2babecf8067a685e6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/3fa9865472c74f2babecf8067a685e6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/3fa9865472c74f2babecf8067a685e6f.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nUXsaxQ--Ymcs1k_ffHXdNhvKjE=", "createTime": "2025-12-08 22:42:56"}] \N 1 1 \N t
2025-12-08 15:00:02.001152+00 2025-12-08 15:00:02.001156+00 2211 81483# SPMX-20251208787068 \N \N \N 1 \N [{"file_id": "c0906d78-9c51-41f2-b8de-30534b670589", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "c032752556264ad083624c894e859db4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "c032752556264ad083624c894e859db4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "c032752556264ad083624c894e859db4.jpg", "file_size": 25919, "is_delete": false, "file_type": 1, "original_file_name": "81483#粉~RC23-杰画-沈调色_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c032752556264ad083624c894e859db4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c032752556264ad083624c894e859db4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c032752556264ad083624c894e859db4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/c032752556264ad083624c894e859db4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/c032752556264ad083624c894e859db4.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DLA9SZWQBO2IQa5-xIcV2qIpx_k=", "createTime": "2025-12-08 22:42:17"}] \N 1 1 \N t
2025-12-08 15:00:02.002117+00 2025-12-08 15:00:02.002122+00 2212 81483 SPMX-20251208787067 \N \N \N 1 \N [{"file_id": "d31805ce-c113-44d3-ab80-59a9fd7a1120", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "1b7aa48b0b914d6892c0f2426e9492cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "1b7aa48b0b914d6892c0f2426e9492cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "1b7aa48b0b914d6892c0f2426e9492cd.jpg", "file_size": 25404, "is_delete": false, "file_type": 1, "original_file_name": "81483~杰画-沈调色-11-OK_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/1b7aa48b0b914d6892c0f2426e9492cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/1b7aa48b0b914d6892c0f2426e9492cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/1b7aa48b0b914d6892c0f2426e9492cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/1b7aa48b0b914d6892c0f2426e9492cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/1b7aa48b0b914d6892c0f2426e9492cd.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P7UtRsv2A2aCchalWzmkO6MZejc=", "createTime": "2025-12-08 22:41:55"}] \N 1 1 \N t
2025-12-08 15:00:02.003072+00 2025-12-08 15:00:02.003077+00 2213 81483 SPMX-20251208787066 \N \N \N 1 \N [{"file_id": "36435aa4-034d-4dc6-9173-910647ab719c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "97d798f7c816474c953ef1871e8ecbf6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "97d798f7c816474c953ef1871e8ecbf6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "97d798f7c816474c953ef1871e8ecbf6.jpg", "file_size": 24853, "is_delete": false, "file_type": 1, "original_file_name": "81483~杰画-沈调色-10-OK_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/97d798f7c816474c953ef1871e8ecbf6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/97d798f7c816474c953ef1871e8ecbf6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/97d798f7c816474c953ef1871e8ecbf6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/97d798f7c816474c953ef1871e8ecbf6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/97d798f7c816474c953ef1871e8ecbf6.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yLIdacEGzHmTHNHvlsclAuCeHuA=", "createTime": "2025-12-08 22:41:55"}] \N 1 1 \N t
2025-12-08 15:00:02.004062+00 2025-12-08 15:00:02.004066+00 2214 81483 SPMX-20251208787065 \N \N \N 1 \N [{"file_id": "4c72d1bd-0d60-4c82-9247-a2dcbbc144c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "e9abba29c4bc4c2e90b26b0f42391279.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "e9abba29c4bc4c2e90b26b0f42391279.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "e9abba29c4bc4c2e90b26b0f42391279.jpg", "file_size": 25721, "is_delete": false, "file_type": 1, "original_file_name": "81483~杰画-沈调色-7-OK_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e9abba29c4bc4c2e90b26b0f42391279.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e9abba29c4bc4c2e90b26b0f42391279.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e9abba29c4bc4c2e90b26b0f42391279.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/e9abba29c4bc4c2e90b26b0f42391279.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/e9abba29c4bc4c2e90b26b0f42391279.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4e4BSugcPeXXy4qNq5rdZa2t42U=", "createTime": "2025-12-08 22:41:52"}] \N 1 1 \N t
2025-12-08 15:00:02.005022+00 2025-12-08 15:00:02.005026+00 2215 ZN961#6-RC23 SPMX-20251208787064 \N \N \N 1 \N [{"file_id": "33713145-84bd-4b08-bfd8-5a468946e643", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "fe8085cff3884ae0a11c7e7f77c9f933.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "fe8085cff3884ae0a11c7e7f77c9f933.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "fe8085cff3884ae0a11c7e7f77c9f933.jpg", "file_size": 13110, "is_delete": false, "file_type": 1, "original_file_name": "ZN961#6号色-RC23~杰画 珍妮 120克本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/fe8085cff3884ae0a11c7e7f77c9f933.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/fe8085cff3884ae0a11c7e7f77c9f933.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/fe8085cff3884ae0a11c7e7f77c9f933.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/fe8085cff3884ae0a11c7e7f77c9f933.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/fe8085cff3884ae0a11c7e7f77c9f933.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7PHTB72Xn5qhhEurAPH6xPN_9rU=", "createTime": "2025-12-08 22:26:28"}] \N 1 1 \N t
2025-12-08 15:00:02.00598+00 2025-12-08 15:00:02.005984+00 2216 ZN961#5-RC23 SPMX-20251208787063 \N \N \N 1 \N [{"file_id": "f9963d2d-53b0-4544-bba5-6f603184f7ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "2b387a213beb4033b7cd4953788f854f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "2b387a213beb4033b7cd4953788f854f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "2b387a213beb4033b7cd4953788f854f.jpg", "file_size": 13934, "is_delete": false, "file_type": 1, "original_file_name": "ZN961#5号色-RC23~杰画 珍妮 120克本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/2b387a213beb4033b7cd4953788f854f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/2b387a213beb4033b7cd4953788f854f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/2b387a213beb4033b7cd4953788f854f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/2b387a213beb4033b7cd4953788f854f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/2b387a213beb4033b7cd4953788f854f.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dx_CDN-3H_AtQgemB8U4I4WZzuQ=", "createTime": "2025-12-08 22:26:15"}] \N 1 1 \N t
2025-12-08 15:00:02.006926+00 2025-12-08 15:00:02.006931+00 2217 ZN961#4-RC23 SPMX-20251208787062 \N \N \N 1 \N [{"file_id": "289da49e-5115-4174-8a1d-b51c9163bc17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "b3fe9a015dba4fcdacca05c400d37e06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "b3fe9a015dba4fcdacca05c400d37e06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "b3fe9a015dba4fcdacca05c400d37e06.jpg", "file_size": 15392, "is_delete": false, "file_type": 1, "original_file_name": "ZN961#4号色-RC23~杰画 珍妮 120克本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b3fe9a015dba4fcdacca05c400d37e06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b3fe9a015dba4fcdacca05c400d37e06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b3fe9a015dba4fcdacca05c400d37e06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/b3fe9a015dba4fcdacca05c400d37e06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/b3fe9a015dba4fcdacca05c400d37e06.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qW9-cSJzm4xZC3TQfNsapviYVVM=", "createTime": "2025-12-08 22:26:07"}] \N 1 1 \N t
2025-12-08 15:00:02.007895+00 2025-12-08 15:00:02.007899+00 2218 ZN961#3-RC23 SPMX-20251208787061 \N \N \N 1 \N [{"file_id": "d65462f8-9589-49b9-8a75-f6becfbc9732", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "6462c715e89c4609b4fbe83f8384c821.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "6462c715e89c4609b4fbe83f8384c821.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "6462c715e89c4609b4fbe83f8384c821.jpg", "file_size": 14585, "is_delete": false, "file_type": 1, "original_file_name": "ZN961#3号色-RC23~杰画 珍妮 120克本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6462c715e89c4609b4fbe83f8384c821.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6462c715e89c4609b4fbe83f8384c821.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6462c715e89c4609b4fbe83f8384c821.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/6462c715e89c4609b4fbe83f8384c821.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/6462c715e89c4609b4fbe83f8384c821.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n_NSrS8KUvEPu-ZfYY9DkAZkzyc=", "createTime": "2025-12-08 22:25:59"}] \N 1 1 \N t
2025-12-08 15:00:02.008863+00 2025-12-08 15:00:02.008868+00 2219 ZN961#2-RC23 SPMX-20251208787060 \N \N \N 1 \N [{"file_id": "d2340091-bcae-4dc3-bf16-4f493e3dfdeb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "58504ff5f8f44d8cba75c97e2c691ef3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "58504ff5f8f44d8cba75c97e2c691ef3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "58504ff5f8f44d8cba75c97e2c691ef3.jpg", "file_size": 13396, "is_delete": false, "file_type": 1, "original_file_name": "ZN961#2号色-RC23~杰画 珍妮 120克本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/58504ff5f8f44d8cba75c97e2c691ef3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/58504ff5f8f44d8cba75c97e2c691ef3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/58504ff5f8f44d8cba75c97e2c691ef3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/58504ff5f8f44d8cba75c97e2c691ef3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/58504ff5f8f44d8cba75c97e2c691ef3.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kbb2uavhfo0YIxqQ1VDXXbP_lAk=", "createTime": "2025-12-08 22:25:46"}] \N 1 1 \N t
2025-12-08 15:00:02.009798+00 2025-12-08 15:00:02.009802+00 2220 ZN961#1-RC23 SPMX-20251208787059 \N \N \N 1 \N [{"file_id": "b7762b69-a0c3-4c5c-9c89-c2221ef90f79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "d0bd674c0bf746adac5c8e41db49e11b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "d0bd674c0bf746adac5c8e41db49e11b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "d0bd674c0bf746adac5c8e41db49e11b.jpg", "file_size": 13097, "is_delete": false, "file_type": 1, "original_file_name": "ZN961#1号色-RC23~杰画 珍妮 120克本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d0bd674c0bf746adac5c8e41db49e11b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d0bd674c0bf746adac5c8e41db49e11b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d0bd674c0bf746adac5c8e41db49e11b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/d0bd674c0bf746adac5c8e41db49e11b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/d0bd674c0bf746adac5c8e41db49e11b.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SI0JR_U4gtOp27fZD1j_2O-426Y=", "createTime": "2025-12-08 22:25:38"}] \N 1 1 \N t
2025-12-08 15:00:02.010758+00 2025-12-08 15:00:02.010763+00 2221 LJX7790#RC23 SPMX-20251208787058 \N \N \N 1 \N [{"file_id": "b90db9c5-e70c-443a-af6d-578e8c6e23ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "6e2d931f86144e73a716f4395a1da12e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "6e2d931f86144e73a716f4395a1da12e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "6e2d931f86144e73a716f4395a1da12e.jpg", "file_size": 13937, "is_delete": false, "file_type": 1, "original_file_name": "LJX7790#彩兰RC23~2号色四面弹-定位宽150-高85cm印完不能低于宽148高84刘灿画-盛峰调色_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6e2d931f86144e73a716f4395a1da12e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6e2d931f86144e73a716f4395a1da12e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6e2d931f86144e73a716f4395a1da12e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/6e2d931f86144e73a716f4395a1da12e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/6e2d931f86144e73a716f4395a1da12e.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eu619oWraf7OsdnrPZWLLCtWY20=", "createTime": "2025-12-08 22:11:05"}] \N 1 1 \N t
2025-12-08 15:00:02.012038+00 2025-12-08 15:00:02.012044+00 2222 LJX7790#绿RC23 SPMX-20251208787057 \N \N \N 1 \N [{"file_id": "39e9abad-3d8e-4105-aa94-8684d732958b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "61a2bf1ef95145b4bca801238aeedcee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "61a2bf1ef95145b4bca801238aeedcee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "61a2bf1ef95145b4bca801238aeedcee.jpg", "file_size": 13616, "is_delete": false, "file_type": 1, "original_file_name": "LJX7790#墨绿RC23~1号色四面弹-定位宽150-高85cm印完不能低于宽148高84刘灿画-盛峰调色_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/61a2bf1ef95145b4bca801238aeedcee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/61a2bf1ef95145b4bca801238aeedcee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/61a2bf1ef95145b4bca801238aeedcee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/61a2bf1ef95145b4bca801238aeedcee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/61a2bf1ef95145b4bca801238aeedcee.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gmrWi_2Kiwog-YRzbsGErfdltUg=", "createTime": "2025-12-08 22:06:55"}] \N 1 1 \N t
2025-12-08 15:00:02.01301+00 2025-12-08 15:00:02.013015+00 2223 LJX7790#RC23 SPMX-20251208787056 \N \N \N 1 \N [{"file_id": "29916d27-3c63-4ad5-8994-f7cc307a665b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "53610eda86f54f93acce52d60fb19d4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "53610eda86f54f93acce52d60fb19d4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "53610eda86f54f93acce52d60fb19d4c.jpg", "file_size": 13238, "is_delete": false, "file_type": 1, "original_file_name": "LJX7790#黑RC23~4号色四面弹-定位宽150-高85cm印完不能低于宽148高84刘灿画-盛峰调色_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/53610eda86f54f93acce52d60fb19d4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/53610eda86f54f93acce52d60fb19d4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/53610eda86f54f93acce52d60fb19d4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/53610eda86f54f93acce52d60fb19d4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/53610eda86f54f93acce52d60fb19d4c.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T9lyCYZWrStFE5fbI2_8ZUC3hw0=", "createTime": "2025-12-08 22:06:54"}] \N 1 1 \N t
2025-12-08 15:00:02.01398+00 2025-12-08 15:00:02.013984+00 2224 LJX7790#RC23 SPMX-20251208787055 \N \N \N 1 \N [{"file_id": "00cce73d-600c-4d9f-a792-0e06ae32c3c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "a6c179e043464e5ab930670b4dd38bb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "a6c179e043464e5ab930670b4dd38bb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "a6c179e043464e5ab930670b4dd38bb1.jpg", "file_size": 13557, "is_delete": false, "file_type": 1, "original_file_name": "LJX7790#枣红RC23~3号色四面弹-定位宽150-高85cm印完不能低于宽148高84刘灿画-盛峰调色_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a6c179e043464e5ab930670b4dd38bb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a6c179e043464e5ab930670b4dd38bb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a6c179e043464e5ab930670b4dd38bb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/a6c179e043464e5ab930670b4dd38bb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/a6c179e043464e5ab930670b4dd38bb1.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D8ottTmbYe3PmPwra_iF8nHXEmo=", "createTime": "2025-12-08 22:06:50"}] \N 1 1 \N t
2025-12-08 15:00:02.014932+00 2025-12-08 15:00:02.014936+00 2225 LJX7790#RC23 SPMX-20251208787054 \N \N \N 1 \N [{"file_id": "aee37380-ab46-4ed2-ae57-b4f1218a2521", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "2a18408492d749ea8571c5c365b5030c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "2a18408492d749ea8571c5c365b5030c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "2a18408492d749ea8571c5c365b5030c.jpg", "file_size": 13866, "is_delete": false, "file_type": 1, "original_file_name": "LJX7790#蓝RC23~2号色四面弹-定位宽150-高85cm印完不能低于宽148高84刘灿画-盛峰调色_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/2a18408492d749ea8571c5c365b5030c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/2a18408492d749ea8571c5c365b5030c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/2a18408492d749ea8571c5c365b5030c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/2a18408492d749ea8571c5c365b5030c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/2a18408492d749ea8571c5c365b5030c.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QIP24Jd6BrHQIRS57Wzsz9izz8g=", "createTime": "2025-12-08 22:06:39"}] \N 1 1 \N t
2025-12-08 15:00:02.015896+00 2025-12-08 15:00:02.015901+00 2226 7790#RC23 SPMX-20251208787053 \N \N \N 1 \N [{"file_id": "1a064ce7-e34a-4cd5-9541-f1539d853e44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "4d304563de5c402499358a4c644d160b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "4d304563de5c402499358a4c644d160b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "4d304563de5c402499358a4c644d160b.jpg", "file_size": 13205, "is_delete": false, "file_type": 1, "original_file_name": "7790#RC23~1号色四面弹-定位宽150-高85cm印完不能低于宽148高84刘灿画-盛峰调色_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/4d304563de5c402499358a4c644d160b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/4d304563de5c402499358a4c644d160b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/4d304563de5c402499358a4c644d160b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/4d304563de5c402499358a4c644d160b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/4d304563de5c402499358a4c644d160b.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YieQ7dw0OR0rQLV0Nn_s5QjoBG8=", "createTime": "2025-12-08 22:05:40"}] \N 1 1 \N t
2025-12-08 15:00:02.016851+00 2025-12-08 15:00:02.016856+00 2227 210319#- SPMX-20251208787052 \N \N \N 1 \N [{"file_id": "86c1f515-ea18-477d-933f-458ac35dad67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "6e417bf490694222bbbfb45f41a01570.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "6e417bf490694222bbbfb45f41a01570.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "6e417bf490694222bbbfb45f41a01570.jpg", "file_size": 6764, "is_delete": false, "file_type": 1, "original_file_name": "210319#-红色渐变~城调-定位幅宽165-LWQ15-36A网布_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6e417bf490694222bbbfb45f41a01570.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6e417bf490694222bbbfb45f41a01570.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6e417bf490694222bbbfb45f41a01570.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/6e417bf490694222bbbfb45f41a01570.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/6e417bf490694222bbbfb45f41a01570.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D_NWU3EYbxnj0_iIOZQymfUdTX0=", "createTime": "2025-12-08 21:55:59"}] \N 1 1 \N t
2025-12-08 15:00:02.017805+00 2025-12-08 15:00:02.01781+00 2228 80031#- SPMX-20251208787051 \N \N \N 1 \N [{"file_id": "9e25aa45-445a-4a95-9667-c840721a5177", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "021fca800e874bb3af25ae29a640e293.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "021fca800e874bb3af25ae29a640e293.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "021fca800e874bb3af25ae29a640e293.jpg", "file_size": 6715, "is_delete": false, "file_type": 1, "original_file_name": "80031#-红色渐变~城调-定位幅宽165-LWQ15-36A网布_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/021fca800e874bb3af25ae29a640e293.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/021fca800e874bb3af25ae29a640e293.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/021fca800e874bb3af25ae29a640e293.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/021fca800e874bb3af25ae29a640e293.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/021fca800e874bb3af25ae29a640e293.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m0NsKe5Ie5Y9nXhrG2i7erktkag=", "createTime": "2025-12-08 21:55:12"}] \N 1 1 \N t
2025-12-08 15:00:02.018764+00 2025-12-08 15:00:02.018768+00 2229 YF6106# SPMX-20251208787050 \N \N \N 1 \N [{"file_id": "806df4bf-40cc-43ce-9e78-fa8f8b87bb93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "dadf5a78bc854b48a5048d42d219fdfe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "dadf5a78bc854b48a5048d42d219fdfe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "dadf5a78bc854b48a5048d42d219fdfe.jpg", "file_size": 26830, "is_delete": false, "file_type": 1, "original_file_name": "YF6106#枣红~120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dadf5a78bc854b48a5048d42d219fdfe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dadf5a78bc854b48a5048d42d219fdfe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dadf5a78bc854b48a5048d42d219fdfe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/dadf5a78bc854b48a5048d42d219fdfe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/dadf5a78bc854b48a5048d42d219fdfe.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K7Eh3mAECNjIbDz-iu5VTmXayW4=", "createTime": "2025-12-08 21:52:15"}] \N 1 1 \N t
2025-12-08 15:00:02.01971+00 2025-12-08 15:00:02.019714+00 2230 YF6106# SPMX-20251208787049 \N \N \N 1 \N [{"file_id": "793efb70-b2b2-4292-850a-bff30ca682af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "9e7a1b757a8d43158be8bebb3d48b8f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "9e7a1b757a8d43158be8bebb3d48b8f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "9e7a1b757a8d43158be8bebb3d48b8f6.jpg", "file_size": 24121, "is_delete": false, "file_type": 1, "original_file_name": "YF6106#天蓝~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9e7a1b757a8d43158be8bebb3d48b8f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9e7a1b757a8d43158be8bebb3d48b8f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9e7a1b757a8d43158be8bebb3d48b8f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/9e7a1b757a8d43158be8bebb3d48b8f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/9e7a1b757a8d43158be8bebb3d48b8f6.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x54o8s1bxGXINQpKtigGnmUAxo0=", "createTime": "2025-12-08 21:52:14"}] \N 1 1 \N t
2025-12-08 15:00:02.020672+00 2025-12-08 15:00:02.020677+00 2231 YF6106# SPMX-20251208787048 \N \N \N 1 \N [{"file_id": "391c2575-0986-44eb-891d-d8dca372cb84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "1f90c5d4b8a64a6ca804142ee380ed60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "1f90c5d4b8a64a6ca804142ee380ed60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "1f90c5d4b8a64a6ca804142ee380ed60.jpg", "file_size": 22951, "is_delete": false, "file_type": 1, "original_file_name": "YF6106#深粉~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/1f90c5d4b8a64a6ca804142ee380ed60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/1f90c5d4b8a64a6ca804142ee380ed60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/1f90c5d4b8a64a6ca804142ee380ed60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/1f90c5d4b8a64a6ca804142ee380ed60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/1f90c5d4b8a64a6ca804142ee380ed60.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nqBbws56DQ3nLYmqEWxdtytivtk=", "createTime": "2025-12-08 21:52:10"}] \N 1 1 \N t
2025-12-08 15:00:02.02163+00 2025-12-08 15:00:02.021635+00 2232 YF6106# SPMX-20251208787047 \N \N \N 1 \N [{"file_id": "bc99dfdb-3433-4716-863b-6fbdeaaf551b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "e1e71c3ef6414f16b586272d333b3388.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "e1e71c3ef6414f16b586272d333b3388.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "e1e71c3ef6414f16b586272d333b3388.jpg", "file_size": 21273, "is_delete": false, "file_type": 1, "original_file_name": "YF6106#浅紫~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e1e71c3ef6414f16b586272d333b3388.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e1e71c3ef6414f16b586272d333b3388.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e1e71c3ef6414f16b586272d333b3388.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/e1e71c3ef6414f16b586272d333b3388.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/e1e71c3ef6414f16b586272d333b3388.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1fQ2AL6psx9IlHnYtQQPcVWxqP8=", "createTime": "2025-12-08 21:52:04"}] \N 1 1 \N t
2025-12-08 15:00:02.02257+00 2025-12-08 15:00:02.022574+00 2233 YF6106# SPMX-20251208787046 \N \N \N 1 \N [{"file_id": "f8664fc5-ae3d-4d8d-985d-b6b787791b87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "f57abcf846044812b5677aeede1c2304.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "f57abcf846044812b5677aeede1c2304.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "f57abcf846044812b5677aeede1c2304.jpg", "file_size": 23857, "is_delete": false, "file_type": 1, "original_file_name": "YF6106#姜黄~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f57abcf846044812b5677aeede1c2304.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f57abcf846044812b5677aeede1c2304.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f57abcf846044812b5677aeede1c2304.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/f57abcf846044812b5677aeede1c2304.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/f57abcf846044812b5677aeede1c2304.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yXy3sKOpBTE8QMMUBiuTj2e-FpM=", "createTime": "2025-12-08 21:52:01"}] \N 1 1 \N t
2025-12-08 15:00:02.023516+00 2025-12-08 15:00:02.02352+00 2234 YF6106#绿 SPMX-20251208787045 \N \N \N 1 \N [{"file_id": "2f9dd950-6310-4315-b984-18e1e34c1ae4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "7861cd7b1aea4b6b916ec1f18a8f09e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "7861cd7b1aea4b6b916ec1f18a8f09e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "7861cd7b1aea4b6b916ec1f18a8f09e3.jpg", "file_size": 26942, "is_delete": false, "file_type": 1, "original_file_name": "YF6106#湖绿~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/7861cd7b1aea4b6b916ec1f18a8f09e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/7861cd7b1aea4b6b916ec1f18a8f09e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/7861cd7b1aea4b6b916ec1f18a8f09e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/7861cd7b1aea4b6b916ec1f18a8f09e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/7861cd7b1aea4b6b916ec1f18a8f09e3.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CUIrrH14oeJmhq107GAl9nIMtWo=", "createTime": "2025-12-08 21:51:56"}] \N 1 1 \N t
2025-12-08 15:00:02.024482+00 2025-12-08 15:00:02.024486+00 2235 7723#RC23 SPMX-20251208787044 \N \N \N 1 \N [{"file_id": "771d4162-939c-4a43-9001-cdced65f9e3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "5c9925322dd449d3af14da1bb5be1ab7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "5c9925322dd449d3af14da1bb5be1ab7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "5c9925322dd449d3af14da1bb5be1ab7.jpg", "file_size": 13155, "is_delete": false, "file_type": 1, "original_file_name": "7723#RC23~3号色四面弹-定位宽150-高85cm印完不能低于宽148高84刘灿画-盛峰调色_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/5c9925322dd449d3af14da1bb5be1ab7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/5c9925322dd449d3af14da1bb5be1ab7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/5c9925322dd449d3af14da1bb5be1ab7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/5c9925322dd449d3af14da1bb5be1ab7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/5c9925322dd449d3af14da1bb5be1ab7.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ia7SV0t45wPM029PECcCqoQ9hnU=", "createTime": "2025-12-08 21:49:31"}] \N 1 1 \N t
2025-12-08 15:00:02.025433+00 2025-12-08 15:00:02.025438+00 2236 7723#RC23 SPMX-20251208787043 \N \N \N 1 \N [{"file_id": "bf3cbbee-50f0-4ea1-84ec-2e9b607d0f26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "e4fa050aed6d4a59bbfcb3e293991840.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "e4fa050aed6d4a59bbfcb3e293991840.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "e4fa050aed6d4a59bbfcb3e293991840.jpg", "file_size": 12941, "is_delete": false, "file_type": 1, "original_file_name": "7723#RC23~4号色四面弹-定位宽150-高85cm印完不能低于宽148高84刘灿画-盛峰调色_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e4fa050aed6d4a59bbfcb3e293991840.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e4fa050aed6d4a59bbfcb3e293991840.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e4fa050aed6d4a59bbfcb3e293991840.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/e4fa050aed6d4a59bbfcb3e293991840.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/e4fa050aed6d4a59bbfcb3e293991840.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cJcZ4hTanQzuaQBX_1pxiSNZgbY=", "createTime": "2025-12-08 21:49:30"}] \N 1 1 \N t
2025-12-08 15:00:02.026377+00 2025-12-08 15:00:02.026381+00 2237 7723#RC23 SPMX-20251208787041 \N \N \N 1 \N [{"file_id": "eb86a489-124f-48e3-8d01-c5f3af0bd6a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "82855fe5997b441686d7beaf7395e3b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "82855fe5997b441686d7beaf7395e3b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "82855fe5997b441686d7beaf7395e3b2.jpg", "file_size": 13565, "is_delete": false, "file_type": 1, "original_file_name": "7723#RC23~2号色四面弹-定位宽150-高85cm印完不能低于宽148高84刘灿画-盛峰调色_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/82855fe5997b441686d7beaf7395e3b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/82855fe5997b441686d7beaf7395e3b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/82855fe5997b441686d7beaf7395e3b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/82855fe5997b441686d7beaf7395e3b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/82855fe5997b441686d7beaf7395e3b2.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wpupwu7GpAnyULBCfoZbD7XodPg=", "createTime": "2025-12-08 21:49:25"}] \N 1 1 \N t
2025-12-08 15:00:02.027333+00 2025-12-08 15:00:02.027338+00 2238 7723#RC23 SPMX-20251208787042 \N \N \N 1 \N [{"file_id": "9f90625f-4273-48e2-8079-8afae0c92d4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "3715a0d286f84a318ddd35ec5e9241e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "3715a0d286f84a318ddd35ec5e9241e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "3715a0d286f84a318ddd35ec5e9241e9.jpg", "file_size": 13203, "is_delete": false, "file_type": 1, "original_file_name": "7723#RC23~1号色四面弹-定位宽150-高85cm印完不能低于宽148高84刘灿画-盛峰调色_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3715a0d286f84a318ddd35ec5e9241e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3715a0d286f84a318ddd35ec5e9241e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3715a0d286f84a318ddd35ec5e9241e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/3715a0d286f84a318ddd35ec5e9241e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/3715a0d286f84a318ddd35ec5e9241e9.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a7B9xStfHD8rQVlldU2zGw_KjK0=", "createTime": "2025-12-08 21:49:25"}] \N 1 1 \N t
2025-12-08 15:00:02.028289+00 2025-12-08 15:00:02.028293+00 2239 1208#Y09887#-M码-25- SPMX-20251208787040 2.50 \N \N 1 \N [{"file_id": "e95ef14f-2628-4895-a4bf-9df05d89276c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "73098d7d823747be8bb2ac15097e37a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "73098d7d823747be8bb2ac15097e37a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "73098d7d823747be8bb2ac15097e37a1.jpg", "file_size": 22622, "is_delete": false, "file_type": 1, "original_file_name": "1208#Y09887#-M码-25-粉色~RC23~大白鸟眼布-幅宽180-180cmX250cm-印完不能低于177cmX245cm-1段3件-锦文套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/73098d7d823747be8bb2ac15097e37a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/73098d7d823747be8bb2ac15097e37a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/73098d7d823747be8bb2ac15097e37a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/73098d7d823747be8bb2ac15097e37a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/73098d7d823747be8bb2ac15097e37a1.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iKv5-2duGa5HXTWgh8AuioINock=", "createTime": "2025-12-08 21:42:57"}] \N 1 1 \N t
2025-12-08 15:00:02.029272+00 2025-12-08 15:00:02.029277+00 2240 1208#Y09887#M SPMX-20251208787039 2.50 \N \N 1 \N [{"file_id": "f59cad7b-ff1f-4aed-8a67-bc2b6c2e3df5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "266158e823354a86a309432c0e797f28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "266158e823354a86a309432c0e797f28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "266158e823354a86a309432c0e797f28.jpg", "file_size": 21928, "is_delete": false, "file_type": 1, "original_file_name": "1208#Y09887#粉M~RC23~大白鸟眼布-幅宽180-180cmX250cm-印完不能低于177cmX245cm-1段3件-锦文套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/266158e823354a86a309432c0e797f28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/266158e823354a86a309432c0e797f28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/266158e823354a86a309432c0e797f28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/266158e823354a86a309432c0e797f28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/266158e823354a86a309432c0e797f28.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0rXtSRc6owN_SUKL43AHau1SWBo=", "createTime": "2025-12-08 21:41:58"}] \N 1 1 \N t
2025-12-08 15:00:02.030231+00 2025-12-08 15:00:02.030235+00 2241 738#-95-RC23 SPMX-20251208787038 2.36 \N \N 1 \N [{"file_id": "5cbf3fc0-43c0-439e-92b5-7297ac9d4a5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "56c4f8f21ecd4ffe868e7a913821d88a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "56c4f8f21ecd4ffe868e7a913821d88a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "56c4f8f21ecd4ffe868e7a913821d88a.jpg", "file_size": 26194, "is_delete": false, "file_type": 1, "original_file_name": "738#-95码童装-RC23~色丁-150cmX236cm印完不低于147cmX232cm-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/56c4f8f21ecd4ffe868e7a913821d88a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/56c4f8f21ecd4ffe868e7a913821d88a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/56c4f8f21ecd4ffe868e7a913821d88a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/56c4f8f21ecd4ffe868e7a913821d88a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/56c4f8f21ecd4ffe868e7a913821d88a.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FNujxp3wiFZfjqeVKRMA-E3fptQ=", "createTime": "2025-12-08 21:41:51"}] \N 1 1 \N t
2025-12-08 15:00:02.031181+00 2025-12-08 15:00:02.031185+00 2242 738#-90-RC23 SPMX-20251208787037 2.27 \N \N 1 \N [{"file_id": "c7372eeb-db60-4d23-9221-995f06b4f8da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "c2526721eb034d54b78b693ef65d02d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "c2526721eb034d54b78b693ef65d02d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "c2526721eb034d54b78b693ef65d02d1.jpg", "file_size": 26305, "is_delete": false, "file_type": 1, "original_file_name": "738#-90码童装-RC23~色丁-150cmX227cm印完不低于147cmX223cm-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c2526721eb034d54b78b693ef65d02d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c2526721eb034d54b78b693ef65d02d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c2526721eb034d54b78b693ef65d02d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/c2526721eb034d54b78b693ef65d02d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/c2526721eb034d54b78b693ef65d02d1.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iRJ8NiehqRtRIfjgKoz-d8BCd_s=", "createTime": "2025-12-08 21:41:23"}] \N 1 1 \N t
2025-12-08 15:00:02.032158+00 2025-12-08 15:00:02.032162+00 2243 738#-110-RC23 SPMX-20251208787036 1.44 \N \N 1 \N [{"file_id": "09c0f7f3-ad83-4b1a-a124-d552d718e234", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "9ce1145f0c7c43ac847381b2598fc408.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "9ce1145f0c7c43ac847381b2598fc408.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "9ce1145f0c7c43ac847381b2598fc408.jpg", "file_size": 10391, "is_delete": false, "file_type": 1, "original_file_name": "738#-110码童装-RC23~色丁-150cmX144cm印完不低于147cmX141cm-1段1件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9ce1145f0c7c43ac847381b2598fc408.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9ce1145f0c7c43ac847381b2598fc408.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9ce1145f0c7c43ac847381b2598fc408.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/9ce1145f0c7c43ac847381b2598fc408.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/9ce1145f0c7c43ac847381b2598fc408.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gmJr8pQP9YJMRL_XS9gXFSN_Nrk=", "createTime": "2025-12-08 21:40:59"}] \N 1 1 \N t
2025-12-08 15:00:02.033099+00 2025-12-08 15:00:02.033104+00 2244 738#-115-RC23 SPMX-20251208787035 1.53 \N \N 1 \N [{"file_id": "c4ab89a5-e29f-4288-8ff4-641cf816b688", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "c88793d902c14d5cab99fd6a44817814.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "c88793d902c14d5cab99fd6a44817814.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "c88793d902c14d5cab99fd6a44817814.jpg", "file_size": 32406, "is_delete": false, "file_type": 1, "original_file_name": "738#-115码童装-RC23~色丁-150cmX153cm印完不低于147cmX150cm-1段1件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c88793d902c14d5cab99fd6a44817814.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c88793d902c14d5cab99fd6a44817814.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c88793d902c14d5cab99fd6a44817814.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/c88793d902c14d5cab99fd6a44817814.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/c88793d902c14d5cab99fd6a44817814.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oqyNsE-xCW3M9kwDVpDd4u2uHyw=", "createTime": "2025-12-08 21:40:32"}] \N 1 1 \N t
2025-12-08 15:00:02.034062+00 2025-12-08 15:00:02.034066+00 2245 738#-105-RC23 SPMX-20251208787034 1.35 \N \N 1 \N [{"file_id": "328ab82f-bac3-47d3-a3ea-533781a6f551", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "fe1be1c4b2d642648121b2f69f292521.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "fe1be1c4b2d642648121b2f69f292521.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "fe1be1c4b2d642648121b2f69f292521.jpg", "file_size": 10440, "is_delete": false, "file_type": 1, "original_file_name": "738#-105码童装-RC23~色丁-150cmX135cm印完不低于147cmX133cm-1段1件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/fe1be1c4b2d642648121b2f69f292521.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/fe1be1c4b2d642648121b2f69f292521.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/fe1be1c4b2d642648121b2f69f292521.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/fe1be1c4b2d642648121b2f69f292521.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/fe1be1c4b2d642648121b2f69f292521.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MgWIzXsHspIUx0toLhh8t2roT2A=", "createTime": "2025-12-08 21:40:31"}] \N 1 1 \N t
2025-12-08 15:00:02.035018+00 2025-12-08 15:00:02.035023+00 2246 738#-100-RC23 SPMX-20251208787033 1.26 \N \N 1 \N [{"file_id": "2665a2f4-5eb1-4bb6-b4b8-f678fe15cc78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "ad8e79e336114efc8993f6a35f8f8b21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "ad8e79e336114efc8993f6a35f8f8b21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "ad8e79e336114efc8993f6a35f8f8b21.jpg", "file_size": 10917, "is_delete": false, "file_type": 1, "original_file_name": "738#-100码童装-RC23~色丁-150cmX126cm印完不低于147cmX124cm-1段1件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ad8e79e336114efc8993f6a35f8f8b21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ad8e79e336114efc8993f6a35f8f8b21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ad8e79e336114efc8993f6a35f8f8b21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/ad8e79e336114efc8993f6a35f8f8b21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/ad8e79e336114efc8993f6a35f8f8b21.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G3nLBXUt893DBrphrnFIvedDWw8=", "createTime": "2025-12-08 21:40:20"}] \N 1 1 \N t
2025-12-08 15:00:02.035998+00 2025-12-08 15:00:02.036002+00 2247 79819#rc23 SPMX-20251208787032 \N \N \N 1 \N [{"file_id": "b22c135e-cf89-417d-94a2-647b1f9d259c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "63bf30d8bc3345a88cd54710e7f2d629.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "63bf30d8bc3345a88cd54710e7f2d629.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "63bf30d8bc3345a88cd54710e7f2d629.jpg", "file_size": 33910, "is_delete": false, "file_type": 1, "original_file_name": "79819#rc23~妍魅服饰-120g四面弹-幅宽151_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/63bf30d8bc3345a88cd54710e7f2d629.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/63bf30d8bc3345a88cd54710e7f2d629.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/63bf30d8bc3345a88cd54710e7f2d629.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/63bf30d8bc3345a88cd54710e7f2d629.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/63bf30d8bc3345a88cd54710e7f2d629.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tHqoLvR9lP71ecxmJ1cp1CGdLCU=", "createTime": "2025-12-08 21:34:55"}] \N 1 1 \N t
2025-12-08 15:00:02.036965+00 2025-12-08 15:00:02.03697+00 2248 YF6102#绿--120-151-RC23- SPMX-20251208787031 \N \N \N 1 \N [{"file_id": "3041572e-c670-4ed1-8af7-b187e3dc61b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "e08c6d32deef420ca76004e9bc3ddf33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "e08c6d32deef420ca76004e9bc3ddf33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "e08c6d32deef420ca76004e9bc3ddf33.jpg", "file_size": 22755, "is_delete": false, "file_type": 1, "original_file_name": "YF6102#蓝绿-杰画-120克大白四面弹-幅宽151-RC23-星调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e08c6d32deef420ca76004e9bc3ddf33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e08c6d32deef420ca76004e9bc3ddf33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e08c6d32deef420ca76004e9bc3ddf33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/e08c6d32deef420ca76004e9bc3ddf33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/e08c6d32deef420ca76004e9bc3ddf33.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nv_BNlHD0e0dg32RvlG0AiLBWJ0=", "createTime": "2025-12-08 21:33:31"}] \N 1 1 \N t
2025-12-08 15:00:02.038285+00 2025-12-08 15:00:02.038289+00 2249 YF6102#绿--120-151-RC23- SPMX-20251208787029 \N \N \N 1 \N [{"file_id": "66f0eff1-5532-4053-b02f-f7cbf90c6c28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "c2ed7582978b4a67b009a4b1e559f365.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "c2ed7582978b4a67b009a4b1e559f365.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "c2ed7582978b4a67b009a4b1e559f365.jpg", "file_size": 22431, "is_delete": false, "file_type": 1, "original_file_name": "YF6102#绿色-杰画-120克大白四面弹-幅宽151-RC23-星调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c2ed7582978b4a67b009a4b1e559f365.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c2ed7582978b4a67b009a4b1e559f365.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c2ed7582978b4a67b009a4b1e559f365.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/c2ed7582978b4a67b009a4b1e559f365.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/c2ed7582978b4a67b009a4b1e559f365.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yqQoUbmkC30drWEawUlhQ2bOoeQ=", "createTime": "2025-12-08 21:32:45"}] \N 1 1 \N t
2025-12-08 15:00:02.039249+00 2025-12-08 15:00:02.039253+00 2250 251206-1#RC23 SPMX-20251208787030 \N \N \N 1 \N [{"file_id": "d40ee880-6783-4a7d-9959-8cc1710f0103", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "bc4d442d29994a06b8855659a8216d79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "bc4d442d29994a06b8855659a8216d79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "bc4d442d29994a06b8855659a8216d79.jpg", "file_size": 6981, "is_delete": false, "file_type": 1, "original_file_name": "251206-1#RC23~ 嘉嘉纺织 欧根纱4080 低温 布150 花调 RC23_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/bc4d442d29994a06b8855659a8216d79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/bc4d442d29994a06b8855659a8216d79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/bc4d442d29994a06b8855659a8216d79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/bc4d442d29994a06b8855659a8216d79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/bc4d442d29994a06b8855659a8216d79.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eZEg1LJQ8Fu2UoR6mMMOOVavKlE=", "createTime": "2025-12-08 21:32:45"}] \N 1 1 \N t
2025-12-08 15:00:02.040223+00 2025-12-08 15:00:02.040227+00 2251 251206-2#RC23 SPMX-20251208787028 \N \N \N 1 \N [{"file_id": "9127644d-cdb6-45e5-9eb9-4bda80b40914", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "75fef7855b7741f691f40f325c674b96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "75fef7855b7741f691f40f325c674b96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "75fef7855b7741f691f40f325c674b96.jpg", "file_size": 6535, "is_delete": false, "file_type": 1, "original_file_name": "251206-2#RC23~ 嘉嘉纺织 40D涤氨 布150 花调 RC23 65CM_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/75fef7855b7741f691f40f325c674b96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/75fef7855b7741f691f40f325c674b96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/75fef7855b7741f691f40f325c674b96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/75fef7855b7741f691f40f325c674b96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/75fef7855b7741f691f40f325c674b96.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fJfyh9-8QF3l0Xfk1GrHufZYEaQ=", "createTime": "2025-12-08 21:32:40"}] \N 1 1 \N t
2025-12-08 15:00:02.041175+00 2025-12-08 15:00:02.041179+00 2252 251206-3#RC23 SPMX-20251208787027 \N \N \N 1 \N [{"file_id": "26441727-f982-4675-ae5f-bc5cbaeaf5e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "ab3d2a8d107347df9008160b6bca1cf5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "ab3d2a8d107347df9008160b6bca1cf5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "ab3d2a8d107347df9008160b6bca1cf5.jpg", "file_size": 6649, "is_delete": false, "file_type": 1, "original_file_name": "251206-3#RC23~ 嘉嘉纺织 40D涤氨 布150 花调 RC23 高40CM_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ab3d2a8d107347df9008160b6bca1cf5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ab3d2a8d107347df9008160b6bca1cf5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ab3d2a8d107347df9008160b6bca1cf5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/ab3d2a8d107347df9008160b6bca1cf5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/ab3d2a8d107347df9008160b6bca1cf5.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L-Dz4MCBZwRJf1bbS0bSuyfhb-s=", "createTime": "2025-12-08 21:32:31"}] \N 1 1 \N t
2025-12-08 15:00:02.042128+00 2025-12-08 15:00:02.042132+00 2253 YF6102#--120-151-RC23- SPMX-20251208787026 \N \N \N 1 \N [{"file_id": "8b9b945d-4b4a-4980-a319-ed8d1e38ea1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "b6208984302a44f18a2537ee5fbe2bd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "b6208984302a44f18a2537ee5fbe2bd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "b6208984302a44f18a2537ee5fbe2bd9.jpg", "file_size": 22482, "is_delete": false, "file_type": 1, "original_file_name": "YF6102#枣红-杰画-120克大白四面弹-幅宽151-RC23-星调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b6208984302a44f18a2537ee5fbe2bd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b6208984302a44f18a2537ee5fbe2bd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b6208984302a44f18a2537ee5fbe2bd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/b6208984302a44f18a2537ee5fbe2bd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/b6208984302a44f18a2537ee5fbe2bd9.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-NcfCFjtNWxCF5hMdko6OfyjFH4=", "createTime": "2025-12-08 21:31:52"}] \N 1 1 \N t
2025-12-08 15:00:02.043084+00 2025-12-08 15:00:02.043088+00 2254 YF6106-1# SPMX-20251208787025 \N \N \N 1 \N [{"file_id": "cdcdf1ca-58ff-4013-a182-30c0c66cfba7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "00a4388a535045f598335c92da9e67aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "00a4388a535045f598335c92da9e67aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "00a4388a535045f598335c92da9e67aa.jpg", "file_size": 23143, "is_delete": false, "file_type": 1, "original_file_name": "YF6106-1#深粉~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/00a4388a535045f598335c92da9e67aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/00a4388a535045f598335c92da9e67aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/00a4388a535045f598335c92da9e67aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/00a4388a535045f598335c92da9e67aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/00a4388a535045f598335c92da9e67aa.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RW0sAPB-zOi3fNJyUT37cz2Pqeg=", "createTime": "2025-12-08 21:31:30"}] \N 1 1 \N t
2025-12-08 15:00:02.044136+00 2025-12-08 15:00:02.044141+00 2255 YF6106-1#绿 SPMX-20251208787024 \N \N \N 1 \N [{"file_id": "ad021b0b-a3ee-4057-bb62-2b2511cbd57e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "31b3967469564679acfcc6c971639217.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "31b3967469564679acfcc6c971639217.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "31b3967469564679acfcc6c971639217.jpg", "file_size": 27139, "is_delete": false, "file_type": 1, "original_file_name": "YF6106-1#湖绿~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/31b3967469564679acfcc6c971639217.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/31b3967469564679acfcc6c971639217.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/31b3967469564679acfcc6c971639217.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/31b3967469564679acfcc6c971639217.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/31b3967469564679acfcc6c971639217.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vSIUKVCe6d0jUie_FCqQ_rZxKfs=", "createTime": "2025-12-08 21:31:28"}] \N 1 1 \N t
2025-12-08 15:00:02.045135+00 2025-12-08 15:00:02.045139+00 2256 YF6102#--120-151-RC23- SPMX-20251208787023 \N \N \N 1 \N [{"file_id": "e3641290-f818-4708-93dd-f97d9bc5b035", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "dc1e3611901645c0950d09f9772f5e51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "dc1e3611901645c0950d09f9772f5e51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "dc1e3611901645c0950d09f9772f5e51.jpg", "file_size": 22781, "is_delete": false, "file_type": 1, "original_file_name": "YF6102#彩兰-杰画-120克大白四面弹-幅宽151-RC23-星调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dc1e3611901645c0950d09f9772f5e51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dc1e3611901645c0950d09f9772f5e51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dc1e3611901645c0950d09f9772f5e51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/dc1e3611901645c0950d09f9772f5e51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/dc1e3611901645c0950d09f9772f5e51.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3bGKDmTf4DHPaO0NqsaJyGM1JyE=", "createTime": "2025-12-08 21:31:27"}] \N 1 1 \N t
2025-12-08 15:00:02.046088+00 2025-12-08 15:00:02.046092+00 2257 YF6106-1# SPMX-20251208787021 \N \N \N 1 \N [{"file_id": "8315b4ff-16fc-4b47-9ae0-1549f7bb6136", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "88a130905a3445a0b0f02fde26fe2bbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "88a130905a3445a0b0f02fde26fe2bbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "88a130905a3445a0b0f02fde26fe2bbc.jpg", "file_size": 27061, "is_delete": false, "file_type": 1, "original_file_name": "YF6106-1#枣红~120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/88a130905a3445a0b0f02fde26fe2bbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/88a130905a3445a0b0f02fde26fe2bbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/88a130905a3445a0b0f02fde26fe2bbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/88a130905a3445a0b0f02fde26fe2bbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/88a130905a3445a0b0f02fde26fe2bbc.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i7xo67zLERL8lzF20mkRE7C_oUQ=", "createTime": "2025-12-08 21:31:26"}] \N 1 1 \N t
2025-12-08 15:00:02.047064+00 2025-12-08 15:00:02.047068+00 2258 YF6106-1# SPMX-20251208787022 \N \N \N 1 \N [{"file_id": "fc540e91-b06f-4185-93bb-c53662514189", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "446188f94e114cec8d86ea2b36fa739c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "446188f94e114cec8d86ea2b36fa739c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "446188f94e114cec8d86ea2b36fa739c.jpg", "file_size": 21467, "is_delete": false, "file_type": 1, "original_file_name": "YF6106-1#浅紫~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/446188f94e114cec8d86ea2b36fa739c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/446188f94e114cec8d86ea2b36fa739c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/446188f94e114cec8d86ea2b36fa739c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/446188f94e114cec8d86ea2b36fa739c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/446188f94e114cec8d86ea2b36fa739c.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5pE5jx7i4_CJGasZ4M9KVQUla10=", "createTime": "2025-12-08 21:31:26"}] \N 1 1 \N t
2025-12-08 15:00:02.048035+00 2025-12-08 15:00:02.04804+00 2259 YF6106-1# SPMX-20251208787020 \N \N \N 1 \N [{"file_id": "818b03ac-99f0-4c1c-a414-2f2717d6d1a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "eee5d58da3ac40c59143841970c24224.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "eee5d58da3ac40c59143841970c24224.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "eee5d58da3ac40c59143841970c24224.jpg", "file_size": 24316, "is_delete": false, "file_type": 1, "original_file_name": "YF6106-1#天蓝~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/eee5d58da3ac40c59143841970c24224.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/eee5d58da3ac40c59143841970c24224.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/eee5d58da3ac40c59143841970c24224.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/eee5d58da3ac40c59143841970c24224.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/eee5d58da3ac40c59143841970c24224.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hb2yhpPkBESi5eieJ1DAPRunSa0=", "createTime": "2025-12-08 21:31:24"}] \N 1 1 \N t
2025-12-08 15:00:02.048994+00 2025-12-08 15:00:02.048998+00 2260 YF6106-1# SPMX-20251208787019 \N \N \N 1 \N [{"file_id": "6b8cc267-7b80-416f-be50-5f78afcdad93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "8675749ae00648e580e48e7b3eba8e0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "8675749ae00648e580e48e7b3eba8e0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "8675749ae00648e580e48e7b3eba8e0e.jpg", "file_size": 24063, "is_delete": false, "file_type": 1, "original_file_name": "YF6106-1#姜黄~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/8675749ae00648e580e48e7b3eba8e0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/8675749ae00648e580e48e7b3eba8e0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/8675749ae00648e580e48e7b3eba8e0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/8675749ae00648e580e48e7b3eba8e0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/8675749ae00648e580e48e7b3eba8e0e.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2J6EgOkaWogl1a1-sJo6gTTjSrw=", "createTime": "2025-12-08 21:31:23"}] \N 1 1 \N t
2025-12-08 15:00:02.049973+00 2025-12-08 15:00:02.049978+00 2261 YF6102-1#绿 SPMX-20251208787018 \N \N \N 1 \N [{"file_id": "9bc71ccd-e87b-46b5-85a0-b0e498f28ce7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "0e65f365fa544b138e3f4e8a190cd1b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "0e65f365fa544b138e3f4e8a190cd1b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "0e65f365fa544b138e3f4e8a190cd1b8.jpg", "file_size": 10556, "is_delete": false, "file_type": 1, "original_file_name": "YF6102-1#湖绿~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/0e65f365fa544b138e3f4e8a190cd1b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/0e65f365fa544b138e3f4e8a190cd1b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/0e65f365fa544b138e3f4e8a190cd1b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/0e65f365fa544b138e3f4e8a190cd1b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/0e65f365fa544b138e3f4e8a190cd1b8.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q_Ia9Oa3F5QPxL05drS_QW7r3g0=", "createTime": "2025-12-08 21:31:03"}] \N 1 1 \N t
2025-12-08 15:00:02.050948+00 2025-12-08 15:00:02.050952+00 2262 YF6102#--120-151-RC23- SPMX-20251208787017 \N \N \N 1 \N [{"file_id": "3c1392ac-73b0-448a-bb64-ad92210396c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "0a3f18264c39464894dae6521c4a239f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "0a3f18264c39464894dae6521c4a239f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "0a3f18264c39464894dae6521c4a239f.jpg", "file_size": 22254, "is_delete": false, "file_type": 1, "original_file_name": "YF6102#土黄-杰画-120克大白四面弹-幅宽151-RC23-星调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/0a3f18264c39464894dae6521c4a239f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/0a3f18264c39464894dae6521c4a239f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/0a3f18264c39464894dae6521c4a239f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/0a3f18264c39464894dae6521c4a239f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/0a3f18264c39464894dae6521c4a239f.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GhNUfUDGJhb-RFKr95-S0W1A6LQ=", "createTime": "2025-12-08 21:31:01"}] \N 1 1 \N t
2025-12-08 15:00:02.051942+00 2025-12-08 15:00:02.051946+00 2263 YF6105#-230-170-RC23- SPMX-20251208787016 \N \N \N 1 \N [{"file_id": "e1a94466-9d50-479b-95df-33d1b6a0d49d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "2790729252774ecb9d78b6dabd5e293a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "2790729252774ecb9d78b6dabd5e293a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "2790729252774ecb9d78b6dabd5e293a.jpg", "file_size": 15580, "is_delete": false, "file_type": 1, "original_file_name": "YF6105#黑黄-230克大白罗马-幅宽170-RC23-星画调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/2790729252774ecb9d78b6dabd5e293a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/2790729252774ecb9d78b6dabd5e293a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/2790729252774ecb9d78b6dabd5e293a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/2790729252774ecb9d78b6dabd5e293a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/2790729252774ecb9d78b6dabd5e293a.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4-2ojjAAzDIHpOQDH0KZ-RYLzqY=", "createTime": "2025-12-08 21:30:52"}] \N 1 1 \N t
2025-12-08 15:00:02.052921+00 2025-12-08 15:00:02.052925+00 2264 YF6102-1# SPMX-20251208787015 \N \N \N 1 \N [{"file_id": "3ab2e9b7-247d-49ea-aa34-e7658d7ef0dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "b447f90464ad4282934ad5eac2f9ffca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "b447f90464ad4282934ad5eac2f9ffca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "b447f90464ad4282934ad5eac2f9ffca.jpg", "file_size": 10600, "is_delete": false, "file_type": 1, "original_file_name": "YF6102-1#深粉~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b447f90464ad4282934ad5eac2f9ffca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b447f90464ad4282934ad5eac2f9ffca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b447f90464ad4282934ad5eac2f9ffca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/b447f90464ad4282934ad5eac2f9ffca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/b447f90464ad4282934ad5eac2f9ffca.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xshxs0_Y-NvyR_jAzWwYVENBSlI=", "createTime": "2025-12-08 21:30:51"}] \N 1 1 \N t
2025-12-08 15:00:02.05388+00 2025-12-08 15:00:02.053884+00 2265 YF6105#绿-230-170-RC23- SPMX-20251208787014 \N \N \N 1 \N [{"file_id": "f698ec4f-f105-42b6-9066-0ed04031c758", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "9f03ebd5082b45e08cd9ffb6d3a280b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "9f03ebd5082b45e08cd9ffb6d3a280b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "9f03ebd5082b45e08cd9ffb6d3a280b4.jpg", "file_size": 11369, "is_delete": false, "file_type": 1, "original_file_name": "YF6105#黑绿-230克大白罗马-幅宽170-RC23-星画调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9f03ebd5082b45e08cd9ffb6d3a280b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9f03ebd5082b45e08cd9ffb6d3a280b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9f03ebd5082b45e08cd9ffb6d3a280b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/9f03ebd5082b45e08cd9ffb6d3a280b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/9f03ebd5082b45e08cd9ffb6d3a280b4.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8NVPRxYH_6_FCXmawrm9705UHBk=", "createTime": "2025-12-08 21:30:51"}] \N 1 1 \N t
2025-12-08 15:00:02.054837+00 2025-12-08 15:00:02.054842+00 2266 YF6102-1# SPMX-20251208787013 \N \N \N 1 \N [{"file_id": "4a732049-101e-4cd4-ab80-ae7970301de6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "f7180a3d74a34a76b76e8d91599c8ba3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "f7180a3d74a34a76b76e8d91599c8ba3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "f7180a3d74a34a76b76e8d91599c8ba3.jpg", "file_size": 10305, "is_delete": false, "file_type": 1, "original_file_name": "YF6102-1#浅紫~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f7180a3d74a34a76b76e8d91599c8ba3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f7180a3d74a34a76b76e8d91599c8ba3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f7180a3d74a34a76b76e8d91599c8ba3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/f7180a3d74a34a76b76e8d91599c8ba3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/f7180a3d74a34a76b76e8d91599c8ba3.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ej2l9TSMAK9tkNzAEOh8QUNeLQ8=", "createTime": "2025-12-08 21:30:49"}] \N 1 1 \N t
2025-12-08 15:00:02.055809+00 2025-12-08 15:00:02.055813+00 2267 YF6105#-230-170-RC23- SPMX-20251208787011 \N \N \N 1 \N [{"file_id": "8c23d93f-3470-4342-9680-395c3bff7ee9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "86d8a54d4b1740ecb3ba9731c83dc9c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "86d8a54d4b1740ecb3ba9731c83dc9c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "86d8a54d4b1740ecb3ba9731c83dc9c6.jpg", "file_size": 14427, "is_delete": false, "file_type": 1, "original_file_name": "YF6105#黑粉-230克大白罗马-幅宽170-RC23-星画调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/86d8a54d4b1740ecb3ba9731c83dc9c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/86d8a54d4b1740ecb3ba9731c83dc9c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/86d8a54d4b1740ecb3ba9731c83dc9c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/86d8a54d4b1740ecb3ba9731c83dc9c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/86d8a54d4b1740ecb3ba9731c83dc9c6.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WTuj1B73jb-L1qjZkp75e7PTjQ0=", "createTime": "2025-12-08 21:30:48"}] \N 1 1 \N t
2025-12-08 15:00:02.056771+00 2025-12-08 15:00:02.056776+00 2268 YF6102-1# SPMX-20251208787012 \N \N \N 1 \N [{"file_id": "ad9cf95b-23f5-41f2-b6af-97e2648b5fef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "de48883bc36f47f4915abcdc551bf85c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "de48883bc36f47f4915abcdc551bf85c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "de48883bc36f47f4915abcdc551bf85c.jpg", "file_size": 10639, "is_delete": false, "file_type": 1, "original_file_name": "YF6102-1#枣红~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/de48883bc36f47f4915abcdc551bf85c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/de48883bc36f47f4915abcdc551bf85c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/de48883bc36f47f4915abcdc551bf85c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/de48883bc36f47f4915abcdc551bf85c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/de48883bc36f47f4915abcdc551bf85c.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O0ADX5D2Hjk5ea1zXn88xSV2Ezg=", "createTime": "2025-12-08 21:30:48"}] \N 1 1 \N t
2025-12-08 15:00:02.05773+00 2025-12-08 15:00:02.057734+00 2269 YF6105#-230-170-RC23- SPMX-20251208787010 \N \N \N 1 \N [{"file_id": "01fe3dfc-1a8f-4c66-aa08-c1b02bb3407c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "e1b13da370e3475db3acd1fffc31b52c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "e1b13da370e3475db3acd1fffc31b52c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "e1b13da370e3475db3acd1fffc31b52c.jpg", "file_size": 11971, "is_delete": false, "file_type": 1, "original_file_name": "YF6105#黑枣红-230克大白罗马-幅宽170-RC23-星画调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e1b13da370e3475db3acd1fffc31b52c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e1b13da370e3475db3acd1fffc31b52c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e1b13da370e3475db3acd1fffc31b52c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/e1b13da370e3475db3acd1fffc31b52c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/e1b13da370e3475db3acd1fffc31b52c.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_YfhEVGY39lDGpIW8HZG5TVqCUE=", "createTime": "2025-12-08 21:30:46"}] \N 1 1 \N t
2025-12-08 15:00:02.058687+00 2025-12-08 15:00:02.058691+00 2270 YF6102-1# SPMX-20251208787009 \N \N \N 1 \N [{"file_id": "f8c1567c-558a-4331-b9d0-536bd9ad61b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "f396ef2dfd224df59d90411c3381ce96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "f396ef2dfd224df59d90411c3381ce96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "f396ef2dfd224df59d90411c3381ce96.jpg", "file_size": 11044, "is_delete": false, "file_type": 1, "original_file_name": "YF6102-1#姜黄~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f396ef2dfd224df59d90411c3381ce96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f396ef2dfd224df59d90411c3381ce96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f396ef2dfd224df59d90411c3381ce96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/f396ef2dfd224df59d90411c3381ce96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/f396ef2dfd224df59d90411c3381ce96.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WAKbVlM7KAotZiyPKrKWw0yHR24=", "createTime": "2025-12-08 21:30:46"}] \N 1 1 \N t
2025-12-08 15:00:02.059646+00 2025-12-08 15:00:02.05965+00 2271 YF6102-1# SPMX-20251208787008 \N \N \N 1 \N [{"file_id": "6fcbc750-3751-4284-a52e-f73e3651c073", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "3021b82fc2614146ad7583fdf48bf138.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "3021b82fc2614146ad7583fdf48bf138.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "3021b82fc2614146ad7583fdf48bf138.jpg", "file_size": 10923, "is_delete": false, "file_type": 1, "original_file_name": "YF6102-1#土黄~RC23-120克大白四面弹-幅宽150-国调-2025-11-22_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3021b82fc2614146ad7583fdf48bf138.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3021b82fc2614146ad7583fdf48bf138.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3021b82fc2614146ad7583fdf48bf138.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/3021b82fc2614146ad7583fdf48bf138.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/3021b82fc2614146ad7583fdf48bf138.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d6tAcy_o8GRtEUJ4g-K45gOD-Rk=", "createTime": "2025-12-08 21:30:44"}] \N 1 1 \N t
2025-12-08 15:00:02.060618+00 2025-12-08 15:00:02.060622+00 2272 YF6105#-230-170-RC23- SPMX-20251208787007 \N \N \N 1 \N [{"file_id": "c0159775-a950-484f-a5e0-16c0da8c3c49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "8d00583ee21445008c52cd18a2cb6f33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "8d00583ee21445008c52cd18a2cb6f33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "8d00583ee21445008c52cd18a2cb6f33.jpg", "file_size": 13309, "is_delete": false, "file_type": 1, "original_file_name": "YF6105#黑咖-230克大白罗马-幅宽170-RC23-星画调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/8d00583ee21445008c52cd18a2cb6f33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/8d00583ee21445008c52cd18a2cb6f33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/8d00583ee21445008c52cd18a2cb6f33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/8d00583ee21445008c52cd18a2cb6f33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/8d00583ee21445008c52cd18a2cb6f33.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xJh4T5xP11GJL5LQlshicJr1XXg=", "createTime": "2025-12-08 21:30:40"}] \N 1 1 \N t
2025-12-08 15:00:02.061579+00 2025-12-08 15:00:02.061584+00 2273 YF6105#-230-170-RC23- SPMX-20251208787006 \N \N \N 1 \N [{"file_id": "74b17273-70b6-43cf-8ce4-ca985e6b1e6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "554947c6729c497ebf1accdcc98f6883.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "554947c6729c497ebf1accdcc98f6883.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "554947c6729c497ebf1accdcc98f6883.jpg", "file_size": 14370, "is_delete": false, "file_type": 1, "original_file_name": "YF6105#宝蓝咖-230克大白罗马-幅宽170-RC23-星画调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/554947c6729c497ebf1accdcc98f6883.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/554947c6729c497ebf1accdcc98f6883.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/554947c6729c497ebf1accdcc98f6883.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/554947c6729c497ebf1accdcc98f6883.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/554947c6729c497ebf1accdcc98f6883.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v_9zUrRUxhKmXiuwZ9FRm-sJy5o=", "createTime": "2025-12-08 21:30:39"}] \N 1 1 \N t
2025-12-08 15:00:02.062544+00 2025-12-08 15:00:02.062548+00 2274 CJ3311-6#-RC23- SPMX-20251208787004 \N \N \N 1 \N [{"file_id": "cca0e9ac-04cd-4d52-b691-c27b06711773", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "9d87649e416246e08afa33916b5b1080.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "9d87649e416246e08afa33916b5b1080.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "9d87649e416246e08afa33916b5b1080.jpg", "file_size": 28240, "is_delete": false, "file_type": 1, "original_file_name": "CJ3311-6#-RC23-紫~陈娟-110克本白四面弹-幅宽1.51米-结画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9d87649e416246e08afa33916b5b1080.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9d87649e416246e08afa33916b5b1080.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9d87649e416246e08afa33916b5b1080.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/9d87649e416246e08afa33916b5b1080.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/9d87649e416246e08afa33916b5b1080.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2A026OOOk4vAbip7vJUDVcrNoR4=", "createTime": "2025-12-08 21:25:09"}] \N 1 1 \N t
2025-12-08 15:00:02.063524+00 2025-12-08 15:00:02.063528+00 2275 CJ3311-6#-RC23-绿 SPMX-20251208787005 \N \N \N 1 \N [{"file_id": "bc7fe4ed-2f4b-455c-9d31-494c84e06c0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "b2ec3e22e2784f09aff0189bac3c3c05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "b2ec3e22e2784f09aff0189bac3c3c05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "b2ec3e22e2784f09aff0189bac3c3c05.jpg", "file_size": 28546, "is_delete": false, "file_type": 1, "original_file_name": "CJ3311-6#-RC23-绿~陈娟-110克本白四面弹-幅宽1.51米-结画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b2ec3e22e2784f09aff0189bac3c3c05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b2ec3e22e2784f09aff0189bac3c3c05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b2ec3e22e2784f09aff0189bac3c3c05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/b2ec3e22e2784f09aff0189bac3c3c05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/b2ec3e22e2784f09aff0189bac3c3c05.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:201LdmXm9GWiMbEfSp_2u-NTiFE=", "createTime": "2025-12-08 21:25:09"}] \N 1 1 \N t
2025-12-08 15:00:02.064487+00 2025-12-08 15:00:02.064491+00 2276 CJ3311-6#-RC23- SPMX-20251208787003 \N \N \N 1 \N [{"file_id": "f16a741a-0fe8-43fe-9075-336c90adcd72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "a9a72488dd6e41af90908ffef85bd290.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "a9a72488dd6e41af90908ffef85bd290.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "a9a72488dd6e41af90908ffef85bd290.jpg", "file_size": 29648, "is_delete": false, "file_type": 1, "original_file_name": "CJ3311-6#-RC23-蓝~陈娟-110克本白四面弹-幅宽1.51米-结画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a9a72488dd6e41af90908ffef85bd290.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a9a72488dd6e41af90908ffef85bd290.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a9a72488dd6e41af90908ffef85bd290.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/a9a72488dd6e41af90908ffef85bd290.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/a9a72488dd6e41af90908ffef85bd290.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fh72l9MH8MVRLMb8NBKtaHdu6Y0=", "createTime": "2025-12-08 21:25:08"}] \N 1 1 \N t
2025-12-08 15:00:02.065456+00 2025-12-08 15:00:02.065461+00 2277 CJ3311-6#-RC23- SPMX-20251208787002 \N \N \N 1 \N [{"file_id": "f7406505-7f5a-4265-950e-d5efbb369a70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "f5ecc98a25924db7b08dc01ce473927b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "f5ecc98a25924db7b08dc01ce473927b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "f5ecc98a25924db7b08dc01ce473927b.jpg", "file_size": 26921, "is_delete": false, "file_type": 1, "original_file_name": "CJ3311-6#-RC23-桔~陈娟-110克本白四面弹-幅宽1.51米-结画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f5ecc98a25924db7b08dc01ce473927b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f5ecc98a25924db7b08dc01ce473927b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f5ecc98a25924db7b08dc01ce473927b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/f5ecc98a25924db7b08dc01ce473927b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/f5ecc98a25924db7b08dc01ce473927b.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mjjHWa9PGbi6ThbN7SiA9ayx4dQ=", "createTime": "2025-12-08 21:25:07"}] \N 1 1 \N t
2025-12-08 15:00:02.066442+00 2025-12-08 15:00:02.066446+00 2278 CJ3311-6#-RC23- SPMX-20251208787001 \N \N \N 1 \N [{"file_id": "ba908f85-817f-4649-9180-2cf78f251259", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "75ffb76741dd4f3288dcdb20243cee61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "75ffb76741dd4f3288dcdb20243cee61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "75ffb76741dd4f3288dcdb20243cee61.jpg", "file_size": 24215, "is_delete": false, "file_type": 1, "original_file_name": "CJ3311-6#-RC23-黄~陈娟-110克本白四面弹-幅宽1.51米-结画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/75ffb76741dd4f3288dcdb20243cee61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/75ffb76741dd4f3288dcdb20243cee61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/75ffb76741dd4f3288dcdb20243cee61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/75ffb76741dd4f3288dcdb20243cee61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/75ffb76741dd4f3288dcdb20243cee61.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gtLmC6xymLj5wCsJMPdI-OMObL8=", "createTime": "2025-12-08 21:25:04"}] \N 1 1 \N t
2025-12-08 15:00:02.067425+00 2025-12-08 15:00:02.06743+00 2279 CJ3311-6#-RC23- SPMX-20251208787000 \N \N \N 1 \N [{"file_id": "004d6d81-f880-40b3-9599-bba1e54920ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "77720d3c133a4cf68122fc16bf3263b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "77720d3c133a4cf68122fc16bf3263b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "77720d3c133a4cf68122fc16bf3263b5.jpg", "file_size": 27670, "is_delete": false, "file_type": 1, "original_file_name": "CJ3311-6#-RC23-红~陈娟-110克本白四面弹-幅宽1.51米-结画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/77720d3c133a4cf68122fc16bf3263b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/77720d3c133a4cf68122fc16bf3263b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/77720d3c133a4cf68122fc16bf3263b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/77720d3c133a4cf68122fc16bf3263b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/77720d3c133a4cf68122fc16bf3263b5.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5TFEOiqewKVBT8sOuQxmuA1JtuM=", "createTime": "2025-12-08 21:25:00"}] \N 1 1 \N t
2025-12-08 15:00:02.068408+00 2025-12-08 15:00:02.068412+00 2280 3311#-RC23- SPMX-20251208786999 \N \N \N 1 \N [{"file_id": "17a9e37e-c2dc-4fb1-8f93-bef379980dda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "06596d0e8f5340cc9f7f3b01fa6733d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "06596d0e8f5340cc9f7f3b01fa6733d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "06596d0e8f5340cc9f7f3b01fa6733d0.jpg", "file_size": 24532, "is_delete": false, "file_type": 1, "original_file_name": "3311#-RC23-黄~陈娟-110克本白四面弹-幅宽1.51米-结画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/06596d0e8f5340cc9f7f3b01fa6733d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/06596d0e8f5340cc9f7f3b01fa6733d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/06596d0e8f5340cc9f7f3b01fa6733d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/06596d0e8f5340cc9f7f3b01fa6733d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/06596d0e8f5340cc9f7f3b01fa6733d0.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ga-QQWaOBtJP6AlqoQGYK-whpk=", "createTime": "2025-12-08 21:24:25"}] \N 1 1 \N t
2025-12-08 15:00:02.069391+00 2025-12-08 15:00:02.069396+00 2281 3311#-RC23- SPMX-20251208786998 \N \N \N 1 \N [{"file_id": "d192b2f3-3d1a-4156-a142-9a18421187dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "c76fa41d958447a1b98313805bdc42a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "c76fa41d958447a1b98313805bdc42a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "c76fa41d958447a1b98313805bdc42a4.jpg", "file_size": 30153, "is_delete": false, "file_type": 1, "original_file_name": "3311#-RC23-蓝~陈娟-110克本白四面弹-幅宽1.51米-结画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c76fa41d958447a1b98313805bdc42a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c76fa41d958447a1b98313805bdc42a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c76fa41d958447a1b98313805bdc42a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/c76fa41d958447a1b98313805bdc42a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/c76fa41d958447a1b98313805bdc42a4.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EaKPXvLuNb2r63Lv57ETSi384YE=", "createTime": "2025-12-08 21:24:21"}] \N 1 1 \N t
2025-12-08 15:00:02.070338+00 2025-12-08 15:00:02.070343+00 2282 3311#-RC23-绿 SPMX-20251208786997 \N \N \N 1 \N [{"file_id": "91af28f9-df36-4c06-a14e-891750eec92d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "e3de8a1095ee436fad64ded517d37d83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "e3de8a1095ee436fad64ded517d37d83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "e3de8a1095ee436fad64ded517d37d83.jpg", "file_size": 29070, "is_delete": false, "file_type": 1, "original_file_name": "3311#-RC23-绿~陈娟-110克本白四面弹-幅宽1.51米-结画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e3de8a1095ee436fad64ded517d37d83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e3de8a1095ee436fad64ded517d37d83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e3de8a1095ee436fad64ded517d37d83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/e3de8a1095ee436fad64ded517d37d83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/e3de8a1095ee436fad64ded517d37d83.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o6z-yYDBR0uFt9DIGzafWj8AMGw=", "createTime": "2025-12-08 21:24:15"}] \N 1 1 \N t
2025-12-08 15:00:02.071315+00 2025-12-08 15:00:02.071319+00 2283 3311#-RC23- SPMX-20251208786996 \N \N \N 1 \N [{"file_id": "2e312140-4a86-400d-a788-ac200762ad02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "2a0c0482de194df086a3047a371e4f3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "2a0c0482de194df086a3047a371e4f3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "2a0c0482de194df086a3047a371e4f3d.jpg", "file_size": 28078, "is_delete": false, "file_type": 1, "original_file_name": "3311#-RC23-红~陈娟-110克本白四面弹-幅宽1.51米-结画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/2a0c0482de194df086a3047a371e4f3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/2a0c0482de194df086a3047a371e4f3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/2a0c0482de194df086a3047a371e4f3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/2a0c0482de194df086a3047a371e4f3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/2a0c0482de194df086a3047a371e4f3d.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IiuC9iQD8aCSCo_I3d6NAtZhoYk=", "createTime": "2025-12-08 21:24:08"}] \N 1 1 \N t
2025-12-08 15:00:02.072273+00 2025-12-08 15:00:02.072277+00 2284 3311#-RC23- SPMX-20251208786995 \N \N \N 1 \N [{"file_id": "01232285-5339-466d-a2b8-2e82b4fb4117", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "35eea961f02b4df8ae462f6b511e336b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "35eea961f02b4df8ae462f6b511e336b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "35eea961f02b4df8ae462f6b511e336b.jpg", "file_size": 28645, "is_delete": false, "file_type": 1, "original_file_name": "3311#-RC23-紫~陈娟-110克本白四面弹-幅宽1.51米-结画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/35eea961f02b4df8ae462f6b511e336b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/35eea961f02b4df8ae462f6b511e336b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/35eea961f02b4df8ae462f6b511e336b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/35eea961f02b4df8ae462f6b511e336b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/35eea961f02b4df8ae462f6b511e336b.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D77oWrfvfXpi3OgJlZymQxIAnHw=", "createTime": "2025-12-08 21:24:02"}] \N 1 1 \N t
2025-12-08 15:00:02.073238+00 2025-12-08 15:00:02.073242+00 2285 3311#-RC23- SPMX-20251208786994 \N \N \N 1 \N [{"file_id": "10f586f8-df12-4783-86ae-9c939718b635", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "f6729d9a36f74caf932965f0541b8126.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "f6729d9a36f74caf932965f0541b8126.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "f6729d9a36f74caf932965f0541b8126.jpg", "file_size": 27338, "is_delete": false, "file_type": 1, "original_file_name": "3311#-RC23-桔~陈娟-110克本白四面弹-幅宽1.51米-结画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f6729d9a36f74caf932965f0541b8126.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f6729d9a36f74caf932965f0541b8126.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f6729d9a36f74caf932965f0541b8126.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/f6729d9a36f74caf932965f0541b8126.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/f6729d9a36f74caf932965f0541b8126.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5i1uypxj41KTE_NcT0v1QHNTxfQ=", "createTime": "2025-12-08 21:23:56"}] \N 1 1 \N t
2025-12-08 15:00:02.074186+00 2025-12-08 15:00:02.07419+00 2286 4379#(H4379#) SPMX-20251208786993 \N \N \N 1 \N [{"file_id": "14ac443e-0c3c-415f-9a8e-68408b265cb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "70a4ca0dfc024e31ae42d424f28000d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "70a4ca0dfc024e31ae42d424f28000d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "70a4ca0dfc024e31ae42d424f28000d8.jpg", "file_size": 17535, "is_delete": false, "file_type": 1, "original_file_name": "4379#(H4379#花型)枣红~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/70a4ca0dfc024e31ae42d424f28000d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/70a4ca0dfc024e31ae42d424f28000d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/70a4ca0dfc024e31ae42d424f28000d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/70a4ca0dfc024e31ae42d424f28000d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/70a4ca0dfc024e31ae42d424f28000d8.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5c84X2drJ4f7h8c-w0-VBg5FKBo=", "createTime": "2025-12-08 21:22:25"}] \N 1 1 \N t
2025-12-08 15:00:02.075168+00 2025-12-08 15:00:02.075173+00 2287 4379#(H4379#) SPMX-20251208786992 \N \N \N 1 \N [{"file_id": "7b0c343b-55ea-4079-a9ff-dae5755797fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "3f5941b620fa4cdaa17854593c7fb7eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "3f5941b620fa4cdaa17854593c7fb7eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "3f5941b620fa4cdaa17854593c7fb7eb.jpg", "file_size": 15654, "is_delete": false, "file_type": 1, "original_file_name": "4379#(H4379#花型)玫红~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3f5941b620fa4cdaa17854593c7fb7eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3f5941b620fa4cdaa17854593c7fb7eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3f5941b620fa4cdaa17854593c7fb7eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/3f5941b620fa4cdaa17854593c7fb7eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/3f5941b620fa4cdaa17854593c7fb7eb.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3RVZ7nqsyE8eM9gDbgbyPftTkmY=", "createTime": "2025-12-08 21:22:21"}] \N 1 1 \N t
2025-12-08 15:00:02.076136+00 2025-12-08 15:00:02.07614+00 2288 4379#(H4379#)绿 SPMX-20251208786991 \N \N \N 1 \N [{"file_id": "776f0c2e-943e-4688-8da2-8db013adef07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "e402b8aeab284e1db6e9a536a0c7adcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "e402b8aeab284e1db6e9a536a0c7adcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "e402b8aeab284e1db6e9a536a0c7adcc.jpg", "file_size": 16292, "is_delete": false, "file_type": 1, "original_file_name": "4379#(H4379#花型)绿色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e402b8aeab284e1db6e9a536a0c7adcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e402b8aeab284e1db6e9a536a0c7adcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e402b8aeab284e1db6e9a536a0c7adcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/e402b8aeab284e1db6e9a536a0c7adcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/e402b8aeab284e1db6e9a536a0c7adcc.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EtBhj0n0oIozyQ2X0t4t5NKl3S4=", "createTime": "2025-12-08 21:22:20"}] \N 1 1 \N t
2025-12-08 15:00:02.077102+00 2025-12-08 15:00:02.077106+00 2289 4379#(H4379#) SPMX-20251208786990 \N \N \N 1 \N [{"file_id": "d004d6e5-8ff7-4a16-b743-94c041e7b625", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "d637493d74e04becb46f491f3127db5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "d637493d74e04becb46f491f3127db5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "d637493d74e04becb46f491f3127db5c.jpg", "file_size": 17366, "is_delete": false, "file_type": 1, "original_file_name": "4379#(H4379#花型)蓝色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d637493d74e04becb46f491f3127db5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d637493d74e04becb46f491f3127db5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d637493d74e04becb46f491f3127db5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/d637493d74e04becb46f491f3127db5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/d637493d74e04becb46f491f3127db5c.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dMv8dUm8gzOOTA-EyuwVmdgCuIg=", "createTime": "2025-12-08 21:22:18"}] \N 1 1 \N t
2025-12-08 15:00:02.078051+00 2025-12-08 15:00:02.078056+00 2290 4379#(H4379#) SPMX-20251208786989 \N \N \N 1 \N [{"file_id": "cf93b8c3-1199-4cd5-a13b-b179708144bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "7c7bf8f7dab0486db4542ae1126fbc92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "7c7bf8f7dab0486db4542ae1126fbc92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "7c7bf8f7dab0486db4542ae1126fbc92.jpg", "file_size": 13547, "is_delete": false, "file_type": 1, "original_file_name": "4379#(H4379#花型)黄色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/7c7bf8f7dab0486db4542ae1126fbc92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/7c7bf8f7dab0486db4542ae1126fbc92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/7c7bf8f7dab0486db4542ae1126fbc92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/7c7bf8f7dab0486db4542ae1126fbc92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/7c7bf8f7dab0486db4542ae1126fbc92.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e4jEN1G5EhiSbjrlnZ0Vwmaw-F0=", "createTime": "2025-12-08 21:22:15"}] \N 1 1 \N t
2025-12-08 15:00:02.079041+00 2025-12-08 15:00:02.079046+00 2291 4379#(H4379#) SPMX-20251208786988 \N \N \N 1 \N [{"file_id": "f0d5664e-1b43-404a-bd08-4f7d2915498b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "567f6643919e4ffbb9f2970ad91e9972.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "567f6643919e4ffbb9f2970ad91e9972.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "567f6643919e4ffbb9f2970ad91e9972.jpg", "file_size": 16596, "is_delete": false, "file_type": 1, "original_file_name": "4379#(H4379#花型)黑色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/567f6643919e4ffbb9f2970ad91e9972.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/567f6643919e4ffbb9f2970ad91e9972.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/567f6643919e4ffbb9f2970ad91e9972.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/567f6643919e4ffbb9f2970ad91e9972.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/567f6643919e4ffbb9f2970ad91e9972.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BiAV1668TgEVK7dj3Fp8zsBAEhk=", "createTime": "2025-12-08 21:22:13"}] \N 1 1 \N t
2025-12-08 15:00:02.079999+00 2025-12-08 15:00:02.080004+00 2292 4379#(H4379#) SPMX-20251208786987 \N \N \N 1 \N [{"file_id": "a1a733ba-6964-444f-97f6-51d25758beea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "dcc055ee8e7a4f90b8342c5a8f8724d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "dcc055ee8e7a4f90b8342c5a8f8724d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "dcc055ee8e7a4f90b8342c5a8f8724d7.jpg", "file_size": 15711, "is_delete": false, "file_type": 1, "original_file_name": "4379#(H4379#花型)橙色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dcc055ee8e7a4f90b8342c5a8f8724d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dcc055ee8e7a4f90b8342c5a8f8724d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dcc055ee8e7a4f90b8342c5a8f8724d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/dcc055ee8e7a4f90b8342c5a8f8724d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/dcc055ee8e7a4f90b8342c5a8f8724d7.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MOr73ezUIBiUpJWlBR6dFfuj0qM=", "createTime": "2025-12-08 21:22:10"}] \N 1 1 \N t
2025-12-08 15:00:02.080972+00 2025-12-08 15:00:02.080977+00 2293 T0686#11RC23-11-25-120-150cm高280宽不少于147高不少于276- SPMX-20251208786986 \N \N \N 1 \N [{"file_id": "ea3f0596-b936-42ca-949c-c9d9d05ea503", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "600420e89a1f4b5daf162509fef6da2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "600420e89a1f4b5daf162509fef6da2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "600420e89a1f4b5daf162509fef6da2f.jpg", "file_size": 23645, "is_delete": false, "file_type": 1, "original_file_name": "T0686#1段1件城画盛峰调RC23-11-25-120克四面弹-定位150cm高280宽不少于147高不少于276-改_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/600420e89a1f4b5daf162509fef6da2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/600420e89a1f4b5daf162509fef6da2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/600420e89a1f4b5daf162509fef6da2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/600420e89a1f4b5daf162509fef6da2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/600420e89a1f4b5daf162509fef6da2f.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fewHDCEd5PQ-qozF-_oinmxgizM=", "createTime": "2025-12-08 21:20:31"}] \N 1 1 \N t
2025-12-08 15:00:02.081934+00 2025-12-08 15:00:02.081938+00 2294 T0686#-RC23-11-25-120-150cm高280宽不少于147高不少于276- SPMX-20251208786985 \N \N \N 1 \N [{"file_id": "5b50daa0-988e-4900-b6df-4b7b1f1bbb5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "6a5df87c8ea848a494c8fcaf89a6ebad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "6a5df87c8ea848a494c8fcaf89a6ebad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "6a5df87c8ea848a494c8fcaf89a6ebad.jpg", "file_size": 23190, "is_delete": false, "file_type": 1, "original_file_name": "T0686#-城画盛峰调RC23-11-25-120克四面弹-定位150cm高280宽不少于147高不少于276-改_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6a5df87c8ea848a494c8fcaf89a6ebad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6a5df87c8ea848a494c8fcaf89a6ebad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6a5df87c8ea848a494c8fcaf89a6ebad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/6a5df87c8ea848a494c8fcaf89a6ebad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/6a5df87c8ea848a494c8fcaf89a6ebad.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:trEcln2-MCB0L98jSXVc2SI8SDA=", "createTime": "2025-12-08 21:19:37"}] \N 1 1 \N t
2025-12-08 15:00:02.082915+00 2025-12-08 15:00:02.082919+00 2295 4379#(4380#) SPMX-20251208786984 \N \N \N 1 \N [{"file_id": "f7b27cc7-f1c6-41ae-808f-c139512da546", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "a1d98068fcf74813a624f40770f8c0a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "a1d98068fcf74813a624f40770f8c0a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "a1d98068fcf74813a624f40770f8c0a4.jpg", "file_size": 17378, "is_delete": false, "file_type": 1, "original_file_name": "4379#(4380#花型)枣红~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a1d98068fcf74813a624f40770f8c0a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a1d98068fcf74813a624f40770f8c0a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a1d98068fcf74813a624f40770f8c0a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/a1d98068fcf74813a624f40770f8c0a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/a1d98068fcf74813a624f40770f8c0a4.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xY1Ufamc-wobiEvkocdB1M24vuw=", "createTime": "2025-12-08 21:11:31"}] \N 1 1 \N t
2025-12-08 15:00:02.083884+00 2025-12-08 15:00:02.083888+00 2296 25838#RC23 SPMX-20251208786981 \N \N \N 1 \N [{"file_id": "57583baa-a8d9-4562-8ec2-42a304ab09ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "fcc51133599f4b19bb556990021ca3ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "fcc51133599f4b19bb556990021ca3ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "fcc51133599f4b19bb556990021ca3ec.jpg", "file_size": 25544, "is_delete": false, "file_type": 1, "original_file_name": "25838#红色RC23~鲁小超-120g本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/fcc51133599f4b19bb556990021ca3ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/fcc51133599f4b19bb556990021ca3ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/fcc51133599f4b19bb556990021ca3ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/fcc51133599f4b19bb556990021ca3ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/fcc51133599f4b19bb556990021ca3ec.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KyllJG0U0qDXU6zJcu4iMZmGLUY=", "createTime": "2025-12-08 21:10:51"}] \N 1 1 \N t
2025-12-08 15:00:02.084864+00 2025-12-08 15:00:02.084869+00 2297 25838#RC23 SPMX-20251208786983 \N \N \N 1 \N [{"file_id": "4be359d1-a711-4bf9-825c-cc94277c3171", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "a94b83cccc0a4fab8fe5e2ea713c4ace.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "a94b83cccc0a4fab8fe5e2ea713c4ace.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "a94b83cccc0a4fab8fe5e2ea713c4ace.jpg", "file_size": 23428, "is_delete": false, "file_type": 1, "original_file_name": "25838#蓝色RC23~鲁小超-120g本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a94b83cccc0a4fab8fe5e2ea713c4ace.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a94b83cccc0a4fab8fe5e2ea713c4ace.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a94b83cccc0a4fab8fe5e2ea713c4ace.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/a94b83cccc0a4fab8fe5e2ea713c4ace.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/a94b83cccc0a4fab8fe5e2ea713c4ace.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:70klfW2ybIf_jxlIGbbICTZerzc=", "createTime": "2025-12-08 21:10:51"}] \N 1 1 \N t
2025-12-08 15:00:02.085821+00 2025-12-08 15:00:02.085826+00 2298 25838#绿RC23 SPMX-20251208786982 \N \N \N 1 \N [{"file_id": "aa1679db-6792-4739-ad68-216cca320f48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "4862dff0b6464fbfb655d3c99d4a1f55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "4862dff0b6464fbfb655d3c99d4a1f55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "4862dff0b6464fbfb655d3c99d4a1f55.jpg", "file_size": 20760, "is_delete": false, "file_type": 1, "original_file_name": "25838#绿色RC23~鲁小超-120g本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/4862dff0b6464fbfb655d3c99d4a1f55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/4862dff0b6464fbfb655d3c99d4a1f55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/4862dff0b6464fbfb655d3c99d4a1f55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/4862dff0b6464fbfb655d3c99d4a1f55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/4862dff0b6464fbfb655d3c99d4a1f55.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zV3YMbLXn1aDHv4-CSzMdn44R9w=", "createTime": "2025-12-08 21:10:51"}] \N 1 1 \N t
2025-12-08 15:00:02.086779+00 2025-12-08 15:00:02.086783+00 2299 25838#RC23 SPMX-20251208786980 \N \N \N 1 \N [{"file_id": "fb994fcf-eacd-4706-8283-d03186958822", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "bb0f0ec3af93459a9274a9471a74d134.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "bb0f0ec3af93459a9274a9471a74d134.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "bb0f0ec3af93459a9274a9471a74d134.jpg", "file_size": 26443, "is_delete": false, "file_type": 1, "original_file_name": "25838#图片色RC23~鲁小超-120g本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/bb0f0ec3af93459a9274a9471a74d134.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/bb0f0ec3af93459a9274a9471a74d134.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/bb0f0ec3af93459a9274a9471a74d134.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/bb0f0ec3af93459a9274a9471a74d134.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/bb0f0ec3af93459a9274a9471a74d134.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:63PUWIldwwikUzw--QDEJEGFowQ=", "createTime": "2025-12-08 21:10:49"}] \N 1 1 \N t
2025-12-08 15:00:02.087752+00 2025-12-08 15:00:02.087757+00 2300 4379#(4380#) SPMX-20251208786979 \N \N \N 1 \N [{"file_id": "7e684888-840e-498c-9e90-04675cb6a232", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "b77bf9f2a8254a71a56279f5ac6f735a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "b77bf9f2a8254a71a56279f5ac6f735a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "b77bf9f2a8254a71a56279f5ac6f735a.jpg", "file_size": 17363, "is_delete": false, "file_type": 1, "original_file_name": "4379#(4380#花型)枣洪~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b77bf9f2a8254a71a56279f5ac6f735a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b77bf9f2a8254a71a56279f5ac6f735a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b77bf9f2a8254a71a56279f5ac6f735a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/b77bf9f2a8254a71a56279f5ac6f735a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/b77bf9f2a8254a71a56279f5ac6f735a.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KI1xE6yPuSXbb4Fl7SuHvU7cr5w=", "createTime": "2025-12-08 21:07:40"}] \N 1 1 \N t
2025-12-08 15:00:02.088701+00 2025-12-08 15:00:02.088709+00 2301 4379#(4380#) SPMX-20251208786978 \N \N \N 1 \N [{"file_id": "36f39118-b6a4-4686-baa7-69c129ffd598", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "d5aeb6bfbbdf4c4ea007a8c044fb09d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "d5aeb6bfbbdf4c4ea007a8c044fb09d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "d5aeb6bfbbdf4c4ea007a8c044fb09d2.jpg", "file_size": 15526, "is_delete": false, "file_type": 1, "original_file_name": "4379#(4380#花型)玫红~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d5aeb6bfbbdf4c4ea007a8c044fb09d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d5aeb6bfbbdf4c4ea007a8c044fb09d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d5aeb6bfbbdf4c4ea007a8c044fb09d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/d5aeb6bfbbdf4c4ea007a8c044fb09d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/d5aeb6bfbbdf4c4ea007a8c044fb09d2.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zDDsrlcTLcFQRUAioDgV6elsHjc=", "createTime": "2025-12-08 21:07:36"}] \N 1 1 \N t
2025-12-08 15:00:02.601104+00 2025-12-08 15:00:02.601114+00 2302 4379#(4380#)绿 SPMX-20251208786977 \N \N \N 1 \N [{"file_id": "18973267-4030-4b94-bbac-7908f1c4f182", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "6f4ec4868d004d3a8d34a643426881cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "6f4ec4868d004d3a8d34a643426881cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "6f4ec4868d004d3a8d34a643426881cd.jpg", "file_size": 16148, "is_delete": false, "file_type": 1, "original_file_name": "4379#(4380#花型)绿色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6f4ec4868d004d3a8d34a643426881cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6f4ec4868d004d3a8d34a643426881cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6f4ec4868d004d3a8d34a643426881cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/6f4ec4868d004d3a8d34a643426881cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/6f4ec4868d004d3a8d34a643426881cd.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:01XyZ8iEKPQfhgQndDRfiqgiIZ0=", "createTime": "2025-12-08 21:07:35"}] \N 1 1 \N t
2025-12-08 15:00:02.602538+00 2025-12-08 15:00:02.602545+00 2303 4379#(4380#) SPMX-20251208786976 \N \N \N 1 \N [{"file_id": "1d7cc564-ea86-479d-b36d-ecf73037a0e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "62110616562840aca52fa4030db4f0de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "62110616562840aca52fa4030db4f0de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "62110616562840aca52fa4030db4f0de.jpg", "file_size": 17221, "is_delete": false, "file_type": 1, "original_file_name": "4379#(4380#花型)蓝色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/62110616562840aca52fa4030db4f0de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/62110616562840aca52fa4030db4f0de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/62110616562840aca52fa4030db4f0de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/62110616562840aca52fa4030db4f0de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/62110616562840aca52fa4030db4f0de.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0eZzrRS7UZX8fOt-RR0dQHucVG0=", "createTime": "2025-12-08 21:07:33"}] \N 1 1 \N t
2025-12-08 15:00:02.603777+00 2025-12-08 15:00:02.603782+00 2304 4379#(4380#) SPMX-20251208786975 \N \N \N 1 \N [{"file_id": "9a07fbfb-50ef-414f-a19b-86c8c5af6043", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "04467233861343418c7759fa951448da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "04467233861343418c7759fa951448da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "04467233861343418c7759fa951448da.jpg", "file_size": 13401, "is_delete": false, "file_type": 1, "original_file_name": "4379#(4380#花型)黄色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/04467233861343418c7759fa951448da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/04467233861343418c7759fa951448da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/04467233861343418c7759fa951448da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/04467233861343418c7759fa951448da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/04467233861343418c7759fa951448da.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IlOnEVthuI2fWXxUeheFZi2fRzI=", "createTime": "2025-12-08 21:07:29"}] \N 1 1 \N t
2025-12-08 15:00:02.604845+00 2025-12-08 15:00:02.60485+00 2305 4379#(4380#) SPMX-20251208786974 \N \N \N 1 \N [{"file_id": "eea3d94f-e10a-4b63-9dbb-b015cd84982c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "19d788bf69364314b10d56c387b9a6b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "19d788bf69364314b10d56c387b9a6b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "19d788bf69364314b10d56c387b9a6b4.jpg", "file_size": 16454, "is_delete": false, "file_type": 1, "original_file_name": "4379#(4380#花型)黑色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/19d788bf69364314b10d56c387b9a6b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/19d788bf69364314b10d56c387b9a6b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/19d788bf69364314b10d56c387b9a6b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/19d788bf69364314b10d56c387b9a6b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/19d788bf69364314b10d56c387b9a6b4.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FG2RSM6zq0f6m-AKFg9FM2LfPs8=", "createTime": "2025-12-08 21:07:27"}] \N 1 1 \N t
2025-12-08 15:00:02.605901+00 2025-12-08 15:00:02.605907+00 2306 4375# SPMX-20251208786973 \N \N \N 1 \N [{"file_id": "e1cb1f99-8642-487f-95ab-e9e4c4186f12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "154329814eff45d492fb6b58b3b11769.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "154329814eff45d492fb6b58b3b11769.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "154329814eff45d492fb6b58b3b11769.jpg", "file_size": 15927, "is_delete": false, "file_type": 1, "original_file_name": "4375#黑色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日 - 副本_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/154329814eff45d492fb6b58b3b11769.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/154329814eff45d492fb6b58b3b11769.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/154329814eff45d492fb6b58b3b11769.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/154329814eff45d492fb6b58b3b11769.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/154329814eff45d492fb6b58b3b11769.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dfJcYG7eojvR_WIZVa0VS-FCSis=", "createTime": "2025-12-08 21:07:06"}] \N 1 1 \N t
2025-12-08 15:00:02.606937+00 2025-12-08 15:00:02.606942+00 2307 4379#(4380#) SPMX-20251208786972 \N \N \N 1 \N [{"file_id": "ecea0aca-2139-415c-a8a0-8be39cc757ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "6c95d001517446cca239d00002ddaab9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "6c95d001517446cca239d00002ddaab9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "6c95d001517446cca239d00002ddaab9.jpg", "file_size": 15574, "is_delete": false, "file_type": 1, "original_file_name": "4379#(4380#花型)橙色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6c95d001517446cca239d00002ddaab9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6c95d001517446cca239d00002ddaab9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6c95d001517446cca239d00002ddaab9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/6c95d001517446cca239d00002ddaab9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/6c95d001517446cca239d00002ddaab9.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KElmbocjP4YUpafZvblm_TZxroM=", "createTime": "2025-12-08 21:07:03"}] \N 1 1 \N t
2025-12-08 15:00:02.607949+00 2025-12-08 15:00:02.607953+00 2308 H0142#1 SPMX-20251208786971 \N \N \N 1 \N [{"file_id": "d80a9f4d-69bf-484d-9845-1da2c28203a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "bbea3cd5497d4ac197cd5166364532a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "bbea3cd5497d4ac197cd5166364532a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "bbea3cd5497d4ac197cd5166364532a9.jpg", "file_size": 16597, "is_delete": false, "file_type": 1, "original_file_name": "H0142#1号色~130g四面弹-幅宽151-RC23-永盛调-B_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/bbea3cd5497d4ac197cd5166364532a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/bbea3cd5497d4ac197cd5166364532a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/bbea3cd5497d4ac197cd5166364532a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/bbea3cd5497d4ac197cd5166364532a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/bbea3cd5497d4ac197cd5166364532a9.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TYOWfKIYhIqOfCl-8hKFc_6cF5g=", "createTime": "2025-12-08 21:04:37"}] \N 1 1 \N t
2025-12-08 15:00:02.608979+00 2025-12-08 15:00:02.608983+00 2309 79767#1 SPMX-20251208786970 \N \N \N 1 \N [{"file_id": "94abbf24-e5bb-48a2-8ab1-d8d5fb2d5b04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "e853a178ceaf456e905093808e605493.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "e853a178ceaf456e905093808e605493.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "e853a178ceaf456e905093808e605493.jpg", "file_size": 16534, "is_delete": false, "file_type": 1, "original_file_name": "79767#1号色~130g四面弹-幅宽151-RC23-永盛调-B_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e853a178ceaf456e905093808e605493.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e853a178ceaf456e905093808e605493.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e853a178ceaf456e905093808e605493.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/e853a178ceaf456e905093808e605493.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/e853a178ceaf456e905093808e605493.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vs0Eu4A2VpPOWA-6OYBHb-TR0CU=", "createTime": "2025-12-08 21:03:57"}] \N 1 1 \N t
2025-12-08 15:00:02.609983+00 2025-12-08 15:00:02.609988+00 2310 112-13#-RC23- SPMX-20251208786969 \N \N \N 1 \N [{"file_id": "2f9ace0b-a939-4eca-a7e2-9a6cd82d534c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "cb91ee4451874800b93cf9989a156518.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "cb91ee4451874800b93cf9989a156518.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "cb91ee4451874800b93cf9989a156518.jpg", "file_size": 12212, "is_delete": false, "file_type": 1, "original_file_name": "112-13#-RC23-灰~陈娟-120克本白四面弹-幅宽1.51米-柯画-高万林调-日期12.7_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/cb91ee4451874800b93cf9989a156518.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/cb91ee4451874800b93cf9989a156518.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/cb91ee4451874800b93cf9989a156518.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/cb91ee4451874800b93cf9989a156518.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/cb91ee4451874800b93cf9989a156518.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:26w09sHf2qXj6OvhJUQjoSmNwoQ=", "createTime": "2025-12-08 21:01:54"}] \N 1 1 \N t
2025-12-08 15:00:02.610999+00 2025-12-08 15:00:02.611004+00 2311 961#05 RC23 SPMX-20251208786965 \N \N \N 1 \N [{"file_id": "1956b3d5-f96a-4c14-8a48-8119e9a45f29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "7906610c524e44f8a62b9ace4e00aa58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "7906610c524e44f8a62b9ace4e00aa58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "7906610c524e44f8a62b9ace4e00aa58.jpg", "file_size": 13353, "is_delete": false, "file_type": 1, "original_file_name": "961#05 RC23~杰画 珍妮 120克本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/7906610c524e44f8a62b9ace4e00aa58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/7906610c524e44f8a62b9ace4e00aa58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/7906610c524e44f8a62b9ace4e00aa58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/7906610c524e44f8a62b9ace4e00aa58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/7906610c524e44f8a62b9ace4e00aa58.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1tvnoirrmG9Rkg4yjPbar_cB4rM=", "createTime": "2025-12-08 20:58:43"}] \N 1 1 \N t
2025-12-08 15:00:02.612006+00 2025-12-08 15:00:02.612011+00 2312 961#06 RC23 SPMX-20251208786964 \N \N \N 1 \N [{"file_id": "c955e860-6bd4-436a-8271-0f42797f77d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "debcce7ae36f4b9aa41e8cdfd64759af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "debcce7ae36f4b9aa41e8cdfd64759af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "debcce7ae36f4b9aa41e8cdfd64759af.jpg", "file_size": 12539, "is_delete": false, "file_type": 1, "original_file_name": "961#06 RC23~杰画 珍妮 120克本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/debcce7ae36f4b9aa41e8cdfd64759af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/debcce7ae36f4b9aa41e8cdfd64759af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/debcce7ae36f4b9aa41e8cdfd64759af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/debcce7ae36f4b9aa41e8cdfd64759af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/debcce7ae36f4b9aa41e8cdfd64759af.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xo2aB2QuB9DrFEE1diDM4Iva_iM=", "createTime": "2025-12-08 20:58:43"}] \N 1 1 \N t
2025-12-08 15:00:02.613024+00 2025-12-08 15:00:02.613029+00 2313 961#04 RC23 SPMX-20251208786968 \N \N \N 1 \N [{"file_id": "d280bc3e-0b20-442d-8908-a0d64280da94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "d05a0f6bf9414b9ca3d653da867e6e91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "d05a0f6bf9414b9ca3d653da867e6e91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "d05a0f6bf9414b9ca3d653da867e6e91.jpg", "file_size": 14779, "is_delete": false, "file_type": 1, "original_file_name": "961#04 RC23~杰画 珍妮 120克本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d05a0f6bf9414b9ca3d653da867e6e91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d05a0f6bf9414b9ca3d653da867e6e91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d05a0f6bf9414b9ca3d653da867e6e91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/d05a0f6bf9414b9ca3d653da867e6e91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/d05a0f6bf9414b9ca3d653da867e6e91.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wGQjEOwZ3nkwSEYwXlPOoplWeV8=", "createTime": "2025-12-08 20:58:44"}] \N 1 1 \N t
2025-12-08 15:00:02.614019+00 2025-12-08 15:00:02.614023+00 2314 961#03 RC23 SPMX-20251208786967 \N \N \N 1 \N [{"file_id": "0f2eb4f8-360a-4be4-8e1e-3645b67bbd9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "d4ef6e6a16374ec5b58cc29c5a614633.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "d4ef6e6a16374ec5b58cc29c5a614633.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "d4ef6e6a16374ec5b58cc29c5a614633.jpg", "file_size": 13981, "is_delete": false, "file_type": 1, "original_file_name": "961#03 RC23~杰画 珍妮 120克本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d4ef6e6a16374ec5b58cc29c5a614633.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d4ef6e6a16374ec5b58cc29c5a614633.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d4ef6e6a16374ec5b58cc29c5a614633.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/d4ef6e6a16374ec5b58cc29c5a614633.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/d4ef6e6a16374ec5b58cc29c5a614633.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yiphWTh9B8gWDT84DfF3Td6IxyE=", "createTime": "2025-12-08 20:58:44"}] \N 1 1 \N t
2025-12-08 15:00:02.615016+00 2025-12-08 15:00:02.61502+00 2315 961#02 RC23 SPMX-20251208786966 \N \N \N 1 \N [{"file_id": "f6ca174d-4ebf-42c7-8449-07a9a1dea041", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "817b1ce0d85844b29ea794bdc91f5c47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "817b1ce0d85844b29ea794bdc91f5c47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "817b1ce0d85844b29ea794bdc91f5c47.jpg", "file_size": 12820, "is_delete": false, "file_type": 1, "original_file_name": "961#02 RC23~杰画 珍妮 120克本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/817b1ce0d85844b29ea794bdc91f5c47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/817b1ce0d85844b29ea794bdc91f5c47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/817b1ce0d85844b29ea794bdc91f5c47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/817b1ce0d85844b29ea794bdc91f5c47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/817b1ce0d85844b29ea794bdc91f5c47.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vqihBq3c5aBYwcmSJNm2bsHzqWE=", "createTime": "2025-12-08 20:58:43"}] \N 1 1 \N t
2025-12-08 15:00:02.615989+00 2025-12-08 15:00:02.615994+00 2316 961#01 RC23 SPMX-20251208786963 \N \N \N 1 \N [{"file_id": "207d484b-58ce-42fc-bdb8-497119b0c2a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "247c1ab2c9b04eab9e2e86789b4a5723.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "247c1ab2c9b04eab9e2e86789b4a5723.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "247c1ab2c9b04eab9e2e86789b4a5723.jpg", "file_size": 12512, "is_delete": false, "file_type": 1, "original_file_name": "961#01 RC23~杰画 珍妮 120克本白四面弹 布151 花调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/247c1ab2c9b04eab9e2e86789b4a5723.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/247c1ab2c9b04eab9e2e86789b4a5723.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/247c1ab2c9b04eab9e2e86789b4a5723.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/247c1ab2c9b04eab9e2e86789b4a5723.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/247c1ab2c9b04eab9e2e86789b4a5723.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nx2ndCNoN2WYSoAvhcI4Cvcevwc=", "createTime": "2025-12-08 20:58:43"}] \N 1 1 \N t
2025-12-08 15:00:02.616973+00 2025-12-08 15:00:02.616977+00 2317 GZSM3050# SPMX-20251208786962 \N \N \N 1 \N [{"file_id": "ee0b22f8-426a-4e16-af27-67423d88e957", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "f0f89f2539754c2ea0480ef600caada2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "f0f89f2539754c2ea0480ef600caada2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "f0f89f2539754c2ea0480ef600caada2.jpg", "file_size": 6502, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3050#红净色~LWQ15-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f0f89f2539754c2ea0480ef600caada2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f0f89f2539754c2ea0480ef600caada2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f0f89f2539754c2ea0480ef600caada2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/f0f89f2539754c2ea0480ef600caada2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/f0f89f2539754c2ea0480ef600caada2.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1gcnszY10KUd8P85v4LPZXX7Elc=", "createTime": "2025-12-08 20:55:43"}] \N 1 1 \N t
2025-12-08 15:00:02.618048+00 2025-12-08 15:00:02.618052+00 2318 GZSM3050# SPMX-20251208786961 \N \N \N 1 \N [{"file_id": "f83588ff-26b5-4db8-bd08-d1b15010e493", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "747ec33641914bfaa8a9679ab9172583.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "747ec33641914bfaa8a9679ab9172583.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "747ec33641914bfaa8a9679ab9172583.jpg", "file_size": 6559, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3050#深咖净色~LWQ15-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/747ec33641914bfaa8a9679ab9172583.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/747ec33641914bfaa8a9679ab9172583.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/747ec33641914bfaa8a9679ab9172583.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/747ec33641914bfaa8a9679ab9172583.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/747ec33641914bfaa8a9679ab9172583.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TSdpNK6kfpM9DSTbebBPF4HYJKI=", "createTime": "2025-12-08 20:55:42"}] \N 1 1 \N t
2025-12-08 15:00:02.619291+00 2025-12-08 15:00:02.619295+00 2319 GZSM3050# SPMX-20251208786960 \N \N \N 1 \N [{"file_id": "6e9045bb-c907-42a8-9b85-35cd4a38cd34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "3d2eb7d5f2e942bd806f2715de43720f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "3d2eb7d5f2e942bd806f2715de43720f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "3d2eb7d5f2e942bd806f2715de43720f.jpg", "file_size": 6343, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3050#咖净色~LWQ15-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3d2eb7d5f2e942bd806f2715de43720f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3d2eb7d5f2e942bd806f2715de43720f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3d2eb7d5f2e942bd806f2715de43720f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/3d2eb7d5f2e942bd806f2715de43720f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/3d2eb7d5f2e942bd806f2715de43720f.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ON-8P4Ikt-BlY60d4D90oVagu_4=", "createTime": "2025-12-08 20:55:39"}] \N 1 1 \N t
2025-12-08 15:00:02.620548+00 2025-12-08 15:00:02.620552+00 2320 GZSM3050# SPMX-20251208786959 \N \N \N 1 \N [{"file_id": "63e73c7c-e28a-4e7e-bbbb-0d06ab2f028e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "b5447f37f5684728879eb1877e1ca3ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "b5447f37f5684728879eb1877e1ca3ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "b5447f37f5684728879eb1877e1ca3ea.jpg", "file_size": 6143, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3050#黑净色~LWQ15-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b5447f37f5684728879eb1877e1ca3ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b5447f37f5684728879eb1877e1ca3ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b5447f37f5684728879eb1877e1ca3ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/b5447f37f5684728879eb1877e1ca3ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/b5447f37f5684728879eb1877e1ca3ea.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ptRiv1W50cHUu2By_DGuxrmhoc8=", "createTime": "2025-12-08 20:55:37"}] \N 1 1 \N t
2025-12-08 15:00:02.621781+00 2025-12-08 15:00:02.621785+00 2321 GZSM3050# SPMX-20251208786958 \N \N \N 1 \N [{"file_id": "679d23ae-5d3d-423b-a072-d7c1f5fe84e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "181e1fec554f4a75805136f3ec65b340.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "181e1fec554f4a75805136f3ec65b340.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "181e1fec554f4a75805136f3ec65b340.jpg", "file_size": 6311, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3050#蓝净色~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/181e1fec554f4a75805136f3ec65b340.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/181e1fec554f4a75805136f3ec65b340.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/181e1fec554f4a75805136f3ec65b340.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/181e1fec554f4a75805136f3ec65b340.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/181e1fec554f4a75805136f3ec65b340.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4_O3m_ofYMWgLR31mvW4KlV27qU=", "createTime": "2025-12-08 20:55:00"}] \N 1 1 \N t
2025-12-08 15:00:02.623041+00 2025-12-08 15:00:02.623045+00 2322 GZSM3050# SPMX-20251208786957 \N \N \N 1 \N [{"file_id": "d257cdd5-9c53-4cf0-92d9-44a95e25c8eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "18ec39dff6e14eaf91610c420149f3d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "18ec39dff6e14eaf91610c420149f3d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "18ec39dff6e14eaf91610c420149f3d8.jpg", "file_size": 6273, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3050#咖净色~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/18ec39dff6e14eaf91610c420149f3d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/18ec39dff6e14eaf91610c420149f3d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/18ec39dff6e14eaf91610c420149f3d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/18ec39dff6e14eaf91610c420149f3d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/18ec39dff6e14eaf91610c420149f3d8.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bls0Aw570QxBy51f2Ycv0qTtM38=", "createTime": "2025-12-08 20:54:58"}] \N 1 1 \N t
2025-12-08 15:00:02.624294+00 2025-12-08 15:00:02.624298+00 2323 GZSM3050# SPMX-20251208786956 \N \N \N 1 \N [{"file_id": "cbfe0f80-1525-44bb-8f9b-12bb3bf3173e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "f478cc426fed4e258f0251522be59aa3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "f478cc426fed4e258f0251522be59aa3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "f478cc426fed4e258f0251522be59aa3.jpg", "file_size": 6283, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3050#红净色~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f478cc426fed4e258f0251522be59aa3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f478cc426fed4e258f0251522be59aa3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f478cc426fed4e258f0251522be59aa3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/f478cc426fed4e258f0251522be59aa3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/f478cc426fed4e258f0251522be59aa3.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LGtAEgfcVEhaslCBncZgZmTsuGo=", "createTime": "2025-12-08 20:54:57"}] \N 1 1 \N t
2025-12-08 15:00:02.625555+00 2025-12-08 15:00:02.625559+00 2324 GZSM3050# SPMX-20251208786955 \N \N \N 1 \N [{"file_id": "0e459d55-0cd9-43ef-bef9-c7c877ba1673", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "e1245966d2b54804a19f028152f3fa42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "e1245966d2b54804a19f028152f3fa42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "e1245966d2b54804a19f028152f3fa42.jpg", "file_size": 5925, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3050#黑净色~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e1245966d2b54804a19f028152f3fa42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e1245966d2b54804a19f028152f3fa42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e1245966d2b54804a19f028152f3fa42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/e1245966d2b54804a19f028152f3fa42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/e1245966d2b54804a19f028152f3fa42.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZrdZbnJHKPijQRslj_RXrE764RQ=", "createTime": "2025-12-08 20:54:55"}] \N 1 1 \N t
2025-12-08 15:00:02.626865+00 2025-12-08 15:00:02.62687+00 2325 112-13#-RC23- SPMX-20251208786954 \N \N \N 1 \N [{"file_id": "845de6b0-0a05-4176-90c5-61e02ce59903", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "66c935e0e5dc41f5a62789998dc42a74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "66c935e0e5dc41f5a62789998dc42a74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "66c935e0e5dc41f5a62789998dc42a74.jpg", "file_size": 12211, "is_delete": false, "file_type": 1, "original_file_name": "112-13#-RC23-黑~陈娟-120克本白四面弹-幅宽1.51米-柯画-高万林调-日期12.7_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/66c935e0e5dc41f5a62789998dc42a74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/66c935e0e5dc41f5a62789998dc42a74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/66c935e0e5dc41f5a62789998dc42a74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/66c935e0e5dc41f5a62789998dc42a74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/66c935e0e5dc41f5a62789998dc42a74.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rZqXpGM5xPLze9DD7qE8PAfHVlY=", "createTime": "2025-12-08 20:54:10"}] \N 1 1 \N t
2025-12-08 15:00:02.628106+00 2025-12-08 15:00:02.628111+00 2326 112-13#-RC23-1 SPMX-20251208786953 \N \N \N 1 \N [{"file_id": "88520488-81af-4778-a831-3949bc17c288", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "afe7458f28de49a687874c1765ac07c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "afe7458f28de49a687874c1765ac07c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "afe7458f28de49a687874c1765ac07c9.jpg", "file_size": 10617, "is_delete": false, "file_type": 1, "original_file_name": "112-13#-RC23-黑1~陈娟-120克本白四面弹-幅宽1.51米-柯画-高万林调-日期12.7_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/afe7458f28de49a687874c1765ac07c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/afe7458f28de49a687874c1765ac07c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/afe7458f28de49a687874c1765ac07c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/afe7458f28de49a687874c1765ac07c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/afe7458f28de49a687874c1765ac07c9.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:irVG3vEn1AH-1TXWcLFvLKuIefo=", "createTime": "2025-12-08 20:54:08"}] \N 1 1 \N t
2025-12-08 15:00:02.629088+00 2025-12-08 15:00:02.629092+00 2327 112-13#-RC23- SPMX-20251208786952 \N \N \N 1 \N [{"file_id": "ebb2632b-197f-43cf-b732-ccdc7aceddab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "04803d5b931b4e31af30bd81ecf65c4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "04803d5b931b4e31af30bd81ecf65c4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "04803d5b931b4e31af30bd81ecf65c4f.jpg", "file_size": 12409, "is_delete": false, "file_type": 1, "original_file_name": "112-13#-RC23-咖~陈娟-120克本白四面弹-幅宽1.51米-柯画-高万林调-日期12.7_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/04803d5b931b4e31af30bd81ecf65c4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/04803d5b931b4e31af30bd81ecf65c4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/04803d5b931b4e31af30bd81ecf65c4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/04803d5b931b4e31af30bd81ecf65c4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/04803d5b931b4e31af30bd81ecf65c4f.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iY-wCXa6i0Cp6CMreTsvnifR6qk=", "createTime": "2025-12-08 20:54:07"}] \N 1 1 \N t
2025-12-08 15:00:02.630057+00 2025-12-08 15:00:02.630061+00 2328 112-12-RC23- SPMX-20251208786951 \N \N \N 1 \N [{"file_id": "184a2e62-d84e-44af-8169-56e34b296c41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "1f1466d6536c46da81e3284fa3b2bbd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "1f1466d6536c46da81e3284fa3b2bbd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "1f1466d6536c46da81e3284fa3b2bbd0.jpg", "file_size": 12624, "is_delete": false, "file_type": 1, "original_file_name": "112-12-RC23-白~陈娟-弹力色丁-幅宽1.51米-杰画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/1f1466d6536c46da81e3284fa3b2bbd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/1f1466d6536c46da81e3284fa3b2bbd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/1f1466d6536c46da81e3284fa3b2bbd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/1f1466d6536c46da81e3284fa3b2bbd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/1f1466d6536c46da81e3284fa3b2bbd0.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:00VGZcus356A2QxMFnWzEFTqbM8=", "createTime": "2025-12-08 20:52:13"}] \N 1 1 \N t
2025-12-08 15:00:02.63102+00 2025-12-08 15:00:02.631025+00 2329 112-11-RC23- SPMX-20251208786950 \N \N \N 1 \N [{"file_id": "6a653a97-916d-4b04-8bc8-8a4dcc0e7665", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "8748b63918a544ed9a1fc8aeb8bb4f97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "8748b63918a544ed9a1fc8aeb8bb4f97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "8748b63918a544ed9a1fc8aeb8bb4f97.jpg", "file_size": 12409, "is_delete": false, "file_type": 1, "original_file_name": "112-11-RC23-杏~陈娟-弹力色丁-幅宽1.51米-廖画-高万林调-日期12.5_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/8748b63918a544ed9a1fc8aeb8bb4f97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/8748b63918a544ed9a1fc8aeb8bb4f97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/8748b63918a544ed9a1fc8aeb8bb4f97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/8748b63918a544ed9a1fc8aeb8bb4f97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/8748b63918a544ed9a1fc8aeb8bb4f97.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ce7EUdBgkWVgzZ2lNIHQo50rkPo=", "createTime": "2025-12-08 20:51:50"}] \N 1 1 \N t
2025-12-08 15:00:02.63197+00 2025-12-08 15:00:02.631974+00 2330 CJ112-10#RC23青 SPMX-20251208786949 \N \N \N 1 \N [{"file_id": "f8f13718-4b96-4367-bce6-e8c9a3b31bdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "e936f6c7f02143e0854bc07e6b94c814.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "e936f6c7f02143e0854bc07e6b94c814.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "e936f6c7f02143e0854bc07e6b94c814.jpg", "file_size": 8487, "is_delete": false, "file_type": 1, "original_file_name": "CJ112-10#RC23青~色丁-门幅150-云调 12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e936f6c7f02143e0854bc07e6b94c814.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e936f6c7f02143e0854bc07e6b94c814.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e936f6c7f02143e0854bc07e6b94c814.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/e936f6c7f02143e0854bc07e6b94c814.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/e936f6c7f02143e0854bc07e6b94c814.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UxA_KHi48hdg4rZOkTX1nEeUnQg=", "createTime": "2025-12-08 20:51:27"}] \N 1 1 \N t
2025-12-08 15:00:02.632959+00 2025-12-08 15:00:02.632963+00 2331 GZSM3040# SPMX-20251208786948 \N \N \N 1 \N [{"file_id": "1622f963-fc8c-4f6f-905f-edabcd1d3b84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "99b86457ff3942a4b44a00fc4c3a9dcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "99b86457ff3942a4b44a00fc4c3a9dcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "99b86457ff3942a4b44a00fc4c3a9dcb.jpg", "file_size": 6564, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3040#深咖净色~LWQ15-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/99b86457ff3942a4b44a00fc4c3a9dcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/99b86457ff3942a4b44a00fc4c3a9dcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/99b86457ff3942a4b44a00fc4c3a9dcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/99b86457ff3942a4b44a00fc4c3a9dcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/99b86457ff3942a4b44a00fc4c3a9dcb.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uK7C-SL8qH_S1xtZoaBL_jMepxA=", "createTime": "2025-12-08 20:51:24"}] \N 1 1 \N t
2025-12-08 15:00:02.633931+00 2025-12-08 15:00:02.633935+00 2332 GZSM3040# SPMX-20251208786947 \N \N \N 1 \N [{"file_id": "59251bea-b67d-4a36-ae6b-f4397721b5a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "19bc07c4aa734e2fbcc089aaba6ee2ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "19bc07c4aa734e2fbcc089aaba6ee2ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "19bc07c4aa734e2fbcc089aaba6ee2ac.jpg", "file_size": 6339, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3040#咖净色~LWQ15-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/19bc07c4aa734e2fbcc089aaba6ee2ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/19bc07c4aa734e2fbcc089aaba6ee2ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/19bc07c4aa734e2fbcc089aaba6ee2ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/19bc07c4aa734e2fbcc089aaba6ee2ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/19bc07c4aa734e2fbcc089aaba6ee2ac.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RQJPLJG5JvNFNYz6EPsXqd7ETIc=", "createTime": "2025-12-08 20:51:14"}] \N 1 1 \N t
2025-12-08 15:00:02.634903+00 2025-12-08 15:00:02.634907+00 2333 GZSM3040# SPMX-20251208786946 \N \N \N 1 \N [{"file_id": "96a4e01a-76ed-4442-9814-09621944039f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "7ff557c12d394c4ba8650c81403fe16c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "7ff557c12d394c4ba8650c81403fe16c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "7ff557c12d394c4ba8650c81403fe16c.jpg", "file_size": 6489, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3040#红净色~LWQ15-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/7ff557c12d394c4ba8650c81403fe16c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/7ff557c12d394c4ba8650c81403fe16c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/7ff557c12d394c4ba8650c81403fe16c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/7ff557c12d394c4ba8650c81403fe16c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/7ff557c12d394c4ba8650c81403fe16c.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RwGWMJZBvbKwzKSxBfFrsjjzokk=", "createTime": "2025-12-08 20:51:08"}] \N 1 1 \N t
2025-12-08 15:00:02.635861+00 2025-12-08 15:00:02.635865+00 2334 GZSM3040# SPMX-20251208786945 \N \N \N 1 \N [{"file_id": "a6b8b38e-559e-42d0-ac2a-8293dad496de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "6ca3c7ba0da94db4af0595551e0fca5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "6ca3c7ba0da94db4af0595551e0fca5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "6ca3c7ba0da94db4af0595551e0fca5e.jpg", "file_size": 6140, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3040#黑净色~LWQ15-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6ca3c7ba0da94db4af0595551e0fca5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6ca3c7ba0da94db4af0595551e0fca5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6ca3c7ba0da94db4af0595551e0fca5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/6ca3c7ba0da94db4af0595551e0fca5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/6ca3c7ba0da94db4af0595551e0fca5e.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x4tU4rcOAUBw_qyNh6hURRHz7qg=", "createTime": "2025-12-08 20:50:53"}] \N 1 1 \N t
2025-12-08 15:00:02.636844+00 2025-12-08 15:00:02.636849+00 2335 GZSM3040#· SPMX-20251208786944 \N \N \N 1 \N [{"file_id": "85728baa-5bbd-493e-ada2-ee96e7a213ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "845c79efe1f3451da2418666913fda46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "845c79efe1f3451da2418666913fda46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "845c79efe1f3451da2418666913fda46.jpg", "file_size": 6287, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3040#红·净色~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/845c79efe1f3451da2418666913fda46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/845c79efe1f3451da2418666913fda46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/845c79efe1f3451da2418666913fda46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/845c79efe1f3451da2418666913fda46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/845c79efe1f3451da2418666913fda46.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F8CnMbHd90LfI9ZSKO5WgkAO1ZA=", "createTime": "2025-12-08 20:50:15"}] \N 1 1 \N t
2025-12-08 15:00:02.637818+00 2025-12-08 15:00:02.637822+00 2336 GZSM3040# SPMX-20251208786943 \N \N \N 1 \N [{"file_id": "b843c72f-bf31-4b32-ad57-a32d06c8d6df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "114d3e3d0b094f7685d9b8a004786b7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "114d3e3d0b094f7685d9b8a004786b7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "114d3e3d0b094f7685d9b8a004786b7c.jpg", "file_size": 6269, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3040#咖净色~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/114d3e3d0b094f7685d9b8a004786b7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/114d3e3d0b094f7685d9b8a004786b7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/114d3e3d0b094f7685d9b8a004786b7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/114d3e3d0b094f7685d9b8a004786b7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/114d3e3d0b094f7685d9b8a004786b7c.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3qV4f8wB6l4vDhaZYpTn_q117W4=", "createTime": "2025-12-08 20:49:52"}] \N 1 1 \N t
2025-12-08 15:00:02.638786+00 2025-12-08 15:00:02.63879+00 2337 GZSM3040# SPMX-20251208786942 \N \N \N 1 \N [{"file_id": "43d2c13d-3535-40bb-aa54-072c6b8140c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "793efd03060b484fac8e37238651b87c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "793efd03060b484fac8e37238651b87c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "793efd03060b484fac8e37238651b87c.jpg", "file_size": 6278, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3040#红净色~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/793efd03060b484fac8e37238651b87c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/793efd03060b484fac8e37238651b87c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/793efd03060b484fac8e37238651b87c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/793efd03060b484fac8e37238651b87c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/793efd03060b484fac8e37238651b87c.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qu58cG5xToO-zKF7E9F0qL4RVPQ=", "createTime": "2025-12-08 20:49:32"}] \N 1 1 \N t
2025-12-08 15:00:02.639757+00 2025-12-08 15:00:02.639762+00 2338 GZSM3040# SPMX-20251208786941 \N \N \N 1 \N [{"file_id": "478b96d1-65aa-4139-b34a-1024e528e56d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "3161edfa338d4d91b661c204d9feae34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "3161edfa338d4d91b661c204d9feae34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "3161edfa338d4d91b661c204d9feae34.jpg", "file_size": 5920, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3040#黑净色~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3161edfa338d4d91b661c204d9feae34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3161edfa338d4d91b661c204d9feae34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3161edfa338d4d91b661c204d9feae34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/3161edfa338d4d91b661c204d9feae34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/3161edfa338d4d91b661c204d9feae34.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WNunjja2Uyk5qStS_9qiU6HLb08=", "createTime": "2025-12-08 20:49:22"}] \N 1 1 \N t
2025-12-08 15:00:02.640716+00 2025-12-08 15:00:02.640721+00 2339 GZSM3040# SPMX-20251208786940 \N \N \N 1 \N [{"file_id": "bd4f9971-04c5-435f-8a2d-ce6dbda7cd48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "e819919a4c09405cbceea8c84d355a25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "e819919a4c09405cbceea8c84d355a25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "e819919a4c09405cbceea8c84d355a25.jpg", "file_size": 6305, "is_delete": false, "file_type": 1, "original_file_name": "GZSM3040#蓝净色~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e819919a4c09405cbceea8c84d355a25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e819919a4c09405cbceea8c84d355a25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e819919a4c09405cbceea8c84d355a25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/e819919a4c09405cbceea8c84d355a25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/e819919a4c09405cbceea8c84d355a25.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iXvrYIuW7YAH4AwcM_NrbhsMac0=", "createTime": "2025-12-08 20:49:14"}] \N 1 1 \N t
2025-12-08 15:00:02.641746+00 2025-12-08 15:00:02.64175+00 2340 3033# SPMX-20251208786939 \N \N \N 1 \N [{"file_id": "19c99a6c-2744-4ae4-9c99-7d5d4839d3dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "667c50872f114e79a402c2cd4b358404.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "667c50872f114e79a402c2cd4b358404.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "667c50872f114e79a402c2cd4b358404.jpg", "file_size": 5281, "is_delete": false, "file_type": 1, "original_file_name": "3033#红~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/667c50872f114e79a402c2cd4b358404.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/667c50872f114e79a402c2cd4b358404.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/667c50872f114e79a402c2cd4b358404.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/667c50872f114e79a402c2cd4b358404.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/667c50872f114e79a402c2cd4b358404.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d1jwr5Rk3YxYWvc8lMYtJtuBu88=", "createTime": "2025-12-08 20:48:09"}] \N 1 1 \N t
2025-12-08 15:00:02.642735+00 2025-12-08 15:00:02.642742+00 2341 3033# SPMX-20251208786936 \N \N \N 1 \N [{"file_id": "61a87e09-84bb-4e66-9862-57da27fa2118", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "83340d50cb5f4e9bb1072f200781eb14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "83340d50cb5f4e9bb1072f200781eb14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "83340d50cb5f4e9bb1072f200781eb14.jpg", "file_size": 5279, "is_delete": false, "file_type": 1, "original_file_name": "3033#蓝~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/83340d50cb5f4e9bb1072f200781eb14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/83340d50cb5f4e9bb1072f200781eb14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/83340d50cb5f4e9bb1072f200781eb14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/83340d50cb5f4e9bb1072f200781eb14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/83340d50cb5f4e9bb1072f200781eb14.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ghpZM5FjMmhG4_ryOsmL33DPri4=", "createTime": "2025-12-08 20:48:09"}] \N 1 1 \N t
2025-12-08 15:00:02.643852+00 2025-12-08 15:00:02.643856+00 2342 3033# SPMX-20251208786938 \N \N \N 1 \N [{"file_id": "6c7db037-17d6-4441-9e77-a8cbe3b7d01d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "685eb5064a58471fb3be6e12b6ffbfdc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "685eb5064a58471fb3be6e12b6ffbfdc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "685eb5064a58471fb3be6e12b6ffbfdc.jpg", "file_size": 5265, "is_delete": false, "file_type": 1, "original_file_name": "3033#咖~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/685eb5064a58471fb3be6e12b6ffbfdc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/685eb5064a58471fb3be6e12b6ffbfdc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/685eb5064a58471fb3be6e12b6ffbfdc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/685eb5064a58471fb3be6e12b6ffbfdc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/685eb5064a58471fb3be6e12b6ffbfdc.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aeNl5-0vymRbq01QFtlYzbQqlvs=", "createTime": "2025-12-08 20:48:09"}] \N 1 1 \N t
2025-12-08 15:00:02.644834+00 2025-12-08 15:00:02.644838+00 2343 3033# SPMX-20251208786937 \N \N \N 1 \N [{"file_id": "ab155bd4-973f-4be0-b40c-4f7d1dd15e5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "9fd6ff414a8f4e3aaefba9b987cbafa3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "9fd6ff414a8f4e3aaefba9b987cbafa3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "9fd6ff414a8f4e3aaefba9b987cbafa3.jpg", "file_size": 4924, "is_delete": false, "file_type": 1, "original_file_name": "3033#黑~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9fd6ff414a8f4e3aaefba9b987cbafa3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9fd6ff414a8f4e3aaefba9b987cbafa3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9fd6ff414a8f4e3aaefba9b987cbafa3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/9fd6ff414a8f4e3aaefba9b987cbafa3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/9fd6ff414a8f4e3aaefba9b987cbafa3.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:480qeWq_VPWRiTVu5jBsysZDnoo=", "createTime": "2025-12-08 20:48:09"}] \N 1 1 \N t
2025-12-08 15:00:02.645816+00 2025-12-08 15:00:02.645821+00 2344 3040# SPMX-20251208786935 \N \N \N 1 \N [{"file_id": "f3ebc901-826e-4723-a13a-412e8e463bca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "7ab9334f0421488dbcfff9024be7c1a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "7ab9334f0421488dbcfff9024be7c1a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "7ab9334f0421488dbcfff9024be7c1a1.jpg", "file_size": 5261, "is_delete": false, "file_type": 1, "original_file_name": "3040#红~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/7ab9334f0421488dbcfff9024be7c1a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/7ab9334f0421488dbcfff9024be7c1a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/7ab9334f0421488dbcfff9024be7c1a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/7ab9334f0421488dbcfff9024be7c1a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/7ab9334f0421488dbcfff9024be7c1a1.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YJVQR6XhYbijQGhPWWuIKjGvm4Y=", "createTime": "2025-12-08 20:47:30"}] \N 1 1 \N t
2025-12-08 15:00:02.646789+00 2025-12-08 15:00:02.646794+00 2345 3040# SPMX-20251208786934 \N \N \N 1 \N [{"file_id": "c8b57dac-4cbd-4ac0-9215-6ed087091bff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "fe6dc8043a2d441dbda354214877f66f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "fe6dc8043a2d441dbda354214877f66f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "fe6dc8043a2d441dbda354214877f66f.jpg", "file_size": 5265, "is_delete": false, "file_type": 1, "original_file_name": "3040#咖~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/fe6dc8043a2d441dbda354214877f66f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/fe6dc8043a2d441dbda354214877f66f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/fe6dc8043a2d441dbda354214877f66f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/fe6dc8043a2d441dbda354214877f66f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/fe6dc8043a2d441dbda354214877f66f.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sF2Kaxm8W589yeWSEUDKJMbC5PQ=", "createTime": "2025-12-08 20:47:30"}] \N 1 1 \N t
2025-12-08 15:00:02.647786+00 2025-12-08 15:00:02.647791+00 2346 3040# SPMX-20251208786933 \N \N \N 1 \N [{"file_id": "2f8d3b7a-0071-46f7-acdd-60c140dde582", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "43598da07c784f218a35f7da4f9d6511.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "43598da07c784f218a35f7da4f9d6511.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "43598da07c784f218a35f7da4f9d6511.jpg", "file_size": 4925, "is_delete": false, "file_type": 1, "original_file_name": "3040#黑~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/43598da07c784f218a35f7da4f9d6511.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/43598da07c784f218a35f7da4f9d6511.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/43598da07c784f218a35f7da4f9d6511.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/43598da07c784f218a35f7da4f9d6511.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/43598da07c784f218a35f7da4f9d6511.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mEyfDRWPpCteNSxxwHEoVsYrNnw=", "createTime": "2025-12-08 20:47:30"}] \N 1 1 \N t
2025-12-08 15:00:02.648757+00 2025-12-08 15:00:02.648761+00 2347 3040# SPMX-20251208786932 \N \N \N 1 \N [{"file_id": "17ae83a7-48bd-4284-a1de-56f417f08fd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "6c2c7d82ad4642ceb12f75c802d83ccb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "6c2c7d82ad4642ceb12f75c802d83ccb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "6c2c7d82ad4642ceb12f75c802d83ccb.jpg", "file_size": 5289, "is_delete": false, "file_type": 1, "original_file_name": "3040#蓝~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6c2c7d82ad4642ceb12f75c802d83ccb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6c2c7d82ad4642ceb12f75c802d83ccb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6c2c7d82ad4642ceb12f75c802d83ccb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/6c2c7d82ad4642ceb12f75c802d83ccb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/6c2c7d82ad4642ceb12f75c802d83ccb.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xvb9rwl_ys4N0zDnY30GMGl6BvM=", "createTime": "2025-12-08 20:47:30"}] \N 1 1 \N t
2025-12-08 15:00:02.649758+00 2025-12-08 15:00:02.649763+00 2348 3050# SPMX-20251208786931 \N \N \N 1 \N [{"file_id": "948f1e8b-a759-4516-a1c4-5ceb9a2d1700", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "a87dea5ef32c4dd99af49b55e0432d95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "a87dea5ef32c4dd99af49b55e0432d95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "a87dea5ef32c4dd99af49b55e0432d95.jpg", "file_size": 5376, "is_delete": false, "file_type": 1, "original_file_name": "3050#咖~LWQ15-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a87dea5ef32c4dd99af49b55e0432d95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a87dea5ef32c4dd99af49b55e0432d95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a87dea5ef32c4dd99af49b55e0432d95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/a87dea5ef32c4dd99af49b55e0432d95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/a87dea5ef32c4dd99af49b55e0432d95.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E_2-W1oLILb_mMjNf28lKNcGU8w=", "createTime": "2025-12-08 20:46:55"}] \N 1 1 \N t
2025-12-08 15:00:02.650725+00 2025-12-08 15:00:02.65073+00 2349 3050# SPMX-20251208786930 \N \N \N 1 \N [{"file_id": "e285111b-095b-4e49-b692-f2a349313ef7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "d009777572dd4a1898192c0190114b88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "d009777572dd4a1898192c0190114b88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "d009777572dd4a1898192c0190114b88.jpg", "file_size": 5527, "is_delete": false, "file_type": 1, "original_file_name": "3050#红~LWQ15-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d009777572dd4a1898192c0190114b88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d009777572dd4a1898192c0190114b88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d009777572dd4a1898192c0190114b88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/d009777572dd4a1898192c0190114b88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/d009777572dd4a1898192c0190114b88.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ke-r8oLH5YWeXNIJmtATeLLvTi4=", "createTime": "2025-12-08 20:46:48"}] \N 1 1 \N t
2025-12-08 15:00:02.651702+00 2025-12-08 15:00:02.651715+00 2350 3050# SPMX-20251208786929 \N \N \N 1 \N [{"file_id": "fd13f5eb-8a93-4c56-b0c6-33e3e017ddd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "331b182e21e8440cb4d022e23681a3f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "331b182e21e8440cb4d022e23681a3f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "331b182e21e8440cb4d022e23681a3f8.jpg", "file_size": 5164, "is_delete": false, "file_type": 1, "original_file_name": "3050#黑~LWQ15-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/331b182e21e8440cb4d022e23681a3f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/331b182e21e8440cb4d022e23681a3f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/331b182e21e8440cb4d022e23681a3f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/331b182e21e8440cb4d022e23681a3f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/331b182e21e8440cb4d022e23681a3f8.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kt8iTWImd9L47c6Goh-AJ63oWWw=", "createTime": "2025-12-08 20:46:39"}] \N 1 1 \N t
2025-12-08 15:00:02.652739+00 2025-12-08 15:00:02.652744+00 2351 112-12-RC23- SPMX-20251208786928 \N \N \N 1 \N [{"file_id": "5a78748b-97a7-40dd-9f59-85ebdd0544ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "d053da35512d484b8960efa8ac04c41d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "d053da35512d484b8960efa8ac04c41d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "d053da35512d484b8960efa8ac04c41d.jpg", "file_size": 12719, "is_delete": false, "file_type": 1, "original_file_name": "112-12-RC23-黑白~陈娟-弹力色丁-幅宽1.51米-杰画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d053da35512d484b8960efa8ac04c41d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d053da35512d484b8960efa8ac04c41d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d053da35512d484b8960efa8ac04c41d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/d053da35512d484b8960efa8ac04c41d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/d053da35512d484b8960efa8ac04c41d.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:myhJfZwvdlxFlv6AD4x0yiQvKJ8=", "createTime": "2025-12-08 20:46:35"}] \N 1 1 \N t
2025-12-08 15:00:02.653713+00 2025-12-08 15:00:02.653718+00 2352 3050# SPMX-20251208786927 \N \N \N 1 \N [{"file_id": "d5ea29fe-7abb-4259-b536-9aef2722a5a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "68801c9389314ed78bac87f3e39f7528.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "68801c9389314ed78bac87f3e39f7528.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "68801c9389314ed78bac87f3e39f7528.jpg", "file_size": 5567, "is_delete": false, "file_type": 1, "original_file_name": "3050#深咖~LWQ15-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/68801c9389314ed78bac87f3e39f7528.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/68801c9389314ed78bac87f3e39f7528.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/68801c9389314ed78bac87f3e39f7528.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/68801c9389314ed78bac87f3e39f7528.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/68801c9389314ed78bac87f3e39f7528.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o7RiR1JQ4zjE5wQRv1a1PRVbM2Y=", "createTime": "2025-12-08 20:46:31"}] \N 1 1 \N t
2025-12-08 15:00:02.654677+00 2025-12-08 15:00:02.654681+00 2353 112-12-RC23- SPMX-20251208786926 \N \N \N 1 \N [{"file_id": "2524dc3b-5189-4ae6-a0b8-9434ca50939b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "9bc1cb208e7446a68516af1c6233210b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "9bc1cb208e7446a68516af1c6233210b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "9bc1cb208e7446a68516af1c6233210b.jpg", "file_size": 11433, "is_delete": false, "file_type": 1, "original_file_name": "112-12-RC23-黑~陈娟-弹力色丁-幅宽1.51米-杰画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9bc1cb208e7446a68516af1c6233210b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9bc1cb208e7446a68516af1c6233210b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9bc1cb208e7446a68516af1c6233210b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/9bc1cb208e7446a68516af1c6233210b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/9bc1cb208e7446a68516af1c6233210b.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d0CNypqUlNR53gAwCpf5z-9uA_8=", "createTime": "2025-12-08 20:46:30"}] \N 1 1 \N t
2025-12-08 15:00:02.655644+00 2025-12-08 15:00:02.655649+00 2354 112-12-RC23- SPMX-20251208786925 \N \N \N 1 \N [{"file_id": "bf0d923e-f650-43e3-85cf-879646bee9b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "d86be2e8820b4d139cb00862778e56b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "d86be2e8820b4d139cb00862778e56b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "d86be2e8820b4d139cb00862778e56b8.jpg", "file_size": 11797, "is_delete": false, "file_type": 1, "original_file_name": "112-12-RC23-咖~陈娟-弹力色丁-幅宽1.51米-杰画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d86be2e8820b4d139cb00862778e56b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d86be2e8820b4d139cb00862778e56b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d86be2e8820b4d139cb00862778e56b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/d86be2e8820b4d139cb00862778e56b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/d86be2e8820b4d139cb00862778e56b8.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gcyNOILa5efDouJ-6dn_LqZOrEM=", "createTime": "2025-12-08 20:46:25"}] \N 1 1 \N t
2025-12-08 15:00:02.656634+00 2025-12-08 15:00:02.656638+00 2355 3050# SPMX-20251208786924 \N \N \N 1 \N [{"file_id": "ce0e2079-2a7f-4c84-bad9-7d4285866dc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "cb6f3a1e92424d30aa405d4a0e900dcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "cb6f3a1e92424d30aa405d4a0e900dcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "cb6f3a1e92424d30aa405d4a0e900dcc.jpg", "file_size": 4918, "is_delete": false, "file_type": 1, "original_file_name": "3050#黑~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/cb6f3a1e92424d30aa405d4a0e900dcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/cb6f3a1e92424d30aa405d4a0e900dcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/cb6f3a1e92424d30aa405d4a0e900dcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/cb6f3a1e92424d30aa405d4a0e900dcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/cb6f3a1e92424d30aa405d4a0e900dcc.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F1Jf4p2saooxdzvE3SRIY9Jki5w=", "createTime": "2025-12-08 20:46:20"}] \N 1 1 \N t
2025-12-08 15:00:02.65762+00 2025-12-08 15:00:02.657625+00 2356 3050# SPMX-20251208786922 \N \N \N 1 \N [{"file_id": "fddb9a06-7342-4fda-a3d6-f298607813aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "05b07a828d304a89934d0001b14991d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "05b07a828d304a89934d0001b14991d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "05b07a828d304a89934d0001b14991d5.jpg", "file_size": 5256, "is_delete": false, "file_type": 1, "original_file_name": "3050#红~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/05b07a828d304a89934d0001b14991d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/05b07a828d304a89934d0001b14991d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/05b07a828d304a89934d0001b14991d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/05b07a828d304a89934d0001b14991d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/05b07a828d304a89934d0001b14991d5.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jRhasfsCvsuw8YxZAo-UesHYqtY=", "createTime": "2025-12-08 20:46:19"}] \N 1 1 \N t
2025-12-08 15:00:02.658591+00 2025-12-08 15:00:02.658595+00 2357 3050# SPMX-20251208786921 \N \N \N 1 \N [{"file_id": "d6fd0a48-d85b-4a25-9feb-23b8d92abe47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "efb9c1c7ef5b48f2956f494177915557.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "efb9c1c7ef5b48f2956f494177915557.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "efb9c1c7ef5b48f2956f494177915557.jpg", "file_size": 5116, "is_delete": false, "file_type": 1, "original_file_name": "3050#咖~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/efb9c1c7ef5b48f2956f494177915557.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/efb9c1c7ef5b48f2956f494177915557.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/efb9c1c7ef5b48f2956f494177915557.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/efb9c1c7ef5b48f2956f494177915557.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/efb9c1c7ef5b48f2956f494177915557.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FoL6JUTj1Dvohc58eGXZxnWpQ2Y=", "createTime": "2025-12-08 20:46:19"}] \N 1 1 \N t
2025-12-08 15:00:02.65955+00 2025-12-08 15:00:02.659554+00 2358 3050# SPMX-20251208786923 \N \N \N 1 \N [{"file_id": "4056d6b0-108e-4694-b7c9-c6e3a43fd879", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "77856f20266047909b4cabe1e02a0a0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "77856f20266047909b4cabe1e02a0a0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "77856f20266047909b4cabe1e02a0a0f.jpg", "file_size": 5382, "is_delete": false, "file_type": 1, "original_file_name": "3050#深咖~RC23-柔破卡-150cm_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/77856f20266047909b4cabe1e02a0a0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/77856f20266047909b4cabe1e02a0a0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/77856f20266047909b4cabe1e02a0a0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/77856f20266047909b4cabe1e02a0a0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/77856f20266047909b4cabe1e02a0a0f.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CsGhGXJEFvsf2Em08-X0cpW2K3A=", "createTime": "2025-12-08 20:46:19"}] \N 1 1 \N t
2025-12-08 15:00:02.660524+00 2025-12-08 15:00:02.660528+00 2359 CJ112-10#RC23黑 SPMX-20251208786920 \N \N \N 1 \N [{"file_id": "28e407c6-6df3-475d-8e20-f29265475cdd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "82e48184f55d4566ae6a3c10e413ca1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "82e48184f55d4566ae6a3c10e413ca1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "82e48184f55d4566ae6a3c10e413ca1a.jpg", "file_size": 9071, "is_delete": false, "file_type": 1, "original_file_name": "CJ112-10#RC23黑~色丁-门幅150-云调 12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/82e48184f55d4566ae6a3c10e413ca1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/82e48184f55d4566ae6a3c10e413ca1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/82e48184f55d4566ae6a3c10e413ca1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/82e48184f55d4566ae6a3c10e413ca1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/82e48184f55d4566ae6a3c10e413ca1a.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OB4Dy6pDPxTgzepp9A-3EtOTdVM=", "createTime": "2025-12-08 20:45:53"}] \N 1 1 \N t
2025-12-08 15:00:02.661508+00 2025-12-08 15:00:02.661512+00 2360 CJ112-14#RC23黑 SPMX-20251208786919 \N \N \N 1 \N [{"file_id": "b74b7c7d-9319-4f43-a0a1-4212d6103eca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "28476deb4fac4736a1c7820093484b76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "28476deb4fac4736a1c7820093484b76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "28476deb4fac4736a1c7820093484b76.jpg", "file_size": 30031, "is_delete": false, "file_type": 1, "original_file_name": "CJ112-14#RC23黑~色丁-门幅150-云调 12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/28476deb4fac4736a1c7820093484b76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/28476deb4fac4736a1c7820093484b76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/28476deb4fac4736a1c7820093484b76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/28476deb4fac4736a1c7820093484b76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/28476deb4fac4736a1c7820093484b76.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T89AF9ZTTEbU-Ce-fUJyyc58Aa0=", "createTime": "2025-12-08 20:45:49"}] \N 1 1 \N t
2025-12-08 15:00:02.662466+00 2025-12-08 15:00:02.66247+00 2361 CJ112-10#RC23粉 SPMX-20251208786918 \N \N \N 1 \N [{"file_id": "4e39e391-f8ba-4f35-b589-ce5896995502", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "9eaf7894b7b541b5b1ac9e8402f3e8e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "9eaf7894b7b541b5b1ac9e8402f3e8e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "9eaf7894b7b541b5b1ac9e8402f3e8e7.jpg", "file_size": 8154, "is_delete": false, "file_type": 1, "original_file_name": "CJ112-10#RC23粉~色丁-门幅150-云调 12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9eaf7894b7b541b5b1ac9e8402f3e8e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9eaf7894b7b541b5b1ac9e8402f3e8e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9eaf7894b7b541b5b1ac9e8402f3e8e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/9eaf7894b7b541b5b1ac9e8402f3e8e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/9eaf7894b7b541b5b1ac9e8402f3e8e7.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:47UABorugQTphSPzxxxb9zvl_ig=", "createTime": "2025-12-08 20:45:43"}] \N 1 1 \N t
2025-12-08 15:00:02.663426+00 2025-12-08 15:00:02.66343+00 2362 112-11-RC23- SPMX-20251208786917 \N \N \N 1 \N [{"file_id": "14f3aa9e-023d-4b61-ac3c-c3f21178eb78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "c8e19fd1fc8c4e80b779bcc64a8c44a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "c8e19fd1fc8c4e80b779bcc64a8c44a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "c8e19fd1fc8c4e80b779bcc64a8c44a5.jpg", "file_size": 13176, "is_delete": false, "file_type": 1, "original_file_name": "112-11-RC23-黑~陈娟-弹力色丁-幅宽1.51米-廖画-高万林调-日期12.5_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c8e19fd1fc8c4e80b779bcc64a8c44a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c8e19fd1fc8c4e80b779bcc64a8c44a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c8e19fd1fc8c4e80b779bcc64a8c44a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/c8e19fd1fc8c4e80b779bcc64a8c44a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/c8e19fd1fc8c4e80b779bcc64a8c44a5.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F4xq90e0TFSAUhKcYaRvPlHQO1I=", "createTime": "2025-12-08 20:45:42"}] \N 1 1 \N t
2025-12-08 15:00:02.66442+00 2025-12-08 15:00:02.664424+00 2363 112-9-RC23- SPMX-20251208786916 \N \N \N 1 \N [{"file_id": "d59568e7-bfa8-499d-b120-0de64188cdbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "d37e55372d284846ae4016a09c8f7749.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "d37e55372d284846ae4016a09c8f7749.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "d37e55372d284846ae4016a09c8f7749.jpg", "file_size": 10303, "is_delete": false, "file_type": 1, "original_file_name": "112-9-RC23-黑~陈娟-弹力色丁-幅宽1.51米-廖画-高万林调-日期12.41_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d37e55372d284846ae4016a09c8f7749.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d37e55372d284846ae4016a09c8f7749.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/d37e55372d284846ae4016a09c8f7749.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/d37e55372d284846ae4016a09c8f7749.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/d37e55372d284846ae4016a09c8f7749.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ia_B5LUyEjgXAVXy-nE7rja-ojI=", "createTime": "2025-12-08 20:45:30"}] \N 1 1 \N t
2025-12-08 15:00:02.665383+00 2025-12-08 15:00:02.665387+00 2364 112-11-RC23- SPMX-20251208786915 \N \N \N 1 \N [{"file_id": "548a0b33-5113-4398-89f0-d496856a5f51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "ba368dee18f4420295857424a49000ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "ba368dee18f4420295857424a49000ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "ba368dee18f4420295857424a49000ab.jpg", "file_size": 12396, "is_delete": false, "file_type": 1, "original_file_name": "112-11-RC23- 杏~陈娟-弹力色丁-幅宽1.51米-廖画-高万林调-日期12.5_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ba368dee18f4420295857424a49000ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ba368dee18f4420295857424a49000ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ba368dee18f4420295857424a49000ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/ba368dee18f4420295857424a49000ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/ba368dee18f4420295857424a49000ab.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:muGlkaEHFnWAn3HoPQ3lXAdg7v8=", "createTime": "2025-12-08 20:45:22"}] \N 1 1 \N t
2025-12-08 15:00:02.666358+00 2025-12-08 15:00:02.666363+00 2365 CJ112-15#RC23黑 SPMX-20251208786914 \N \N \N 1 \N [{"file_id": "47b9613c-4ba9-422b-adaf-367eb5883431", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "a20fcdda084841e8af1f17ced0819307.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "a20fcdda084841e8af1f17ced0819307.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "a20fcdda084841e8af1f17ced0819307.jpg", "file_size": 9298, "is_delete": false, "file_type": 1, "original_file_name": "CJ112-15#RC23黑~色丁-门幅150-云调 12月8白_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a20fcdda084841e8af1f17ced0819307.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a20fcdda084841e8af1f17ced0819307.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a20fcdda084841e8af1f17ced0819307.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/a20fcdda084841e8af1f17ced0819307.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/a20fcdda084841e8af1f17ced0819307.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cpJ2OPZGk1R5Y9LfoDgYojZFbK8=", "createTime": "2025-12-08 20:45:22"}] \N 1 1 \N t
2025-12-08 15:00:02.667319+00 2025-12-08 15:00:02.667323+00 2366 CJ112-10#RC23 SPMX-20251208786913 \N \N \N 1 \N [{"file_id": "259ed386-83a9-409c-a12d-033efe797bb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "254b21fabe4a48678cf2d8077d970d15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "254b21fabe4a48678cf2d8077d970d15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "254b21fabe4a48678cf2d8077d970d15.jpg", "file_size": 8385, "is_delete": false, "file_type": 1, "original_file_name": "CJ112-10#RC23~色丁-门幅150-云调 12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/254b21fabe4a48678cf2d8077d970d15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/254b21fabe4a48678cf2d8077d970d15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/254b21fabe4a48678cf2d8077d970d15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/254b21fabe4a48678cf2d8077d970d15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/254b21fabe4a48678cf2d8077d970d15.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:itEmPWlkvKQkwQHUAiIt8QTmJ7w=", "createTime": "2025-12-08 20:45:22"}] \N 1 1 \N t
2025-12-08 15:00:02.668296+00 2025-12-08 15:00:02.6683+00 2367 CJ112-15#RC23白 SPMX-20251208786912 \N \N \N 1 \N [{"file_id": "5fb4d66e-4cf6-438f-8a90-5e8543a0f120", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "f6ef23a7960242c087a62a1cd2336d6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "f6ef23a7960242c087a62a1cd2336d6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "f6ef23a7960242c087a62a1cd2336d6c.jpg", "file_size": 8130, "is_delete": false, "file_type": 1, "original_file_name": "CJ112-15#RC23白~色丁-门幅150-云调 12月8白_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f6ef23a7960242c087a62a1cd2336d6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f6ef23a7960242c087a62a1cd2336d6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f6ef23a7960242c087a62a1cd2336d6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/f6ef23a7960242c087a62a1cd2336d6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/f6ef23a7960242c087a62a1cd2336d6c.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dbrw1uF5IHkvASqxJALbVk1mwEY=", "createTime": "2025-12-08 20:45:18"}] \N 1 1 \N t
2025-12-08 15:00:02.669285+00 2025-12-08 15:00:02.669289+00 2368 112-9-RC23- SPMX-20251208786911 \N \N \N 1 \N [{"file_id": "86f9f6bd-ba98-4160-993b-9741aa9dc988", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "03d171bda4914a26adcd8c809d035053.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "03d171bda4914a26adcd8c809d035053.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "03d171bda4914a26adcd8c809d035053.jpg", "file_size": 8457, "is_delete": false, "file_type": 1, "original_file_name": "112-9-RC23-黄~陈娟-弹力色丁-幅宽1.51米-廖画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/03d171bda4914a26adcd8c809d035053.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/03d171bda4914a26adcd8c809d035053.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/03d171bda4914a26adcd8c809d035053.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/03d171bda4914a26adcd8c809d035053.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/03d171bda4914a26adcd8c809d035053.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t6cZh9sfJ7K-a_oldCKiT1tnodc=", "createTime": "2025-12-08 20:45:13"}] \N 1 1 \N t
2025-12-08 15:00:02.670245+00 2025-12-08 15:00:02.670249+00 2369 CJ112-15#RC23咖 SPMX-20251208786910 \N \N \N 1 \N [{"file_id": "cf358553-852c-42be-8849-1d9254cd2460", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "cca5332b47114b99a3db6ba873f1f5ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "cca5332b47114b99a3db6ba873f1f5ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "cca5332b47114b99a3db6ba873f1f5ce.jpg", "file_size": 8861, "is_delete": false, "file_type": 1, "original_file_name": "CJ112-15#RC23咖~色丁-门幅150-云调 12月8白_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/cca5332b47114b99a3db6ba873f1f5ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/cca5332b47114b99a3db6ba873f1f5ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/cca5332b47114b99a3db6ba873f1f5ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/cca5332b47114b99a3db6ba873f1f5ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/cca5332b47114b99a3db6ba873f1f5ce.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HjEOMRkvZuTeaTo5wnVYYevMz9Y=", "createTime": "2025-12-08 20:45:05"}] \N 1 1 \N t
2025-12-08 15:00:02.671201+00 2025-12-08 15:00:02.671205+00 2370 112-9-RC23- SPMX-20251208786909 \N \N \N 1 \N [{"file_id": "e2938536-ac6a-45e5-ba86-fa95149cf520", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "dcfe2f209e774a3bb157be9b96ecc395.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "dcfe2f209e774a3bb157be9b96ecc395.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "dcfe2f209e774a3bb157be9b96ecc395.jpg", "file_size": 8500, "is_delete": false, "file_type": 1, "original_file_name": "112-9-RC23-白~陈娟-弹力色丁-幅宽1.51米-廖画-高万林调-日期12.4_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dcfe2f209e774a3bb157be9b96ecc395.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dcfe2f209e774a3bb157be9b96ecc395.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/dcfe2f209e774a3bb157be9b96ecc395.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/dcfe2f209e774a3bb157be9b96ecc395.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/dcfe2f209e774a3bb157be9b96ecc395.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8kD_BPZRxyXG2g5antrM44AO__Q=", "createTime": "2025-12-08 20:44:53"}] \N 1 1 \N t
2025-12-08 15:00:02.672178+00 2025-12-08 15:00:02.672183+00 2371 4375# SPMX-20251208786907 \N \N \N 1 \N [{"file_id": "c28bd62d-63e7-43fd-a866-49f6282759e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "e7747f609ce94dddbd85a0f439ac933b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "e7747f609ce94dddbd85a0f439ac933b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "e7747f609ce94dddbd85a0f439ac933b.jpg", "file_size": 16286, "is_delete": false, "file_type": 1, "original_file_name": "4375#蓝色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e7747f609ce94dddbd85a0f439ac933b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e7747f609ce94dddbd85a0f439ac933b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/e7747f609ce94dddbd85a0f439ac933b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/e7747f609ce94dddbd85a0f439ac933b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/e7747f609ce94dddbd85a0f439ac933b.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nitxa8MLJAWBA5iOJ3fqy7Moa7g=", "createTime": "2025-12-08 20:40:59"}] \N 1 1 \N t
2025-12-08 15:00:02.673141+00 2025-12-08 15:00:02.673145+00 2372 4375# SPMX-20251208786908 \N \N \N 1 \N [{"file_id": "6b875ef1-e2f0-4678-9238-5990b61bb915", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "adb5454cdc4d477db40af8f715312abf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "adb5454cdc4d477db40af8f715312abf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "adb5454cdc4d477db40af8f715312abf.jpg", "file_size": 15507, "is_delete": false, "file_type": 1, "original_file_name": "4375#黑色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/adb5454cdc4d477db40af8f715312abf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/adb5454cdc4d477db40af8f715312abf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/adb5454cdc4d477db40af8f715312abf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/adb5454cdc4d477db40af8f715312abf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/adb5454cdc4d477db40af8f715312abf.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cmWcoZe77m0h0xzgvP_sjbunY1Q=", "createTime": "2025-12-08 20:40:59"}] \N 1 1 \N t
2025-12-08 15:00:02.674112+00 2025-12-08 15:00:02.674117+00 2373 4375#绿 SPMX-20251208786905 \N \N \N 1 \N [{"file_id": "4617aa2e-a22f-4c4f-a4bb-705d3fa5a6ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "771e86bf49c3467288921d07e883740e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "771e86bf49c3467288921d07e883740e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "771e86bf49c3467288921d07e883740e.jpg", "file_size": 15186, "is_delete": false, "file_type": 1, "original_file_name": "4375#绿色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/771e86bf49c3467288921d07e883740e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/771e86bf49c3467288921d07e883740e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/771e86bf49c3467288921d07e883740e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/771e86bf49c3467288921d07e883740e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/771e86bf49c3467288921d07e883740e.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U3Qxu3TkQP23j5NivF85E0k2YfQ=", "createTime": "2025-12-08 20:40:59"}] \N 1 1 \N t
2025-12-08 15:00:02.675055+00 2025-12-08 15:00:02.67506+00 2374 4375# SPMX-20251208786906 \N \N \N 1 \N [{"file_id": "8160703b-f7d1-4952-b59f-d2041681be4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "b8a77263afec4a7992c03c358819f4d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "b8a77263afec4a7992c03c358819f4d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "b8a77263afec4a7992c03c358819f4d6.jpg", "file_size": 14607, "is_delete": false, "file_type": 1, "original_file_name": "4375#橙色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b8a77263afec4a7992c03c358819f4d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b8a77263afec4a7992c03c358819f4d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b8a77263afec4a7992c03c358819f4d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/b8a77263afec4a7992c03c358819f4d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/b8a77263afec4a7992c03c358819f4d6.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iI7kMPDRwSrFldzhQOa0gLpSDHM=", "createTime": "2025-12-08 20:40:59"}] \N 1 1 \N t
2025-12-08 15:00:02.676044+00 2025-12-08 15:00:02.676048+00 2375 4375# SPMX-20251208786904 \N \N \N 1 \N [{"file_id": "18d0d712-00b1-4aae-afce-4ab95ea7cc86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "103727ed687b4b90b9718b37a8772a2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "103727ed687b4b90b9718b37a8772a2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "103727ed687b4b90b9718b37a8772a2b.jpg", "file_size": 14558, "is_delete": false, "file_type": 1, "original_file_name": "4375#玫红~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/103727ed687b4b90b9718b37a8772a2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/103727ed687b4b90b9718b37a8772a2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/103727ed687b4b90b9718b37a8772a2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/103727ed687b4b90b9718b37a8772a2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/103727ed687b4b90b9718b37a8772a2b.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KCubbbpdnTAVXsnVwiFI1ecZSkM=", "createTime": "2025-12-08 20:40:58"}] \N 1 1 \N t
2025-12-08 15:00:02.677003+00 2025-12-08 15:00:02.677007+00 2376 4375# SPMX-20251208786903 \N \N \N 1 \N [{"file_id": "f1f1ae9e-42e2-46bb-8e89-dd9d34c01767", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "891ed41ad7ba439d88c9653b869a7eaf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "891ed41ad7ba439d88c9653b869a7eaf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "891ed41ad7ba439d88c9653b869a7eaf.jpg", "file_size": 12440, "is_delete": false, "file_type": 1, "original_file_name": "4375#黄色~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/891ed41ad7ba439d88c9653b869a7eaf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/891ed41ad7ba439d88c9653b869a7eaf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/891ed41ad7ba439d88c9653b869a7eaf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/891ed41ad7ba439d88c9653b869a7eaf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/891ed41ad7ba439d88c9653b869a7eaf.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-cwxMa11PXbpIq7-YYa1isfy-9c=", "createTime": "2025-12-08 20:40:58"}] \N 1 1 \N t
2025-12-08 15:00:02.677983+00 2025-12-08 15:00:02.677987+00 2377 4375# SPMX-20251208786902 \N \N \N 1 \N [{"file_id": "6355c269-324f-42a0-8416-17e5b42653f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "a3a378ed2d744110accf7f6819cb7f8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "a3a378ed2d744110accf7f6819cb7f8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "a3a378ed2d744110accf7f6819cb7f8f.jpg", "file_size": 16424, "is_delete": false, "file_type": 1, "original_file_name": "4375#枣洪~-杨赛英-彩兰-120克四面弹-定位幅宽151-12月8日_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a3a378ed2d744110accf7f6819cb7f8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a3a378ed2d744110accf7f6819cb7f8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/a3a378ed2d744110accf7f6819cb7f8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/a3a378ed2d744110accf7f6819cb7f8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/a3a378ed2d744110accf7f6819cb7f8f.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iYwXxUOhyzpRWq1twFmBA78VXY0=", "createTime": "2025-12-08 20:40:57"}] \N 1 1 \N t
2025-12-08 15:00:02.678946+00 2025-12-08 15:00:02.678951+00 2378 456#-M-2XL码-RC23 SPMX-20251208786901 3.81 \N \N 1 \N [{"file_id": "91fc7433-0aaf-4407-a761-8bbce60860d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "74233c3b29784028ab69997a0fcb96da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "74233c3b29784028ab69997a0fcb96da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "74233c3b29784028ab69997a0fcb96da.jpg", "file_size": 11600, "is_delete": false, "file_type": 1, "original_file_name": "456#黑色-M-2XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/74233c3b29784028ab69997a0fcb96da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/74233c3b29784028ab69997a0fcb96da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/74233c3b29784028ab69997a0fcb96da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/74233c3b29784028ab69997a0fcb96da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/74233c3b29784028ab69997a0fcb96da.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QsqwAHVj9h5orjgdIGiL0x7eivo=", "createTime": "2025-12-08 20:38:42"}] \N 1 1 \N t
2025-12-08 15:00:02.67998+00 2025-12-08 15:00:02.679984+00 2379 456#-L-XL码-RC23 SPMX-20251208786900 3.81 \N \N 1 \N [{"file_id": "8d66f9a2-72db-40d0-91f1-a680828d503e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "3684e081736241308bcc81681358d39e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "3684e081736241308bcc81681358d39e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "3684e081736241308bcc81681358d39e.jpg", "file_size": 11335, "is_delete": false, "file_type": 1, "original_file_name": "456#黑色-L-XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3684e081736241308bcc81681358d39e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3684e081736241308bcc81681358d39e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3684e081736241308bcc81681358d39e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/3684e081736241308bcc81681358d39e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/3684e081736241308bcc81681358d39e.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lq-V3iRYXsMr-Yidjrg5NzEr3YM=", "createTime": "2025-12-08 20:38:41"}] \N 1 1 \N t
2025-12-08 15:00:02.680986+00 2025-12-08 15:00:02.680991+00 2380 456#绿-M-2XL码-RC23 SPMX-20251208786899 3.81 \N \N 1 \N [{"file_id": "5e8c2c9f-79db-4db3-84e2-669236bb4274", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "ec72dfba9ba047abbbba8291d286aaf5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "ec72dfba9ba047abbbba8291d286aaf5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "ec72dfba9ba047abbbba8291d286aaf5.jpg", "file_size": 11734, "is_delete": false, "file_type": 1, "original_file_name": "456#绿色-M-2XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ec72dfba9ba047abbbba8291d286aaf5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ec72dfba9ba047abbbba8291d286aaf5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ec72dfba9ba047abbbba8291d286aaf5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/ec72dfba9ba047abbbba8291d286aaf5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/ec72dfba9ba047abbbba8291d286aaf5.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UcqF0Ol_Nv0MPcz0fOwkqQIB9jQ=", "createTime": "2025-12-08 20:38:28"}] \N 1 1 \N t
2025-12-08 15:00:02.682083+00 2025-12-08 15:00:02.682088+00 2381 456#绿-L-XL码-RC23 SPMX-20251208786898 3.81 \N \N 1 \N [{"file_id": "b5690e42-2aa4-44e7-be3b-97084a280713", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "c54ed3b8032b4ba79d17346432d4e5f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "c54ed3b8032b4ba79d17346432d4e5f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "c54ed3b8032b4ba79d17346432d4e5f7.jpg", "file_size": 11552, "is_delete": false, "file_type": 1, "original_file_name": "456#绿色-L-XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c54ed3b8032b4ba79d17346432d4e5f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c54ed3b8032b4ba79d17346432d4e5f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c54ed3b8032b4ba79d17346432d4e5f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/c54ed3b8032b4ba79d17346432d4e5f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/c54ed3b8032b4ba79d17346432d4e5f7.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IuLEDTYOj6VPugkvB164Lq0SvHo=", "createTime": "2025-12-08 20:38:27"}] \N 1 1 \N t
2025-12-08 15:00:02.683291+00 2025-12-08 15:00:02.683295+00 2382 456#500-M-2XL码-RC23 SPMX-20251208786897 3.81 \N \N 1 \N [{"file_id": "26450bec-a885-4e4f-a1fe-e647884a5bd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "89bb83cef4a845cfb15bc3118b99435f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "89bb83cef4a845cfb15bc3118b99435f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "89bb83cef4a845cfb15bc3118b99435f.jpg", "file_size": 12117, "is_delete": false, "file_type": 1, "original_file_name": "456#500号色-M-2XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/89bb83cef4a845cfb15bc3118b99435f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/89bb83cef4a845cfb15bc3118b99435f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/89bb83cef4a845cfb15bc3118b99435f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/89bb83cef4a845cfb15bc3118b99435f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/89bb83cef4a845cfb15bc3118b99435f.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gCpGlfE2MQ7WhzHs_c62qVT93G4=", "createTime": "2025-12-08 20:38:24"}] \N 1 1 \N t
2025-12-08 15:00:02.684379+00 2025-12-08 15:00:02.684383+00 2383 456#500-L-XL码-RC23 SPMX-20251208786896 3.81 \N \N 1 \N [{"file_id": "5fb60e93-c818-43d6-8183-800c3da70b21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "3395b92372434c278fc689d074ae136e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "3395b92372434c278fc689d074ae136e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "3395b92372434c278fc689d074ae136e.jpg", "file_size": 12043, "is_delete": false, "file_type": 1, "original_file_name": "456#500号色-L-XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3395b92372434c278fc689d074ae136e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3395b92372434c278fc689d074ae136e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/3395b92372434c278fc689d074ae136e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/3395b92372434c278fc689d074ae136e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/3395b92372434c278fc689d074ae136e.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xkvP8zV9pBf8iZ8l7x_h3M7HgEk=", "createTime": "2025-12-08 20:38:19"}] \N 1 1 \N t
2025-12-08 15:00:02.685454+00 2025-12-08 15:00:02.685458+00 2384 456#496-M-2XL码-RC23 SPMX-20251208786895 3.81 \N \N 1 \N [{"file_id": "e207caf6-6648-44bf-bea9-9f3f3cb8b452", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "83a9e6c067214d85b1865cb336d8e27a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "83a9e6c067214d85b1865cb336d8e27a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "83a9e6c067214d85b1865cb336d8e27a.jpg", "file_size": 12180, "is_delete": false, "file_type": 1, "original_file_name": "456#496号色-M-2XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/83a9e6c067214d85b1865cb336d8e27a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/83a9e6c067214d85b1865cb336d8e27a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/83a9e6c067214d85b1865cb336d8e27a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/83a9e6c067214d85b1865cb336d8e27a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/83a9e6c067214d85b1865cb336d8e27a.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HfsgT3tA_HojQO_8kXxgQT8Fchw=", "createTime": "2025-12-08 20:37:55"}] \N 1 1 \N t
2025-12-08 15:00:02.686517+00 2025-12-08 15:00:02.686521+00 2385 456#496-L-XL码-RC23 SPMX-20251208786894 3.81 \N \N 1 \N [{"file_id": "fa6c20ae-85f7-468c-b46e-d951ecef83be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "0629f405a7e44149a15b586ab2ea9fe8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "0629f405a7e44149a15b586ab2ea9fe8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "0629f405a7e44149a15b586ab2ea9fe8.jpg", "file_size": 12200, "is_delete": false, "file_type": 1, "original_file_name": "456#496号色-L-XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/0629f405a7e44149a15b586ab2ea9fe8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/0629f405a7e44149a15b586ab2ea9fe8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/0629f405a7e44149a15b586ab2ea9fe8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/0629f405a7e44149a15b586ab2ea9fe8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/0629f405a7e44149a15b586ab2ea9fe8.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ThdegOFCjceNLX_s9nF7bkJBTQc=", "createTime": "2025-12-08 20:37:52"}] \N 1 1 \N t
2025-12-08 15:00:02.687573+00 2025-12-08 15:00:02.687578+00 2386 456#438-M-2XL码-RC23 SPMX-20251208786892 3.81 \N \N 1 \N [{"file_id": "1c9923eb-0b91-4038-9efe-219dc127e3cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "98bd9bf2376d470187f1a2ae8f5066de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "98bd9bf2376d470187f1a2ae8f5066de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "98bd9bf2376d470187f1a2ae8f5066de.jpg", "file_size": 12039, "is_delete": false, "file_type": 1, "original_file_name": "456#438号色-M-2XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/98bd9bf2376d470187f1a2ae8f5066de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/98bd9bf2376d470187f1a2ae8f5066de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/98bd9bf2376d470187f1a2ae8f5066de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/98bd9bf2376d470187f1a2ae8f5066de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/98bd9bf2376d470187f1a2ae8f5066de.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gXlJFze26AlHE8K6BKVVTVnvv4k=", "createTime": "2025-12-08 20:37:50"}] \N 1 1 \N t
2025-12-08 15:00:02.68864+00 2025-12-08 15:00:02.688645+00 2387 456#438-L-XL码-RC23 SPMX-20251208786893 3.81 \N \N 1 \N [{"file_id": "525da5cc-8a90-4e1c-8ea9-5f98f154b7c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "253b0430ed074653a7d508eed4387732.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "253b0430ed074653a7d508eed4387732.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "253b0430ed074653a7d508eed4387732.jpg", "file_size": 11888, "is_delete": false, "file_type": 1, "original_file_name": "456#438号色-L-XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/253b0430ed074653a7d508eed4387732.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/253b0430ed074653a7d508eed4387732.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/253b0430ed074653a7d508eed4387732.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/253b0430ed074653a7d508eed4387732.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/253b0430ed074653a7d508eed4387732.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ruAQSN54jmFAipN87oSJb3YHa9Q=", "createTime": "2025-12-08 20:37:51"}] \N 1 1 \N t
2025-12-08 15:00:02.689666+00 2025-12-08 15:00:02.689671+00 2388 456#436-M-2XL码-RC23 SPMX-20251208786891 3.81 \N \N 1 \N [{"file_id": "419ef7aa-98cb-40cf-8002-9b87844f6ff8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "9cdda739eec1459cb3724b67746eeb02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "9cdda739eec1459cb3724b67746eeb02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "9cdda739eec1459cb3724b67746eeb02.jpg", "file_size": 12001, "is_delete": false, "file_type": 1, "original_file_name": "456#436号色-M-2XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9cdda739eec1459cb3724b67746eeb02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9cdda739eec1459cb3724b67746eeb02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9cdda739eec1459cb3724b67746eeb02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/9cdda739eec1459cb3724b67746eeb02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/9cdda739eec1459cb3724b67746eeb02.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V9wtdyEqoY86rnXjrB4eVbsIeWo=", "createTime": "2025-12-08 20:37:39"}] \N 1 1 \N t
2025-12-08 15:00:02.690639+00 2025-12-08 15:00:02.690643+00 2389 456#249-M-2XL码-RC23 SPMX-20251208786890 3.81 \N \N 1 \N [{"file_id": "95828ac5-eb06-4715-a62e-ef2c2211c41b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "344e249cf1284d7f9f52c49b5e835f37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "344e249cf1284d7f9f52c49b5e835f37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "344e249cf1284d7f9f52c49b5e835f37.jpg", "file_size": 11829, "is_delete": false, "file_type": 1, "original_file_name": "456#249号色-M-2XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/344e249cf1284d7f9f52c49b5e835f37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/344e249cf1284d7f9f52c49b5e835f37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/344e249cf1284d7f9f52c49b5e835f37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/344e249cf1284d7f9f52c49b5e835f37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/344e249cf1284d7f9f52c49b5e835f37.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tynNhkx4K0V2Ev3utqGtkAuTGtM=", "createTime": "2025-12-08 20:37:37"}] \N 1 1 \N t
2025-12-08 15:00:02.692393+00 2025-12-08 15:00:02.692397+00 2390 456#436-L-XL码-RC23 SPMX-20251208786889 3.81 \N \N 1 \N [{"file_id": "5ec3660c-19e9-42bb-962f-2b0f8a2b124c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "5f626e9cb13b462086b2b02a356363b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "5f626e9cb13b462086b2b02a356363b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "5f626e9cb13b462086b2b02a356363b7.jpg", "file_size": 12093, "is_delete": false, "file_type": 1, "original_file_name": "456#436号色-L-XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/5f626e9cb13b462086b2b02a356363b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/5f626e9cb13b462086b2b02a356363b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/5f626e9cb13b462086b2b02a356363b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/5f626e9cb13b462086b2b02a356363b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/5f626e9cb13b462086b2b02a356363b7.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1WbGLkZUsCCIan8OfoEJj6yINmw=", "createTime": "2025-12-08 20:37:36"}] \N 1 1 \N t
2025-12-08 15:00:02.693362+00 2025-12-08 15:00:02.693367+00 2391 456#249-L-XL码-RC23 SPMX-20251208786888 3.81 \N \N 1 \N [{"file_id": "02aa5d8e-ea94-418f-bd9d-686ff427581d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "4e0670fa782a4da2984b418a18c6d756.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "4e0670fa782a4da2984b418a18c6d756.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "4e0670fa782a4da2984b418a18c6d756.jpg", "file_size": 11393, "is_delete": false, "file_type": 1, "original_file_name": "456#249号色-L-XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/4e0670fa782a4da2984b418a18c6d756.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/4e0670fa782a4da2984b418a18c6d756.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/4e0670fa782a4da2984b418a18c6d756.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/4e0670fa782a4da2984b418a18c6d756.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/4e0670fa782a4da2984b418a18c6d756.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sVF96_zcsNsJq1X1x0gx5vBr90o=", "createTime": "2025-12-08 20:37:30"}] \N 1 1 \N t
2025-12-08 15:00:02.694349+00 2025-12-08 15:00:02.694354+00 2392 456#235-M-2XL码-RC23 SPMX-20251208786887 3.81 \N \N 1 \N [{"file_id": "6bc2853d-6302-4fcf-8b0c-53a6553c9167", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "ffeaf7584bb544f28c362275e62f4ec6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "ffeaf7584bb544f28c362275e62f4ec6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "ffeaf7584bb544f28c362275e62f4ec6.jpg", "file_size": 12174, "is_delete": false, "file_type": 1, "original_file_name": "456#235号色-M-2XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ffeaf7584bb544f28c362275e62f4ec6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ffeaf7584bb544f28c362275e62f4ec6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ffeaf7584bb544f28c362275e62f4ec6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/ffeaf7584bb544f28c362275e62f4ec6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/ffeaf7584bb544f28c362275e62f4ec6.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o7w8tV4340UacU-x9MEOfUaeGcg=", "createTime": "2025-12-08 20:37:08"}] \N 1 1 \N t
2025-12-08 15:00:02.6953+00 2025-12-08 15:00:02.695304+00 2393 455#绿-M-2XL码-RC23 SPMX-20251208786886 3.72 \N \N 1 \N [{"file_id": "cf81736d-e101-4c5e-8690-3d4e2348c91e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "72c1473ec42d4dc9abf6f8f3469a4802.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "72c1473ec42d4dc9abf6f8f3469a4802.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "72c1473ec42d4dc9abf6f8f3469a4802.jpg", "file_size": 16011, "is_delete": false, "file_type": 1, "original_file_name": "455#绿色-M-2XL码-RC23~120克四面弹-151cmX372cm(印好后不得低于148cX365cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/72c1473ec42d4dc9abf6f8f3469a4802.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/72c1473ec42d4dc9abf6f8f3469a4802.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/72c1473ec42d4dc9abf6f8f3469a4802.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/72c1473ec42d4dc9abf6f8f3469a4802.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/72c1473ec42d4dc9abf6f8f3469a4802.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MT-cj_uE_JjCrPQD8Sk1dX4smv8=", "createTime": "2025-12-08 20:37:06"}] \N 1 1 \N t
2025-12-08 15:00:02.696273+00 2025-12-08 15:00:02.696278+00 2394 456#134-M-2XL码-RC23 SPMX-20251208786884 3.81 \N \N 1 \N [{"file_id": "3e172837-873c-450b-bb43-44554df4ffcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "4320a6e7da7940e6a635f631aca3967c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "4320a6e7da7940e6a635f631aca3967c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "4320a6e7da7940e6a635f631aca3967c.jpg", "file_size": 11841, "is_delete": false, "file_type": 1, "original_file_name": "456#134号色-M-2XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/4320a6e7da7940e6a635f631aca3967c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/4320a6e7da7940e6a635f631aca3967c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/4320a6e7da7940e6a635f631aca3967c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/4320a6e7da7940e6a635f631aca3967c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/4320a6e7da7940e6a635f631aca3967c.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3f1wAnKgcF_SWqY_hqjAdR5oJDs=", "createTime": "2025-12-08 20:37:00"}] \N 1 1 \N t
2025-12-08 15:00:02.697322+00 2025-12-08 15:00:02.697326+00 2395 456#235-L-XL码-RC23 SPMX-20251208786885 3.81 \N \N 1 \N [{"file_id": "ab9ffec4-c2f2-4bc3-a604-f1f3012a1d7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "f52f2c2d8ed848d09574d4d34f8e90d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "f52f2c2d8ed848d09574d4d34f8e90d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "f52f2c2d8ed848d09574d4d34f8e90d3.jpg", "file_size": 12137, "is_delete": false, "file_type": 1, "original_file_name": "456#235号色-L-XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f52f2c2d8ed848d09574d4d34f8e90d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f52f2c2d8ed848d09574d4d34f8e90d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/f52f2c2d8ed848d09574d4d34f8e90d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/f52f2c2d8ed848d09574d4d34f8e90d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/f52f2c2d8ed848d09574d4d34f8e90d3.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rKlPedfMgTMH1Yger_E8wBfixws=", "createTime": "2025-12-08 20:37:00"}] \N 1 1 \N t
2025-12-08 15:00:02.69835+00 2025-12-08 15:00:02.698354+00 2396 456#134-L-XL码-RC23 SPMX-20251208786883 3.81 \N \N 1 \N [{"file_id": "bffe61b5-fbed-42a1-a9df-d1bcf1fae384", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "c096495bd09946a9bd32231eff8cabb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "c096495bd09946a9bd32231eff8cabb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "c096495bd09946a9bd32231eff8cabb0.jpg", "file_size": 11555, "is_delete": false, "file_type": 1, "original_file_name": "456#134号色-L-XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c096495bd09946a9bd32231eff8cabb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c096495bd09946a9bd32231eff8cabb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c096495bd09946a9bd32231eff8cabb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/c096495bd09946a9bd32231eff8cabb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/c096495bd09946a9bd32231eff8cabb0.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p7ek_wnDpphyz0oTW4MgrAmkAPM=", "createTime": "2025-12-08 20:36:53"}] \N 1 1 \N t
2025-12-08 15:00:02.699337+00 2025-12-08 15:00:02.699341+00 2397 456#11-M-2XL码-RC23 SPMX-20251208786882 3.81 \N \N 1 \N [{"file_id": "96bffe51-6470-4bfb-8069-bf77645490bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "c99dddfa1c0749a1b7ea4b585869e523.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "c99dddfa1c0749a1b7ea4b585869e523.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "c99dddfa1c0749a1b7ea4b585869e523.jpg", "file_size": 11881, "is_delete": false, "file_type": 1, "original_file_name": "456#11号色-M-2XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c99dddfa1c0749a1b7ea4b585869e523.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c99dddfa1c0749a1b7ea4b585869e523.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c99dddfa1c0749a1b7ea4b585869e523.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/c99dddfa1c0749a1b7ea4b585869e523.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/c99dddfa1c0749a1b7ea4b585869e523.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ADWg4uJdKGWuhv-vN7wHm9CWb0U=", "createTime": "2025-12-08 20:36:50"}] \N 1 1 \N t
2025-12-08 15:00:02.700312+00 2025-12-08 15:00:02.700316+00 2398 456#11-L-XL码-RC23 SPMX-20251208786881 3.81 \N \N 1 \N [{"file_id": "a8190daa-e861-4633-b8b7-783fa58e67fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "aecc90bf02f444e1adff11e2b66a890d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "aecc90bf02f444e1adff11e2b66a890d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "aecc90bf02f444e1adff11e2b66a890d.jpg", "file_size": 11650, "is_delete": false, "file_type": 1, "original_file_name": "456#11号色-L-XL码-RC23~120克四面弹-151cmX381cm(印好后不得低于148cX374cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/aecc90bf02f444e1adff11e2b66a890d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/aecc90bf02f444e1adff11e2b66a890d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/aecc90bf02f444e1adff11e2b66a890d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/aecc90bf02f444e1adff11e2b66a890d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/aecc90bf02f444e1adff11e2b66a890d.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JE0OvQGoAaZnZibnlaHKx_9fIaY=", "createTime": "2025-12-08 20:36:47"}] \N 1 1 \N t
2025-12-08 15:00:02.701302+00 2025-12-08 15:00:02.701307+00 2399 455#绿-L-XL码-RC23 SPMX-20251208786880 3.75 \N \N 1 \N [{"file_id": "bab2aa58-3af9-46d2-8e42-9bc1135e1165", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "8d70bd2387b14e0a9375d502fbe193e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "8d70bd2387b14e0a9375d502fbe193e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "8d70bd2387b14e0a9375d502fbe193e3.jpg", "file_size": 15640, "is_delete": false, "file_type": 1, "original_file_name": "455#绿色-L-XL码-RC23~120克四面弹-151cmX375cm(印好后不得低于148cX368cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/8d70bd2387b14e0a9375d502fbe193e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/8d70bd2387b14e0a9375d502fbe193e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/8d70bd2387b14e0a9375d502fbe193e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/8d70bd2387b14e0a9375d502fbe193e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/8d70bd2387b14e0a9375d502fbe193e3.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mpmUtACZFE7Qw9do66BQc4VlbKA=", "createTime": "2025-12-08 20:36:41"}] \N 1 1 \N t
2025-12-08 15:00:02.702277+00 2025-12-08 15:00:02.702281+00 2400 455#500-M-2XL码-RC23 SPMX-20251208786879 3.72 \N \N 1 \N [{"file_id": "75a9815e-1e76-4fa4-a8b4-e826691684f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "b36d740468e94d53b4a0ef1c9a031a60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "b36d740468e94d53b4a0ef1c9a031a60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "b36d740468e94d53b4a0ef1c9a031a60.jpg", "file_size": 16339, "is_delete": false, "file_type": 1, "original_file_name": "455#500号色-M-2XL码-RC23~120克四面弹-151cmX372cm(印好后不得低于148cX365cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b36d740468e94d53b4a0ef1c9a031a60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b36d740468e94d53b4a0ef1c9a031a60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b36d740468e94d53b4a0ef1c9a031a60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/b36d740468e94d53b4a0ef1c9a031a60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/b36d740468e94d53b4a0ef1c9a031a60.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qc3Mrg_rmHbMWwKX34yfjTixHhs=", "createTime": "2025-12-08 20:36:25"}] \N 1 1 \N t
2025-12-08 15:00:02.703267+00 2025-12-08 15:00:02.703271+00 2401 455#-M-2XL码-RC23 SPMX-20251208786878 3.72 \N \N 1 \N [{"file_id": "b6e0a955-8025-4ce0-a1f2-426f2baf5b43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "644ec03c610241f3ba6058e08c51a768.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "644ec03c610241f3ba6058e08c51a768.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "644ec03c610241f3ba6058e08c51a768.jpg", "file_size": 15574, "is_delete": false, "file_type": 1, "original_file_name": "455#白色-M-2XL码-RC23~120克四面弹-151cmX372cm(印好后不得低于148cX365cm)-1段2件-佩套_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/644ec03c610241f3ba6058e08c51a768.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/644ec03c610241f3ba6058e08c51a768.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/644ec03c610241f3ba6058e08c51a768.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/644ec03c610241f3ba6058e08c51a768.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/644ec03c610241f3ba6058e08c51a768.jpg?e=1765292402&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O0tQ-rRM_a1NnzEUefvB8fj-e-I=", "createTime": "2025-12-08 20:36:17"}] \N 1 1 \N t
2025-12-08 16:00:01.792929+00 2025-12-08 16:00:01.79294+00 2402 2101127-RC23-205 SPMX-20251208787085 \N \N \N 1 \N [{"file_id": "17f2d709-32f5-40b5-9694-b60efcdd0cab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "af7fb960f0a941e39970016680e0cc2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "af7fb960f0a941e39970016680e0cc2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "af7fb960f0a941e39970016680e0cc2c.jpg", "file_size": 7057, "is_delete": false, "file_type": 1, "original_file_name": "2101127横条-RC23-低温205度~特美本白网布-门幅160-任调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/af7fb960f0a941e39970016680e0cc2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/af7fb960f0a941e39970016680e0cc2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/af7fb960f0a941e39970016680e0cc2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/af7fb960f0a941e39970016680e0cc2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/af7fb960f0a941e39970016680e0cc2c.jpg?e=1765296001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qmo0bnisCnMMWIomDtRNCjIyde8=", "createTime": "2025-12-08 23:47:37"}] \N 1 1 \N t
2025-12-08 16:00:01.794567+00 2025-12-08 16:00:01.794572+00 2403 2101127-RC23-205 SPMX-20251208787084 \N \N \N 1 \N [{"file_id": "3e2f62e9-2b75-41ee-bdf9-48ee7862c18e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "9f8f1c138894417481117297f11951fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "9f8f1c138894417481117297f11951fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "9f8f1c138894417481117297f11951fb.jpg", "file_size": 6544, "is_delete": false, "file_type": 1, "original_file_name": "2101127-RC23-低温205度~特美本白网布-门幅160-任调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9f8f1c138894417481117297f11951fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9f8f1c138894417481117297f11951fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9f8f1c138894417481117297f11951fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/9f8f1c138894417481117297f11951fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/9f8f1c138894417481117297f11951fb.jpg?e=1765296001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a5lnfeR3y4zuvq092WbcE4-CN1k=", "createTime": "2025-12-08 23:46:52"}] \N 1 1 \N t
2025-12-08 16:00:01.795701+00 2025-12-08 16:00:01.79571+00 2404 SMJ106#21RC23 SPMX-20251208787083 \N \N \N 1 \N [{"file_id": "1339ccf7-da33-4007-a4a4-13b6acc6460f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "c8aa603e918942b8905dba8eb1c4d708.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "c8aa603e918942b8905dba8eb1c4d708.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "c8aa603e918942b8905dba8eb1c4d708.jpg", "file_size": 35681, "is_delete": false, "file_type": 1, "original_file_name": "SMJ106#21号色RC23~沈孟军--兴画 斜纹磨毛 花调 RC23_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c8aa603e918942b8905dba8eb1c4d708.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c8aa603e918942b8905dba8eb1c4d708.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/c8aa603e918942b8905dba8eb1c4d708.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/c8aa603e918942b8905dba8eb1c4d708.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/c8aa603e918942b8905dba8eb1c4d708.jpg?e=1765296001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F08hPyg6hjtuSn5ABDzU3BV8gwQ=", "createTime": "2025-12-08 23:37:26"}] \N 1 1 \N t
2025-12-08 16:00:01.796785+00 2025-12-08 16:00:01.79679+00 2405 CSY68063#3XL-RC23---3XL-一段2件_170cmX246 SPMX-20251208787082 0.00 \N \N 1 \N [{"file_id": "1813a954-c275-4b9b-b630-453ba80642e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "9cf88e02c94f43e9926f3b57b514871a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "9cf88e02c94f43e9926f3b57b514871a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "9cf88e02c94f43e9926f3b57b514871a.jpg", "file_size": 16739, "is_delete": false, "file_type": 1, "original_file_name": "CSY68063#3XL-RC23-直贡呢--3XL-一段2件_170cmX246.00cm(印好不能低于167cmX241cm)佑套 - 副本_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9cf88e02c94f43e9926f3b57b514871a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9cf88e02c94f43e9926f3b57b514871a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/9cf88e02c94f43e9926f3b57b514871a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/9cf88e02c94f43e9926f3b57b514871a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/9cf88e02c94f43e9926f3b57b514871a.jpg?e=1765296001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EAjvxy2mvRMKI6SNsUDLhxOuf28=", "createTime": "2025-12-08 23:34:55"}] \N 1 1 \N t
2025-12-08 16:00:01.797851+00 2025-12-08 16:00:01.797856+00 2406 J798#RC23 SPMX-20251208787081 \N \N \N 1 \N [{"file_id": "deef7203-1c64-442b-8f77-fbd66ff55f71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "6073bf284fdf4bdbb90c910c5dcb2617.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "6073bf284fdf4bdbb90c910c5dcb2617.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "6073bf284fdf4bdbb90c910c5dcb2617.jpg", "file_size": 39788, "is_delete": false, "file_type": 1, "original_file_name": "J798#RC23~杰画-120G四面弹-幅宽151-RC23-永盛调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6073bf284fdf4bdbb90c910c5dcb2617.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6073bf284fdf4bdbb90c910c5dcb2617.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/6073bf284fdf4bdbb90c910c5dcb2617.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/6073bf284fdf4bdbb90c910c5dcb2617.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/6073bf284fdf4bdbb90c910c5dcb2617.jpg?e=1765296001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iT0A8k3Rv_epms08wiD77LM0tHE=", "createTime": "2025-12-08 23:30:48"}] \N 1 1 \N t
2025-12-08 16:00:01.798871+00 2025-12-08 16:00:01.798876+00 2407 H0141#rc23 SPMX-20251208787080 \N \N \N 1 \N [{"file_id": "480f7720-9a01-4ea8-8fc3-c379ba1d34f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "b34d02997ce7480a8f222e230fdf3e4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "b34d02997ce7480a8f222e230fdf3e4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "b34d02997ce7480a8f222e230fdf3e4c.jpg", "file_size": 33932, "is_delete": false, "file_type": 1, "original_file_name": "H0141#rc23~妍魅服饰-120g四面弹-幅宽151_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b34d02997ce7480a8f222e230fdf3e4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b34d02997ce7480a8f222e230fdf3e4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b34d02997ce7480a8f222e230fdf3e4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/b34d02997ce7480a8f222e230fdf3e4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/b34d02997ce7480a8f222e230fdf3e4c.jpg?e=1765296001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xEc-vQwr0UY0aOFWtrX5U43bLLY=", "createTime": "2025-12-08 23:21:44"}] \N 1 1 \N t
2025-12-08 16:00:01.799884+00 2025-12-08 16:00:01.799888+00 2408 J798# SPMX-20251208787079 \N \N \N 1 \N [{"file_id": "076e791e-7978-4caf-a8e2-474a7f71eeb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "ce61a463d6e3401f9cabfe3bc214459c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "ce61a463d6e3401f9cabfe3bc214459c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "ce61a463d6e3401f9cabfe3bc214459c.jpg", "file_size": 39291, "is_delete": false, "file_type": 1, "original_file_name": "J798#~杰画-120G四面弹-幅宽151-RC23-永盛调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ce61a463d6e3401f9cabfe3bc214459c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ce61a463d6e3401f9cabfe3bc214459c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/ce61a463d6e3401f9cabfe3bc214459c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/ce61a463d6e3401f9cabfe3bc214459c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/ce61a463d6e3401f9cabfe3bc214459c.jpg?e=1765296001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5DNlbvAWOE54qiGMEZNLQJrYb54=", "createTime": "2025-12-08 23:02:21"}] \N 1 1 \N t
2025-12-08 16:00:01.800866+00 2025-12-08 16:00:01.80087+00 2409 80124# SPMX-20251208787078 \N \N \N 1 \N [{"file_id": "477447ad-eb32-47e9-9ea3-ab29f5df0812", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "thumbnail_name": "b3b85fbb102443d7b49675580aa1ba6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251208/", "large_thumbnail_name": "b3b85fbb102443d7b49675580aa1ba6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251208/", "file_name": "b3b85fbb102443d7b49675580aa1ba6f.jpg", "file_size": 39535, "is_delete": false, "file_type": 1, "original_file_name": "80124#~杰画-120G四面弹-幅宽151-RC23-永盛调_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b3b85fbb102443d7b49675580aa1ba6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b3b85fbb102443d7b49675580aa1ba6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251208/b3b85fbb102443d7b49675580aa1ba6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251208/b3b85fbb102443d7b49675580aa1ba6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251208/b3b85fbb102443d7b49675580aa1ba6f.jpg?e=1765296001&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8wDcEee_6R4ylP0ZxZ-rQ9yezrc=", "createTime": "2025-12-08 23:02:06"}] \N 1 1 \N t
2025-12-08 17:00:01.209015+00 2025-12-08 17:00:01.209023+00 2410 210319#- SPMX-20251209787097 \N \N \N 1 \N [{"file_id": "a7da884c-e1ea-47f4-93cd-b55cda2904b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "thumbnail_name": "1ec02e61a1304f8c90fc68efee02a898.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "large_thumbnail_name": "1ec02e61a1304f8c90fc68efee02a898.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251209/", "file_name": "1ec02e61a1304f8c90fc68efee02a898.jpg", "file_size": 6756, "is_delete": false, "file_type": 1, "original_file_name": "210319#-大红渐变~城调-定位幅宽165-LWQ15-36A网布_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/1ec02e61a1304f8c90fc68efee02a898.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/1ec02e61a1304f8c90fc68efee02a898.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251209/1ec02e61a1304f8c90fc68efee02a898.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251209/1ec02e61a1304f8c90fc68efee02a898.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251209/1ec02e61a1304f8c90fc68efee02a898.jpg?e=1765299601&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l0tfPFhdqL7fGhocnrqufeX6rI4=", "createTime": "2025-12-09 00:45:31"}] \N 1 1 \N t
2025-12-08 17:00:01.210875+00 2025-12-08 17:00:01.210883+00 2411 WJM-8#RC23 SPMX-20251209787096 \N \N \N 1 \N [{"file_id": "25ea6d7d-f200-48cf-8833-8b5a3bf54b54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "thumbnail_name": "0860fdf484c541b486745f7c30b74212.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "large_thumbnail_name": "0860fdf484c541b486745f7c30b74212.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251209/", "file_name": "0860fdf484c541b486745f7c30b74212.jpg", "file_size": 19010, "is_delete": false, "file_type": 1, "original_file_name": "WJM-8#RC23~杰画-佳冕调-12月6日-牛奶丝双磨-幅宽170_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/0860fdf484c541b486745f7c30b74212.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/0860fdf484c541b486745f7c30b74212.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251209/0860fdf484c541b486745f7c30b74212.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251209/0860fdf484c541b486745f7c30b74212.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251209/0860fdf484c541b486745f7c30b74212.jpg?e=1765299601&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iun9hUlIYVjT96-knS-t95kUcjI=", "createTime": "2025-12-09 00:32:49"}] \N 1 1 \N t
2025-12-08 17:00:01.211998+00 2025-12-08 17:00:01.212002+00 2412 WJM-7#RC23 SPMX-20251209787095 \N \N \N 1 \N [{"file_id": "15ad9b80-03bf-484e-94b9-6422eb9eae92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "thumbnail_name": "be078dc53f1242858ba7ae77f9e079a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "large_thumbnail_name": "be078dc53f1242858ba7ae77f9e079a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251209/", "file_name": "be078dc53f1242858ba7ae77f9e079a3.jpg", "file_size": 18909, "is_delete": false, "file_type": 1, "original_file_name": "WJM-7#RC23~杰画-佳冕调-12月6日-牛奶丝双磨-幅宽170_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/be078dc53f1242858ba7ae77f9e079a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/be078dc53f1242858ba7ae77f9e079a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251209/be078dc53f1242858ba7ae77f9e079a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251209/be078dc53f1242858ba7ae77f9e079a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251209/be078dc53f1242858ba7ae77f9e079a3.jpg?e=1765299601&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9qTz5oLxQEO_nVsLVFXolDBAhGY=", "createTime": "2025-12-09 00:32:30"}] \N 1 1 \N t
2025-12-08 17:00:01.213049+00 2025-12-08 17:00:01.213056+00 2413 WJM-6#RC23 SPMX-20251209787094 \N \N \N 1 \N [{"file_id": "e2d8215a-ae10-427b-9198-aa6210c43f1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "thumbnail_name": "9d19865365844b8b9a83b8fbc30481ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "large_thumbnail_name": "9d19865365844b8b9a83b8fbc30481ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251209/", "file_name": "9d19865365844b8b9a83b8fbc30481ec.jpg", "file_size": 18991, "is_delete": false, "file_type": 1, "original_file_name": "WJM-6#RC23~杰画-佳冕调-12月6日-牛奶丝双磨-幅宽170_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/9d19865365844b8b9a83b8fbc30481ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/9d19865365844b8b9a83b8fbc30481ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251209/9d19865365844b8b9a83b8fbc30481ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251209/9d19865365844b8b9a83b8fbc30481ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251209/9d19865365844b8b9a83b8fbc30481ec.jpg?e=1765299601&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nwSlidno4EM9qjlw9mBe_mcy-so=", "createTime": "2025-12-09 00:32:13"}] \N 1 1 \N t
2025-12-08 17:00:01.214117+00 2025-12-08 17:00:01.214122+00 2414 WJM-5#RC23 SPMX-20251209787093 \N \N \N 1 \N [{"file_id": "5c2fcb91-858c-4e6e-b375-78ee81c4a560", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "thumbnail_name": "4cc44ca006474944bf7a4087af6ed93c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "large_thumbnail_name": "4cc44ca006474944bf7a4087af6ed93c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251209/", "file_name": "4cc44ca006474944bf7a4087af6ed93c.jpg", "file_size": 27286, "is_delete": false, "file_type": 1, "original_file_name": "WJM-5#RC23~杰画-佳冕调-12月6日-牛奶丝双磨-幅宽170_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/4cc44ca006474944bf7a4087af6ed93c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/4cc44ca006474944bf7a4087af6ed93c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251209/4cc44ca006474944bf7a4087af6ed93c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251209/4cc44ca006474944bf7a4087af6ed93c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251209/4cc44ca006474944bf7a4087af6ed93c.jpg?e=1765299601&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MczT4P7OQXz7MIPZ_WjrjxuBk1M=", "createTime": "2025-12-09 00:32:06"}] \N 1 1 \N t
2025-12-08 17:00:01.215175+00 2025-12-08 17:00:01.21518+00 2415 WJM-4#RC23 SPMX-20251209787092 \N \N \N 1 \N [{"file_id": "a5a60a79-8e4a-43ad-a006-8a232971f7a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "thumbnail_name": "49cfff2609704b01a9a8227469934343.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "large_thumbnail_name": "49cfff2609704b01a9a8227469934343.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251209/", "file_name": "49cfff2609704b01a9a8227469934343.jpg", "file_size": 9793, "is_delete": false, "file_type": 1, "original_file_name": "WJM-4#RC23~杰画-佳冕调-12月6日-牛奶丝双磨-幅宽170_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/49cfff2609704b01a9a8227469934343.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/49cfff2609704b01a9a8227469934343.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251209/49cfff2609704b01a9a8227469934343.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251209/49cfff2609704b01a9a8227469934343.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251209/49cfff2609704b01a9a8227469934343.jpg?e=1765299601&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fDAeHo0x6yFCGrl04O47fA675MU=", "createTime": "2025-12-09 00:31:38"}] \N 1 1 \N t
2025-12-08 17:00:01.216193+00 2025-12-08 17:00:01.216198+00 2416 WJM-9#RC23 SPMX-20251209787091 \N \N \N 1 \N [{"file_id": "8f3db066-853d-421f-a10e-ce178dd59421", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "thumbnail_name": "a3e75df442f64b20916d0bfa5b6ddf56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "large_thumbnail_name": "a3e75df442f64b20916d0bfa5b6ddf56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251209/", "file_name": "a3e75df442f64b20916d0bfa5b6ddf56.jpg", "file_size": 11312, "is_delete": false, "file_type": 1, "original_file_name": "WJM-9#RC23~200克牛奶丝双磨-宽幅170-刘灿画-RC23-永盛调-12-6日改大17_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/a3e75df442f64b20916d0bfa5b6ddf56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/a3e75df442f64b20916d0bfa5b6ddf56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251209/a3e75df442f64b20916d0bfa5b6ddf56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251209/a3e75df442f64b20916d0bfa5b6ddf56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251209/a3e75df442f64b20916d0bfa5b6ddf56.jpg?e=1765299601&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fTvhGEmA7pRg_DLLqcDRcGRDGrw=", "createTime": "2025-12-09 00:31:09"}] \N 1 1 \N t
2025-12-08 17:00:01.217193+00 2025-12-08 17:00:01.217197+00 2417 WJM-3#RC23---126--170 SPMX-20251209787090 \N \N \N 1 \N [{"file_id": "fa62c467-c12e-4310-8066-36b4709aa2b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "thumbnail_name": "0562d1cc1f3d45278bdbbce729dba933.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "large_thumbnail_name": "0562d1cc1f3d45278bdbbce729dba933.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251209/", "file_name": "0562d1cc1f3d45278bdbbce729dba933.jpg", "file_size": 32421, "is_delete": false, "file_type": 1, "original_file_name": "WJM-3#RC23-杰画-佳冕调-12月6日-牛奶丝双磨-幅宽170_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/0562d1cc1f3d45278bdbbce729dba933.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/0562d1cc1f3d45278bdbbce729dba933.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251209/0562d1cc1f3d45278bdbbce729dba933.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251209/0562d1cc1f3d45278bdbbce729dba933.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251209/0562d1cc1f3d45278bdbbce729dba933.jpg?e=1765299601&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q_JOccEnJnuevH3mW2BXxWx2VCw=", "createTime": "2025-12-09 00:30:56"}] \N 1 1 \N t
2025-12-08 17:00:01.218187+00 2025-12-08 17:00:01.218191+00 2418 WJM-2#RC23 SPMX-20251209787089 \N \N \N 1 \N [{"file_id": "2a82117c-5c76-4c09-b791-c01c85b64102", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "thumbnail_name": "289a296513fa4fe89fd18c31fd194682.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "large_thumbnail_name": "289a296513fa4fe89fd18c31fd194682.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251209/", "file_name": "289a296513fa4fe89fd18c31fd194682.jpg", "file_size": 26187, "is_delete": false, "file_type": 1, "original_file_name": "WJM-2#RC23~杰画-佳冕调-12月6日-牛奶丝双磨-幅宽170_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/289a296513fa4fe89fd18c31fd194682.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/289a296513fa4fe89fd18c31fd194682.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251209/289a296513fa4fe89fd18c31fd194682.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251209/289a296513fa4fe89fd18c31fd194682.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251209/289a296513fa4fe89fd18c31fd194682.jpg?e=1765299601&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_u2q9xjtpD_O5GIeU2HcRnLQ32M=", "createTime": "2025-12-09 00:29:36"}] \N 1 1 \N t
2025-12-08 17:00:01.21921+00 2025-12-08 17:00:01.219214+00 2419 WJM-1#RC23 SPMX-20251209787088 \N \N \N 1 \N [{"file_id": "97924866-4281-4ac3-ba17-665492753935", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "thumbnail_name": "e11c1b91a7d14f0c8f866c913070fb7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "large_thumbnail_name": "e11c1b91a7d14f0c8f866c913070fb7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251209/", "file_name": "e11c1b91a7d14f0c8f866c913070fb7d.jpg", "file_size": 23005, "is_delete": false, "file_type": 1, "original_file_name": "WJM-1#RC23~杰画-佳冕调-12月6日-牛奶丝双磨-幅宽170_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/e11c1b91a7d14f0c8f866c913070fb7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/e11c1b91a7d14f0c8f866c913070fb7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251209/e11c1b91a7d14f0c8f866c913070fb7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251209/e11c1b91a7d14f0c8f866c913070fb7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251209/e11c1b91a7d14f0c8f866c913070fb7d.jpg?e=1765299601&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zbkyxTAgURHGguPuhO2VdlcXzVo=", "createTime": "2025-12-09 00:29:17"}] \N 1 1 \N t
2025-12-08 17:00:01.220194+00 2025-12-08 17:00:01.220199+00 2420 WJM-9# SPMX-20251209787087 \N \N \N 1 \N [{"file_id": "cdac5b91-36b4-4e5b-86d7-9772085ecfee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "thumbnail_name": "c92430e17a3946578f48f2fd3cbc6a74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "large_thumbnail_name": "c92430e17a3946578f48f2fd3cbc6a74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251209/", "file_name": "c92430e17a3946578f48f2fd3cbc6a74.jpg", "file_size": 11373, "is_delete": false, "file_type": 1, "original_file_name": "WJM-9#~RC23-200克牛奶丝双磨-宽幅170-刘灿画-RC23-永盛调-12-6日改大17_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/c92430e17a3946578f48f2fd3cbc6a74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/c92430e17a3946578f48f2fd3cbc6a74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251209/c92430e17a3946578f48f2fd3cbc6a74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251209/c92430e17a3946578f48f2fd3cbc6a74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251209/c92430e17a3946578f48f2fd3cbc6a74.jpg?e=1765299601&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VZOFSTyeUAuZxgPY4PEOYeW4iXw=", "createTime": "2025-12-09 00:28:51"}] \N 1 1 \N t
2025-12-08 17:00:01.221171+00 2025-12-08 17:00:01.221175+00 2421 T0686#RC23 11RC23-11-25-120-150cm高280宽不少于147高不少于276- SPMX-20251209787086 \N \N \N 1 \N [{"file_id": "92a321af-891a-46a5-a81b-85bdf8d8d3c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "thumbnail_name": "13aac5a129604ec5b83b296df83f22dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20251209/", "large_thumbnail_name": "13aac5a129604ec5b83b296df83f22dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20251209/", "file_name": "13aac5a129604ec5b83b296df83f22dd.jpg", "file_size": 23994, "is_delete": false, "file_type": 1, "original_file_name": "T0686#RC23 1段1件城画盛峰调RC23-11-25-120克四面弹-定位150cm高280宽不少于147高不少于276-改_preview.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/13aac5a129604ec5b83b296df83f22dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20251209/13aac5a129604ec5b83b296df83f22dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20251209/13aac5a129604ec5b83b296df83f22dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20251209/13aac5a129604ec5b83b296df83f22dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20251209/13aac5a129604ec5b83b296df83f22dd.jpg?e=1765299601&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KiAimJI42Ui6_pt65ZSM9nwrPgc=", "createTime": "2025-12-09 00:15:07"}] \N 1 1 \N t
\.
--
-- Data for Name: basic_info_productcategory; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_productcategory (created_at, updated_at, id, name, description, product_prefix, merchant_id) FROM stdin;
2025-11-18 08:21:39.444624+00 2025-11-18 08:21:39.444631+00 1 \N RC 1
\.
--
-- Data for Name: basic_info_quickinput; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_quickinput (created_at, updated_at, id, name, value, "group") FROM stdin;
2025-11-18 08:23:24.813225+00 2025-11-18 08:23:24.813234+00 1
2025-11-18 09:48:48.101462+00 2025-11-18 09:48:48.10147+00 2
2025-11-18 15:31:25.825228+00 2025-11-18 15:31:25.825236+00 3
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-19 08:25:56.851308+00 2025-11-19 08:25:56.851316+00 9
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
\.
--
-- Data for Name: basic_info_supplier; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_supplier (created_at, updated_at, id, name, area, email, mobile, contact, description, merchant_id) FROM stdin;
2025-11-26 03:14:51.868499+00 2025-11-26 03:14:51.868508+00 1 123 \N \N \N \N 1
2025-12-01 09:04:05.64032+00 2025-12-01 09:04:05.640329+00 2 123 \N \N \N \N \N 1
\.
--
-- Data for Name: basic_info_userprofile; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_userprofile (created_at, updated_at, id, description, merchant_id, user_id) FROM stdin;
2025-11-24 03:12:45.2506+00 2025-11-24 03:12:45.250611+00 1 1 2
2025-11-24 05:45:22.720006+00 2025-11-24 05:45:22.720012+00 3 1 5
2025-11-24 06:08:19.191142+00 2025-11-24 06:08:19.191149+00 4 supersuper111 1 6
2025-11-24 06:16:49.714832+00 2025-11-24 06:16:49.714838+00 5 supersuper111 1 7
\.
--
-- Data for Name: basic_info_vehicletransportrecord; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_vehicletransportrecord (created_at, updated_at, id, driver_name, contact_number, license_plate, delivery_date, merchant_id, vehicle_type_id) FROM stdin;
\.
--
-- Data for Name: basic_info_vehicletype; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_vehicletype (created_at, updated_at, id, name, description, merchant_id) FROM stdin;
\.
--
-- Data for Name: basic_info_warehouse; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_warehouse (created_at, updated_at, id, name, location, contact, mobile, area, description, merchant_id, mode, type) FROM stdin;
2025-11-20 06:43:01.759659+00 2025-11-20 06:43:01.75967+00 3 2 13310001999 \N 1 1 2
2025-11-25 09:11:29.252782+00 2025-11-25 09:11:29.252792+00 4 \N \N \N \N \N 1 2 1
2025-11-20 06:42:36.740923+00 2025-11-25 10:18:01.333513+00 2 1 13310001999 \N 1 2 1
2025-12-01 09:17:21.481482+00 2025-12-01 09:17:21.481491+00 5 \N \N \N \N \N 1 3 1
\.
--
-- Data for Name: business_balancechangerecord; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_balancechangerecord (id, created_at, updated_at, target_type, source_type, source_id, delta, direction, balance_before, balance_after, request_id, remarks, extra_meta, offset_to, offset_at, offset_id, cancelled, cancelled_at, customer_id, merchant_id, supplier_id) FROM stdin;
1 2025-12-01 07:14:23.861513+00 2025-12-01 07:14:23.861518+00 2 2 2 500.00 1 -44.00 456.00 \N {} \N \N \N f \N 3 1 \N
2 2025-12-01 09:18:06.954809+00 2025-12-01 09:18:06.954817+00 1 5 1 -100.00 2 -50.00 -150.00 \N {} \N \N \N f \N \N 1 1
3 2025-12-01 09:32:33.706005+00 2025-12-01 09:32:33.70601+00 1 5 3 -200.00 2 -150.00 -350.00 \N {} \N \N \N f \N \N 1 1
4 2025-12-01 09:42:14.235539+00 2025-12-01 09:42:14.235547+00 2 6 1 -624.00 2 456.00 -168.00 \N {} \N \N \N f \N 3 1 \N
5 2025-12-01 09:43:48.630763+00 2025-12-01 09:43:48.630768+00 2 6 2 0.00 1 -168.00 -168.00 \N {} \N \N \N f \N 3 1 \N
6 2025-12-01 09:44:17.41201+00 2025-12-01 09:44:17.412015+00 2 6 3 0.00 1 -168.00 -168.00 \N {} \N \N \N f \N 3 1 \N
7 2025-12-01 09:45:03.243761+00 2025-12-01 09:45:03.243765+00 1 5 4 0.00 1 0.00 0.00 \N {} \N \N \N f \N \N 1 2
8 2025-12-01 09:48:45.339355+00 2025-12-01 09:48:45.339359+00 2 6 4 -390.00 2 -168.00 -558.00 \N {} \N \N \N f \N 3 1 \N
9 2025-12-01 09:57:08.746485+00 2025-12-01 09:57:08.746489+00 2 6 5 0.00 1 -558.00 -558.00 \N {} \N \N \N f \N 3 1 \N
10 2025-12-01 09:59:47.267842+00 2025-12-01 09:59:47.267846+00 2 6 6 0.00 1 -558.00 -558.00 \N {} \N \N \N f \N 3 1 \N
11 2025-12-01 10:11:13.484938+00 2025-12-01 10:11:13.484943+00 2 6 7 0.00 1 0.00 0.00 \N {} \N \N \N f \N 6 1 \N
12 2025-12-01 10:12:21.017421+00 2025-12-01 10:12:21.017426+00 2 6 8 0.00 1 0.00 0.00 \N {} \N \N \N f \N 6 1 \N
13 2025-12-03 09:49:17.730177+00 2025-12-03 09:49:17.730183+00 2 4 2 -558.00 2 -558.00 -1116.00 \N {} \N \N \N f \N 3 1 \N
\.
--
-- Data for Name: business_customerbalance; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_customerbalance (id, created_at, updated_at, balance, customer_id, merchant_id) FROM stdin;
2 2025-12-01 10:11:13.484115+00 2025-12-01 10:12:21.017087+00 0.00 6 1
1 2025-12-01 05:16:19.216069+00 2025-12-03 09:49:17.729699+00 -1116.00 3 1
\.
--
-- Data for Name: business_object; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_object (id, created_at, updated_at, name, description, process_id, content_type_id, object_id) FROM stdin;
1 2025-11-18 09:55:35.336835+00 2025-11-18 09:55:35.336842+00 1 \N \N
2 2025-11-18 09:58:01.451306+00 2025-11-18 09:58:01.451311+00 1 \N \N
3 2025-11-18 09:58:20.381316+00 2025-11-18 09:58:20.38132+00 1 \N \N
4 2025-11-18 10:03:03.629943+00 2025-11-18 10:03:03.629948+00 PrintingJob-1 1 1 \N \N
5 2025-11-18 10:09:47.339798+00 2025-11-18 10:09:47.339803+00 2 \N \N
6 2025-11-18 10:10:04.823874+00 2025-11-18 10:10:04.823879+00 2 \N \N
7 2025-11-18 10:10:55.526526+00 2025-11-18 10:10:55.526533+00 2 \N \N
8 2025-11-18 10:15:58.290203+00 2025-11-18 10:15:58.290207+00 PrintingJob-2 2 1 \N \N
9 2025-11-18 10:35:25.880305+00 2025-11-18 10:35:25.880312+00 2 \N \N
10 2025-11-18 10:42:48.817571+00 2025-11-18 10:42:48.817579+00 PrintingJob-3 3 1 \N \N
11 2025-11-18 10:42:48.848235+00 2025-11-18 10:42:48.84824+00 PrintingJob-4 4 1 \N \N
12 2025-11-19 01:44:43.687468+00 2025-11-19 01:44:43.687472+00 2 \N \N
13 2025-11-19 02:00:49.486776+00 2025-11-19 02:00:49.486782+00 2 \N \N
14 2025-11-19 02:00:59.586971+00 2025-11-19 02:00:59.586976+00 2 \N \N
15 2025-11-19 02:04:48.934697+00 2025-11-19 02:04:48.934703+00 2 \N \N
16 2025-11-19 05:10:28.186858+00 2025-11-19 05:10:28.186863+00 PrintingJob-5 5 1 \N \N
17 2025-11-19 06:16:00.259932+00 2025-11-19 06:16:00.259937+00 PrintingJob-6 6 1 \N \N
18 2025-11-19 08:21:50.459601+00 2025-11-19 08:21:50.459608+00 PrintingJob-7 7 1 \N \N
19 2025-11-19 09:28:09.461746+00 2025-11-19 09:28:09.461752+00 2 \N \N
20 2025-11-19 09:28:40.842389+00 2025-11-19 09:28:40.842394+00 2 \N \N
21 2025-11-20 01:52:49.286921+00 2025-11-20 01:52:49.286927+00 2 \N \N
22 2025-11-20 03:48:01.385016+00 2025-11-20 03:48:01.385022+00 2 \N \N
23 2025-11-20 03:49:28.254688+00 2025-11-20 03:49:28.254694+00 2 \N \N
24 2025-11-20 03:49:37.951494+00 2025-11-20 03:49:37.951499+00 1 \N \N
25 2025-11-20 06:55:48.528541+00 2025-11-20 06:55:48.528548+00 2 \N \N
26 2025-11-21 03:10:15.020199+00 2025-11-21 03:10:15.020203+00 PrintingJob-8 8 1 \N \N
27 2025-11-21 08:45:33.732267+00 2025-11-21 08:45:33.732274+00 2 \N \N
28 2025-11-22 02:39:05.939841+00 2025-11-22 02:39:05.939847+00 2 \N \N
29 2025-11-23 13:11:03.642075+00 2025-11-23 13:11:03.642082+00 2 \N \N
30 2025-11-24 11:33:15.711916+00 2025-11-24 11:33:15.711922+00 2 \N \N
31 2025-11-27 07:23:06.022961+00 2025-11-27 07:23:06.022966+00 2 \N \N
32 2025-11-27 08:08:49.410063+00 2025-11-27 08:08:49.41007+00 2 \N \N
33 2025-11-27 08:09:00.364914+00 2025-11-27 08:09:00.364921+00 2 \N \N
34 2025-11-27 09:01:25.14368+00 2025-11-27 09:01:25.143685+00 2 \N \N
35 2025-11-27 09:04:52.038687+00 2025-11-27 09:04:52.038695+00 2 \N \N
36 2025-11-28 01:32:58.420878+00 2025-11-28 01:32:58.420883+00 2 \N \N
37 2025-11-28 01:33:14.216478+00 2025-11-28 01:33:14.216483+00 2 \N \N
38 2025-11-28 01:43:59.359293+00 2025-11-28 01:43:59.359298+00 2 \N \N
39 2025-11-28 02:39:41.390748+00 2025-11-28 02:39:41.390755+00 2 \N \N
40 2025-11-28 02:57:18.735261+00 2025-11-28 02:57:18.735268+00 2 \N \N
41 2025-11-28 02:58:57.702444+00 2025-11-28 02:58:57.70245+00 2 \N \N
42 2025-11-28 07:03:43.810301+00 2025-11-28 07:03:43.810307+00 PrintingJob-9 9 1 \N \N
43 2025-11-28 07:03:53.866789+00 2025-11-28 07:03:53.866794+00 PrintingJob-10 10 1 \N \N
44 2025-12-01 02:54:14.237815+00 2025-12-01 02:54:14.23782+00 PrintingJob-11 11 1 \N \N
45 2025-12-03 03:52:58.983019+00 2025-12-03 03:52:58.983023+00 2 \N \N
46 2025-12-03 05:27:06.576434+00 2025-12-03 05:27:06.576439+00 2 \N \N
47 2025-12-04 05:45:26.825263+00 2025-12-04 05:45:26.825268+00 1 \N \N
48 2025-12-04 06:58:03.927422+00 2025-12-04 06:58:03.927427+00 2 \N \N
49 2025-12-04 09:22:03.034241+00 2025-12-04 09:22:03.034245+00 2 \N \N
50 2025-12-05 08:10:13.513895+00 2025-12-05 08:10:13.513899+00 2 \N \N
51 2025-12-05 08:58:42.07426+00 2025-12-05 08:58:42.074264+00 2 \N \N
52 2025-12-05 09:08:57.211508+00 2025-12-05 09:08:57.211515+00 PrintingJob-12 12 1 \N \N
53 2025-12-05 09:13:01.435639+00 2025-12-05 09:13:01.435645+00 2 \N \N
54 2025-12-05 10:36:45.72919+00 2025-12-05 10:36:45.729194+00 2 \N \N
55 2025-12-06 02:51:26.682163+00 2025-12-06 02:51:26.682171+00 PrintingJob-13 13 1 \N \N
56 2025-12-06 07:41:26.895247+00 2025-12-06 07:41:26.895251+00 9 \N \N
57 2025-12-08 05:02:11.853092+00 2025-12-08 05:02:11.853098+00 9 \N \N
58 2025-12-08 05:25:59.941691+00 2025-12-08 05:25:59.941695+00 2 \N \N
59 2025-12-08 05:29:21.259039+00 2025-12-08 05:29:21.259044+00 PrintingJob-14 14 1 \N \N
60 2025-12-08 06:18:14.446528+00 2025-12-08 06:18:14.446534+00 2 \N \N
61 2025-12-08 06:47:33.624101+00 2025-12-08 06:47:33.624106+00 2 \N \N
62 2025-12-08 06:51:25.850485+00 2025-12-08 06:51:25.850489+00 7 \N \N
63 2025-12-08 09:47:29.905244+00 2025-12-08 09:47:29.905252+00 2 \N \N
\.
--
-- Data for Name: business_paymentorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_paymentorder (created_at, updated_at, id, payment_date, amount, status, remarks, merchant_id, operator_id, supplier_id, bank_account_id, markup, discount_amount) FROM stdin;
2025-12-01 01:55:13.639087+00 2025-12-01 01:55:25.06472+00 1 2025-12-01 50.00 2 1 1 1 \N \N 0.00
\.
--
-- Data for Name: business_purchaseorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_purchaseorder (created_at, updated_at, id, remarks, merchant_id, supplier_id, kind, operator_id, purchase_date, status, warehouse_id) FROM stdin;
2025-11-27 08:13:33.430682+00 2025-11-27 08:13:33.430691+00 4 1 1 1 1 2025-11-27 2 2
2025-11-27 08:32:59.523809+00 2025-11-27 08:32:59.523816+00 5 1 1 1 1 2025-11-27 1 4
2025-11-28 03:45:15.401776+00 2025-11-28 03:45:15.401787+00 6 1 1 1 1 2025-11-28 1 2
2025-11-28 03:47:11.102159+00 2025-11-28 03:47:11.102166+00 7 1 1 1 1 2025-11-28 1 3
2025-11-28 03:48:02.675851+00 2025-11-28 03:48:02.675859+00 8 oooo 1 1 1 1 2025-11-28 1 4
2025-11-28 03:49:04.580215+00 2025-11-28 03:49:04.580224+00 9 1 1 1 1 2025-11-28 1 2
2025-11-28 06:18:30.813402+00 2025-11-28 06:18:30.813413+00 10 1 1 1 1 2025-11-28 1 3
2025-11-28 06:18:54.718044+00 2025-11-28 06:18:54.718052+00 11 1 1 1 1 2025-11-28 1 4
2025-11-28 06:20:58.855488+00 2025-11-28 06:20:58.855501+00 12 1 1 1 1 2025-11-28 1 2
2025-11-28 09:36:44.065913+00 2025-11-28 09:36:44.065931+00 13 1 1 1 1 2025-11-28 1 3
2025-11-28 09:46:59.206833+00 2025-11-28 10:01:26.242631+00 16 321 1 1 1 1 2025-11-28 2 2
2025-11-28 09:46:58.480885+00 2025-11-28 10:01:33.033156+00 15 321 1 1 1 1 2025-11-28 3 2
2025-11-28 09:43:18.385595+00 2025-11-28 10:01:37.03266+00 14 1 1 1 1 2025-11-28 2 3
2025-11-28 10:04:13.493174+00 2025-11-28 10:04:16.4849+00 17 1 1 1 1 2025-11-28 2 2
2025-11-28 10:07:18.063985+00 2025-11-28 10:07:47.233846+00 18 1 1 1 1 2025-11-28 3 3
2025-11-28 10:13:43.146475+00 2025-11-28 10:13:49.907567+00 19 1 1 1 1 2025-11-28 2 3
2025-11-29 03:45:48.453773+00 2025-11-29 03:45:48.453783+00 20 1 1 1 1 2025-11-29 1 2
2025-12-02 12:36:48.126532+00 2025-12-02 12:36:48.126543+00 21 1 1 1 1 2025-12-02 1 2
2025-12-03 03:56:11.087112+00 2025-12-03 03:56:11.087125+00 54 1 1 1 1 2025-12-03 1 2
2025-12-03 03:56:19.690904+00 2025-12-03 03:56:19.690918+00 55 1 1 1 1 2025-12-03 1 2
2025-12-03 03:56:28.601528+00 2025-12-03 03:56:28.601541+00 56 1 1 1 1 2025-12-03 1 2
2025-12-03 03:56:30.867937+00 2025-12-03 03:56:30.867946+00 57 1 1 1 1 2025-12-03 1 2
2025-12-03 06:13:55.769266+00 2025-12-03 06:13:55.769275+00 58 1 2 1 1 2025-12-03 1 2
\.
--
-- Data for Name: business_purchaseorderitem; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_purchaseorderitem (created_at, updated_at, id, price, color, quantity, unit, empty_diff_percent, quantity_of_rolls, num_of_rolls, batch_number, remarks, product_id, purchase_order_id, spec) FROM stdin;
2025-11-27 08:14:29.091796+00 2025-11-27 08:14:29.091805+00 1 555.00 25.00 3.34 200 1 1 1 4 \N
2025-11-27 08:35:24.029424+00 2025-11-27 08:48:57.608408+00 2 25.00 \N 100.00 5.00 \N 1 WWOODDP1 1 5 \N
2025-11-28 03:45:15.402492+00 2025-11-28 03:45:15.402496+00 3 0.00 \N 195.00 0.00 97,98 2 \N \N 1 6 \N
2025-11-28 03:47:11.102785+00 2025-11-28 03:47:11.10279+00 4 0.00 \N 195.00 0.00 97,98 2 \N \N 1 7 \N
2025-11-28 03:49:04.580819+00 2025-11-28 03:49:04.580824+00 5 0.00 \N 195.00 0.00 97,98 2 \N \N 1 9 \N
2025-11-28 06:18:30.814105+00 2025-11-28 06:18:30.814109+00 6 0.00 \N 195.00 0.00 97,98 2 \N \N 1 10 \N
2025-11-28 06:18:54.718646+00 2025-11-28 06:18:54.71865+00 7 0.00 \N 386.00 0.00 97,98,97,94 4 \N \N 1 11 \N
2025-11-28 06:20:58.85678+00 2025-11-28 06:20:58.856787+00 8 0.00 \N 195.00 0.00 97,98 2 \N \N 2 12 \N
2025-11-28 09:36:44.067188+00 2025-11-28 09:36:44.067196+00 9 0.50 123 195.00 123.00 97,98 2 123 123 1 13 \N
2025-11-28 09:43:18.386305+00 2025-11-28 09:43:18.386309+00 10 123.00 12312 123.00 123 3123.00 123 1 123 \N 1 14 \N
2025-11-28 09:46:58.48212+00 2025-11-28 09:46:58.482127+00 11 1.00 123 195.00 123.00 97,98 2 123 \N 1 15 \N
2025-11-28 09:46:59.207447+00 2025-11-28 09:46:59.207451+00 12 1.00 123 195.00 123.00 97,98 2 123 \N 1 16 \N
2025-11-28 10:04:13.493873+00 2025-11-28 10:04:13.493876+00 13 0.50 123 195.00 0.00 97,98 2 001 \N 3 17 123
2025-11-28 10:07:18.065014+00 2025-11-28 10:07:18.065022+00 14 0.50 123 390.00 0.00 97,98,97,98 4 123 \N 3 18 123
2025-11-28 10:13:43.147164+00 2025-11-28 10:13:43.147168+00 15 5.00 7 100.00 5.00 100 1 10 \N 3 19 123
2025-11-29 03:45:48.45446+00 2025-11-29 03:45:48.454465+00 16 123.00 123 195.00 3.00 97,98 2 3 \N 3 20 123
2025-12-02 12:36:48.127342+00 2025-12-02 12:36:48.127348+00 17 2.00 8 100.00 10.00 100 1 \N \N 3 21 \N
2025-12-03 03:56:11.089051+00 2025-12-03 03:56:11.089058+00 50 0.00 400.00 0.00 400 1 3 54
2025-12-03 03:56:19.692096+00 2025-12-03 03:56:19.692103+00 51 0.00 400.00 0.00 400 1 3 55
2025-12-03 03:56:28.602647+00 2025-12-03 03:56:28.602655+00 52 5.00 400.00 0.00 400 1 3 56
2025-12-03 03:56:30.86854+00 2025-12-03 03:56:30.868544+00 53 5.00 400.00 0.00 400 1 3 57
2025-12-03 06:13:55.769947+00 2025-12-03 06:13:55.769951+00 54 0.00 456.00 0.00 456 1 3 58
\.
--
-- Data for Name: business_purchasereturnorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_purchasereturnorder (created_at, updated_at, id, return_date, status, remarks, merchant_id, operator_id, purchase_order_id, supplier_id, warehouse_id) FROM stdin;
2025-12-01 09:20:04.438924+00 2025-12-01 09:20:04.438931+00 2 2025-12-01 1 1 1 \N 1 5
2025-12-01 09:32:27.47594+00 2025-12-01 09:32:33.704544+00 3 2025-12-01 2 1 1 \N 1 5
2025-12-01 09:44:59.206254+00 2025-12-01 09:45:03.241983+00 4 2025-12-01 2 1 1 \N 2 5
\.
--
-- Data for Name: business_purchasereturnorderitem; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_purchasereturnorderitem (created_at, updated_at, id, price, color, quantity, unit, spec, empty_diff_percent, quantity_of_rolls, num_of_rolls, consume_detail_ids, batch_number, remarks, product_id, purchase_return_order_id) FROM stdin;
2025-12-01 09:20:04.439567+00 2025-12-01 09:20:04.439571+00 2 2.00 \N 97.00 87 0.00 \N 78 \N \N \N 1 2
2025-12-01 09:32:27.476649+00 2025-12-01 09:32:27.476654+00 3 5.00 \N 40.00 5 5 0.00 \N 4 \N \N \N 3 3
2025-12-01 09:44:59.207496+00 2025-12-01 09:44:59.207503+00 4 0.00 \N 100.00 \N 0.00 \N 7 \N \N \N 3 4
\.
--
-- Data for Name: business_receiptorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_receiptorder (created_at, updated_at, id, receipt_date, amount, status, remarks, customer_id, merchant_id, operator_id, bank_account_id, markup, discount_amount) FROM stdin;
2025-12-01 05:25:23.458021+00 2025-12-01 05:25:28.550379+00 1 2025-12-01 50.00 2 3 1 1 \N \N 0.00
2025-12-03 09:49:12.497967+00 2025-12-03 09:49:17.728628+00 2 2025-12-03 500.00 2 3 1 1 \N \N 58.00
\.
--
-- Data for Name: business_salesorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_salesorder (created_at, updated_at, id, sales_date, kind, status, remarks, customer_id, merchant_id, operator_id, warehouse_id) FROM stdin;
2025-12-01 05:16:10.813394+00 2025-12-01 05:16:19.214771+00 1 2025-12-01 1 2 3 1 1 2
2025-12-01 07:14:19.694409+00 2025-12-01 07:14:23.860083+00 2 2025-12-01 1 2 3 1 1 2
\.
--
-- Data for Name: business_salesorderitem; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_salesorderitem (created_at, updated_at, id, price, color, quantity, unit, spec, empty_diff_percent, quantity_of_rolls, num_of_rolls, consume_detail_ids, batch_number, remarks, product_id, sales_order_id) FROM stdin;
2025-12-01 05:16:10.814184+00 2025-12-01 05:16:10.814191+00 1 2.00 \N 3.00 2 \N 0.00 \N 1 32 \N \N 1 1
2025-12-01 07:14:19.695088+00 2025-12-01 07:14:19.695092+00 2 500.00 \N 1.00 \N 0.00 \N 1 32 \N \N 3 2
\.
--
-- Data for Name: business_salesreturnorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_salesreturnorder (created_at, updated_at, id, return_date, status, remarks, customer_id, merchant_id, operator_id, sales_order_id, warehouse_id) FROM stdin;
2025-12-01 09:42:09.295062+00 2025-12-01 09:42:14.233208+00 1 2025-12-01 2 3 1 1 \N 5
2025-12-01 09:43:44.526305+00 2025-12-01 09:43:48.629461+00 2 2025-12-01 2 3 1 1 \N 5
2025-12-01 09:44:14.505321+00 2025-12-01 09:44:17.410631+00 3 2025-12-01 2 3 1 1 \N 5
2025-12-01 09:48:42.289556+00 2025-12-01 09:48:45.337907+00 4 2025-12-01 2 3 1 1 \N 4
2025-12-01 09:57:05.046178+00 2025-12-01 09:57:08.745026+00 5 2025-12-01 2 3 1 1 \N 5
2025-12-01 09:59:42.737084+00 2025-12-01 09:59:47.266487+00 6 2025-12-01 2 3 1 1 \N 5
2025-12-01 10:11:10.400379+00 2025-12-01 10:11:13.482943+00 7 2025-12-01 2 6 1 1 \N 5
2025-12-01 10:12:18.232395+00 2025-12-01 10:12:21.016059+00 8 2025-12-01 2 6 1 1 \N 5
\.
--
-- Data for Name: business_salesreturnorderitem; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_salesreturnorderitem (created_at, updated_at, id, price, color, quantity, unit, spec, empty_diff_percent, quantity_of_rolls, num_of_rolls, consume_detail_ids, batch_number, remarks, product_id, sales_return_order_id) FROM stdin;
2025-12-01 09:42:09.295958+00 2025-12-01 09:42:09.295963+00 1 8.00 \N 78.00 78 8 0.00 \N 1 \N \N \N 1 1
2025-12-01 09:43:44.526941+00 2025-12-01 09:43:44.526945+00 2 0.00 \N 78.00 \N 0.00 \N 1 \N \N \N 3 2
2025-12-01 09:44:14.505971+00 2025-12-01 09:44:14.505975+00 3 0.00 \N 100.00 \N 0.00 \N 1 \N \N \N 3 3
2025-12-01 09:48:42.290288+00 2025-12-01 09:48:42.290294+00 4 2.00 \N 195.00 \N 0.00 97,98 2 \N \N \N 3 4
2025-12-01 09:57:05.046891+00 2025-12-01 09:57:05.046896+00 5 0.00 \N 100.00 \N 0.00 \N 3 \N \N \N 3 5
2025-12-01 09:59:42.737733+00 2025-12-01 09:59:42.737738+00 6 0.00 \N 100.00 \N 0.00 \N 1 \N \N \N 3 6
2025-12-01 10:11:10.401108+00 2025-12-01 10:11:10.401113+00 7 0.00 \N 100.00 \N 0.00 \N 3 \N \N \N 2 7
2025-12-01 10:12:18.233066+00 2025-12-01 10:12:18.23307+00 8 0.00 \N 100.00 \N 0.00 \N 3 \N \N \N 3 8
\.
--
-- Data for Name: business_supplierbalance; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_supplierbalance (id, created_at, updated_at, balance, merchant_id, supplier_id) FROM stdin;
1 2025-12-01 01:55:25.065867+00 2025-12-01 09:32:33.705617+00 -350.00 1 1
2 2025-12-01 09:45:03.243057+00 2025-12-01 09:45:03.243439+00 0.00 1 2
\.
--
-- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin;
1 2025-11-18 05:59:33.764516+00 2 jimi 1 [{"added": {}}] 4 1
2 2025-11-18 05:59:53.386691+00 2 jimi 2 [{"changed": {"fields": ["User permissions"]}}] 4 1
3 2025-11-18 06:00:31.466055+00 1 1 [{"added": {}}] 7 1
4 2025-11-18 06:00:44.202936+00 1 1 [{"added": {}}] 8 1
5 2025-11-18 06:15:00.809879+00 1 () 1 [{"added": {}}] 31 1
6 2025-11-18 06:17:56.054095+00 2 () 1 [{"added": {}}] 31 1
7 2025-11-18 06:18:26.252531+00 3 () 1 [{"added": {}}] 31 1
8 2025-11-18 06:18:36.506619+00 4 () 1 [{"added": {}}] 31 1
9 2025-11-18 06:18:51.697773+00 5 () 1 [{"added": {}}] 31 1
10 2025-11-18 06:36:14.719914+00 6 () 1 [{"added": {}}] 31 1
11 2025-11-18 06:37:41.608909+00 7 () 1 [{"added": {}}] 31 1
12 2025-11-18 06:37:53.386955+00 8 () 1 [{"added": {}}] 31 1
13 2025-11-18 06:38:45.857424+00 9 () 1 [{"added": {}}] 31 1
14 2025-11-18 06:39:07.772669+00 10 () 1 [{"added": {}}] 31 1
15 2025-11-18 06:41:38.316225+00 11 () 1 [{"added": {}}] 31 1
16 2025-11-18 06:41:46.718822+00 12 () 1 [{"added": {}}] 31 1
17 2025-11-18 06:41:52.441714+00 13 () 1 [{"added": {}}] 31 1
18 2025-11-18 06:42:24.13544+00 1 1 [{"added": {}}] 29 1
19 2025-11-18 06:42:40.876823+00 2 1 [{"added": {}}] 29 1
20 2025-11-18 06:42:51.439077+00 3 1 [{"added": {}}] 29 1
21 2025-11-18 06:43:03.132987+00 4 1 [{"added": {}}] 29 1
22 2025-11-18 06:43:09.832876+00 5 1 [{"added": {}}] 29 1
23 2025-11-18 06:43:24.578356+00 6 1 [{"added": {}}] 29 1
24 2025-11-18 06:44:18.308781+00 1 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u5f85\\u6253\\u7eb8 (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u5f85\\u6eda\\u7b52 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u5f85\\u9001\\u8d27 (3)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u9001\\u8d27\\u5b8c\\u6210 (4)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u5f85\\u5f00\\u5355 (5)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u8ba2\\u5355\\u5b8c\\u7ed3 (6)"}}] 30 1
25 2025-11-18 07:03:18.962392+00 14 () 1 [{"added": {}}] 31 1
26 2025-11-18 07:04:21.326366+00 15 () 1 [{"added": {}}] 31 1
27 2025-11-18 07:04:40.367528+00 16 () 1 [{"added": {}}] 31 1
28 2025-11-18 07:04:50.258605+00 17 1 [{"added": {}}] 31 1
29 2025-11-18 07:05:16.159648+00 17 () 2 [{"changed": {"fields": ["\\u53c2\\u6570\\u952e", "\\u53c2\\u6570\\u503c"]}}] 31 1
30 2025-11-18 07:06:26.838863+00 18 () 1 [{"added": {}}] 31 1
31 2025-11-18 07:06:40.088982+00 19 () 1 [{"added": {}}] 31 1
32 2025-11-18 07:07:20.127062+00 20 () 1 [{"added": {}}] 31 1
33 2025-11-18 07:07:31.519147+00 21 () 1 [{"added": {}}] 31 1
34 2025-11-18 07:09:18.686085+00 15 () 2 [{"changed": {"fields": ["\\u53c2\\u6570\\u952e", "\\u53c2\\u6570\\u503c"]}}] 31 1
35 2025-11-18 07:10:11.825565+00 22 () 1 [{"added": {}}] 31 1
36 2025-11-18 07:33:51.375829+00 23 test_param_001 3 31 1
37 2025-11-18 07:58:28.856338+00 24 test_param_002 3 31 1
38 2025-11-18 08:05:17.209889+00 51 (, , ) 3 31 1
39 2025-11-18 08:05:17.20991+00 50 (, , ) 3 31 1
40 2025-11-18 08:05:17.209918+00 49 (, , ) 3 31 1
41 2025-11-18 08:05:17.209925+00 48 (, , ) 3 31 1
42 2025-11-18 08:05:17.209931+00 47 (, , ) 3 31 1
43 2025-11-18 08:05:17.209937+00 46 (, , ) 3 31 1
44 2025-11-18 08:05:17.209943+00 45 (, , ) 3 31 1
45 2025-11-18 08:05:17.209949+00 44 (, , ) 3 31 1
46 2025-11-18 08:05:17.209955+00 43 (, , ) 3 31 1
47 2025-11-18 08:08:01.156317+00 27 () 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1
48 2025-11-18 08:08:06.425919+00 36 () 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1
49 2025-11-18 08:08:10.055754+00 54 () 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1
50 2025-11-18 08:08:14.833679+00 63 () 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1
51 2025-11-18 08:08:18.605846+00 72 () 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1
52 2025-11-18 08:08:51.909492+00 81 (P图) 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1
53 2025-11-18 08:12:38.122506+00 7 1 [{"added": {}}] 29 1
54 2025-11-18 08:12:47.851618+00 8 1 [{"added": {}}] 29 1
55 2025-11-18 08:13:08.01894+00 9 1 [{"added": {}}] 29 1
56 2025-11-18 08:13:23.681664+00 10 1 [{"added": {}}] 29 1
57 2025-11-18 08:13:31.884636+00 11 P图 1 [{"added": {}}] 29 1
58 2025-11-18 08:13:40.578384+00 12 1 [{"added": {}}] 29 1
59 2025-11-18 08:13:49.183222+00 13 1 [{"added": {}}] 29 1
60 2025-11-18 08:14:45.362321+00 12 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
61 2025-11-18 08:15:12.813968+00 13 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
62 2025-11-18 10:09:07.215232+00 2 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248 -> \\u753b\\u56fe (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248 -> \\u8c03\\u8272 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248 -> \\u5957\\u6837 (3)"}}] 30 1
63 2025-11-18 10:13:04.721271+00 2 2 [] 30 1
64 2025-11-18 10:13:23.903652+00 2 2 [{"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248 -> \\u627e\\u56fe (4)"}}] 30 1
65 2025-11-19 01:45:36.045179+00 8 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0"]}}] 29 1
66 2025-11-19 01:45:39.684091+00 2 2 [] 30 1
67 2025-11-19 02:13:50.033205+00 14 1 [{"added": {}}] 29 1
68 2025-11-19 02:14:21.623907+00 2 2 [{"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248 -> \\u4efb\\u52a1\\u5b8c\\u6210 (5)"}}] 30 1
69 2025-11-19 08:12:47.374521+00 3 1 [{"added": {}}] 4 1
70 2025-11-19 08:14:04.719762+00 3 2 [{"changed": {"fields": ["User permissions"]}}] 4 1
71 2025-11-19 08:14:37.879969+00 2 1 [{"added": {}}] 8 1
72 2025-11-20 05:39:43.3355+00 1 1 [{"added": {}}] 3 1
73 2025-11-20 06:06:12.752762+00 1 3 3 1
74 2025-11-20 06:10:02.468122+00 2 1 [{"added": {}}] 36 1
75 2025-11-20 06:10:09.964149+00 1 2 [{"changed": {"fields": ["\\u804c\\u4f4d"]}}] 8 1
76 2025-11-20 06:10:14.372307+00 2 2 [{"changed": {"fields": ["\\u804c\\u4f4d"]}}] 8 1
77 2025-11-20 06:42:36.741573+00 2 1 [{"added": {}}] 17 1
78 2025-11-20 06:43:01.760474+00 3 1 [{"added": {}}] 17 1
79 2025-11-20 07:53:27.081642+00 1 1 - 1 [{"added": {}}] 20 1
80 2025-11-20 07:53:51.401153+00 1 1 - 3 20 1
81 2025-11-20 07:54:03.431107+00 2 2 - 1 [{"added": {}}] 20 1
82 2025-11-20 07:54:28.235099+00 1 1 - ID: 2 1 [{"added": {}}] 21 1
83 2025-11-20 08:00:58.976268+00 3 3 - 1 [{"added": {}}] 20 1
84 2025-11-20 08:01:23.823488+00 2 2 - ID: 3 1 [{"added": {}}] 21 1
85 2025-11-20 08:02:18.095284+00 4 4 - 1 [{"added": {}}] 20 1
86 2025-11-20 08:02:47.394849+00 3 3 - ID: 4 1 [{"added": {}}] 21 1
87 2025-11-24 03:12:45.251366+00 1 jimi's Profile 1 [{"added": {}}] 37 1
88 2025-11-24 03:13:33.181153+00 2 映雪's Profile 1 [{"added": {}}] 37 1
89 2025-11-24 03:16:35.368619+00 2 's Profile 3 37 1
90 2025-11-24 06:15:31.40043+00 2 jimi 2 [{"changed": {"fields": ["User permissions", "Last login"]}}] 4 1
91 2025-11-24 09:16:10.732374+00 2 jimi 2 [{"changed": {"fields": ["User permissions"]}}] 4 1
92 2025-11-25 06:12:23.660069+00 2 jimi 2 [{"changed": {"fields": ["User permissions"]}}] 4 1
93 2025-11-25 09:20:41.470473+00 9 出入库记录 9 - 仓库:中大 1 [{"added": {}}] 20 1
94 2025-11-25 09:21:02.981897+00 25 库存变动明细 25 - 记录ID: 9 1 [{"added": {}}] 21 1
95 2025-11-25 09:28:40.652361+00 10 出入库记录 10 - 仓库:中大 1 [{"added": {}}] 20 1
96 2025-11-25 09:28:55.964661+00 26 库存变动明细 26 - 记录ID: 10 1 [{"added": {}}] 21 1
97 2025-11-25 10:12:01.371549+00 11 出入库记录 11 - 仓库:中大 1 [{"added": {}}] 20 1
98 2025-11-25 10:12:41.75256+00 27 库存变动明细 27 - 记录ID: 11 1 [{"added": {}}] 21 1
99 2025-11-25 10:12:59.643169+00 27 库存变动明细 27 - 记录ID: 11 2 [{"changed": {"fields": ["\\u6240\\u6d88\\u8017\\u7684\\u5165\\u5e93\\u660e\\u7ec6"]}}] 21 1
100 2025-11-27 08:08:36.5688+00 13 出入库记录 13 - 仓库:中大 3 20 1
101 2025-11-27 08:09:43.222937+00 3 采购订单 3 - 测试 3 38 1
102 2025-11-27 08:09:43.222962+00 2 采购订单 2 - 测试 3 38 1
103 2025-11-27 08:09:43.222973+00 1 采购订单 1 - 测试 3 38 1
104 2025-11-27 08:13:33.431382+00 4 采购订单 4 - 测试 1 [{"added": {}}] 38 1
105 2025-11-27 08:14:29.09261+00 1 PurchaseOrderItem object (1) 1 [{"added": {}}] 39 1
106 2025-11-27 08:32:59.524449+00 5 采购订单 5 - 测试 1 [{"added": {}}] 38 1
107 2025-11-27 08:35:24.030068+00 2 PurchaseOrderItem object (2) 1 [{"added": {}}] 39 1
108 2025-11-27 08:35:32.980517+00 2 PurchaseOrderItem object (2) 2 [{"changed": {"fields": ["\\u7a7a\\u5dee\\u767e\\u5206\\u6bd4"]}}] 39 1
109 2025-11-27 08:48:57.608904+00 2 PurchaseOrderItem object (2) 2 [{"changed": {"fields": ["\\u6279\\u6b21\\u53f7"]}}] 39 1
110 2025-11-28 03:48:02.676475+00 8 采购订单 8 - 测试 1 [{"added": {}}] 38 1
111 2025-11-28 06:03:02.925051+00 1 瑞彩印花 - auto_create_stock_tasks 1 [{"added": {}}] 40 1
112 2025-11-28 06:03:10.044445+00 1 瑞彩印花 - auto_create_stock_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u503c"]}}] 40 1
113 2025-11-28 06:04:43.402849+00 1 瑞彩印花 - auto_create_stock_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u503c(\\u5e03\\u5c14\\u503c)"]}}] 40 1
114 2025-11-28 06:09:27.417148+00 1 瑞彩印花 - auto_create_stock_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u7c7b\\u578b"]}}] 40 1
115 2025-11-28 06:12:01.751881+00 1 瑞彩印花 - auto_create_stock_change_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u9879"]}}] 40 1
116 2025-11-28 06:20:38.986097+00 1 瑞彩印花 - auto_create_stock_change_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u503c(\\u5e03\\u5c14\\u503c)"]}}] 40 1
117 2025-11-28 08:30:04.435918+00 1 瑞彩印花 - auto_create_stock_change_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u503c(\\u5e03\\u5c14\\u503c)"]}}] 40 1
118 2025-12-01 09:19:58.758174+00 1 采购退货 1 - 测试 3 48 1
119 2025-12-03 05:16:57.767071+00 80019 PlateOrder-80019 2 [{"changed": {"fields": ["\\u4e0b\\u7248\\u65f6\\u95f4", "\\u5f00\\u7248\\u56fe", "\\u5b8c\\u6210\\u65f6\\u95f4"]}}] 28 1
120 2025-12-03 05:17:18.085335+00 80018 PlateOrder-80018 2 [{"changed": {"fields": ["\\u4e0b\\u7248\\u65f6\\u95f4", "\\u5f00\\u7248\\u56fe", "\\u8981\\u6c42\\u5b8c\\u6210\\u65f6\\u95f4", "\\u5b8c\\u6210\\u65f6\\u95f4"]}}] 28 1
121 2025-12-03 05:17:32.438309+00 80017 PlateOrder-80017 2 [{"changed": {"fields": ["\\u4e0b\\u7248\\u65f6\\u95f4", "\\u5f00\\u7248\\u56fe", "\\u5b8c\\u6210\\u65f6\\u95f4"]}}] 28 1
122 2025-12-03 05:17:47.71918+00 80014 PlateOrder-80014 2 [{"changed": {"fields": ["\\u5f00\\u7248\\u56fe"]}}] 28 1
123 2025-12-03 05:18:07.777373+00 80013 PlateOrder-80013 2 [{"changed": {"fields": ["\\u5f00\\u7248\\u56fe"]}}] 28 1
124 2025-12-04 05:58:04.805118+00 14 StateFlowRecord object (14) 3 34 1
125 2025-12-04 05:58:04.805141+00 15 StateFlowRecord object (15) 3 34 1
126 2025-12-04 05:58:04.805155+00 16 StateFlowRecord object (16) 3 34 1
127 2025-12-04 05:58:04.805164+00 17 StateFlowRecord object (17) 3 34 1
128 2025-12-04 05:58:04.805173+00 18 StateFlowRecord object (18) 3 34 1
129 2025-12-04 05:58:04.805181+00 19 StateFlowRecord object (19) 3 34 1
130 2025-12-04 05:58:04.805189+00 20 StateFlowRecord object (20) 3 34 1
131 2025-12-04 05:58:51.397979+00 27 StateFlowRecord object (27) 3 34 1
132 2025-12-04 05:58:51.398+00 29 StateFlowRecord object (29) 3 34 1
133 2025-12-04 05:58:51.39801+00 30 StateFlowRecord object (30) 3 34 1
134 2025-12-04 05:58:51.398019+00 31 StateFlowRecord object (31) 3 34 1
135 2025-12-04 05:58:51.398028+00 32 StateFlowRecord object (32) 3 34 1
136 2025-12-04 05:58:51.398036+00 33 StateFlowRecord object (33) 3 34 1
137 2025-12-04 05:58:51.398044+00 34 StateFlowRecord object (34) 3 34 1
138 2025-12-04 05:58:51.398052+00 35 StateFlowRecord object (35) 3 34 1
139 2025-12-04 05:58:51.398059+00 36 StateFlowRecord object (36) 3 34 1
140 2025-12-04 05:58:51.398067+00 37 StateFlowRecord object (37) 3 34 1
141 2025-12-04 05:59:00.98459+00 43 StateFlowRecord object (43) 3 34 1
142 2025-12-04 05:59:00.984609+00 44 StateFlowRecord object (44) 3 34 1
143 2025-12-04 05:59:00.984619+00 45 StateFlowRecord object (45) 3 34 1
144 2025-12-04 05:59:00.984627+00 46 StateFlowRecord object (46) 3 34 1
145 2025-12-04 05:59:00.984635+00 47 StateFlowRecord object (47) 3 34 1
146 2025-12-04 05:59:00.984643+00 48 StateFlowRecord object (48) 3 34 1
147 2025-12-04 05:59:00.984651+00 49 StateFlowRecord object (49) 3 34 1
148 2025-12-04 05:59:00.984659+00 50 StateFlowRecord object (50) 3 34 1
149 2025-12-04 05:59:00.984668+00 51 StateFlowRecord object (51) 3 34 1
150 2025-12-04 05:59:00.984677+00 52 StateFlowRecord object (52) 3 34 1
151 2025-12-04 05:59:00.984685+00 53 StateFlowRecord object (53) 3 34 1
152 2025-12-04 05:59:00.984692+00 54 StateFlowRecord object (54) 3 34 1
153 2025-12-04 05:59:08.461159+00 13 StateFlowRecord object (13) 3 34 1
154 2025-12-04 06:00:00.766402+00 14 PlateOrder-14 3 28 1
155 2025-12-04 06:00:00.766438+00 13 PlateOrder-13 3 28 1
156 2025-12-04 06:00:00.766459+00 12 PlateOrder-12 3 28 1
157 2025-12-04 06:00:00.766478+00 11 PlateOrder-11 3 28 1
158 2025-12-04 06:00:00.766495+00 10 PlateOrder-10 3 28 1
159 2025-12-04 06:00:00.766512+00 9 PlateOrder-9 3 28 1
160 2025-12-04 06:00:00.766528+00 8 PlateOrder-8 3 28 1
161 2025-12-04 06:00:00.766545+00 7 PlateOrder-7 3 28 1
162 2025-12-04 06:00:00.766561+00 6 PlateOrder-6 3 28 1
163 2025-12-04 06:00:00.766577+00 5 PlateOrder-5 3 28 1
164 2025-12-04 06:00:00.766594+00 4 PlateOrder-4 3 28 1
165 2025-12-04 06:00:00.76661+00 3 PlateOrder-3 3 28 1
166 2025-12-04 06:00:00.766626+00 2 PlateOrder-2 3 28 1
167 2025-12-04 06:00:00.766642+00 1 PlateOrder-1 3 28 1
168 2025-12-04 06:00:07.792671+00 80021 PlateOrder-80021 3 28 1
169 2025-12-04 06:00:07.792692+00 80020 PlateOrder-80020 3 28 1
170 2025-12-04 06:00:07.792702+00 80019 PlateOrder-80019 3 28 1
171 2025-12-04 06:00:07.792711+00 80018 PlateOrder-80018 3 28 1
172 2025-12-04 06:00:07.792719+00 80017 PlateOrder-80017 3 28 1
173 2025-12-04 06:00:07.792727+00 80016 PlateOrder-80016 3 28 1
174 2025-12-04 06:00:07.792734+00 80015 PlateOrder-80015 3 28 1
175 2025-12-04 06:00:07.792742+00 80014 PlateOrder-80014 3 28 1
176 2025-12-04 06:00:07.792753+00 80013 PlateOrder-80013 3 28 1
177 2025-12-04 06:00:07.792761+00 80012 PlateOrder-80012 3 28 1
178 2025-12-04 06:00:07.792768+00 80011 PlateOrder-80011 3 28 1
179 2025-12-04 06:00:07.792777+00 80010 PlateOrder-80010 3 28 1
180 2025-12-04 06:00:07.792784+00 80009 PlateOrder-80009 3 28 1
181 2025-12-04 06:00:07.792794+00 80008 PlateOrder-80008 3 28 1
182 2025-12-04 06:00:07.792801+00 80007 PlateOrder-80007 3 28 1
183 2025-12-04 06:00:07.792808+00 80006 PlateOrder-80006 3 28 1
184 2025-12-04 06:00:07.792815+00 80005 PlateOrder-80005 3 28 1
185 2025-12-04 06:00:07.792823+00 80004 PlateOrder-80004 3 28 1
186 2025-12-04 06:00:07.79283+00 80003 PlateOrder-80003 3 28 1
187 2025-12-04 06:00:07.792838+00 80002 PlateOrder-80002 3 28 1
188 2025-12-04 06:00:07.792845+00 80001 PlateOrder-80001 3 28 1
189 2025-12-04 06:00:07.792852+00 80000 PlateOrder-80000 3 28 1
190 2025-12-04 06:03:10.813607+00 8 文华 1 [{"added": {}}] 4 1
191 2025-12-04 06:04:24.664673+00 2 跟单组 1 [{"added": {}}] 3 1
192 2025-12-04 06:04:46.38668+00 8 文华 2 [{"changed": {"fields": ["password"]}}] 4 1
193 2025-12-04 06:05:00.947287+00 8 文华 2 [{"changed": {"fields": ["Groups"]}}] 4 1
194 2025-12-04 06:05:26.803499+00 9 丹红 1 [{"added": {}}] 4 1
195 2025-12-04 06:06:13.059226+00 10 杨淑滢 1 [{"added": {}}] 4 1
196 2025-12-04 06:09:42.479841+00 11 翟中灿 1 [{"added": {}}] 4 1
197 2025-12-04 06:10:36.946745+00 12 赖晖怡 1 [{"added": {}}] 4 1
198 2025-12-04 06:11:08.588869+00 13 陈珍 1 [{"added": {}}] 4 1
199 2025-12-04 06:11:40.986802+00 14 陈紫莹 1 [{"added": {}}] 4 1
200 2025-12-04 06:12:00.816439+00 15 静云 1 [{"added": {}}] 4 1
201 2025-12-04 06:12:32.529988+00 3 下单组 1 [{"added": {}}] 3 1
202 2025-12-04 06:13:02.471908+00 16 蕙婷 1 [{"added": {}}] 4 1
203 2025-12-04 06:13:30.205956+00 17 丽容 1 [{"added": {}}] 4 1
204 2025-12-04 06:13:48.637582+00 18 春香 1 [{"added": {}}] 4 1
205 2025-12-04 06:14:51.277542+00 9 丹红 2 [{"changed": {"fields": ["Groups"]}}] 4 1
206 2025-12-04 06:15:27.905908+00 17 丽容 2 [{"changed": {"fields": ["Groups"]}}] 4 1
207 2025-12-04 06:15:54.180065+00 3 映雪 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1
208 2025-12-04 06:16:02.790159+00 18 春香 2 [{"changed": {"fields": ["Groups"]}}] 4 1
209 2025-12-04 06:16:10.327917+00 3 映雪 2 [{"changed": {"fields": ["Groups"]}}] 4 1
210 2025-12-04 06:16:24.469866+00 10 杨淑滢 2 [{"changed": {"fields": ["Groups"]}}] 4 1
211 2025-12-04 06:16:36.368117+00 11 翟中灿 2 [{"changed": {"fields": ["Groups"]}}] 4 1
212 2025-12-04 06:16:45.469882+00 16 蕙婷 2 [{"changed": {"fields": ["Groups"]}}] 4 1
213 2025-12-04 06:16:52.139717+00 12 赖晖怡 2 [{"changed": {"fields": ["Groups"]}}] 4 1
214 2025-12-04 06:17:06.104218+00 13 陈珍 2 [{"changed": {"fields": ["Groups"]}}] 4 1
215 2025-12-04 06:17:33.163198+00 14 陈紫莹 2 [{"changed": {"fields": ["Groups"]}}] 4 1
216 2025-12-04 06:17:53.370956+00 15 静云 2 [{"changed": {"fields": ["Groups"]}}] 4 1
217 2025-12-04 06:20:29.465374+00 7 丹红 1 [{"added": {}}] 8 1
218 2025-12-04 06:20:54.860085+00 8 丽容 1 [{"added": {}}] 8 1
219 2025-12-04 06:21:06.867101+00 8 下单员 1 [{"added": {}}] 36 1
220 2025-12-04 06:22:16.679552+00 8 丽容 2 [{"changed": {"fields": ["\\u804c\\u4f4d"]}}] 8 1
221 2025-12-04 06:22:59.122471+00 9 文华 1 [{"added": {}}] 8 1
222 2025-12-04 06:23:18.893544+00 10 春香 1 [{"added": {}}] 8 1
223 2025-12-04 06:27:04.006256+00 11 杨淑滢 1 [{"added": {}}] 8 1
224 2025-12-04 06:27:36.45504+00 12 翟中灿 1 [{"added": {}}] 8 1
225 2025-12-04 06:28:11.770886+00 13 蕙婷 1 [{"added": {}}] 8 1
226 2025-12-04 06:28:36.096217+00 14 赖晖怡 1 [{"added": {}}] 8 1
227 2025-12-04 06:28:57.226881+00 15 陈珍 1 [{"added": {}}] 8 1
228 2025-12-04 06:29:22.663647+00 16 陈紫莹 1 [{"added": {}}] 8 1
229 2025-12-04 06:29:45.849846+00 17 静云 1 [{"added": {}}] 8 1
230 2025-12-04 06:54:45.095545+00 7 画图完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u72b6\\u6001\\u63cf\\u8ff0"]}}] 29 1
231 2025-12-04 06:55:42.049402+00 15 画图中 1 [{"added": {}}] 29 1
232 2025-12-04 06:55:54.341624+00 7 画图完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
233 2025-12-04 06:56:14.655015+00 8 调色完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
234 2025-12-04 06:56:50.978761+00 16 调色中 1 [{"added": {}}] 29 1
235 2025-12-04 06:57:31.013443+00 2 开版() 2 [{"changed": {"fields": ["\\u6d41\\u7a0b\\u540d\\u79f0"]}}, {"changed": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248() -> \\u753b\\u56fe\\u4e2d (1)", "fields": ["\\u8282\\u70b9"]}}, {"changed": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248() -> \\u753b\\u56fe\\u5b8c\\u6210 (2)", "fields": ["\\u8282\\u70b9"]}}, {"changed": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248() -> \\u8c03\\u8272\\u4e2d (3)", "fields": ["\\u8282\\u70b9"]}}, {"changed": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248() -> \\u8c03\\u8272\\u5b8c\\u6210 (4)", "fields": ["\\u8282\\u70b9"]}}] 30 1
236 2025-12-04 06:57:43.402147+00 2 开版(画图调色) 2 [{"changed": {"fields": ["\\u6d41\\u7a0b\\u540d\\u79f0"]}}] 30 1
237 2025-12-04 07:02:16.913261+00 9 套样完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u72b6\\u6001\\u63cf\\u8ff0", "\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
238 2025-12-04 07:02:44.451281+00 17 套样中 1 [{"added": {}}] 29 1
239 2025-12-04 07:03:57.280047+00 3 开版(画图调色套样) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u753b\\u56fe\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u753b\\u56fe\\u5b8c\\u6210 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u8c03\\u8272\\u4e2d (3)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u8c03\\u8272\\u5b8c\\u6210 (4)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u5957\\u6837\\u4e2d (5)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u5957\\u6837\\u5b8c\\u6210 (6)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u4efb\\u52a1\\u5b8c\\u6210 (7)"}}] 30 1
240 2025-12-04 07:04:19.375715+00 2 开版(画图调色) 2 [{"changed": {"fields": ["\\u6d41\\u7a0b\\u63cf\\u8ff0"]}}] 30 1
241 2025-12-04 07:06:31.844288+00 4 套大货 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5957\\u5927\\u8d27 -> \\u5957\\u6837\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5957\\u5927\\u8d27 -> \\u5957\\u6837\\u5b8c\\u6210 (2)"}}] 30 1
242 2025-12-04 07:06:50.509983+00 4 开版(套大货) 2 [{"changed": {"fields": ["\\u6d41\\u7a0b\\u540d\\u79f0"]}}] 30 1
243 2025-12-04 07:07:54.028581+00 12 配色完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
244 2025-12-04 07:08:06.629038+00 18 配色中 1 [{"added": {}}] 29 1
245 2025-12-04 07:08:56.169378+00 5 开版(配色) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u914d\\u8272) -> \\u914d\\u8272\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u914d\\u8272) -> \\u914d\\u8272\\u5b8c\\u6210 (2)"}}] 30 1
246 2025-12-04 07:09:50.710113+00 13 找图开发完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0"]}}] 29 1
247 2025-12-04 07:10:17.792083+00 19 找图开发中 1 [{"added": {}}] 29 1
248 2025-12-04 07:10:26.257681+00 13 找图开发完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
249 2025-12-04 07:11:36.335277+00 6 开版(找图开发) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u627e\\u56fe\\u5f00\\u53d1) -> \\u627e\\u56fe\\u5f00\\u53d1\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u627e\\u56fe\\u5f00\\u53d1) -> \\u627e\\u56fe\\u5f00\\u53d1\\u5b8c\\u6210 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u627e\\u56fe\\u5f00\\u53d1) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1
250 2025-12-04 07:12:17.228521+00 11 P图完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
251 2025-12-04 07:12:27.675944+00 20 P图中 1 [{"added": {}}] 29 1
252 2025-12-04 07:12:48.401405+00 7 开版(P图) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(P\\u56fe) -> P\\u56fe\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(P\\u56fe) -> P\\u56fe\\u5b8c\\u6210 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(P\\u56fe) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1
253 2025-12-04 07:13:02.229634+00 5 开版(配色) 2 [{"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u914d\\u8272) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1
254 2025-12-04 07:13:14.232849+00 4 开版(套大货) 2 [{"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u5957\\u5927\\u8d27) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1
255 2025-12-04 07:14:24.47286+00 10 改图完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
256 2025-12-04 07:14:41.009372+00 21 改图中 1 [{"added": {}}] 29 1
257 2025-12-04 07:14:54.109794+00 7 开版(P图) 2 [] 30 1
258 2025-12-04 07:15:22.636805+00 8 开版(改图) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u6539\\u56fe) -> \\u6539\\u56fe\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u6539\\u56fe) -> \\u6539\\u56fe\\u5b8c\\u6210 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u6539\\u56fe) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1
259 2025-12-04 07:16:27.533182+00 9 开版(套米样) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u5957\\u7c73\\u6837) -> \\u5957\\u6837\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u5957\\u7c73\\u6837) -> \\u5957\\u6837\\u5b8c\\u6210 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u5957\\u7c73\\u6837) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1
260 2025-12-04 07:17:26.866112+00 80022 PlateOrder-80022 3 28 1
261 2025-12-06 06:54:04.877873+00 1 打纸完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u72b6\\u6001\\u63cf\\u8ff0"]}}] 29 1
262 2025-12-06 06:54:12.772317+00 2 滚筒完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0"]}}] 29 1
263 2025-12-06 06:55:31.851207+00 4 (印染厂生产)设备 2 [{"changed": {"fields": ["\\u53c2\\u6570\\u503c"]}}] 31 1
264 2025-12-06 06:55:51.373601+00 11 (印染厂滚筒)设备 2 [{"changed": {"fields": ["\\u53c2\\u6570\\u503c"]}}] 31 1
265 2025-12-08 13:28:06.193584+00 1 product @ 2025-12-08 13:15:03 3 54 1
266 2025-12-08 13:32:25.927941+00 3 product @ 2025-12-08 13:32:03 3 54 1
267 2025-12-08 13:32:25.927977+00 2 product @ 2025-12-08 13:30:03 3 54 1
268 2025-12-08 14:15:42.813801+00 51 customer @ 2025-12-08 14:12:01 3 54 1
269 2025-12-08 14:15:42.813831+00 50 product @ 2025-12-08 14:12:00 3 54 1
270 2025-12-08 14:15:42.813845+00 49 product @ 2025-12-08 14:11:01 3 54 1
271 2025-12-08 14:15:42.813857+00 48 customer @ 2025-12-08 14:11:00 3 54 1
272 2025-12-08 14:15:42.813868+00 47 customer @ 2025-12-08 14:10:01 3 54 1
273 2025-12-08 14:15:42.813878+00 46 product @ 2025-12-08 14:10:00 3 54 1
274 2025-12-08 14:15:42.813888+00 45 product @ 2025-12-08 14:09:01 3 54 1
275 2025-12-08 14:15:42.813897+00 44 customer @ 2025-12-08 14:09:00 3 54 1
276 2025-12-08 14:15:42.813906+00 43 customer @ 2025-12-08 14:08:01 3 54 1
277 2025-12-08 14:15:42.813915+00 42 product @ 2025-12-08 14:08:00 3 54 1
278 2025-12-08 14:15:42.813924+00 41 product @ 2025-12-08 14:07:01 3 54 1
279 2025-12-08 14:15:42.813933+00 40 customer @ 2025-12-08 14:07:00 3 54 1
280 2025-12-08 14:15:42.813942+00 39 customer @ 2025-12-08 14:06:01 3 54 1
281 2025-12-08 14:15:42.81395+00 38 product @ 2025-12-08 14:06:00 3 54 1
282 2025-12-08 14:15:42.81396+00 37 product @ 2025-12-08 14:05:01 3 54 1
283 2025-12-08 14:15:42.813973+00 36 customer @ 2025-12-08 14:05:01 3 54 1
284 2025-12-08 14:15:42.813981+00 35 product @ 2025-12-08 14:04:01 3 54 1
285 2025-12-08 14:15:42.81399+00 34 product @ 2025-12-08 14:03:00 3 54 1
286 2025-12-08 14:15:42.813999+00 33 product @ 2025-12-08 14:02:00 3 54 1
287 2025-12-08 14:15:42.814008+00 32 product @ 2025-12-08 14:01:00 3 54 1
288 2025-12-08 14:15:42.81402+00 31 product @ 2025-12-08 14:00:00 3 54 1
289 2025-12-08 14:15:42.814028+00 30 product @ 2025-12-08 13:59:00 3 54 1
290 2025-12-08 14:15:42.814037+00 29 product @ 2025-12-08 13:58:00 3 54 1
291 2025-12-08 14:15:42.814045+00 28 product @ 2025-12-08 13:57:00 3 54 1
292 2025-12-08 14:15:42.814054+00 27 product @ 2025-12-08 13:56:00 3 54 1
293 2025-12-08 14:15:42.814062+00 26 product @ 2025-12-08 13:55:00 3 54 1
294 2025-12-08 14:15:42.814073+00 25 product @ 2025-12-08 13:54:00 3 54 1
295 2025-12-08 14:15:42.814082+00 24 product @ 2025-12-08 13:53:00 3 54 1
296 2025-12-08 14:15:42.814091+00 23 product @ 2025-12-08 13:52:00 3 54 1
297 2025-12-08 14:15:42.8141+00 22 product @ 2025-12-08 13:51:00 3 54 1
298 2025-12-08 14:15:42.814108+00 21 product @ 2025-12-08 13:50:00 3 54 1
299 2025-12-08 14:15:42.814117+00 20 product @ 2025-12-08 13:49:00 3 54 1
300 2025-12-08 14:15:42.814126+00 19 product @ 2025-12-08 13:48:00 3 54 1
301 2025-12-08 14:15:42.814134+00 18 product @ 2025-12-08 13:47:00 3 54 1
302 2025-12-08 14:15:42.814143+00 17 product @ 2025-12-08 13:46:00 3 54 1
303 2025-12-08 14:15:42.814152+00 16 product @ 2025-12-08 13:45:00 3 54 1
304 2025-12-08 14:15:42.814162+00 15 product @ 2025-12-08 13:44:00 3 54 1
305 2025-12-08 14:15:42.814171+00 14 product @ 2025-12-08 13:43:00 3 54 1
306 2025-12-08 14:15:42.814179+00 13 product @ 2025-12-08 13:42:00 3 54 1
307 2025-12-08 14:15:42.814188+00 12 product @ 2025-12-08 13:41:00 3 54 1
308 2025-12-08 14:15:42.814197+00 11 product @ 2025-12-08 13:40:00 3 54 1
309 2025-12-08 14:15:42.814205+00 10 product @ 2025-12-08 13:39:00 3 54 1
310 2025-12-08 14:15:42.814214+00 9 product @ 2025-12-08 13:38:00 3 54 1
311 2025-12-08 14:15:42.814223+00 8 product @ 2025-12-08 13:37:00 3 54 1
312 2025-12-08 14:15:42.814231+00 7 product @ 2025-12-08 13:36:00 3 54 1
313 2025-12-08 14:15:42.81424+00 6 product @ 2025-12-08 13:35:00 3 54 1
314 2025-12-08 14:15:42.814248+00 5 product @ 2025-12-08 13:34:00 3 54 1
315 2025-12-08 14:15:42.814257+00 4 product @ 2025-12-08 13:33:01 3 54 1
316 2025-12-08 14:20:31.584043+00 67 product @ 2025-12-08 14:20:01 3 54 1
317 2025-12-08 14:20:31.584072+00 66 customer @ 2025-12-08 14:20:00 3 54 1
318 2025-12-08 14:20:31.584086+00 65 customer @ 2025-12-08 14:19:01 3 54 1
319 2025-12-08 14:20:31.584097+00 64 product @ 2025-12-08 14:19:00 3 54 1
320 2025-12-08 14:20:31.584109+00 63 product @ 2025-12-08 14:18:02 3 54 1
321 2025-12-08 14:20:31.584119+00 62 customer @ 2025-12-08 14:18:01 3 54 1
322 2025-12-08 14:20:31.584129+00 61 product @ 2025-12-08 14:17:00 3 54 1
323 2025-12-08 14:20:31.584139+00 60 customer @ 2025-12-08 14:17:00 3 54 1
324 2025-12-08 14:20:31.584148+00 59 customer @ 2025-12-08 14:16:00 3 54 1
325 2025-12-08 14:20:31.584158+00 58 product @ 2025-12-08 14:16:00 3 54 1
326 2025-12-08 14:20:31.584167+00 57 product @ 2025-12-08 14:15:01 3 54 1
327 2025-12-08 14:20:31.584177+00 56 customer @ 2025-12-08 14:15:01 3 54 1
328 2025-12-08 14:20:31.584186+00 55 customer @ 2025-12-08 14:14:01 3 54 1
329 2025-12-08 14:20:31.584195+00 54 product @ 2025-12-08 14:14:00 3 54 1
330 2025-12-08 14:20:31.584204+00 53 product @ 2025-12-08 14:13:01 3 54 1
331 2025-12-08 14:20:31.584214+00 52 customer @ 2025-12-08 14:13:00 3 54 1
\.
--
-- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.django_content_type (id, app_label, model) FROM stdin;
1 admin logentry
2 auth permission
3 auth group
4 auth user
5 contenttypes contenttype
6 sessions session
7 basic_info merchant
8 basic_info employee
9 basic_info deviceinfo
10 basic_info customer
11 basic_info bankaccount
12 basic_info productcategory
13 basic_info product
14 basic_info supplier
15 basic_info vehicletype
16 basic_info vehicletransportrecord
17 basic_info warehouse
18 basic_info quickinput
19 stock purchaseorder
20 stock stockchangerecord
21 stock stockchangedetail
22 stock stocksnapshot
23 stock inventory
24 stock stockfreeze
25 api_v1 uploadedfile
26 printing printingorder
27 printing printingjob
28 printing plateorder
29 stateflow state
30 stateflow process
31 stateflow stateparameter
32 stateflow processnode
33 stateflow businessobject
34 stateflow stateflowrecord
35 stateflow statelogparameterrecord
36 basic_info employeetype
37 basic_info userprofile
38 business purchaseorder
39 business purchaseorderitem
40 basic_info merchantsetting
41 business salesorder
42 business supplierbalance
43 business receiptorder
44 business customerbalance
45 business paymentorder
46 business salesorderitem
47 business balancechangerecord
48 business purchasereturnorder
49 business purchasereturnorderitem
50 business salesreturnorder
51 business salesreturnorderitem
52 stock transferorder
53 stock transferorderitem
54 api_v1 datasync
\.
--
-- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.django_migrations (id, app, name, applied) FROM stdin;
1 contenttypes 0001_initial 2025-11-18 05:57:57.606096+00
2 auth 0001_initial 2025-11-18 05:57:57.649887+00
3 admin 0001_initial 2025-11-18 05:57:57.661912+00
4 admin 0002_logentry_remove_auto_add 2025-11-18 05:57:57.665247+00
5 admin 0003_logentry_add_action_flag_choices 2025-11-18 05:57:57.668422+00
6 api_v1 0001_initial 2025-11-18 05:57:57.678425+00
7 contenttypes 0002_remove_content_type_name 2025-11-18 05:57:57.685116+00
8 auth 0002_alter_permission_name_max_length 2025-11-18 05:57:57.688996+00
9 auth 0003_alter_user_email_max_length 2025-11-18 05:57:57.692915+00
10 auth 0004_alter_user_username_opts 2025-11-18 05:57:57.696222+00
11 auth 0005_alter_user_last_login_null 2025-11-18 05:57:57.700191+00
12 auth 0006_require_contenttypes_0002 2025-11-18 05:57:57.701563+00
13 auth 0007_alter_validators_add_error_messages 2025-11-18 05:57:57.705386+00
14 auth 0008_alter_user_username_max_length 2025-11-18 05:57:57.713231+00
15 auth 0009_alter_user_last_name_max_length 2025-11-18 05:57:57.718913+00
16 auth 0010_alter_group_name_max_length 2025-11-18 05:57:57.724371+00
17 auth 0011_update_proxy_permissions 2025-11-18 05:57:57.728075+00
18 auth 0012_alter_user_first_name_max_length 2025-11-18 05:57:57.731791+00
19 basic_info 0001_initial 2025-11-18 05:57:57.853129+00
20 basic_info 0002_quickinput 2025-11-18 05:57:57.858206+00
21 basic_info 0003_alter_quickinput_unique_together 2025-11-18 05:57:57.861506+00
22 basic_info 0004_customer_visible_employees 2025-11-18 05:57:57.878024+00
23 basic_info 0005_customer_created_by 2025-11-18 05:57:57.887911+00
24 basic_info 0006_alter_product_merchant 2025-11-18 05:57:57.895034+00
25 basic_info 0007_warehouse_mode 2025-11-18 05:57:57.901277+00
26 basic_info 0008_merchant_auto_complete_stock_change 2025-11-18 05:57:57.90704+00
27 basic_info 0009_product_minimum_quantity 2025-11-18 05:57:57.912464+00
28 stateflow 0001_initial 2025-11-18 05:57:57.926089+00
29 stateflow 0002_remove_state_data_stateparameter 2025-11-18 05:57:57.9356+00
30 stateflow 0003_alter_process_options_alter_state_options_and_more 2025-11-18 05:57:57.951752+00
31 stateflow 0004_remove_state_previous 2025-11-18 05:57:57.9565+00
32 stateflow 0005_alter_state_description_and_more 2025-11-18 05:57:57.967543+00
33 stateflow 0006_remove_process_state_nodes_processnode_and_more 2025-11-18 05:57:57.983497+00
34 stateflow 0007_alter_process_current_state 2025-11-18 05:57:57.989058+00
35 stateflow 0008_remove_process_current_state_order 2025-11-18 05:57:58.005641+00
36 stateflow 0009_remove_order_current_state_orderstatelog 2025-11-18 05:57:58.032921+00
37 stateflow 0010_remove_orderstatelog_notes_and_more 2025-11-18 05:57:58.069827+00
38 stateflow 0011_rename_order_to_business_object 2025-11-18 05:57:58.150215+00
39 stateflow 0012_alter_businessobject_content_type_and_more 2025-11-18 05:57:58.17801+00
40 stateflow 0013_alter_stateflowrecord_unique_together 2025-11-18 05:57:58.187343+00
41 stateflow 0014_alter_process_options 2025-11-18 05:57:58.190803+00
42 stateflow 0015_stateparameter_attachment 2025-11-18 05:57:58.193874+00
43 printing 0001_initial 2025-11-18 05:57:58.231485+00
44 printing 0002_alter_printingorder_craft_and_more 2025-11-18 05:57:58.237799+00
45 printing 0003_remove_printingjob_status 2025-11-18 05:57:58.248458+00
46 printing 0004_printingorder_is_invalid 2025-11-18 05:57:58.252566+00
47 printing 0005_alter_printingorder_options 2025-11-18 05:57:58.256683+00
48 printing 0006_printingjob_business_object_printingorder_process 2025-11-18 05:57:58.282396+00
49 printing 0007_alter_printingjob_description_and_more 2025-11-18 05:57:58.295621+00
50 printing 0008_plateorder 2025-11-18 05:57:58.324365+00
51 printing 0009_remove_plateorder_development_status 2025-11-18 05:57:58.331238+00
52 printing 0010_remove_plateorder_plate_code 2025-11-18 05:57:58.338116+00
53 printing 0011_alter_plateorder_options_plateorder_is_invalid 2025-11-18 05:57:58.350452+00
54 printing 0012_plateorder_process 2025-11-18 05:57:58.357239+00
55 sessions 0001_initial 2025-11-18 05:57:58.365556+00
56 stateflow 0016_alter_stateparameter_key_alter_stateparameter_value 2025-11-18 05:57:58.370806+00
57 stateflow 0017_state_parameter_many_to_many 2025-11-18 05:57:58.427689+00
58 stateflow 0018_remove_stateparameter_name 2025-11-18 05:57:58.430207+00
59 stateflow 0019_stateparameter_is_required 2025-11-18 05:57:58.433063+00
60 stateflow 0020_stateparameter_is_image_path 2025-11-18 05:57:58.435565+00
61 stateflow 0021_statelogparameterrecord 2025-11-18 05:57:58.454384+00
62 stock 0001_initial 2025-11-18 05:57:58.565539+00
63 stock 0002_stockfreeze 2025-11-18 05:57:58.605245+00
64 stock 0003_remove_inventory_minimum_quantity 2025-11-18 05:57:58.614748+00
65 printing 0013_plateorder_fabric_source_alter_plateorder_process 2025-11-20 03:24:40.935777+00
66 printing 0014_auto_20251120_1144 2025-11-20 03:47:32.344205+00
67 basic_info 0010_warehouse_type 2025-11-20 05:11:33.321558+00
68 basic_info 0011_remove_employee_job_type_employeetype_and_more 2025-11-20 05:56:35.088569+00
69 printing 0015_plateorder_designer 2025-11-20 06:48:57.234756+00
70 api_v1 0002_alter_uploadedfile_path 2025-11-24 03:07:15.613802+00
71 basic_info 0012_userprofile 2025-11-24 03:07:15.640816+00
72 stock 0004_alter_stockchangerecord_source_type 2025-11-24 03:07:15.658993+00
73 basic_info 0013_alter_customer_options 2025-11-24 09:06:44.27194+00
74 stock 0005_stockchangedetail_consume_fields 2025-11-24 09:06:44.307805+00
75 business 0001_initial 2025-11-25 06:08:12.742536+00
76 stock 0006_remove_purchaseorder 2025-11-25 06:08:12.745336+00
77 printing 0016_plateorder_image_name 2025-11-27 06:53:13.195655+00
78 business 0002_remove_purchaseorder_order_date_purchaseorder_kind_and_more 2025-11-27 07:29:19.575686+00
79 printing 0017_alter_plateorder_image_name 2025-11-27 07:29:19.582348+00
80 business 0003_purchaseorder_status 2025-11-27 07:34:05.728213+00
81 business 0004_remove_purchaseorder_total_amount_and_more 2025-11-27 08:08:14.545561+00
82 business 0005_alter_purchaseorder_operator_and_more 2025-11-27 08:10:45.002847+00
83 business 0006_remove_purchaseorderitem_total_amount 2025-11-27 08:18:28.948263+00
84 business 0007_alter_purchaseorderitem_batch_number 2025-11-27 08:45:44.548428+00
85 printing 0018_plateorder_plate_image_to_jsonfield 2025-11-28 01:31:22.225727+00
86 printing 0019_alter_plateorder_plate_image 2025-11-28 01:31:22.259774+00
87 printing 0020_alter_plateorder_required_completion_date 2025-11-28 02:57:43.677396+00
88 printing 0021_plateorder_print_count_printingorder_print_count 2025-11-28 03:29:26.824386+00
89 basic_info 0014_merchantsetting 2025-11-28 06:00:48.6332+00
90 basic_info 0015_remove_merchantsetting_val_merchantsetting_val_bool_and_more 2025-11-28 06:04:30.020931+00
91 basic_info 0016_merchantsetting_type 2025-11-28 06:06:20.05325+00
92 business 0008_alter_purchaseorderitem_quantity 2025-11-28 09:27:18.505876+00
93 business 0009_purchaseorderitem_spec 2025-11-28 09:32:22.794473+00
94 business 0010_salesorder_salesorderitem 2025-11-30 14:17:50.013527+00
95 business 0011_paymentorder_receiptorder 2025-11-30 14:17:50.058623+00
96 business 0012_customerbalance_supplierbalance 2025-11-30 14:17:50.100554+00
97 business 0013_balancechangerecord 2025-12-01 06:49:56.024129+00
98 business 0014_alter_balancechangerecord_source_type_and_more 2025-12-01 09:15:19.861344+00
99 business 0015_payment_receipt_bank_and_markup 2025-12-03 06:43:26.49912+00
100 stock 0007_transferorder 2025-12-03 06:43:26.593432+00
101 business 0016_payment_receipt_discount 2025-12-03 08:05:46.351422+00
102 basic_info 0017_alter_customer_mobile 2025-12-08 10:35:53.761423+00
103 stock 0008_alter_stockchangerecord_source_type 2025-12-08 10:35:53.776033+00
104 api_v1 0003_datasync 2025-12-08 13:01:15.59395+00
105 basic_info 0018_product_from_mdy 2025-12-08 13:01:15.609827+00
106 basic_info 0019_customer_mdy_fields 2025-12-08 14:04:35.885183+00
\.
--
-- 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
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
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:1vSc7O:V0KgZ50eh1f1TTAP6AkpohoYP-I_1WKX-gdkrsvmy-Y 2025-12-22 14:21:38.98299+00
busil84fm9qlr5gqtynnzy9dwm9wwyke .eJzNnE1zozgQhv_KlM8zCV9CYo573-OeNlspIaSYCQaWj0xlt-a_ryTsGJS2LQRb-DI4ptVCT4uWXkmef3fPtO_2z33Lm-c8233f-buv4-9Syl55qW5kP2j5Uj2wquyaPH1QJg_Hu-3D71XGi9-OthMHe9ruZWlOYhaTOI15zJIYZySlOIyQ4GHM_EQEYYJwSBCLwzRIsLxyHoZeQmPi8cwPkHJ64GXfSl9__vu0K-mBP-2-f3naPT31EfepvKCA-vIS00BdEEb4afdVWuTymQdbQZsvgn5jecMKPtw8qCdv1W3AbUaUvzTkyl-IkIW_vimGe480O-TlY9q3ecnb9rGm77IBXdVkvHkcbGmW_WFlLg2PRdKG04w1_SG99MxuKH59_bK4-b_-Urd5nqm7vucFkFOBEnlJSJJpp7oK-bTqQtLUU3-JZaBTWtCScbaX_ZU3nEmEFryhUttgX4WQGYsQrClJlTeeROqCotiofkEQ2r6ui5w3R6wWATBLbAR_ERKTegRUgVIaqMcMQrwebta3XXWYg9sssQluVxYmZwT4jlEYr5e9ZUbgeW2dvSfmm6Cd3XyTaQw4TXymAkWyIFtjROwbmW5bbj0kTuw3oTobgEkV2zmVjxl7KnCYs3g1xnnHD3M56zL3wnoOFpM8uVlF4nne8BdesXc3vOubcm4fH5e6A_qz0Zj0k5lVrNz9RzhnvgRmybsLhvMb4XtQTUj7RihYY9RsacFb264_Mt4G8tymmzx9O6erde4zMMs-bRS4F8pL-jCkMadVrJvVNcJ5Kf1TkTvgvjSf-5CevFbFml1-fjIHi91dGNzfgsgcbqFUFHGRjlqRReqCqZcuXSUbw0GpUBqOsNh3iHPb0Y6Lovr5Eboq_cFZdznEF0vMia4bFxCxGwsznpD2QhlXqZIEWFcRMq2cEfYWcdafatrImrpr2exiiU04u7IwOUNqbPxg8iJ8LaPDJFjEuW4qpjKRBeCT6SZkXVtvkoXU1tQ3CYiKGvbSZHkPtu6490DVvuUmVUhFXfYtn93HofrSQ9EavbeUo8CMHqzN74z3HCYG_QDSSzhI9Rsih9xzvUTEzMhLS3c3jG5cVC8fKfjWFsftopvE6P8gZ0YMmgZdq3fVGKlPM2MzKnJ3MXGPQmCmMWi5HoU61jHO1NuJU90YHHk2cuHK7HTq9rQaLjyxWJPUTV52efny8eFHlV4ONGhtH2NXOjdBuxIxYwzudE1qIsNej6MA_8Tvhvq-YH8HxO05mIzB10ZoBYmDiKzIuJC5yBrw2Xgbuo4ETLqx-QW0xIGwUIoDk2jQ7VGkh6nEZgp7VUNTvQ4TMc2B4SGhBzbS_NNaCW1z9pyXolLzsKxnHZMBkv3__cpCyeUyM2LqyAbU0W48zBBCKmTqe14Ib7Oew_ge2M5wZbCFtEjE9fuMeBKuyfYnbfi-6ttr5xog6434ujEw-IaQ2gCOpywCezpzY8X1w3gbrHObbvKEtAAKhT7ihkM6THSHIxOBy9rliNQb3-fSrmto2dZV0908hHaz6CbIXemY5KE9GhQhfa7tuJDnRUzHOMpG-R6TheMfP9RF9c55917bpY5JgW2Yr8LFjAA4lZnWtFauPiGcxfsuWDtnalD7DEcHjyfbpHbWukrEfBndA1enEsqu5Z2efNtANstsw9qRh8ka1EBT32v15BO3WZDvgq5zTwb3nSZnNFejezp_akX3w3gbuo4ETLrQbhMSXOX0OMTat9CTRuTHTocUzsD-7nP2mpd1b9d7R-bbEHakYBKG9B5GAYGjp76M9ZYAczsUcgaofuoiVZ3IC7uBb2y_CfF1qJj8IU14zPUo8VbNHxl_yxnXH22Aj8w34e1KwSAcQarwODMngsRrzp5PUsR28jy234axIweTMXiOLxLaN9ETcpIFH-PtIsYpLV8pY1VvOc0Y22_C2JWDydjcEwrAwXFYQ0GpnqfjWMtRvX-7bE_I1zj0-HJeqFm49Vex1-Ffu9-dXSowI6iOcCDOy4CYsQX10OhpXfHm5Zv-ReSVhWzTcBuc1m01yYHqZvJgyE_1wRy1yLiom4qG83-unuYwTTdnOaf1JllQ2Ux9T35puWxv-NPbnfGO5sWMdHAscA_MHbmYEbid4I8qAPuxy6g6QtiWtG731echteyLYluY1k008RHzC2hNj6Q00he9t4MiwrSqIsMybgQ8fqvqbPc5L7JvtOhujp1j3QA3QEkbOELqPwXQyufye3A2se_5KzT6hkC61lAjLAg8JMYZcNasPTlpv7Hq5Qqyl6bq6xvMBpvNoVk11ETmm10blJGCoCENaW0aJOq8CvGEzc-mr-68e2rqE4lAn0dARP8QmQuXrE_r_PnNf-zroqIZz64vBkDGM8LnSAPcr3QjYEYxNL-QU_zdr_8AQkCSCw:1vRmAj:ZVsbUx7fYZAk8tZnV3X1zfGnquZAf9k6Sg3Nz4s-vHI 2025-12-20 06:53:37.989407+00
0qv1nnfydmil7knzisuz8cbfc9a92fqv .eJzNnE1zozgQhv_KlM8zCV9CYo573-OeNlspIaSYCQaWj0xlt-a_ryTsGJS2LQRb-DI4ptVCT4uWXkmef3fPtO_2z33Lm-c8233f-buv4-9Syl55qW5kP2j5Uj2wquyaPH1QJg_Hu-3D71XGi9-OthMHe9ruZWlOYhaTOI15zJIYZySlOIyQ4GHM_EQEYYJwSBCLwzRIsLxyHoZeQmPi8cwPkHJ64GXfSl9__vu0K-mBP-2-f3naPT31EfepvKCA-vIS00BdEEb4afdVWuTymQdbQZsvgn5jecMKPtw8qCdv1W3AbUaUvzTkyl-IkIW_vimGe480O-TlY9q3ecnb9rGm77IBXdVkvHkcbGmW_WFlLg2PRdKG04w1_SG99MxuKH59_bK4-b_-Urd5nqm7vucFkFOBEnlJSJJpp7oK-bTqQtLUU3-JZaBTWtCScbaX_ZU3nEmEFryhUttgX4WQGYsQrClJlTeeROqCotiofkEQ2r6ui5w3R6wWATBLbAR_ERKTegRUgVIaqMcMQrwebta3XXWYg9sssQluVxYmZwT4jlEYr5e9ZUbgeW2dvSfmm6Cd3XyTaQw4TXymAkWyIFtjROwbmW5bbj0kTuw3oTobgEkV2zmVjxl7KnCYs3g1xnnHD3M56zL3wnoOFpM8uVlF4nne8BdesXc3vOubcm4fH5e6A_qz0Zj0k5lVrNz9RzhnvgRmybsLhvMb4XtQTUj7RihYY9RsacFb264_Mt4G8tymmzx9O6erde4zMMs-bRS4F8pL-jCkMadVrJvVNcJ5Kf1TkTvgvjSf-5CevFbFml1-fjIHi91dGNzfgsgcbqFUFHGRjlqRReqCqZcuXSUbw0GpUBqOsNh3iHPb0Y6Lovr5Eboq_cFZdznEF0vMia4bFxCxGwsznpD2QhlXqZIEWFcRMq2cEfYWcdafatrImrpr2exiiU04u7IwOUNqbPxg8iJ8LaPDJFjEuW4qpjKRBeCT6SZkXVtvkoXU1tQ3CYiKGvbSZHkPtu6490DVvuUmVUhFXfYtn93HofrSQ9EavbeUo8CMHqzN74z3HCYG_QDSSzhI9Rsih9xzvUTEzMhLS3c3jG5cVC8fKfjWFsftopvE6P8gZ0YMmgZdq3fVGKlPM2MzKnJ3MXGPQmCmMWi5HoU61jHO1NuJU90YHHk2cuHK7HTq9rQaLjyxWJPUTV52efny8eFHlV4ONGhtH2NXOjdBuxIxYwzudE1qIsNej6MA_8Tvhvq-YH8HxO05mIzB10ZoBYmDiKzIuJC5yBrw2Xgbuo4ETLqx-QW0xIGwUIoDk2jQ7VGkh6nEZgp7VUNTvQ4TMc2B4SGhBzbS_NNaCW1z9pyXolLzsKxnHZMBkv3__cpCyeUyM2LqyAbU0W48zBBCKmTqe14Ib7Oew_ge2M5wZbCFtEjE9fuMeBKuyfYnbfi-6ttr5xog6434ujEw-IaQ2gCOpywCezpzY8X1w3gbrHObbvKEtAAKhT7ihkM6THSHIxOBy9rliNQb3-fSrmto2dZV0908hHaz6CbIXemY5KE9GhQhfa7tuJDnRUzHOMpG-R6TheMfP9RF9c55917bpY5JgW2Yr8LFjAA4lZnWtFauPiGcxfsuWDtnalD7DEcHjyfbpHbWukrEfBndA1enEsqu5Z2efNtANstsw9qRh8ka1EBT32v15BO3WZDvgq5zTwb3nSZnNFejezp_akX3w3gbuo4ETLrQbhMSXOX0OMTat9CTRuTHTocUzsD-7nP2mpd1b9d7R-bbEHakYBKG9B5GAYGjp76M9ZYAczsUcgaofuoiVZ3IC7uBb2y_CfF1qJj8IU14zPUo8VbNHxl_yxnXH22Aj8w34e1KwSAcQarwODMngsRrzp5PUsR28jy234axIweTMXiOLxLaN9ETcpIFH-PtIsYpLV8pY1VvOc0Y22_C2JWDydjcEwrAwXFYQ0GpnqfjWMtRvX-7bE_I1zj0-HJeqFm49Vex1-Ffu9-dXSowI6iOcCDOy4CYsQX10OhpXfHm5Zv-ReSVhWzTcBuc1m01yYHqZvJgyE_1wRy1yLiom4qG83-unuYwTTdnOaf1JllQ2Ux9T35puWxv-NPbnfGO5sWMdHAscA_MHbmYEbid4I8qAPuxy6g6QtiWtG731echteyLYluY1k008RHzC2hNj6Q00he9t4MiwrSqIsMybgQ8fqvqbPc5L7JvtOhujp1j3QA3QEkbOELqPwXQyufye3A2se_5KzT6hkC61lAjLAg8JMYZcNasPTlpv7Hq5Qqyl6bq6xvMBpvNoVk11ETmm10blJGCoCENaW0aJOq8CvGEzc-mr-68e2rqE4lAn0dARP8QmQuXrE_r_PnNf-zroqIZz64vBkDGM8LnSAPcr3QjYEYxNL-QU_zdr_8AQkCSCw:1vS5CT:Zz_ECducG7SE_Qz-wWsiMLrCEfmabVWzkYIq-LvG3Es 2025-12-21 03:12:41.40412+00
nie1ws9ihz1c2tlxhfbz47rmvgtv4p6c .eJzNmklz6ygQgP9KyucsWkCgd5z7HOc0mUqxxkpkSaMlrzKv8t8HUBaZYBshv5IvwUFNA1-Lphv0a_NAhn77MHSifSj45scm3lxP6yhhz6LSD_gTqR7rW1ZXfVvQWy1y-_60u_2z5qL84112T8GWdFvVWuCMZTijmchYniGOKUEpgFKkGYtzmaQ5RCmGLEtpkiNVCpGmUU4yHAkeJ1Ar3Ylq6JSuv3_dbyqyE_ebH1f3m_v7AYiYqAImJFZFRhJdQATR_eZaSRRqzKOsJO2VJDesaFkpxoc7PfJOP_6mNo8ZUgXmCdf6Ugg99A1tOT67I3xXVHd06IpKdN1dM7RMwRB1y0V7NwoTzv_yk1eS721oKwhn7bCj7lGHwni7vloM4O0f_VgUXD-NoyixK2JHL0BIOhkwB7pAJKLLrLfPAVKZ66mwLA4wYteTXsiy_vlpnpo-CdYfNuPBFnMMGcbFiTiMhW0-4NANuYBaW4JMFylL9GghihZxNr8a0qqe-mPL5WCLVTiHsrA5Q4fu6cBUIeNMV6Z5sohz09ZMexsPwB-iq5ANnb1NNjupGydYWw1FNF_-Bnu_uJdA1X_mNlU0S7cae4xSXRlBcI63t1K7wIw32IhfGO85TGz62NETSqhZIWrL_eoXy4xZfklVUqoLKIPCG-s1LuvHTxfcCqZiF-8V4Gi6io1-BznbYvnMfs9qI_1rpm0mTS7OJsFWiCPbLKlrS0-NrVXKolcnomYyCETZsuh0X21GU2HmEEn9Xxbp_5BgPp3Y1m7aouqL6vHzx1NNDxvaKe1v41A6J0GHErFtnJzsSWWiiV9240X7RHp3QP4CiPtzsBk7l42MIrNwAT4j41L5Im_AX8Lr0A0kYNMFdoUrh4ZI6owDYWA2Jg6A2aZynxD2aA5N9AEABMxwYGh06IlPav7tIIR0BXsoKlnrOIwPrGfKQOr9fz1yGHK4zQybBrJx5tFhPGwTurKQfd3zTHia9RzGl8B2hiqLrSsXAcKsZyjy9Jxsf5JWbOuhO5J8OKVX4hvGwObryjaAzOmoWyuFEIQELhNU3dA0ZXH0mNQhvA7WuVO3ebpyAZhKbLahlIyBrol-aRJydjkh9SK2hZLrW1J1Td32p7KA001XQR5KxyKfRC7dAGrdHwd5EWDGxoBP_D3CC_c_sWvK-lWI_rXxcx17DdZhfhYutgWcocx-T-fy1R8IZ_G-CNahnjpx5j7aQSltSYrOSXcn9GVV5RdmfAqvQzeQgE3XmfWMUf656bKh6-ud53b4KbwO3UACNl3nTZMU2s9kKTK6pQlkYJwFXct-Aft3KNhzUTWD39s7EV-HcCAFm7DrjgnBBLutpyszc0zNwq7BvwDqzwJUpiGL0s8ZT-VXIX4eKjZ_Vw6IKTWnXnl0Vv_BxUvBhPnpA3wivgrvUAo2YVcm-B4tYomzc0Z0H-Gxb0A3lV-HcSAHm7ErG8yBNLqxCRIxTz7320WMKameCWP14BlmTOVXYRzKwWac2ymjy3W_5_WQmtgRZSZFMneKy-4pYoPD7C9fhwcLr6Nq9jz-1WHgozh9GeVuMMOogXBcnJcBsUyZOjOgyWhD8RbVi6j6o4ertuA6OL3napNzZjd7A4MxNR-L6IOvRa-pbIX47-gXBrbo6iznzN4m68xs9nWn3BQJMYHRovvKb6ubi54U5Qx38N7gEpgHcrEt4Mx-9nsaswAUZyG76gRhV5Gm29bft9RqKMt1YXpP0cYH7QrXSR-mBJjC3DdAgJnJqvB4tAgcw-90n922ECW_IWV_cu-c5g3uCejUxm0h_QG1yXwOr4MvEf83_wyTPpEgHZuobRZXgK5Wi-P7p-5DSXfD6scjyB7bemhOMBtlVofmNVEbGbYrnGmkxHB0QyY3TXL9DQWOJF8WCwIR6dAHyMTckUOMTKUM8fqkKR5e4ruhKWvCBT9-GOASnmG-QBrOO7QwApbRgP3lUapC_M3b_4NBlrY:1vNnsc:A97uezglXSc0c9SooQ51Ya2whoGFmD_LkLGlbrTqyKk 2025-12-09 07:54:30.634534+00
ntf30dd3of18gsyba1risn3yscoj0t6y .eJzNmktz4ygQgP9Kyuck1guB5rj3Pe5pPZXiaSuRJa0emcpO5b8vIMeRCbER8pZ8CQ40DXzNoxv0e_WE-2731Le8ecrZ6scqXN2P8wimL7xUBewZl9vqkVZl1-TkUYk8Hkrbxz8rxos_DrInCna43cnaHKU0RSlJeUqzFDJEMIwTIHic0jATUZwBGCNA05hEGZQp53EcZDhFAWdhBJTSPS_7Vur6-_dmVeI936x-3G1Wm02fcEFkAiIcyiRliUogDshmdS8lctnnQVbg5k7gB5o3tOBD4V71vFXFFrUh_lQLiMhkgmgaOqjtm2IoW2O2z8t12-GOi6L6tSZ9m5e8bSvyzGm3HsQxY3-51pCyh1qk4ZjRpt-T7wbgx-X9_u5aLN5_qmKeM1UaBkFk0Q0YB0pbBHUTMY1UbwEMZnHWv2rcyJY63rhwNmoswtmXhck5tuged0wmIkxVZpxFszjXTUXl5HQB_CG6CFnf0Ztkk4u6UYSU1WBAsvkz2Hni3gJV95GbVMEk3bLvIYxVZgCSa8zeUp4CE2awFr8x3lOYmPRTS0swInqFBMGo00ik1NiXZCYhKgECgPnzvai2xy244bRqmPMKsFRdxEb_BznTYnBiu1e1kfo10TajKjdnE38rIDMjtB3psba1dHrV6oREDwYmQTrPOz1Vm5KY6zEEQv2XBuo_yKlLI6a16yYvu7zcHn88V-R7Q1ul3W3sS-ciaF8ihknD4GJLMpaJdKbX2vrCT66Rc_7qN_I3QNydg8nYumxEEOiFm6ArMi7kXuQM-FN4GbqeBEy6kblLZbbGoFARB0SJPphYkuhjKnNxYc_G0Bgq7QnVHCgcNvTIJTQ3rUhwm9OnvBSV8sNYTzsqDSTn_9v3xjxTZ4JNPdlY42g_HqZNbVHIqe5pJrzMegrjW2A7QZXB1haLJFyvZ8Cz-Jpsf-GG76q-PRN8WKUX4uvHwORrizYSkZFBt1IKQOLjuIxQtX1dF_m5bd4mvAzWqUM3edpiARALpI-hGA-OrvZ-SeRzdzki9cp3uZTrGly2ddV0l6KAy1UXQe5LxySPbLoToHR_XORda6fg-7qo3rjbRnEUXoauJwGTrtVNUctDaotieE26e97QHS7dDrmj8DJ0PQkYdCNrXDP4mNemS_u2q_aOm_FReBm6ngRMuvaIhquNPo2h1i30MQrC1CeiGQH7p8_pS17WvdvsHYkvQ9iTgknY9pKECNExfxZcdf4y_ppTrn-6EB6JL0LYl4JJ2PaGdDgrkUDpKH6BaGY89-EcvNVuB9xYfhnGnhxMxrY4LkuE1o0SfTvJouN-P4sxweULprTqHY-5sfwijH05mIyB6VjYJvYhqgFE-y4w1Q6iflGZd0sbahx6f_sMnWZexlf0Zfir3JAtv3wVb68wwaiecGyc5wExbWuNfUa99cWbl6-87M5eLZmCy-B0HqtJzhq7nHQMhEQ_lauwf9Y0FQ3n_559XzVFF2c5ZfQmWWvccqo7ZjqJsA5DZ73WfFndjHc4LyZsB4cKt8Dck4thgdga25y2NHihMEx9TtURwrbEdburvh6pZV8Uy8J0HqKJzxa8ZCEdvMmIbbzfYQZuda_i5_bSO4xNeJE5OnnoJk_zASay3YAighOd6NtrkCCqoyQ0XFQlln63qs12l_OCPeCiu-iLQBCh8x6U-mLTbjn1QedaFX9vr08RdytdYdC2x37HgZp2sjnjcvexfE3TfihpH2i1PYNs21R9fYHZILM4NKeBmshM3zq2B40IDNu6_kwpytSLPAoEm_u2GChXMhGRfnEFCOpM4XOK4jp_eg3XfV1UmHEm8uKMv2ITnmA-TxrWFxk_AqbRoJmRvv9cvf8He7uCiw:1vLId5:n8_xdalAfSPyiCi7SJPZLr1CI1IGxTC-WpvvN_z9NHQ 2025-12-02 10:08:07.630045+00
8g6qqs5ssg2zi3dlvoj8dmvskek2nues .eJzNmktz4ygQgP9Kyuck1guB5rj3Pe5pPZXiaSuRJa0emcpO5b8vIMeRCbER8pZ8CQ40DXzNoxv0e_WE-2731Le8ecrZ6scqXN2P8wimL7xUBewZl9vqkVZl1-TkUYk8Hkrbxz8rxos_DrInCna43cnaHKU0RSlJeUqzFDJEMIwTIHic0jATUZwBGCNA05hEGZQp53EcZDhFAWdhBJTSPS_7Vur6-_dmVeI936x-3G1Wm02fcEFkAiIcyiRliUogDshmdS8lctnnQVbg5k7gB5o3tOBD4V71vFXFFrUh_lQLiMhkgmgaOqjtm2IoW2O2z8t12-GOi6L6tSZ9m5e8bSvyzGm3HsQxY3-51pCyh1qk4ZjRpt-T7wbgx-X9_u5aLN5_qmKeM1UaBkFk0Q0YB0pbBHUTMY1UbwEMZnHWv2rcyJY63rhwNmoswtmXhck5tuged0wmIkxVZpxFszjXTUXl5HQB_CG6CFnf0Ztkk4u6UYSU1WBAsvkz2Hni3gJV95GbVMEk3bLvIYxVZgCSa8zeUp4CE2awFr8x3lOYmPRTS0swInqFBMGo00ik1NiXZCYhKgECgPnzvai2xy244bRqmPMKsFRdxEb_BznTYnBiu1e1kfo10TajKjdnE38rIDMjtB3psba1dHrV6oREDwYmQTrPOz1Vm5KY6zEEQv2XBuo_yKlLI6a16yYvu7zcHn88V-R7Q1ul3W3sS-ciaF8ihknD4GJLMpaJdKbX2vrCT66Rc_7qN_I3QNydg8nYumxEEOiFm6ArMi7kXuQM-FN4GbqeBEy6kblLZbbGoFARB0SJPphYkuhjKnNxYc_G0Bgq7QnVHCgcNvTIJTQ3rUhwm9OnvBSV8sNYTzsqDSTn_9v3xjxTZ4JNPdlY42g_HqZNbVHIqe5pJrzMegrjW2A7QZXB1haLJFyvZ8Cz-Jpsf-GG76q-PRN8WKUX4uvHwORrizYSkZFBt1IKQOLjuIxQtX1dF_m5bd4mvAzWqUM3edpiARALpI-hGA-OrvZ-SeRzdzki9cp3uZTrGly2ddV0l6KAy1UXQe5LxySPbLoToHR_XORda6fg-7qo3rjbRnEUXoauJwGTrtVNUctDaotieE26e97QHS7dDrmj8DJ0PQkYdCNrXDP4mNemS_u2q_aOm_FReBm6ngRMuvaIhquNPo2h1i30MQrC1CeiGQH7p8_pS17WvdvsHYkvQ9iTgknY9pKECNExfxZcdf4y_ppTrn-6EB6JL0LYl4JJ2PaGdDgrkUDpKH6BaGY89-EcvNVuB9xYfhnGnhxMxrY4LkuE1o0SfTvJouN-P4sxweULprTqHY-5sfwijH05mIyB6VjYJvYhqgFE-y4w1Q6iflGZd0sbahx6f_sMnWZexlf0Zfir3JAtv3wVb68wwaiecGyc5wExbWuNfUa99cWbl6-87M5eLZmCy-B0HqtJzhq7nHQMhEQ_lauwf9Y0FQ3n_559XzVFF2c5ZfQmWWvccqo7ZjqJsA5DZ73WfFndjHc4LyZsB4cKt8Dck4thgdga25y2NHihMEx9TtURwrbEdburvh6pZV8Uy8J0HqKJzxa8ZCEdvMmIbbzfYQZuda_i5_bSO4xNeJE5OnnoJk_zASay3YAighOd6NtrkCCqoyQ0XFQlln63qs12l_OCPeCiu-iLQBCh8x6U-mLTbjn1QedaFX9vr08RdytdYdC2x37HgZp2sjnjcvexfE3TfihpH2i1PYNs21R9fYHZILM4NKeBmshM3zq2B40IDNu6_kwpytSLPAoEm_u2GChXMhGRfnEFCOpM4XOK4jp_eg3XfV1UmHEm8uKMv2ITnmA-TxrWFxk_AqbRoJmRvv9cvf8He7uCiw:1vLYyA:AD0u5F-mNfMwOsOq-xELhPG46cKCAbcOeMXQfrwkvng 2025-12-03 03:34:58.965151+00
\.
--
-- Data for Name: printing_plateorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.printing_plateorder (id, created_at, updated_at, design_code, plate_type, plate_date, plate_method, plate_image, plate_notes, reprint_reason, urgency_level, area, default_address, is_mark_frame, drawing_rating, color_matching_rating, sample_rating, difficulty_rating, required_completion_date, completion_date, fabric, width, style_name, production_method, sample_meter, required_sample_meters, approval_result, is_ordered, customer_feedback, business_object_id, customer_id, merchandiser_id, salesperson_id, is_invalid, process, fabric_source, designer_id, image_name, print_count) FROM stdin;
80025 2025-12-05 08:58:42.071936+00 2025-12-05 08:58:42.071945+00 \N 首版 2025-12-05 08:58:35+00 图片开版 [{"url": "http://image.yuwen.cloud/uploads/2025/12/05/113eccd5e41c40d192f302a4e6ed3af4.png", "name": "pasted_image_1764925120134.png", "path": "uploads/2025/12/05/113eccd5e41c40d192f302a4e6ed3af4.png", "size": 22681, "file_id": 41, "uploaded_at": "2025-12-05T08:58:40.796438+00:00", "content_type": "image/png"}] \N \N 加急 \N f \N \N \N \N 2025-12-04 16:00:00+00 2025-12-06 08:58:35+00 四面弹 1.5米 \N 匹布 \N \N \N f \N 51 3 \N \N f 2 仓库布 \N image.png 0
80029 2025-12-08 05:02:11.84975+00 2025-12-08 05:02:11.84976+00 \N 首版 2025-12-08 05:02:04+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/08/0ecfe1cedac04e808abed32a61239170.png", "name": "pasted_image_1765170131827.png", "path": "uploads/2025/12/08/0ecfe1cedac04e808abed32a61239170.png", "size": 26567, "file_id": 49, "uploaded_at": "2025-12-08T05:02:10.614022+00:00", "content_type": "image/png"}] \N \N 加急 \N f \N \N \N \N 2025-12-07 16:00:00+00 2025-12-09 05:02:04+00 四面弹 1.5米 \N 匹布 \N \N \N f \N 57 5 \N \N f 9 仓库布 \N image.png 0
80031 2025-12-08 06:18:14.444545+00 2025-12-08 06:18:14.444555+00 \N 首版 2025-12-08 06:18:11+00 图片开版 [] \N \N 加急 \N f \N \N \N \N 2025-12-07 16:00:00+00 2025-12-09 06:18:11+00 四面弹 1.5米 \N 匹布 \N \N \N f \N 60 5 \N \N f 2 仓库布 \N \N 0
80027 2025-12-05 10:36:45.727337+00 2025-12-05 10:36:45.727344+00 \N 首版 2025-12-05 10:36:23+00 图片开版 [] \N \N 加急 \N f \N \N \N \N 2025-12-04 16:00:00+00 2025-12-06 10:36:23+00 四面弹 1.5米 \N 匹布 \N \N \N f \N 54 5 \N \N f 2 仓库布 \N \N 3
80024 2025-12-05 08:10:13.511699+00 2025-12-05 08:24:24.404608+00 80024 修改单 2025-12-05 08:03:16+00 图片开版 [{"url": "http://image.yuwen.cloud/uploads/2025/12/05/6326e47af0bd4bd18b08c5317d929f7e.jpg", "name": "诗怡2025-11-25.1.jpg", "path": "uploads/2025/12/05/6326e47af0bd4bd18b08c5317d929f7e.jpg", "size": 87204, "file_id": 38, "uploaded_at": "2025-12-05T08:03:27.791114+00:00", "content_type": "image/jpeg"}, {"url": "http://image.yuwen.cloud/uploads/2025/12/05/a65d9834edd04ba088c106ce50f65aee.jpg", "name": "pasted_image_1764921890368.jpeg", "path": "uploads/2025/12/05/a65d9834edd04ba088c106ce50f65aee.jpg", "size": 87204, "file_id": 40, "uploaded_at": "2025-12-05T08:04:50.596871+00:00", "content_type": "image/jpeg"}] 12222222222222221222 \N 加急 周边 \N f 画图难度1 调色难度1 套样难度1 \N 2025-12-04 16:00:00+00 2025-12-06 08:03:16+00 四面弹 1.5米 \N 匹布 \N \N \N f \N 50 8 4 4 f 2 仓库布 \N 诗怡2025-11-25.1.jpg,诗怡2025-11-25.1.jpg 5
80033 2025-12-08 06:51:25.848785+00 2025-12-08 06:51:25.848791+00 \N 首版 2025-12-08 06:51:17+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/08/2edefbeb64b347ad84effefb6ea89744.png", "name": "pasted_image_1765176682928.png", "path": "uploads/2025/12/08/2edefbeb64b347ad84effefb6ea89744.png", "size": 27059, "file_id": 54, "uploaded_at": "2025-12-08T06:51:21.747772+00:00", "content_type": "image/png"}] \N \N 加急 \N f \N \N \N \N 2025-12-07 16:00:00+00 2025-12-09 06:51:17+00 四面弹 1.5米 \N 匹布 \N \N \N f \N 62 7 \N \N f 7 仓库布 \N image.png 9
80026 2025-12-05 09:13:01.4338+00 2025-12-05 09:13:01.433808+00 \N 首版 2025-12-05 09:12:49+00 图片开版 [] \N \N 加急 \N f \N \N \N \N 2025-12-04 16:00:00+00 2025-12-06 09:12:49+00 四面弹 1.5米 \N 匹布 \N \N \N f \N 53 5 \N 1 f 2 仓库布 \N \N 0
80023 2025-12-04 09:22:03.032278+00 2025-12-04 09:22:03.032285+00 \N 首版 2025-12-04 09:21:53+00 图片开版 [{"url": "http://image.yuwen.cloud/uploads/2025/12/04/19140efce1194b378282fb98e18ee001.png", "name": "pasted_image_1764840116341.png", "path": "uploads/2025/12/04/19140efce1194b378282fb98e18ee001.png", "size": 12171, "file_id": 36, "uploaded_at": "2025-12-04T09:21:57.698525+00:00", "content_type": "image/png"}] \N \N 加急 \N f \N \N \N \N 2025-12-03 16:00:00+00 2025-12-05 09:21:53+00 四面弹 1.5米 \N 匹布 \N \N \N f \N 49 4 2 2 f 2 仓库布 \N image.png 2
80028 2025-12-06 07:41:26.893073+00 2025-12-06 07:41:26.893079+00 \N 修改单 2025-12-06 07:40:05+00 \N [{"url": "https://image.yuwen.cloud/uploads/2025/12/06/e739711495144a818ec43a48faea023d.jpg", "name": "福兴修改2025-12-6.1.jpg", "path": "uploads/2025/12/06/e739711495144a818ec43a48faea023d.jpg", "size": 185231, "file_id": 47, "uploaded_at": "2025-12-06T07:40:19.401624+00:00", "content_type": "image/jpeg"}] 套米样 \N 加急 中大 \N f 画图难度1 调色难度1 \N \N 2025-12-05 16:00:00+00 2025-12-07 07:40:05+00 四面弹 1.5米 \N 匹布 \N \N \N f \N 56 5 \N \N f 9 仓库布 \N 福兴修改2025-12-6.1.jpg 0
80030 2025-12-08 05:25:59.939818+00 2025-12-08 05:25:59.939824+00 \N 首版 2025-12-08 05:25:52+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/08/9b8d6eb8c45242da866631afb7052a0f.png", "name": "pasted_image_1765171559070.png", "path": "uploads/2025/12/08/9b8d6eb8c45242da866631afb7052a0f.png", "size": 63588, "file_id": 50, "uploaded_at": "2025-12-08T05:25:57.890618+00:00", "content_type": "image/png"}] \N \N 加急 \N f \N \N \N \N 2025-12-07 16:00:00+00 2025-12-09 05:25:52+00 四面弹 1.5米 \N 匹布 \N \N \N f \N 58 3 \N \N f 2 仓库布 \N image.png 0
80034 2025-12-08 09:47:29.902232+00 2025-12-08 09:47:29.902243+00 \N 首版 2025-12-08 09:47:14+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/08/3269bf2f3f794bd3be309cf757423c4f.png", "name": "pasted_image_1765187250018.png", "path": "uploads/2025/12/08/3269bf2f3f794bd3be309cf757423c4f.png", "size": 45007, "file_id": 58, "uploaded_at": "2025-12-08T09:47:28.920235+00:00", "content_type": "image/png"}] \N \N 加急 周边 \N f \N \N \N \N 2025-12-07 16:00:00+00 2025-12-09 09:47:14+00 四面弹 1.5米 \N 匹布 \N \N \N f \N 63 3 1 2 f 2 仓库布 \N image.png 0
80032 2025-12-08 06:47:33.622122+00 2025-12-08 06:47:33.622128+00 \N 首版 2025-12-08 06:47:29+00 图片开版 [{"url": "https://image.yuwen.cloud/uploads/2025/12/08/6e520ed1cbc949318195f6fed6684041.png", "name": "pasted_image_1765176453323.png", "path": "uploads/2025/12/08/6e520ed1cbc949318195f6fed6684041.png", "size": 40234, "file_id": 52, "uploaded_at": "2025-12-08T06:47:32.269170+00:00", "content_type": "image/png"}] \N \N 加急 \N f \N \N \N \N 2025-12-07 16:00:00+00 2025-12-09 06:47:29+00 四面弹 1.5米 \N 匹布 \N \N \N f \N 61 3 \N \N f 2 仓库布 \N image.png 13
\.
--
-- Data for Name: printing_printingjob; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.printing_printingjob (id, created_at, updated_at, quantity, unit, size, pieces, description, product_id, printing_order_id, business_object_id) FROM stdin;
1 2025-11-18 10:03:03.628899+00 2025-11-18 10:03:03.630299+00 123 米 123 0 123 1 1 4
2 2025-11-18 10:15:58.28923+00 2025-11-18 10:15:58.290546+00 456 米 456 0 456 1 2 8
3 2025-11-18 10:42:48.816111+00 2025-11-18 10:42:48.818357+00 4 米 3 23 23 1 5 10
4 2025-11-18 10:42:48.847294+00 2025-11-18 10:42:48.848577+00 32 米 23 23 23 2 5 11
5 2025-11-19 05:10:28.185845+00 2025-11-19 05:10:28.187238+00 46 米 0 \N 1 7 16
6 2025-11-19 06:16:00.258989+00 2025-11-19 06:16:00.260276+00 23 米 0 \N 1 8 17
7 2025-11-19 08:21:50.457892+00 2025-11-19 08:21:50.460214+00 53 米 0 \N 1 9 18
8 2025-11-21 03:10:15.018605+00 2025-11-21 03:10:15.020737+00 312 米 32 0 23 1 10 26
9 2025-11-28 07:03:43.808444+00 2025-11-28 07:03:43.81071+00 123 米 123 0 123 1 12 42
10 2025-11-28 07:03:53.865828+00 2025-11-28 07:03:53.867134+00 123 米 0 \N 1 13 43
11 2025-12-01 02:54:14.236864+00 2025-12-01 02:54:14.23817+00 123 米 0 \N 3 14 44
12 2025-12-05 09:08:57.21009+00 2025-12-05 09:08:57.211933+00 32 米 42 0 2 2 15 52
13 2025-12-06 02:51:26.680448+00 2025-12-06 02:51:26.68283+00 42 米 0 \N 1 16 55
14 2025-12-08 05:29:21.25767+00 2025-12-08 05:29:21.259391+00 42 米 0 \N 3 17 59
\.
--
-- 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;
1 2025-11-18 10:03:03.512062+00 2025-11-18 10:03:03.512073+00 123214 123 f 中大 3123 f 4213 \N 2025-11-18 3213 321 123 312 312 321 3 f 1 0
2 2025-11-18 10:15:58.06474+00 2025-11-18 10:15:58.064748+00 456 456 f 中大 456 f 456 \N 2025-11-18 645 645 6456 456 456 456 3 f 1 0
3 2025-11-18 10:42:09.201812+00 2025-11-18 10:42:09.20182+00 123 3213123 f \N 123 f 23123 \N \N 123 213 123 123 123 213 3 f 1 0
5 2025-11-18 10:42:48.781191+00 2025-11-18 16:29:16.270004+00 123 123 f \N \N t \N \N \N \N \N \N \N \N \N 4 f 1 0
4 2025-11-18 10:42:09.764532+00 2025-11-18 16:29:38.034391+00 123 3213123 f \N 123 t 23123 \N \N 123 213 123 123 123 213 3 f 1 0
6 2025-11-19 01:59:30.596405+00 2025-11-19 01:59:30.596416+00 123 23 f 中大 \N f \N \N 2025-11-19 \N \N \N \N \N \N 3 f 1 0
7 2025-11-19 05:10:28.027246+00 2025-11-19 05:10:28.027259+00 四面弹 1.5米 f 中大 仓库布 f 批布 \N 2025-11-20 \N \N \N \N \N \N 3 f 1 0
8 2025-11-19 06:16:00.11043+00 2025-11-19 06:16:00.110438+00 123 23 f 中大 \N f \N \N 2025-11-19 \N \N \N \N \N \N 3 f 1 0
9 2025-11-19 08:21:50.42566+00 2025-11-19 08:21:50.425668+00 123 23 f 中大 \N f \N \N 2025-11-19 \N \N \N \N \N \N 3 f 1 0
10 2025-11-21 03:10:14.707335+00 2025-11-28 05:21:10.802605+00 四面弹 1.5米 f 中大 仓库布 t 批布 \N 2025-11-22 测试 3124123 \N \N \N \N 3 f 1 1
16 2025-12-06 02:51:26.522479+00 2025-12-06 02:51:26.52249+00 四面弹 1.5米 f 中大 仓库布 f 批布 \N 2025-12-07 测试 3124123 \N \N \N \N 4 f 1 3
13 2025-11-28 07:03:53.724046+00 2025-11-28 07:03:53.724055+00 四面弹 1.5米 f 中大 仓库布 f 批布 \N 2025-11-29 测试 3124123 \N \N \N \N 4 f 1 5
12 2025-11-28 07:03:43.666472+00 2025-11-28 07:03:43.66648+00 四面弹 1.5米 f 中大 仓库布 f 批布 \N 2025-11-29 测试 3124123 \N \N \N \N 5 f 1 1
11 2025-11-28 07:03:27.414316+00 2025-11-28 07:03:27.414324+00 四面弹 1.5米 f 中大 仓库布 f 批布 \N 2025-11-29 测试 3124123 \N \N \N \N 5 f 1 1
17 2025-12-08 05:29:20.949323+00 2025-12-08 05:29:20.949331+00 四面弹 1.5米 f 中大 仓库布 f 批布 \N 2025-12-09 测试 3124123 \N \N \N \N 6 f 1 1
18 2025-12-08 10:53:09.184242+00 2025-12-08 10:53:09.184251+00 四面弹 1.5米 f 中大 仓库布 f 批布 \N 2025-12-09 测试 3124123 \N \N \N \N 3 f 1 0
14 2025-12-01 02:54:14.201448+00 2025-12-01 02:54:14.201457+00 四面弹 1.5米 f 中大 仓库布 f 批布 \N 2025-12-02 测试 3124123 \N \N \N \N 4 f 1 22
15 2025-12-05 09:08:57.072225+00 2025-12-05 09:08:57.072234+00 四面弹 1.5米 f 中大 仓库布 f 批布 \N 2025-12-06 测试 3124123 \N \N \N \N 5 f 1 2
\.
--
-- 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;
1 2025-11-18 09:58:46.228909+00 2025-11-18 09:58:46.228916+00 2025-11-18 09:58:46.228922+00 2 3 1 \N f
2 2025-11-18 10:01:34.15756+00 2025-11-18 10:01:34.157567+00 2025-11-18 10:01:34.157573+00 2 3 2 \N f
3 2025-11-18 10:01:35.677197+00 2025-11-18 10:01:35.677205+00 2025-11-18 10:01:35.677211+00 2 3 3 \N f
4 2025-11-18 10:01:36.99464+00 2025-11-18 10:01:36.994647+00 2025-11-18 10:01:36.994653+00 2 3 4 \N f
5 2025-11-18 10:01:38.319629+00 2025-11-18 10:01:38.319637+00 2025-11-18 10:01:38.319642+00 2 3 5 \N f
6 2025-11-18 10:01:39.955294+00 2025-11-18 10:01:39.955302+00 2025-11-18 10:01:39.955307+00 2 3 6 \N f
7 2025-11-18 10:01:46.861557+00 2025-11-18 10:01:46.861564+00 2025-11-18 10:01:46.86157+00 2 2 1 \N f
8 2025-11-18 10:01:48.658461+00 2025-11-18 10:01:48.658469+00 2025-11-18 10:01:48.658475+00 2 2 2 \N f
9 2025-11-18 10:01:50.173885+00 2025-11-18 10:01:50.173893+00 2025-11-18 10:01:50.173899+00 2 2 3 \N f
10 2025-11-18 10:01:52.545328+00 2025-11-18 10:01:52.545336+00 2025-11-18 10:01:52.545342+00 2 2 4 \N f
11 2025-11-18 10:01:57.787351+00 2025-11-18 10:01:57.787358+00 2025-11-18 10:01:57.787364+00 2 1 1 \N f
12 2025-11-18 10:01:59.345255+00 2025-11-18 10:01:59.345264+00 2025-11-18 10:01:59.34527+00 2 1 2 \N f
64 2025-12-05 10:26:54.877327+00 2025-12-05 10:26:54.877336+00 2025-12-05 10:26:54.877343+00 2 52 2 \N f
65 2025-12-05 10:26:59.439133+00 2025-12-05 10:26:59.439142+00 2025-12-05 10:26:59.439148+00 2 52 3 \N f
66 2025-12-05 10:27:03.673925+00 2025-12-05 10:27:03.673934+00 2025-12-05 10:27:03.673941+00 2 52 4 \N f
21 2025-11-18 10:14:30.398411+00 2025-11-18 10:14:30.39842+00 2025-11-18 10:14:30.398426+00 2 4 1 \N f
22 2025-11-18 10:18:26.785459+00 2025-11-18 10:18:26.785471+00 2025-11-18 10:18:26.785482+00 1 8 1 2025-11-18 10:18:41.280544+00 t
67 2025-12-05 10:34:49.203516+00 2025-12-05 10:34:49.203524+00 2025-12-05 10:34:49.203531+00 2 53 15 \N f
23 2025-11-18 10:18:48.568608+00 2025-11-18 10:18:48.568615+00 2025-11-18 10:18:48.568622+00 1 8 1 2025-11-18 10:24:21.224924+00 t
24 2025-11-18 10:24:27.361927+00 2025-11-18 10:24:27.361935+00 2025-11-18 10:24:27.361944+00 1 8 1 2025-11-18 10:25:12.155197+00 t
26 2025-11-18 10:25:26.794891+00 2025-11-18 10:25:26.794897+00 2025-11-18 10:25:26.794904+00 1 8 1 2025-11-18 10:29:49.223123+00 t
25 2025-11-18 10:24:33.486794+00 2025-11-18 10:24:33.486805+00 2025-11-18 10:24:33.486816+00 2 4 2 2025-11-18 10:30:07.11929+00 t
68 2025-12-08 03:51:02.317153+00 2025-12-08 03:51:02.317164+00 2025-12-08 03:51:02.317175+00 2 56 17 \N f
69 2025-12-08 03:52:08.829897+00 2025-12-08 03:52:08.829905+00 2025-12-08 03:52:08.829912+00 2 55 1 \N f
70 2025-12-08 03:52:23.456294+00 2025-12-08 03:52:23.456302+00 2025-12-08 03:52:23.456309+00 2 55 2 \N f
71 2025-12-08 03:52:29.892165+00 2025-12-08 03:52:29.892173+00 2025-12-08 03:52:29.892179+00 2 55 3 \N f
72 2025-12-08 05:23:07.041502+00 2025-12-08 05:23:07.04151+00 2025-12-08 05:23:07.041516+00 2 57 17 \N f
73 2025-12-08 05:26:55.954831+00 2025-12-08 05:26:55.954842+00 2025-12-08 05:26:55.954858+00 2 58 15 \N f
74 2025-12-08 05:29:38.152895+00 2025-12-08 05:29:38.152902+00 2025-12-08 05:29:38.152909+00 2 59 1 \N f
75 2025-12-08 06:41:47.910067+00 2025-12-08 06:41:47.910079+00 2025-12-08 06:41:47.910089+00 2 60 15 \N f
39 2025-11-18 15:34:46.83697+00 2025-11-18 15:34:46.836979+00 2025-11-18 15:34:46.836986+00 2 10 1 \N f
41 2025-11-18 15:35:13.447338+00 2025-11-18 15:35:13.447345+00 2025-11-18 15:35:13.447351+00 2 10 2 \N f
40 2025-11-18 15:35:08.177599+00 2025-11-18 15:35:08.177606+00 2025-11-18 15:35:08.177612+00 2 11 2 2025-11-19 01:43:15.822758+00 t
38 2025-11-18 10:48:46.506927+00 2025-11-18 10:48:46.506934+00 2025-11-18 10:48:46.506942+00 1 11 1 2025-11-19 01:43:18.26932+00 t
42 2025-11-19 01:43:35.225802+00 2025-11-19 01:43:35.225811+00 2025-11-19 01:43:35.225822+00 2 11 1 \N f
76 2025-12-08 06:43:50.474698+00 2025-12-08 06:43:50.474707+00 2025-12-08 06:43:50.474714+00 2 54 15 \N f
28 2025-11-18 10:29:54.025783+00 2025-11-18 10:29:54.02579+00 2025-11-18 10:29:54.025798+00 1 8 1 2025-11-19 01:46:28.824246+00 t
77 2025-12-08 06:46:51.421557+00 2025-12-08 06:46:51.421564+00 2025-12-08 06:46:51.421571+00 2 60 7 \N f
78 2025-12-08 06:46:56.533799+00 2025-12-08 06:46:56.533806+00 2025-12-08 06:46:56.533813+00 2 60 16 \N f
79 2025-12-08 06:51:06.111882+00 2025-12-08 06:51:06.111889+00 2025-12-08 06:51:06.111896+00 2 57 9 \N f
80 2025-12-08 06:51:39.574946+00 2025-12-08 06:51:39.574954+00 2025-12-08 06:51:39.574961+00 2 62 20 \N f
81 2025-12-08 06:54:28.918275+00 2025-12-08 06:54:28.918283+00 2025-12-08 06:54:28.918289+00 2 58 7 \N f
55 2025-12-05 08:56:58.295196+00 2025-12-05 08:56:58.295204+00 2025-12-05 08:56:58.295211+00 2 50 15 2025-12-05 08:57:01.811897+00 t
56 2025-12-05 08:57:36.374447+00 2025-12-05 08:57:36.374457+00 2025-12-05 08:57:36.374464+00 2 49 15 2025-12-05 08:57:43.610433+00 t
57 2025-12-05 09:03:19.150188+00 2025-12-05 09:03:19.150196+00 2025-12-05 09:03:19.150202+00 2 49 15 2025-12-05 09:03:23.575168+00 t
58 2025-12-05 09:03:35.002186+00 2025-12-05 09:03:35.002195+00 2025-12-05 09:03:35.002201+00 2 51 15 2025-12-05 09:03:48.397447+00 t
59 2025-12-05 09:04:11.512421+00 2025-12-05 09:04:11.512429+00 2025-12-05 09:04:11.512435+00 2 51 15 \N f
60 2025-12-05 09:04:26.358339+00 2025-12-05 09:04:26.358348+00 2025-12-05 09:04:26.358354+00 2 51 7 \N f
61 2025-12-05 09:04:40.448887+00 2025-12-05 09:04:40.448895+00 2025-12-05 09:04:40.448902+00 2 51 16 \N f
62 2025-12-05 09:05:22.25623+00 2025-12-05 09:05:22.256238+00 2025-12-05 09:05:22.256244+00 2 44 1 2025-12-05 09:05:39.00518+00 t
63 2025-12-05 09:31:42.68639+00 2025-12-05 09:31:42.686399+00 2025-12-05 09:31:42.686406+00 2 52 1 \N f
82 2025-12-08 06:55:02.476352+00 2025-12-08 06:55:02.47636+00 2025-12-08 06:55:02.476367+00 2 49 15 \N f
83 2025-12-08 06:55:07.370056+00 2025-12-08 06:55:07.370064+00 2025-12-08 06:55:07.370071+00 2 49 7 \N f
84 2025-12-08 06:55:12.16053+00 2025-12-08 06:55:12.160538+00 2025-12-08 06:55:12.160545+00 2 49 16 \N f
85 2025-12-08 06:55:15.541027+00 2025-12-08 06:55:15.541034+00 2025-12-08 06:55:15.541042+00 2 49 8 \N f
86 2025-12-08 06:55:30.59213+00 2025-12-08 06:55:30.592138+00 2025-12-08 06:55:30.592144+00 2 49 14 \N f
87 2025-12-08 09:00:32.460506+00 2025-12-08 09:00:32.460514+00 2025-12-08 09:00:32.460521+00 2 61 15 \N f
88 2025-12-08 09:31:51.84473+00 2025-12-08 09:31:51.844737+00 2025-12-08 09:31:51.844744+00 2 50 15 \N f
89 2025-12-08 09:32:10.616859+00 2025-12-08 09:32:10.616868+00 2025-12-08 09:32:10.616875+00 2 61 7 \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;
1 2025-11-18 10:14:30.398807+00 {"(印染厂生产)日期": "3", "(印染厂生产)设备": "3", "(印染厂生产)提交人": "3", "(印染厂生产)打印米数": "2", "(印染厂生产)生产记录": "2", "(印染厂生产)生产订单详情": "2"} 2025-11-18 10:14:30.398822+00 21
2 2025-11-18 10:24:33.487419+00 {"(印染厂滚筒)生产记录": "421"} 2025-11-18 10:24:33.487439+00 25
3 2025-11-18 15:34:46.837353+00 {"(印染厂生产)日期": "123", "(印染厂生产)设备": "123", "(印染厂生产)提交人": "123", "(印染厂生产)打印米数": "123", "(印染厂生产)生产记录": "123", "(印染厂生产)生产订单详情": "213"} 2025-11-18 15:34:46.837366+00 39
4 2025-11-18 15:35:08.177999+00 {"(印染厂滚筒)生产记录": "123", "(印染厂滚筒)生产记录明细": "123"} 2025-11-18 15:35:08.178013+00 40
5 2025-11-19 01:43:35.22624+00 {"(印染厂生产)日期": "3213", "(印染厂生产)设备": "123", "(印染厂生产)提交人": "421", "(印染厂生产)打印米数": "123", "(印染厂生产)生产记录": "123", "(印染厂生产)生产订单详情": "213"} 2025-11-19 01:43:35.226252+00 42
13 2025-12-05 08:56:58.2956+00 {"(印染厂开版画图)开始时间": "2025-12-05 16:56:55", "(印染厂开版画图)设计师名称": "当前用户"} 2025-12-05 08:56:58.295611+00 55
14 2025-12-05 08:57:36.374848+00 {"(印染厂开版画图)开始时间": "2025-12-05 16:57:34", "(印染厂开版画图)设计师名称": "当前用户"} 2025-12-05 08:57:36.374859+00 56
15 2025-12-05 09:03:19.150552+00 {"(印染厂开版画图)开始时间": "2025-12-05 17:03:17", "(印染厂开版画图)设计师名称": "当前用户"} 2025-12-05 09:03:19.150563+00 57
16 2025-12-05 09:03:35.002545+00 {"(印染厂开版画图)开始时间": "2025-12-05 17:03:33", "(印染厂开版画图)设计师名称": "当前用户"} 2025-12-05 09:03:35.002555+00 58
17 2025-12-05 09:04:11.512777+00 {"(印染厂开版画图)开始时间": "2025-12-05 17:04:10", "(印染厂开版画图)设计师名称": "当前用户"} 2025-12-05 09:04:11.512787+00 59
18 2025-12-05 09:04:26.3587+00 {"(印染厂开版画图)设计师名称": "当前用户"} 2025-12-05 09:04:26.358712+00 60
19 2025-12-05 09:04:40.449244+00 {"(印染厂开版调色)开始时间": "2025-12-05 17:04:38", "(印染厂开版调色)设计师名称": "当前用户"} 2025-12-05 09:04:40.449255+00 61
20 2025-12-05 09:05:22.256584+00 {"(印染厂生产)设备": "32", "(印染厂生产)提交人": "23", "(印染厂生产)打印米数": "32", "(印染厂生产)生产记录": "2", "(印染厂生产)生产订单详情": "3"} 2025-12-05 09:05:22.256594+00 62
21 2025-12-05 09:31:42.686928+00 {"(印染厂生产)日期": "3232", "(印染厂生产)设备": "32", "(印染厂生产)提交人": "3", "(印染厂生产)打印米数": "3", "(印染厂生产)生产记录": "测试", "(印染厂生产)生产订单详情": "1"} 2025-12-05 09:31:42.686942+00 63
22 2025-12-05 10:26:54.877691+00 {"(印染厂滚筒)生产单上传": "http://image.yuwen.cloud/uploads/2025/12/05/6dd4d1ec58f0471a9c4d0b1f430304d2.jpg"} 2025-12-05 10:26:54.877702+00 64
23 2025-12-05 10:34:49.203873+00 {"(印染厂开版画图)开始时间": "2025-12-05 18:34:35", "(印染厂开版画图)设计师名称": "当前用户"} 2025-12-05 10:34:49.203883+00 67
24 2025-12-08 03:51:02.319144+00 {"(印染厂开版套样)开始时间": "2025-12-08 11:51:01", "(印染厂开版套样)设计师名称": "当前用户"} 2025-12-08 03:51:02.319158+00 68
25 2025-12-08 03:52:08.830245+00 {"(印染厂生产)日期": "2025-12-09 00:00:00", "(印染厂生产)生产记录": "测试"} 2025-12-08 03:52:08.830258+00 69
26 2025-12-08 03:52:23.456643+00 {"(印染厂滚筒)生产单上传": "https://image.yuwen.cloud/uploads/2025/12/08/81fca5cf0fd14d8dace07bab3ff94c0d.png"} 2025-12-08 03:52:23.456653+00 70
27 2025-12-08 05:26:55.955265+00 {"(印染厂开版画图)开始时间": "2025-12-08 13:26:54", "(印染厂开版画图)设计师名称": "当前用户"} 2025-12-08 05:26:55.955282+00 73
28 2025-12-08 05:29:38.153233+00 {"(印染厂生产)生产记录": "测试"} 2025-12-08 05:29:38.153245+00 74
29 2025-12-08 06:41:47.910488+00 {"(印染厂开版画图)开始时间": "2025-12-08 14:41:48", "(印染厂开版画图)设计师名称": "当前用户"} 2025-12-08 06:41:47.9105+00 75
30 2025-12-08 06:43:50.475043+00 {"(印染厂开版画图)开始时间": "2025-12-08 14:43:49", "(印染厂开版画图)设计师名称": "当前用户"} 2025-12-08 06:43:50.475055+00 76
31 2025-12-08 06:46:51.421905+00 {"(印染厂开版画图)附件": "https://image.yuwen.cloud/uploads/2025/12/08/d2e2a1e393dd4a2db86ef9eab52cd338.png", "(印染厂开版画图)完成数量": "22", "(印染厂开版画图)设计师名称": "当前用户"} 2025-12-08 06:46:51.421915+00 77
32 2025-12-08 06:46:56.534145+00 {"(印染厂开版调色)开始时间": "2025-12-08 14:46:56", "(印染厂开版调色)设计师名称": "当前用户"} 2025-12-08 06:46:56.534156+00 78
33 2025-12-08 06:51:06.112237+00 {"(印染厂开版套样)附件": "https://image.yuwen.cloud/uploads/2025/12/08/7b3ed67e7fc3468f89ba6eb5afb1e942.png", "(印染厂开版套样)设计师名称": "当前用户"} 2025-12-08 06:51:06.112247+00 79
34 2025-12-08 06:51:39.5753+00 {"(印染厂开版P图)开始时间": "2025-12-08 14:51:39", "(印染厂开版P图)设计师名称": "当前用户"} 2025-12-08 06:51:39.57531+00 80
35 2025-12-08 06:54:28.918628+00 {"(印染厂开版画图)设计师名称": "jimi"} 2025-12-08 06:54:28.918639+00 81
36 2025-12-08 06:55:02.476697+00 {"(印染厂开版画图)开始时间": "2025-12-08 14:55:02", "(印染厂开版画图)设计师名称": "jimi"} 2025-12-08 06:55:02.47671+00 82
37 2025-12-08 06:55:07.370398+00 {"(印染厂开版画图)设计师名称": "jimi"} 2025-12-08 06:55:07.370408+00 83
38 2025-12-08 06:55:12.160896+00 {"(印染厂开版调色)开始时间": "2025-12-08 14:55:11", "(印染厂开版调色)设计师名称": "jimi"} 2025-12-08 06:55:12.160907+00 84
39 2025-12-08 06:55:15.541364+00 {"(印染厂开版调色)设计师名称": "jimi"} 2025-12-08 06:55:15.541374+00 85
40 2025-12-08 09:00:32.460861+00 {"(印染厂开版画图)开始时间": "2025-12-08 17:00:31", "(印染厂开版画图)设计师名称": "jimi"} 2025-12-08 09:00:32.460872+00 87
41 2025-12-08 09:31:51.845081+00 {"(印染厂开版画图)开始时间": "2025-12-08 17:31:51", "(印染厂开版画图)设计师名称": "jimi"} 2025-12-08 09:31:51.845092+00 88
42 2025-12-08 09:32:10.617201+00 {"(印染厂开版画图)设计师名称": "jimi"} 2025-12-08 09:32:10.617212+00 89
\.
--
-- Data for Name: stateflow_process; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stateflow_process (id, created_at, updated_at, name, description) FROM stdin;
1 2025-11-18 06:44:18.307114+00 2025-11-18 06:44:18.307121+00 工厂印染 工厂印染
3 2025-12-04 07:03:57.272169+00 2025-12-04 07:03:57.272177+00 开版(画图调色套样)
2 2025-11-18 10:09:07.214001+00 2025-12-04 07:04:19.375345+00 开版(画图调色)
6 2025-12-04 07:11:36.334139+00 2025-12-04 07:11:36.334145+00 开版(找图开发)
5 2025-12-04 07:08:56.16833+00 2025-12-04 07:13:02.228385+00 开版(配色)
4 2025-12-04 07:06:31.843279+00 2025-12-04 07:13:14.232075+00 开版(套大货)
7 2025-12-04 07:12:48.400253+00 2025-12-04 07:14:54.109411+00 开版(P图)
8 2025-12-04 07:15:22.63566+00 2025-12-04 07:15:22.635666+00 开版(改图)
9 2025-12-04 07:16:27.532064+00 2025-12-04 07:16:27.532071+00 开版(套米样)
\.
--
-- Data for Name: stateflow_processnode; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stateflow_processnode (id, created_at, updated_at, "order", process_id, state_id) FROM stdin;
1 2025-11-18 06:44:18.3076+00 2025-11-18 06:44:18.307604+00 1 1 1
2 2025-11-18 06:44:18.308102+00 2025-11-18 06:44:18.308105+00 2 1 2
3 2025-11-18 06:44:18.308263+00 2025-11-18 06:44:18.308265+00 3 1 3
4 2025-11-18 06:44:18.308391+00 2025-11-18 06:44:18.308393+00 4 1 4
5 2025-11-18 06:44:18.308509+00 2025-11-18 06:44:18.308511+00 5 1 5
6 2025-11-18 06:44:18.308622+00 2025-11-18 06:44:18.308624+00 6 1 6
11 2025-11-19 02:14:21.623562+00 2025-11-19 02:14:21.623566+00 5 2 14
7 2025-11-18 10:09:07.214444+00 2025-12-04 06:57:31.012523+00 1 2 15
8 2025-11-18 10:09:07.214896+00 2025-12-04 06:57:31.012822+00 2 2 7
9 2025-11-18 10:09:07.215051+00 2025-12-04 06:57:31.013023+00 3 2 16
10 2025-11-18 10:13:23.903321+00 2025-12-04 06:57:31.013206+00 4 2 8
12 2025-12-04 07:03:57.278537+00 2025-12-04 07:03:57.278541+00 1 3 15
13 2025-12-04 07:03:57.279177+00 2025-12-04 07:03:57.27918+00 2 3 7
14 2025-12-04 07:03:57.279345+00 2025-12-04 07:03:57.279349+00 3 3 16
15 2025-12-04 07:03:57.279488+00 2025-12-04 07:03:57.279491+00 4 3 8
16 2025-12-04 07:03:57.279616+00 2025-12-04 07:03:57.279619+00 5 3 17
17 2025-12-04 07:03:57.27975+00 2025-12-04 07:03:57.279754+00 6 3 9
18 2025-12-04 07:03:57.279875+00 2025-12-04 07:03:57.279878+00 7 3 14
19 2025-12-04 07:06:31.84368+00 2025-12-04 07:06:31.843683+00 1 4 17
20 2025-12-04 07:06:31.844099+00 2025-12-04 07:06:31.844102+00 2 4 9
21 2025-12-04 07:08:56.168732+00 2025-12-04 07:08:56.168736+00 1 5 18
22 2025-12-04 07:08:56.169178+00 2025-12-04 07:08:56.169182+00 2 5 12
23 2025-12-04 07:11:36.334536+00 2025-12-04 07:11:36.334539+00 1 6 19
24 2025-12-04 07:11:36.334954+00 2025-12-04 07:11:36.334957+00 2 6 13
25 2025-12-04 07:11:36.335098+00 2025-12-04 07:11:36.335101+00 3 6 14
26 2025-12-04 07:12:48.400679+00 2025-12-04 07:12:48.400682+00 1 7 20
27 2025-12-04 07:12:48.401098+00 2025-12-04 07:12:48.401101+00 2 7 11
28 2025-12-04 07:12:48.401242+00 2025-12-04 07:12:48.401245+00 3 7 14
29 2025-12-04 07:13:02.229032+00 2025-12-04 07:13:02.22904+00 3 5 14
30 2025-12-04 07:13:14.232479+00 2025-12-04 07:13:14.232483+00 3 4 14
31 2025-12-04 07:15:22.636063+00 2025-12-04 07:15:22.636067+00 1 8 21
32 2025-12-04 07:15:22.636478+00 2025-12-04 07:15:22.636481+00 2 8 10
33 2025-12-04 07:15:22.63662+00 2025-12-04 07:15:22.636623+00 3 8 14
34 2025-12-04 07:16:27.532452+00 2025-12-04 07:16:27.532455+00 1 9 17
35 2025-12-04 07:16:27.53287+00 2025-12-04 07:16:27.532873+00 2 9 9
36 2025-12-04 07:16:27.533013+00 2025-12-04 07:16:27.533016+00 3 9 14
\.
--
-- Data for Name: stateflow_state; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stateflow_state (id, created_at, updated_at, name, description) FROM stdin;
3 2025-11-18 06:42:51.437497+00 2025-11-18 06:42:51.437505+00 待送货 待送货
4 2025-11-18 06:43:03.131203+00 2025-11-18 06:43:03.13121+00 送货完成 送货完成
5 2025-11-18 06:43:09.83042+00 2025-11-18 06:43:09.830426+00 待开单 待开单
6 2025-11-18 06:43:24.576632+00 2025-11-18 06:43:24.576639+00 订单完结
14 2025-11-19 02:13:50.031495+00 2025-11-19 02:13:50.031504+00 任务完成
15 2025-12-04 06:55:42.047003+00 2025-12-04 06:55:42.04701+00 画图中 画图中
7 2025-11-18 08:12:38.120754+00 2025-12-04 06:55:54.340464+00 画图完成 画图完成
8 2025-11-18 08:12:47.849927+00 2025-12-04 06:56:14.65389+00 调色完成
16 2025-12-04 06:56:50.977125+00 2025-12-04 06:56:50.977133+00 调色中
9 2025-11-18 08:13:08.015847+00 2025-12-04 07:02:16.911443+00 套样完成 套样完成
17 2025-12-04 07:02:44.449707+00 2025-12-04 07:02:44.449715+00 套样中 套样中
12 2025-11-18 08:13:40.576658+00 2025-12-04 07:07:54.027461+00 配色完成
18 2025-12-04 07:08:06.62627+00 2025-12-04 07:08:06.626281+00 配色中
19 2025-12-04 07:10:17.79009+00 2025-12-04 07:10:17.790099+00 找图开发中
13 2025-11-18 08:13:49.180348+00 2025-12-04 07:10:26.256494+00 找图开发完成
11 2025-11-18 08:13:31.882922+00 2025-12-04 07:12:17.227441+00 P图完成
20 2025-12-04 07:12:27.674282+00 2025-12-04 07:12:27.67429+00 P图中
10 2025-11-18 08:13:23.679914+00 2025-12-04 07:14:24.471758+00 改图完成
21 2025-12-04 07:14:41.007709+00 2025-12-04 07:14:41.007716+00 改图中
1 2025-11-18 06:42:24.133555+00 2025-12-06 06:54:04.877023+00 打纸完成
2 2025-11-18 06:42:40.875192+00 2025-12-06 06:54:12.771525+00 滚筒完成
\.
--
-- Data for Name: stateflow_state_parameters; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stateflow_state_parameters (id, state_id, stateparameter_id) FROM stdin;
1 1 1
2 1 2
3 1 3
4 1 4
5 1 5
6 1 6
7 2 7
8 2 8
9 2 9
10 2 10
11 2 11
12 2 12
13 2 13
14 7 14
16 7 16
17 7 17
18 7 18
19 7 19
20 7 20
21 7 21
22 7 22
24 8 33
25 8 25
26 8 26
27 8 27
28 8 28
29 8 29
30 8 30
31 8 31
32 9 52
33 9 53
34 9 54
35 9 55
36 9 56
37 9 57
38 9 58
40 9 60
41 10 70
42 10 71
43 10 72
44 10 73
45 10 74
46 10 75
47 10 76
49 10 78
50 11 79
51 11 80
52 11 81
53 11 82
54 11 83
55 11 84
56 11 85
58 11 87
59 12 64
60 12 65
61 12 66
62 12 67
64 12 69
65 12 61
66 12 62
67 12 63
68 13 34
69 13 35
70 13 36
71 13 37
72 13 38
73 13 39
74 13 40
76 13 42
77 15 17
78 15 15
79 16 32
80 16 30
81 17 57
82 17 59
83 18 66
84 18 68
85 19 41
86 19 39
87 20 84
88 20 86
89 21 75
90 21 77
\.
--
-- Data for Name: stateflow_stateparameter; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stateflow_stateparameter (id, created_at, updated_at, key, value, description, attachment, is_required, is_image_path) FROM stdin;
1 2025-11-18 06:15:00.809393+00 2025-11-18 06:15:00.8094+00 (印染厂生产)生产记录 (印染厂生产)生产记录 f f
2 2025-11-18 06:17:56.053737+00 2025-11-18 06:17:56.053743+00 (印染厂生产)生产订单详情 (印染厂生产)生产订单详情 f f
3 2025-11-18 06:18:26.25185+00 2025-11-18 06:18:26.251858+00 (印染厂生产)打印米数 (印染厂生产)打印米数 f f
5 2025-11-18 06:18:51.697164+00 2025-11-18 06:18:51.697173+00 (印染厂生产)日期 (印染厂生产)日期 f f
6 2025-11-18 06:36:14.719497+00 2025-11-18 06:36:14.719504+00 (印染厂生产)提交人 (印染厂生产)提交人 f f
7 2025-11-18 06:37:41.608509+00 2025-11-18 06:37:41.608516+00 (印染厂滚筒)生产记录 (印染厂滚筒)生产记录 f f
8 2025-11-18 06:37:53.386596+00 2025-11-18 06:37:53.386602+00 (印染厂滚筒)生产记录明细 (印染厂滚筒)生产记录明细 f f
9 2025-11-18 06:38:45.85707+00 2025-11-18 06:38:45.857077+00 (印染厂滚筒)生产单上传 (印染厂滚筒)生产单上传 f t
10 2025-11-18 06:39:07.772314+00 2025-11-18 06:39:07.772321+00 (印染厂滚筒)温度转速 (印染厂滚筒)温度转速 f f
12 2025-11-18 06:41:46.718423+00 2025-11-18 06:41:46.71843+00 (印染厂滚筒)日期 (印染厂滚筒)日期 f f
13 2025-11-18 06:41:52.441374+00 2025-11-18 06:41:52.44138+00 (印染厂滚筒)提交人 (印染厂滚筒)提交人 f f
14 2025-11-18 07:03:18.962028+00 2025-11-18 07:03:18.962034+00 (印染厂开版画图)开版编号 (印染厂开版画图)开版编号 f f
16 2025-11-18 07:04:40.367137+00 2025-11-18 07:04:40.367144+00 (印染厂开版画图)状态 (印染厂开版画图)状态 f f
17 2025-11-18 07:04:50.258244+00 2025-11-18 07:05:16.15894+00 (印染厂开版画图)设计师名称 (印染厂开版画图)设计师名称 f f
18 2025-11-18 07:06:26.838519+00 2025-11-18 07:06:26.838526+00 (印染厂开版画图)电脑位置 (印染厂开版画图)电脑位置 f f
19 2025-11-18 07:06:40.088596+00 2025-11-18 07:06:40.088602+00 (印染厂开版画图)描述 (印染厂开版画图)描述 f f
20 2025-11-18 07:07:20.126468+00 2025-11-18 07:07:20.126479+00 (印染厂开版画图)附件 (印染厂开版画图)附件 f t
21 2025-11-18 07:07:31.518786+00 2025-11-18 07:07:31.518792+00 (印染厂开版画图)完成时间 (印染厂开版画图)完成时间 f f
15 2025-11-18 07:04:21.325932+00 2025-11-18 07:09:18.685697+00 (印染厂开版画图)开始时间 (印染厂开版画图)开始时间 f f
22 2025-11-18 07:10:11.825216+00 2025-11-18 07:10:11.825223+00 (印染厂开版画图)完成数量 (印染厂开版画图)完成数量 f f
25 2025-11-18 08:04:06.826847+00 2025-11-18 08:04:06.826855+00 (印染厂开版调色)完成数量 \N (印染厂开版调色)完成数量 f f
26 2025-11-18 08:04:06.893984+00 2025-11-18 08:04:06.893993+00 (印染厂开版调色)完成时间 \N (印染厂开版调色)完成时间 f f
28 2025-11-18 08:04:07.043351+00 2025-11-18 08:04:07.043359+00 (印染厂开版调色)描述 \N (印染厂开版调色)描述 f f
29 2025-11-18 08:04:07.123119+00 2025-11-18 08:04:07.123127+00 (印染厂开版调色)电脑位置 \N (印染厂开版调色)电脑位置 f f
30 2025-11-18 08:04:07.200354+00 2025-11-18 08:04:07.200362+00 (印染厂开版调色)设计师名称 \N (印染厂开版调色)设计师名称 f f
31 2025-11-18 08:04:07.27682+00 2025-11-18 08:04:07.276829+00 (印染厂开版调色)状态 \N (印染厂开版调色)状态 f f
32 2025-11-18 08:04:07.351926+00 2025-11-18 08:04:07.351933+00 (印染厂开版调色)开始时间 \N (印染厂开版调色)开始时间 f f
33 2025-11-18 08:04:07.431118+00 2025-11-18 08:04:07.431127+00 (印染厂开版调色)开版编号 \N (印染厂开版调色)开版编号 f f
34 2025-11-18 08:04:07.758474+00 2025-11-18 08:04:07.758484+00 (印染厂开版找图)完成数量 \N (印染厂开版找图)完成数量 f f
35 2025-11-18 08:04:07.836584+00 2025-11-18 08:04:07.836593+00 (印染厂开版找图)完成时间 \N (印染厂开版找图)完成时间 f f
37 2025-11-18 08:04:07.988476+00 2025-11-18 08:04:07.988484+00 (印染厂开版找图)描述 \N (印染厂开版找图)描述 f f
38 2025-11-18 08:04:08.070932+00 2025-11-18 08:04:08.070943+00 (印染厂开版找图)电脑位置 \N (印染厂开版找图)电脑位置 f f
39 2025-11-18 08:04:08.14465+00 2025-11-18 08:04:08.14466+00 (印染厂开版找图)设计师名称 \N (印染厂开版找图)设计师名称 f f
40 2025-11-18 08:04:08.227005+00 2025-11-18 08:04:08.227019+00 (印染厂开版找图)状态 \N (印染厂开版找图)状态 f f
41 2025-11-18 08:04:08.301492+00 2025-11-18 08:04:08.301503+00 (印染厂开版找图)开始时间 \N (印染厂开版找图)开始时间 f f
42 2025-11-18 08:04:08.378264+00 2025-11-18 08:04:08.378271+00 (印染厂开版找图)开版编号 \N (印染厂开版找图)开版编号 f f
52 2025-11-18 08:06:23.545251+00 2025-11-18 08:06:23.545259+00 (印染厂开版套样)完成数量 \N (印染厂开版套样)完成数量 f f
53 2025-11-18 08:06:23.622055+00 2025-11-18 08:06:23.622062+00 (印染厂开版套样)完成时间 \N (印染厂开版套样)完成时间 f f
55 2025-11-18 08:06:23.775737+00 2025-11-18 08:06:23.775748+00 (印染厂开版套样)描述 \N (印染厂开版套样)描述 f f
56 2025-11-18 08:06:23.848947+00 2025-11-18 08:06:23.848956+00 (印染厂开版套样)电脑位置 \N (印染厂开版套样)电脑位置 f f
57 2025-11-18 08:06:23.929306+00 2025-11-18 08:06:23.929317+00 (印染厂开版套样)设计师名称 \N (印染厂开版套样)设计师名称 f f
58 2025-11-18 08:06:24.004115+00 2025-11-18 08:06:24.004123+00 (印染厂开版套样)状态 \N (印染厂开版套样)状态 f f
59 2025-11-18 08:06:24.078659+00 2025-11-18 08:06:24.078666+00 (印染厂开版套样)开始时间 \N (印染厂开版套样)开始时间 f f
60 2025-11-18 08:06:24.157041+00 2025-11-18 08:06:24.15705+00 (印染厂开版套样)开版编号 \N (印染厂开版套样)开版编号 f f
61 2025-11-18 08:07:09.998372+00 2025-11-18 08:07:09.99838+00 (印染厂开版配色)完成数量 \N (印染厂开版配色)完成数量 f f
62 2025-11-18 08:07:10.083424+00 2025-11-18 08:07:10.083434+00 (印染厂开版配色)完成时间 \N (印染厂开版配色)完成时间 f f
64 2025-11-18 08:07:10.232919+00 2025-11-18 08:07:10.232927+00 (印染厂开版配色)描述 \N (印染厂开版配色)描述 f f
65 2025-11-18 08:07:10.311549+00 2025-11-18 08:07:10.311561+00 (印染厂开版配色)电脑位置 \N (印染厂开版配色)电脑位置 f f
66 2025-11-18 08:07:10.387778+00 2025-11-18 08:07:10.387787+00 (印染厂开版配色)设计师名称 \N (印染厂开版配色)设计师名称 f f
67 2025-11-18 08:07:10.462353+00 2025-11-18 08:07:10.462361+00 (印染厂开版配色)状态 \N (印染厂开版配色)状态 f f
68 2025-11-18 08:07:10.541327+00 2025-11-18 08:07:10.541337+00 (印染厂开版配色)开始时间 \N (印染厂开版配色)开始时间 f f
69 2025-11-18 08:07:10.614664+00 2025-11-18 08:07:10.614671+00 (印染厂开版配色)开版编号 \N (印染厂开版配色)开版编号 f f
70 2025-11-18 08:07:24.736408+00 2025-11-18 08:07:24.736416+00 (印染厂开版改图)完成数量 \N (印染厂开版改图)完成数量 f f
71 2025-11-18 08:07:24.814028+00 2025-11-18 08:07:24.814036+00 (印染厂开版改图)完成时间 \N (印染厂开版改图)完成时间 f f
36 2025-11-18 08:04:07.913709+00 2025-11-18 08:08:06.425557+00 (印染厂开版找图)附件 \N (印染厂开版找图)附件 f t
54 2025-11-18 08:06:23.6976+00 2025-11-18 08:08:10.055142+00 (印染厂开版套样)附件 \N (印染厂开版套样)附件 f t
63 2025-11-18 08:07:10.156413+00 2025-11-18 08:08:14.833088+00 (印染厂开版配色)附件 \N (印染厂开版配色)附件 f t
4 2025-11-18 06:18:36.506182+00 2025-12-06 06:55:31.850734+00 (印染厂生产)设备 (印染厂生产)打印设备 f f
11 2025-11-18 06:41:38.315857+00 2025-12-06 06:55:51.373212+00 (印染厂滚筒)设备 (印染厂滚筒)滚筒设备 f f
73 2025-11-18 08:07:24.970837+00 2025-11-18 08:07:24.970848+00 (印染厂开版改图)描述 \N (印染厂开版改图)描述 f f
74 2025-11-18 08:07:25.045797+00 2025-11-18 08:07:25.045806+00 (印染厂开版改图)电脑位置 \N (印染厂开版改图)电脑位置 f f
75 2025-11-18 08:07:25.119207+00 2025-11-18 08:07:25.119215+00 (印染厂开版改图)设计师名称 \N (印染厂开版改图)设计师名称 f f
76 2025-11-18 08:07:25.197472+00 2025-11-18 08:07:25.197481+00 (印染厂开版改图)状态 \N (印染厂开版改图)状态 f f
77 2025-11-18 08:07:25.280098+00 2025-11-18 08:07:25.280106+00 (印染厂开版改图)开始时间 \N (印染厂开版改图)开始时间 f f
78 2025-11-18 08:07:25.350011+00 2025-11-18 08:07:25.350018+00 (印染厂开版改图)开版编号 \N (印染厂开版改图)开版编号 f f
27 2025-11-18 08:04:06.967852+00 2025-11-18 08:08:01.155911+00 (印染厂开版调色)附件 \N (印染厂开版调色)附件 f t
72 2025-11-18 08:07:24.892672+00 2025-11-18 08:08:18.605401+00 (印染厂开版改图)附件 \N (印染厂开版改图)附件 f t
79 2025-11-18 08:08:38.664863+00 2025-11-18 08:08:38.664879+00 (印染厂开版P图)完成数量 \N (印染厂开版P图)完成数量 f f
80 2025-11-18 08:08:38.743771+00 2025-11-18 08:08:38.74378+00 (印染厂开版P图)完成时间 \N (印染厂开版P图)完成时间 f f
82 2025-11-18 08:08:38.902216+00 2025-11-18 08:08:38.902227+00 (印染厂开版P图)描述 \N (印染厂开版P图)描述 f f
83 2025-11-18 08:08:38.972609+00 2025-11-18 08:08:38.972615+00 (印染厂开版P图)电脑位置 \N (印染厂开版P图)电脑位置 f f
84 2025-11-18 08:08:39.047021+00 2025-11-18 08:08:39.047034+00 (印染厂开版P图)设计师名称 \N (印染厂开版P图)设计师名称 f f
85 2025-11-18 08:08:39.122499+00 2025-11-18 08:08:39.122507+00 (印染厂开版P图)状态 \N (印染厂开版P图)状态 f f
86 2025-11-18 08:08:39.191187+00 2025-11-18 08:08:39.191194+00 (印染厂开版P图)开始时间 \N (印染厂开版P图)开始时间 f f
87 2025-11-18 08:08:39.267321+00 2025-11-18 08:08:39.267329+00 (印染厂开版P图)开版编号 \N (印染厂开版P图)开版编号 f f
81 2025-11-18 08:08:38.820486+00 2025-11-18 08:08:51.9089+00 (印染厂开版P图)附件 \N (印染厂开版P图)附件 f t
\.
--
-- Data for Name: stock_inventory; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stock_inventory (created_at, updated_at, id, quantity, num_of_rolls, spec, description, merchant_id, product_id, warehouse_id) FROM stdin;
2025-11-25 10:10:50.074909+00 2025-11-25 10:10:52.768415+00 3 -1602.00 -12 \N \N 1 2 2
2025-11-20 07:54:45.864074+00 2025-11-28 04:16:58.098231+00 1 1907.00 12 \N \N 1 1 2
2025-11-28 10:05:17.989717+00 2025-11-28 10:05:17.992175+00 4 195.00 2 \N \N 1 3 2
2025-11-20 08:03:02.167396+00 2025-11-29 02:07:05.960679+00 2 220.00 3 \N \N 1 1 3
2025-12-01 09:13:19.364669+00 2025-12-01 09:13:19.364676+00 5 100.00 1 \N \N 1 3 3
2025-12-01 09:52:19.036894+00 2025-12-01 09:52:19.039535+00 6 195.00 2 \N \N 1 3 4
2025-12-01 09:59:59.531357+00 2025-12-01 09:59:59.531365+00 7 100.00 1 \N \N 1 3 5
\.
--
-- Data for Name: stock_stockchangedetail; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stock_stockchangedetail (created_at, updated_at, id, quantity, unit, merchant_id, product_id, stock_change_record_id, is_consumed, consume_with_id) FROM stdin;
2025-11-20 07:54:28.234159+00 2025-11-20 07:54:28.234167+00 1 50.00 1 1 1 2 f \N
2025-11-20 08:01:23.822874+00 2025-11-20 08:01:23.822882+00 2 25.00 1 1 1 3 f \N
2025-11-20 08:02:47.394261+00 2025-11-20 08:02:47.394267+00 3 25.00 1 1 1 4 f \N
2025-11-25 08:23:25.704772+00 2025-11-25 08:23:25.704776+00 4 45.00 1 1 1 5 f \N
2025-11-25 08:23:25.706869+00 2025-11-25 08:23:25.706873+00 5 45.00 1 1 1 5 f \N
2025-11-25 08:23:25.707105+00 2025-11-25 08:23:25.707108+00 6 54.00 1 1 1 5 f \N
2025-11-25 08:23:25.707312+00 2025-11-25 08:23:25.707315+00 7 46.00 1 1 1 5 f \N
2025-11-25 08:23:25.707497+00 2025-11-25 08:23:25.7075+00 8 64.00 1 1 1 5 f \N
2025-11-25 08:23:25.70768+00 2025-11-25 08:23:25.707683+00 9 46.00 1 1 1 5 f \N
2025-11-25 08:49:42.447165+00 2025-11-25 08:49:42.44717+00 10 45.00 1 1 2 6 f \N
2025-11-25 08:49:42.447659+00 2025-11-25 08:49:42.447663+00 11 456.00 1 1 2 6 f \N
2025-11-25 08:49:42.447844+00 2025-11-25 08:49:42.447848+00 12 57.00 1 1 2 6 f \N
2025-11-25 08:49:42.448005+00 2025-11-25 08:49:42.448008+00 13 78.00 1 1 2 6 f \N
2025-11-25 08:49:42.448169+00 2025-11-25 08:49:42.448173+00 14 78.00 1 1 2 6 f \N
2025-11-25 08:49:42.448333+00 2025-11-25 08:49:42.448336+00 15 87.00 1 1 2 6 f \N
2025-11-25 08:49:45.15512+00 2025-11-25 08:49:45.155124+00 16 45.00 1 1 2 7 f \N
2025-11-25 08:49:45.155571+00 2025-11-25 08:49:45.155574+00 17 456.00 1 1 2 7 f \N
2025-11-25 08:49:45.155746+00 2025-11-25 08:49:45.15575+00 18 57.00 1 1 2 7 f \N
2025-11-25 08:49:45.155905+00 2025-11-25 08:49:45.155908+00 19 78.00 1 1 2 7 f \N
2025-11-25 08:49:45.156062+00 2025-11-25 08:49:45.156065+00 20 78.00 1 1 2 7 f \N
2025-11-25 08:49:45.156227+00 2025-11-25 08:49:45.15623+00 21 87.00 1 1 2 7 f \N
2025-11-25 09:10:28.070164+00 2025-11-25 09:10:28.070168+00 22 465.00 1 1 1 8 f \N
2025-11-25 09:10:28.070615+00 2025-11-25 09:10:28.070619+00 23 78.00 1 1 1 8 f \N
2025-11-25 09:10:28.070802+00 2025-11-25 09:10:28.070806+00 24 789.00 1 1 1 8 f \N
2025-11-25 09:21:02.981242+00 2025-11-25 09:21:02.981252+00 25 55.00 1 1 1 9 f \N
2025-11-25 09:28:55.964056+00 2025-11-25 09:28:55.964062+00 26 22.00 1 1 1 10 f \N
2025-11-25 10:12:41.752146+00 2025-11-25 10:12:59.642704+00 27 22.00 1 1 1 11 f 26
2025-11-28 03:49:04.600109+00 2025-11-28 03:49:04.600114+00 30 97.00 1 1 1 14 f \N
2025-11-28 03:49:04.600598+00 2025-11-28 03:49:04.600602+00 31 98.00 1 1 1 14 f \N
2025-11-28 06:18:30.986094+00 2025-11-28 06:18:30.9861+00 32 97.00 1 1 1 15 f \N
2025-11-28 06:18:30.986555+00 2025-11-28 06:18:30.986558+00 33 98.00 1 1 1 15 f \N
2025-11-28 06:18:54.739337+00 2025-11-28 06:18:54.739342+00 34 97.00 1 1 1 16 f \N
2025-11-28 06:18:54.739784+00 2025-11-28 06:18:54.739787+00 35 98.00 1 1 1 16 f \N
2025-11-28 06:18:54.739967+00 2025-11-28 06:18:54.73997+00 36 97.00 1 1 1 16 f \N
2025-11-28 06:18:54.740122+00 2025-11-28 06:18:54.740125+00 37 94.00 1 1 1 16 f \N
2025-11-28 10:01:26.418543+00 2025-11-28 10:01:26.418548+00 38 97.00 1 1 1 17 f \N
2025-11-28 10:01:26.419008+00 2025-11-28 10:01:26.419011+00 39 98.00 1 1 1 17 f \N
2025-11-28 10:01:37.047859+00 2025-11-28 10:01:37.047865+00 40 123.00 1 1 1 18 f \N
2025-11-28 10:04:16.501398+00 2025-11-28 10:04:16.501403+00 41 97.00 1 1 3 19 f \N
2025-11-28 10:04:16.501845+00 2025-11-28 10:04:16.501848+00 42 98.00 1 1 3 19 f \N
2025-11-28 10:13:50.084323+00 2025-11-28 10:13:50.08433+00 43 100.00 1 1 3 20 f \N
2025-12-01 09:32:33.889135+00 2025-12-01 09:32:33.88914+00 44 4.00 1 1 3 23 f \N
2025-12-01 09:32:33.889656+00 2025-12-01 09:32:33.88966+00 45 4.00 1 1 3 23 f \N
2025-12-01 09:32:33.88985+00 2025-12-01 09:32:33.889853+00 46 4.00 1 1 3 23 f \N
2025-12-01 09:32:33.890075+00 2025-12-01 09:32:33.890081+00 47 4.00 1 1 3 23 f \N
2025-12-01 09:32:33.890349+00 2025-12-01 09:32:33.890353+00 48 4.00 1 1 3 23 f \N
2025-12-01 09:32:33.890537+00 2025-12-01 09:32:33.89054+00 49 4.00 1 1 3 23 f \N
2025-12-01 09:32:33.890701+00 2025-12-01 09:32:33.890704+00 50 4.00 1 1 3 23 f \N
2025-12-01 09:32:33.89086+00 2025-12-01 09:32:33.890863+00 51 4.00 1 1 3 23 f \N
2025-12-01 09:32:33.891011+00 2025-12-01 09:32:33.891014+00 52 4.00 1 1 3 23 f \N
2025-12-01 09:32:33.891166+00 2025-12-01 09:32:33.891169+00 53 4.00 1 1 3 23 f \N
2025-12-01 09:42:14.252311+00 2025-12-01 09:42:14.252315+00 54 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.252745+00 2025-12-01 09:42:14.252749+00 55 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.252952+00 2025-12-01 09:42:14.252956+00 56 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.253161+00 2025-12-01 09:42:14.253164+00 57 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.253327+00 2025-12-01 09:42:14.25333+00 58 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.253484+00 2025-12-01 09:42:14.253487+00 59 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.253641+00 2025-12-01 09:42:14.253644+00 60 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.253789+00 2025-12-01 09:42:14.253792+00 61 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.253932+00 2025-12-01 09:42:14.253935+00 62 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.254077+00 2025-12-01 09:42:14.25408+00 63 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.254223+00 2025-12-01 09:42:14.254226+00 64 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.254361+00 2025-12-01 09:42:14.254364+00 65 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.254495+00 2025-12-01 09:42:14.254498+00 66 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.254687+00 2025-12-01 09:42:14.254691+00 67 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.254878+00 2025-12-01 09:42:14.254881+00 68 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.255039+00 2025-12-01 09:42:14.255043+00 69 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.255186+00 2025-12-01 09:42:14.255188+00 70 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.255325+00 2025-12-01 09:42:14.255328+00 71 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.255468+00 2025-12-01 09:42:14.255471+00 72 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.255621+00 2025-12-01 09:42:14.255624+00 73 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.255765+00 2025-12-01 09:42:14.255768+00 74 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.255908+00 2025-12-01 09:42:14.255911+00 75 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.256052+00 2025-12-01 09:42:14.256055+00 76 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.256283+00 2025-12-01 09:42:14.256286+00 77 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.256433+00 2025-12-01 09:42:14.256436+00 78 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.256588+00 2025-12-01 09:42:14.256591+00 79 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.25675+00 2025-12-01 09:42:14.256753+00 80 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.256902+00 2025-12-01 09:42:14.256905+00 81 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.257044+00 2025-12-01 09:42:14.257047+00 82 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.257184+00 2025-12-01 09:42:14.257186+00 83 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.257321+00 2025-12-01 09:42:14.257324+00 84 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.257461+00 2025-12-01 09:42:14.257464+00 85 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.2576+00 2025-12-01 09:42:14.257603+00 86 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.257746+00 2025-12-01 09:42:14.257749+00 87 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.257887+00 2025-12-01 09:42:14.25789+00 88 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.25802+00 2025-12-01 09:42:14.258023+00 89 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.258154+00 2025-12-01 09:42:14.258156+00 90 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.258293+00 2025-12-01 09:42:14.258296+00 91 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.258426+00 2025-12-01 09:42:14.258428+00 92 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.258554+00 2025-12-01 09:42:14.258557+00 93 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.258684+00 2025-12-01 09:42:14.258687+00 94 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.258818+00 2025-12-01 09:42:14.258821+00 95 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.258966+00 2025-12-01 09:42:14.258969+00 96 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.259111+00 2025-12-01 09:42:14.259113+00 97 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.259243+00 2025-12-01 09:42:14.259245+00 98 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.259376+00 2025-12-01 09:42:14.259379+00 99 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.259523+00 2025-12-01 09:42:14.259526+00 100 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.25966+00 2025-12-01 09:42:14.259662+00 101 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.259792+00 2025-12-01 09:42:14.259794+00 102 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.259931+00 2025-12-01 09:42:14.259934+00 103 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.26007+00 2025-12-01 09:42:14.260073+00 104 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.260208+00 2025-12-01 09:42:14.260211+00 105 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.260341+00 2025-12-01 09:42:14.260344+00 106 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.260474+00 2025-12-01 09:42:14.260477+00 107 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.260604+00 2025-12-01 09:42:14.260607+00 108 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.260746+00 2025-12-01 09:42:14.26075+00 109 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.260898+00 2025-12-01 09:42:14.260901+00 110 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.261043+00 2025-12-01 09:42:14.261046+00 111 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.26118+00 2025-12-01 09:42:14.261183+00 112 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.261312+00 2025-12-01 09:42:14.261315+00 113 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.26144+00 2025-12-01 09:42:14.261443+00 114 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.261588+00 2025-12-01 09:42:14.261591+00 115 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.261729+00 2025-12-01 09:42:14.261732+00 116 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.26187+00 2025-12-01 09:42:14.261873+00 117 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.262006+00 2025-12-01 09:42:14.262009+00 118 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.262142+00 2025-12-01 09:42:14.262145+00 119 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.262279+00 2025-12-01 09:42:14.262282+00 120 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.262414+00 2025-12-01 09:42:14.262417+00 121 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.262543+00 2025-12-01 09:42:14.262545+00 122 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.26267+00 2025-12-01 09:42:14.262673+00 123 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.262799+00 2025-12-01 09:42:14.262801+00 124 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.263021+00 2025-12-01 09:42:14.263028+00 125 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.263226+00 2025-12-01 09:42:14.26323+00 126 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.263396+00 2025-12-01 09:42:14.263399+00 127 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.263559+00 2025-12-01 09:42:14.263562+00 128 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.263713+00 2025-12-01 09:42:14.263717+00 129 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.263879+00 2025-12-01 09:42:14.263882+00 130 1.00 1 1 1 24 f \N
2025-12-01 09:42:14.264032+00 2025-12-01 09:42:14.264035+00 131 1.00 1 1 1 24 f \N
2025-12-01 09:43:48.645112+00 2025-12-01 09:43:48.645117+00 132 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.645565+00 2025-12-01 09:43:48.645569+00 133 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.645737+00 2025-12-01 09:43:48.64574+00 134 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.645892+00 2025-12-01 09:43:48.645895+00 135 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.646043+00 2025-12-01 09:43:48.646046+00 136 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.646184+00 2025-12-01 09:43:48.646186+00 137 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.646329+00 2025-12-01 09:43:48.646332+00 138 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.646484+00 2025-12-01 09:43:48.646488+00 139 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.646629+00 2025-12-01 09:43:48.646632+00 140 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.646773+00 2025-12-01 09:43:48.646776+00 141 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.646919+00 2025-12-01 09:43:48.646922+00 142 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.647056+00 2025-12-01 09:43:48.647059+00 143 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.647196+00 2025-12-01 09:43:48.6472+00 144 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.64734+00 2025-12-01 09:43:48.647343+00 145 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.647482+00 2025-12-01 09:43:48.647485+00 146 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.647618+00 2025-12-01 09:43:48.647621+00 147 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.647754+00 2025-12-01 09:43:48.647756+00 148 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.647901+00 2025-12-01 09:43:48.647905+00 149 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.648045+00 2025-12-01 09:43:48.648048+00 150 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.648183+00 2025-12-01 09:43:48.648185+00 151 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.648344+00 2025-12-01 09:43:48.648347+00 152 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.648477+00 2025-12-01 09:43:48.64848+00 153 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.64861+00 2025-12-01 09:43:48.648613+00 154 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.648749+00 2025-12-01 09:43:48.648751+00 155 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.648962+00 2025-12-01 09:43:48.648969+00 156 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.649176+00 2025-12-01 09:43:48.649179+00 157 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.649344+00 2025-12-01 09:43:48.649348+00 158 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.649506+00 2025-12-01 09:43:48.64951+00 159 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.649671+00 2025-12-01 09:43:48.649674+00 160 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.649823+00 2025-12-01 09:43:48.649826+00 161 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.649972+00 2025-12-01 09:43:48.649975+00 162 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.650116+00 2025-12-01 09:43:48.650119+00 163 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.65025+00 2025-12-01 09:43:48.650253+00 164 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.650394+00 2025-12-01 09:43:48.650398+00 165 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.650541+00 2025-12-01 09:43:48.650544+00 166 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.650677+00 2025-12-01 09:43:48.65068+00 167 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.650822+00 2025-12-01 09:43:48.650824+00 168 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.650965+00 2025-12-01 09:43:48.650967+00 169 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.651098+00 2025-12-01 09:43:48.651101+00 170 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.65123+00 2025-12-01 09:43:48.651232+00 171 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.651372+00 2025-12-01 09:43:48.651375+00 172 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.65151+00 2025-12-01 09:43:48.651513+00 173 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.651649+00 2025-12-01 09:43:48.651652+00 174 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.65178+00 2025-12-01 09:43:48.651782+00 175 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.651916+00 2025-12-01 09:43:48.651919+00 176 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.652065+00 2025-12-01 09:43:48.652067+00 177 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.6522+00 2025-12-01 09:43:48.652203+00 178 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.652333+00 2025-12-01 09:43:48.652336+00 179 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.652465+00 2025-12-01 09:43:48.652467+00 180 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.652597+00 2025-12-01 09:43:48.6526+00 181 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.652726+00 2025-12-01 09:43:48.652728+00 182 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.652869+00 2025-12-01 09:43:48.652872+00 183 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.653008+00 2025-12-01 09:43:48.653011+00 184 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.653143+00 2025-12-01 09:43:48.653146+00 185 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.653277+00 2025-12-01 09:43:48.653279+00 186 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.653406+00 2025-12-01 09:43:48.653409+00 187 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.653533+00 2025-12-01 09:43:48.653536+00 188 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.653661+00 2025-12-01 09:43:48.653664+00 189 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.653797+00 2025-12-01 09:43:48.6538+00 190 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.653946+00 2025-12-01 09:43:48.653948+00 191 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.65408+00 2025-12-01 09:43:48.654083+00 192 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.654207+00 2025-12-01 09:43:48.654209+00 193 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.654339+00 2025-12-01 09:43:48.654342+00 194 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.654477+00 2025-12-01 09:43:48.654479+00 195 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.654611+00 2025-12-01 09:43:48.654614+00 196 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.654744+00 2025-12-01 09:43:48.654747+00 197 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.65489+00 2025-12-01 09:43:48.654893+00 198 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.655031+00 2025-12-01 09:43:48.655033+00 199 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.655163+00 2025-12-01 09:43:48.655166+00 200 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.655293+00 2025-12-01 09:43:48.655295+00 201 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.655425+00 2025-12-01 09:43:48.655428+00 202 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.655562+00 2025-12-01 09:43:48.655565+00 203 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.655692+00 2025-12-01 09:43:48.655695+00 204 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.655824+00 2025-12-01 09:43:48.655827+00 205 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.655962+00 2025-12-01 09:43:48.655965+00 206 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.656103+00 2025-12-01 09:43:48.656105+00 207 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.656237+00 2025-12-01 09:43:48.65624+00 208 1.00 1 1 3 25 f \N
2025-12-01 09:43:48.656371+00 2025-12-01 09:43:48.656374+00 209 1.00 1 1 3 25 f \N
2025-12-01 09:44:17.427163+00 2025-12-01 09:44:17.427167+00 210 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.427594+00 2025-12-01 09:44:17.427597+00 211 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.427765+00 2025-12-01 09:44:17.427769+00 212 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.427931+00 2025-12-01 09:44:17.427934+00 213 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.428081+00 2025-12-01 09:44:17.428083+00 214 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.42823+00 2025-12-01 09:44:17.428233+00 215 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.42837+00 2025-12-01 09:44:17.428373+00 216 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.428519+00 2025-12-01 09:44:17.428521+00 217 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.428663+00 2025-12-01 09:44:17.428665+00 218 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.428799+00 2025-12-01 09:44:17.428802+00 219 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.428941+00 2025-12-01 09:44:17.428944+00 220 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.429088+00 2025-12-01 09:44:17.429091+00 221 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.429225+00 2025-12-01 09:44:17.429228+00 222 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.429358+00 2025-12-01 09:44:17.429361+00 223 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.4295+00 2025-12-01 09:44:17.429503+00 224 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.429637+00 2025-12-01 09:44:17.42964+00 225 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.429778+00 2025-12-01 09:44:17.429781+00 226 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.429953+00 2025-12-01 09:44:17.429956+00 227 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.430095+00 2025-12-01 09:44:17.430098+00 228 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.43023+00 2025-12-01 09:44:17.430232+00 229 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.430367+00 2025-12-01 09:44:17.430369+00 230 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.430515+00 2025-12-01 09:44:17.430518+00 231 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.430652+00 2025-12-01 09:44:17.430654+00 232 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.430781+00 2025-12-01 09:44:17.430784+00 233 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.430913+00 2025-12-01 09:44:17.430915+00 234 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.431046+00 2025-12-01 09:44:17.431049+00 235 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.431185+00 2025-12-01 09:44:17.431188+00 236 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.431318+00 2025-12-01 09:44:17.43132+00 237 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.431446+00 2025-12-01 09:44:17.431449+00 238 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.431581+00 2025-12-01 09:44:17.431584+00 239 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.431722+00 2025-12-01 09:44:17.431725+00 240 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.431858+00 2025-12-01 09:44:17.431861+00 241 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.432023+00 2025-12-01 09:44:17.432026+00 242 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.432154+00 2025-12-01 09:44:17.432156+00 243 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.432281+00 2025-12-01 09:44:17.432284+00 244 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.432422+00 2025-12-01 09:44:17.432425+00 245 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.432562+00 2025-12-01 09:44:17.432565+00 246 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.432692+00 2025-12-01 09:44:17.432694+00 247 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.432825+00 2025-12-01 09:44:17.432827+00 248 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.432963+00 2025-12-01 09:44:17.432966+00 249 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.433105+00 2025-12-01 09:44:17.433108+00 250 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.433241+00 2025-12-01 09:44:17.433243+00 251 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.433371+00 2025-12-01 09:44:17.433374+00 252 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.433502+00 2025-12-01 09:44:17.433504+00 253 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.433632+00 2025-12-01 09:44:17.433635+00 254 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.433771+00 2025-12-01 09:44:17.433774+00 255 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.433905+00 2025-12-01 09:44:17.433908+00 256 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.434035+00 2025-12-01 09:44:17.434037+00 257 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.434164+00 2025-12-01 09:44:17.434167+00 258 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.434291+00 2025-12-01 09:44:17.434294+00 259 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.43443+00 2025-12-01 09:44:17.434433+00 260 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.434564+00 2025-12-01 09:44:17.434567+00 261 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.434692+00 2025-12-01 09:44:17.434695+00 262 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.434818+00 2025-12-01 09:44:17.434821+00 263 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.434953+00 2025-12-01 09:44:17.434956+00 264 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.435098+00 2025-12-01 09:44:17.4351+00 265 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.435233+00 2025-12-01 09:44:17.435235+00 266 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.435362+00 2025-12-01 09:44:17.435365+00 267 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.43549+00 2025-12-01 09:44:17.435492+00 268 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.435629+00 2025-12-01 09:44:17.435632+00 269 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.435759+00 2025-12-01 09:44:17.435762+00 270 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.435891+00 2025-12-01 09:44:17.435893+00 271 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.436027+00 2025-12-01 09:44:17.43603+00 272 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.436154+00 2025-12-01 09:44:17.436156+00 273 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.436281+00 2025-12-01 09:44:17.436284+00 274 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.436424+00 2025-12-01 09:44:17.436427+00 275 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.436557+00 2025-12-01 09:44:17.43656+00 276 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.436695+00 2025-12-01 09:44:17.436698+00 277 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.436839+00 2025-12-01 09:44:17.436841+00 278 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.436975+00 2025-12-01 09:44:17.436977+00 279 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.437113+00 2025-12-01 09:44:17.437115+00 280 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.43724+00 2025-12-01 09:44:17.437243+00 281 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.437377+00 2025-12-01 09:44:17.43738+00 282 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.437511+00 2025-12-01 09:44:17.437514+00 283 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.437642+00 2025-12-01 09:44:17.437645+00 284 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.437776+00 2025-12-01 09:44:17.437779+00 285 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.437924+00 2025-12-01 09:44:17.437927+00 286 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.438065+00 2025-12-01 09:44:17.438068+00 287 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.4382+00 2025-12-01 09:44:17.438203+00 288 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.438335+00 2025-12-01 09:44:17.438338+00 289 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.438474+00 2025-12-01 09:44:17.438477+00 290 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.438615+00 2025-12-01 09:44:17.438618+00 291 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.438748+00 2025-12-01 09:44:17.438751+00 292 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.438879+00 2025-12-01 09:44:17.438881+00 293 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.43901+00 2025-12-01 09:44:17.439013+00 294 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.439147+00 2025-12-01 09:44:17.439149+00 295 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.439278+00 2025-12-01 09:44:17.439281+00 296 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.439421+00 2025-12-01 09:44:17.439424+00 297 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.43955+00 2025-12-01 09:44:17.439552+00 298 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.439681+00 2025-12-01 09:44:17.439685+00 299 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.439826+00 2025-12-01 09:44:17.439829+00 300 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.439972+00 2025-12-01 09:44:17.439975+00 301 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.44013+00 2025-12-01 09:44:17.440133+00 302 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.440274+00 2025-12-01 09:44:17.440276+00 303 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.440407+00 2025-12-01 09:44:17.44041+00 304 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.440546+00 2025-12-01 09:44:17.440549+00 305 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.440678+00 2025-12-01 09:44:17.440681+00 306 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.440806+00 2025-12-01 09:44:17.440809+00 307 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.440939+00 2025-12-01 09:44:17.440942+00 308 1.00 1 1 3 26 f \N
2025-12-01 09:44:17.44107+00 2025-12-01 09:44:17.441072+00 309 1.00 1 1 3 26 f \N
2025-12-01 09:45:03.258729+00 2025-12-01 09:45:03.258734+00 310 7.00 1 1 3 27 f \N
2025-12-01 09:45:03.259181+00 2025-12-01 09:45:03.259184+00 311 7.00 1 1 3 27 f \N
2025-12-01 09:45:03.259353+00 2025-12-01 09:45:03.259356+00 312 7.00 1 1 3 27 f \N
2025-12-01 09:45:03.259506+00 2025-12-01 09:45:03.259509+00 313 7.00 1 1 3 27 f \N
2025-12-01 09:45:03.25966+00 2025-12-01 09:45:03.259663+00 314 7.00 1 1 3 27 f \N
2025-12-01 09:45:03.259801+00 2025-12-01 09:45:03.259804+00 315 7.00 1 1 3 27 f \N
2025-12-01 09:45:03.260111+00 2025-12-01 09:45:03.260117+00 316 7.00 1 1 3 27 f \N
2025-12-01 09:45:03.260341+00 2025-12-01 09:45:03.260344+00 317 7.00 1 1 3 27 f \N
2025-12-01 09:45:03.260518+00 2025-12-01 09:45:03.260522+00 318 7.00 1 1 3 27 f \N
2025-12-01 09:45:03.260679+00 2025-12-01 09:45:03.260682+00 319 7.00 1 1 3 27 f \N
2025-12-01 09:45:03.260826+00 2025-12-01 09:45:03.260829+00 320 7.00 1 1 3 27 f \N
2025-12-01 09:45:03.26098+00 2025-12-01 09:45:03.260983+00 321 7.00 1 1 3 27 f \N
2025-12-01 09:45:03.261122+00 2025-12-01 09:45:03.261125+00 322 7.00 1 1 3 27 f \N
2025-12-01 09:45:03.261261+00 2025-12-01 09:45:03.261264+00 323 7.00 1 1 3 27 f \N
2025-12-01 09:45:03.261414+00 2025-12-01 09:45:03.261417+00 324 2.00 1 1 3 27 f \N
2025-12-01 09:48:45.353244+00 2025-12-01 09:48:45.353249+00 325 97.00 1 1 3 28 f \N
2025-12-01 09:48:45.353701+00 2025-12-01 09:48:45.353705+00 326 98.00 1 1 3 28 f \N
2025-12-01 09:57:08.942356+00 2025-12-01 09:57:08.94236+00 327 33.33 1 1 3 29 f \N
2025-12-01 09:57:08.942815+00 2025-12-01 09:57:08.942818+00 328 33.33 1 1 3 29 f \N
2025-12-01 09:57:08.942995+00 2025-12-01 09:57:08.942999+00 329 33.33 1 1 3 29 f \N
2025-12-01 09:57:08.943151+00 2025-12-01 09:57:08.943154+00 330 0.00 1 1 3 29 f \N
2025-12-01 09:59:47.284853+00 2025-12-01 09:59:47.284859+00 331 100.00 1 1 3 30 f \N
2025-12-01 10:11:13.667459+00 2025-12-01 10:11:13.667464+00 332 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.667911+00 2025-12-01 10:11:13.667914+00 333 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.668095+00 2025-12-01 10:11:13.668098+00 334 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.668255+00 2025-12-01 10:11:13.668258+00 335 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.668403+00 2025-12-01 10:11:13.668406+00 336 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.668544+00 2025-12-01 10:11:13.668547+00 337 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.668683+00 2025-12-01 10:11:13.668685+00 338 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.668822+00 2025-12-01 10:11:13.668826+00 339 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.668979+00 2025-12-01 10:11:13.668982+00 340 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.669126+00 2025-12-01 10:11:13.669129+00 341 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.669266+00 2025-12-01 10:11:13.669268+00 342 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.669408+00 2025-12-01 10:11:13.669411+00 343 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.669556+00 2025-12-01 10:11:13.669559+00 344 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.669701+00 2025-12-01 10:11:13.669704+00 345 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.669842+00 2025-12-01 10:11:13.669845+00 346 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.669979+00 2025-12-01 10:11:13.669982+00 347 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.670113+00 2025-12-01 10:11:13.670116+00 348 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.670256+00 2025-12-01 10:11:13.670258+00 349 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.670391+00 2025-12-01 10:11:13.670394+00 350 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.670526+00 2025-12-01 10:11:13.670528+00 351 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.670669+00 2025-12-01 10:11:13.670672+00 352 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.67081+00 2025-12-01 10:11:13.670813+00 353 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.67095+00 2025-12-01 10:11:13.670953+00 354 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.671082+00 2025-12-01 10:11:13.671085+00 355 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.671212+00 2025-12-01 10:11:13.671215+00 356 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.67135+00 2025-12-01 10:11:13.671353+00 357 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.671486+00 2025-12-01 10:11:13.671489+00 358 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.671617+00 2025-12-01 10:11:13.67162+00 359 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.671746+00 2025-12-01 10:11:13.671749+00 360 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.671881+00 2025-12-01 10:11:13.671884+00 361 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.672023+00 2025-12-01 10:11:13.672026+00 362 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.672185+00 2025-12-01 10:11:13.672188+00 363 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.672324+00 2025-12-01 10:11:13.672327+00 364 3.00 1 1 2 31 f \N
2025-12-01 10:11:13.672454+00 2025-12-01 10:11:13.672456+00 365 1.00 1 1 2 31 f \N
2025-12-01 10:12:21.034928+00 2025-12-01 10:12:21.034932+00 366 33.34 1 1 3 32 f \N
2025-12-01 10:12:21.035422+00 2025-12-01 10:12:21.035426+00 367 33.33 1 1 3 32 f \N
2025-12-01 10:12:21.035603+00 2025-12-01 10:12:21.035606+00 368 33.33 1 1 3 32 f \N
\.
--
-- Data for Name: stock_stockchangerecord; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stock_stockchangerecord (created_at, updated_at, id, type, source_type, source_id, is_finished, finished_at, remarks, created_by_id, merchant_id, warehouse_id) FROM stdin;
2025-11-20 07:54:03.430455+00 2025-11-20 07:54:45.867681+00 2 1 4 \N t 2025-11-20 07:54:45.866469+00 1 1 2
2025-11-20 08:00:58.975687+00 2025-11-20 08:02:59.822363+00 3 2 10 \N t 2025-11-20 08:02:59.82082+00 1 1 2
2025-11-20 08:02:18.094174+00 2025-11-20 08:03:02.172741+00 4 1 3 \N t 2025-11-20 08:03:02.171627+00 1 1 3
2025-11-25 08:23:25.703137+00 2025-11-25 08:26:59.598906+00 5 1 1 \N t 2025-11-25 08:26:59.598104+00 \N 2 1 2
2025-11-25 09:28:40.651817+00 2025-11-25 10:10:43.514322+00 10 1 3 \N t 2025-11-25 10:10:43.513447+00 1 1 2
2025-11-25 09:20:41.469745+00 2025-11-25 10:10:46.644773+00 9 1 4 \N t 2025-11-25 10:10:46.643786+00 1 1 2
2025-11-25 09:10:28.069309+00 2025-11-25 10:10:48.427132+00 8 1 1 \N t 2025-11-25 10:10:48.426187+00 \N 2 1 2
2025-11-25 08:49:45.154243+00 2025-11-25 10:10:50.088642+00 7 2 6 \N t 2025-11-25 10:10:50.087782+00 \N 2 1 2
2025-11-25 08:49:42.446213+00 2025-11-25 10:10:52.770383+00 6 2 6 \N t 2025-11-25 10:10:52.769618+00 \N 2 1 2
2025-11-25 10:12:01.37053+00 2025-11-25 10:13:09.76617+00 11 2 9 \N t 2025-11-25 10:13:09.765158+00 1 1 2
2025-11-28 03:49:04.598896+00 2025-11-28 04:16:58.100963+00 14 1 1 9 t 2025-11-28 04:16:58.099857+00 \N 2 1 2
2025-11-28 06:18:54.73818+00 2025-11-28 06:18:54.73819+00 16 1 1 11 f \N \N 2 1 4
2025-11-28 10:01:26.417334+00 2025-11-28 10:01:26.417345+00 17 1 1 16 f \N \N 2 1 2
2025-11-28 10:01:37.046717+00 2025-11-28 10:01:37.046725+00 18 1 1 14 f \N \N 2 1 3
2025-11-28 10:04:16.500326+00 2025-11-28 10:05:17.994251+00 19 1 1 17 t 2025-11-28 10:05:17.993378+00 \N 2 1 2
2025-11-28 06:18:30.984995+00 2025-11-29 02:07:05.962873+00 15 1 1 10 t 2025-11-29 02:07:05.961912+00 \N 2 1 3
2025-11-28 10:13:50.08242+00 2025-12-01 09:13:19.367796+00 20 1 1 19 t 2025-12-01 09:13:19.366794+00 \N 2 1 3
2025-12-01 09:32:33.887738+00 2025-12-01 09:32:33.88775+00 23 2 7 3 f \N \N 2 1 5
2025-12-01 09:42:14.251174+00 2025-12-01 09:42:14.251182+00 24 1 2 1 f \N \N 2 1 5
2025-12-01 09:43:48.643982+00 2025-12-01 09:43:48.643991+00 25 1 2 2 f \N \N 2 1 5
2025-12-01 09:44:17.426016+00 2025-12-01 09:44:17.426025+00 26 1 2 3 f \N \N 2 1 5
2025-12-01 09:45:03.25759+00 2025-12-01 09:45:03.257598+00 27 2 7 4 f \N \N 2 1 5
2025-12-01 09:48:45.352096+00 2025-12-01 09:52:19.041514+00 28 1 2 4 t 2025-12-01 09:52:19.040714+00 \N 2 1 4
2025-12-01 09:57:08.94116+00 2025-12-01 09:57:08.941169+00 29 1 2 5 f \N \N 2 1 5
2025-12-01 09:59:47.283764+00 2025-12-01 09:59:59.534321+00 30 1 2 6 t 2025-12-01 09:59:59.533528+00 \N 2 1 5
2025-12-01 10:11:13.66633+00 2025-12-01 10:11:13.666338+00 31 1 2 7 f \N \N 2 1 5
2025-12-01 10:12:21.033643+00 2025-12-01 10:12:21.033653+00 32 1 2 8 f \N \N 2 1 5
\.
--
-- Data for Name: stock_stockfreeze; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stock_stockfreeze (created_at, updated_at, id, quantity, unit, status, frozen_with, completed_at, completed_with, cancelled_at, reason, cancelled_by_id, completed_by_id, frozen_by_id, merchant_id, product_id, stock_detail_id, warehouse_id) FROM stdin;
\.
--
-- Data for Name: stock_stocksnapshot; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stock_stocksnapshot (created_at, updated_at, id, delta, quantity_before, quantity_after, unit, num_of_rolls, offset_to, offset_at, cancelled, cancelled_at, offset_id, merchant_id, product_id, stock_change_record_id, warehouse_id) FROM stdin;
2025-11-20 07:54:45.865438+00 2025-11-20 07:54:45.865443+00 1 50.00 0.00 50.00 1 2 \N \N f \N \N 1 1 2 2
2025-11-20 08:02:59.81919+00 2025-11-20 08:02:59.819199+00 2 -25.00 50.00 25.00 1 -1 \N \N f \N \N 1 1 3 2
2025-11-20 08:03:02.170296+00 2025-11-20 08:03:02.170306+00 3 25.00 0.00 25.00 1 2 \N \N f \N \N 1 1 4 3
2025-11-25 08:26:59.585488+00 2025-11-25 08:26:59.585496+00 4 45.00 25.00 70.00 1 2 \N \N f \N \N 1 1 5 2
2025-11-25 08:26:59.589092+00 2025-11-25 08:26:59.589097+00 5 45.00 70.00 115.00 1 3 \N \N f \N \N 1 1 5 2
2025-11-25 08:26:59.59076+00 2025-11-25 08:26:59.590764+00 6 54.00 115.00 169.00 1 4 \N \N f \N \N 1 1 5 2
2025-11-25 08:26:59.592872+00 2025-11-25 08:26:59.592876+00 7 46.00 169.00 215.00 1 5 \N \N f \N \N 1 1 5 2
2025-11-25 08:26:59.595099+00 2025-11-25 08:26:59.595104+00 8 64.00 215.00 279.00 1 6 \N \N f \N \N 1 1 5 2
2025-11-25 08:26:59.597258+00 2025-11-25 08:26:59.597262+00 9 46.00 279.00 325.00 1 7 \N \N f \N \N 1 1 5 2
2025-11-25 10:10:43.512086+00 2025-11-25 10:10:43.512093+00 10 22.00 325.00 347.00 1 8 \N \N f \N \N 1 1 10 2
2025-11-25 10:10:46.642532+00 2025-11-25 10:10:46.642538+00 11 55.00 347.00 402.00 1 9 \N \N f \N \N 1 1 9 2
2025-11-25 10:10:48.421374+00 2025-11-25 10:10:48.421379+00 12 465.00 402.00 867.00 1 10 \N \N f \N \N 1 1 8 2
2025-11-25 10:10:48.423686+00 2025-11-25 10:10:48.42369+00 13 78.00 867.00 945.00 1 11 \N \N f \N \N 1 1 8 2
2025-11-25 10:10:48.425271+00 2025-11-25 10:10:48.425277+00 14 789.00 945.00 1734.00 1 12 \N \N f \N \N 1 1 8 2
2025-11-25 10:10:50.076648+00 2025-11-25 10:10:50.076654+00 15 -45.00 0.00 -45.00 1 -2 \N \N f \N \N 1 2 7 2
2025-11-25 10:10:50.079262+00 2025-11-25 10:10:50.079266+00 16 -456.00 -45.00 -501.00 1 -3 \N \N f \N \N 1 2 7 2
2025-11-25 10:10:50.081387+00 2025-11-25 10:10:50.081391+00 17 -57.00 -501.00 -558.00 1 -4 \N \N f \N \N 1 2 7 2
2025-11-25 10:10:50.083463+00 2025-11-25 10:10:50.083469+00 18 -78.00 -558.00 -636.00 1 -5 \N \N f \N \N 1 2 7 2
2025-11-25 10:10:50.085389+00 2025-11-25 10:10:50.085393+00 19 -78.00 -636.00 -714.00 1 -6 \N \N f \N \N 1 2 7 2
2025-11-25 10:10:50.087157+00 2025-11-25 10:10:50.087163+00 20 -87.00 -714.00 -801.00 1 -7 \N \N f \N \N 1 2 7 2
2025-11-25 10:10:52.760974+00 2025-11-25 10:10:52.760978+00 21 -45.00 -801.00 -846.00 1 -8 \N \N f \N \N 1 2 6 2
2025-11-25 10:10:52.763084+00 2025-11-25 10:10:52.763088+00 22 -456.00 -846.00 -1302.00 1 -9 \N \N f \N \N 1 2 6 2
2025-11-25 10:10:52.764538+00 2025-11-25 10:10:52.764542+00 23 -57.00 -1302.00 -1359.00 1 -10 \N \N f \N \N 1 2 6 2
2025-11-25 10:10:52.765994+00 2025-11-25 10:10:52.765998+00 24 -78.00 -1359.00 -1437.00 1 -11 \N \N f \N \N 1 2 6 2
2025-11-25 10:10:52.76742+00 2025-11-25 10:10:52.767424+00 25 -78.00 -1437.00 -1515.00 1 -12 \N \N f \N \N 1 2 6 2
2025-11-25 10:10:52.769042+00 2025-11-25 10:10:52.769047+00 26 -87.00 -1515.00 -1602.00 1 -13 \N \N f \N \N 1 2 6 2
2025-11-25 10:13:09.763497+00 2025-11-25 10:13:09.763502+00 27 -22.00 1734.00 1712.00 1 9 \N \N f \N \N 1 1 11 2
2025-11-28 04:16:58.096138+00 2025-11-28 04:16:58.096144+00 28 97.00 1712.00 1809.00 1 12 \N \N f \N \N 1 1 14 2
2025-11-28 04:16:58.099209+00 2025-11-28 04:16:58.099214+00 29 98.00 1809.00 1907.00 1 13 \N \N f \N \N 1 1 14 2
2025-11-28 10:05:17.990897+00 2025-11-28 10:05:17.990901+00 30 97.00 0.00 97.00 1 2 \N \N f \N \N 1 3 19 2
2025-11-28 10:05:17.992816+00 2025-11-28 10:05:17.99282+00 31 98.00 97.00 195.00 1 3 \N \N f \N \N 1 3 19 2
2025-11-29 02:07:05.958964+00 2025-11-29 02:07:05.95897+00 32 97.00 25.00 122.00 1 3 \N \N f \N \N 1 1 15 3
2025-11-29 02:07:05.961355+00 2025-11-29 02:07:05.961359+00 33 98.00 122.00 220.00 1 4 \N \N f \N \N 1 1 15 3
2025-12-01 09:13:19.365892+00 2025-12-01 09:13:19.365896+00 34 100.00 0.00 100.00 1 2 \N \N f \N \N 1 3 20 3
2025-12-01 09:52:19.03822+00 2025-12-01 09:52:19.038224+00 35 97.00 0.00 97.00 1 2 \N \N f \N \N 1 3 28 4
2025-12-01 09:52:19.040185+00 2025-12-01 09:52:19.040189+00 36 98.00 97.00 195.00 1 3 \N \N f \N \N 1 3 28 4
2025-12-01 09:59:59.532665+00 2025-12-01 09:59:59.532669+00 37 100.00 0.00 100.00 1 2 \N \N f \N \N 1 3 30 5
\.
--
-- Data for Name: stock_transferorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stock_transferorder (created_at, updated_at, id, mode, transfer_date, status, remarks, request_id, created_by_id, from_warehouse_id, incoming_record_id, merchant_id, operator_id, outgoing_record_id, to_warehouse_id) FROM stdin;
\.
--
-- Data for Name: stock_transferorderitem; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stock_transferorderitem (created_at, updated_at, id, unit, total_quantity, num_of_rolls, product_id, transfer_order_id) FROM stdin;
\.
--
-- Name: api_data_sync_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.api_data_sync_id_seq', 75, true);
--
-- Name: api_uploaded_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.api_uploaded_file_id_seq', 58, true);
--
-- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.auth_group_id_seq', 3, true);
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.auth_group_permissions_id_seq', 434, true);
--
-- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.auth_permission_id_seq', 221, true);
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.auth_user_groups_id_seq', 13, true);
--
-- Name: auth_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.auth_user_id_seq', 26, true);
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.auth_user_user_permissions_id_seq', 39, true);
--
-- Name: basic_info_bankaccount_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_bankaccount_id_seq', 1, true);
--
-- Name: basic_info_customer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_customer_id_seq', 609, 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', 4, true);
--
-- Name: basic_info_deviceinfo_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_deviceinfo_id_seq', 2, true);
--
-- Name: basic_info_employee_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_employee_id_seq', 25, true);
--
-- Name: basic_info_employeetype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_employeetype_id_seq', 8, true);
--
-- Name: basic_info_merchant_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_merchant_id_seq', 3, true);
--
-- Name: basic_info_merchantsetting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_merchantsetting_id_seq', 1, true);
--
-- Name: basic_info_product_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_product_id_seq', 2421, 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', 25, true);
--
-- Name: basic_info_supplier_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_supplier_id_seq', 2, true);
--
-- Name: basic_info_userprofile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_userprofile_id_seq', 5, true);
--
-- Name: basic_info_vehicletransportrecord_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_vehicletransportrecord_id_seq', 1, false);
--
-- Name: basic_info_vehicletype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_vehicletype_id_seq', 1, false);
--
-- Name: basic_info_warehouse_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_warehouse_id_seq', 5, true);
--
-- Name: business_balancechangerecord_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_balancechangerecord_id_seq', 13, true);
--
-- Name: business_customerbalance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_customerbalance_id_seq', 2, true);
--
-- Name: business_paymentorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_paymentorder_id_seq', 1, true);
--
-- Name: business_purchaseorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_purchaseorderitem_id_seq', 54, true);
--
-- Name: business_purchasereturnorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_purchasereturnorder_id_seq', 4, true);
--
-- Name: business_purchasereturnorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_purchasereturnorderitem_id_seq', 4, true);
--
-- Name: business_receiptorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_receiptorder_id_seq', 2, true);
--
-- Name: business_salesorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_salesorder_id_seq', 2, true);
--
-- Name: business_salesorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_salesorderitem_id_seq', 2, true);
--
-- Name: business_salesreturnorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_salesreturnorder_id_seq', 8, true);
--
-- Name: business_salesreturnorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_salesreturnorderitem_id_seq', 8, true);
--
-- Name: business_supplierbalance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_supplierbalance_id_seq', 2, true);
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.django_admin_log_id_seq', 331, true);
--
-- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.django_content_type_id_seq', 54, true);
--
-- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.django_migrations_id_seq', 106, true);
--
-- Name: printing_plateorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.printing_plateorder_id_seq', 80034, true);
--
-- Name: printing_printingjob_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.printing_printingjob_id_seq', 14, true);
--
-- Name: printing_printingorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.printing_printingorder_id_seq', 18, 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', 42, true);
--
-- Name: stateflow_order_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stateflow_order_id_seq', 63, true);
--
-- Name: stateflow_orderstatelog_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stateflow_orderstatelog_id_seq', 89, true);
--
-- Name: stateflow_process_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stateflow_process_id_seq', 9, true);
--
-- Name: stateflow_processnode_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stateflow_processnode_id_seq', 36, true);
--
-- Name: stateflow_state_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stateflow_state_id_seq', 21, true);
--
-- Name: stateflow_state_parameters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stateflow_state_parameters_id_seq', 90, true);
--
-- Name: stateflow_stateparameter_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stateflow_stateparameter_id_seq', 87, true);
--
-- Name: stock_inventory_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stock_inventory_id_seq', 7, true);
--
-- Name: stock_purchaseorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stock_purchaseorder_id_seq', 58, true);
--
-- Name: stock_stockchangedetail_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stock_stockchangedetail_id_seq', 368, true);
--
-- Name: stock_stockchangerecord_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stock_stockchangerecord_id_seq', 32, true);
--
-- Name: stock_stockfreeze_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stock_stockfreeze_id_seq', 1, false);
--
-- Name: stock_stocksnapshot_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stock_stocksnapshot_id_seq', 37, true);
--
-- Name: stock_transferorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stock_transferorder_id_seq', 1, false);
--
-- Name: stock_transferorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stock_transferorderitem_id_seq', 1, false);
--
-- Name: api_data_sync api_data_sync_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.api_data_sync
ADD CONSTRAINT api_data_sync_pkey PRIMARY KEY (id);
--
-- Name: api_uploaded_file api_uploaded_file_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.api_uploaded_file
ADD CONSTRAINT api_uploaded_file_pkey PRIMARY KEY (id);
--
-- Name: auth_group auth_group_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_group
ADD CONSTRAINT auth_group_name_key UNIQUE (name);
--
-- Name: auth_group_permissions auth_group_permissions_group_id_permission_id_0cd325b0_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_group_permissions
ADD CONSTRAINT auth_group_permissions_group_id_permission_id_0cd325b0_uniq UNIQUE (group_id, permission_id);
--
-- Name: auth_group_permissions auth_group_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_group_permissions
ADD CONSTRAINT auth_group_permissions_pkey PRIMARY KEY (id);
--
-- Name: auth_group auth_group_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_group
ADD CONSTRAINT auth_group_pkey PRIMARY KEY (id);
--
-- Name: auth_permission auth_permission_content_type_id_codename_01ab375a_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_permission
ADD CONSTRAINT auth_permission_content_type_id_codename_01ab375a_uniq UNIQUE (content_type_id, codename);
--
-- Name: auth_permission auth_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_permission
ADD CONSTRAINT auth_permission_pkey PRIMARY KEY (id);
--
-- Name: auth_user_groups auth_user_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_groups
ADD CONSTRAINT auth_user_groups_pkey PRIMARY KEY (id);
--
-- Name: auth_user_groups auth_user_groups_user_id_group_id_94350c0c_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_groups
ADD CONSTRAINT auth_user_groups_user_id_group_id_94350c0c_uniq UNIQUE (user_id, group_id);
--
-- Name: auth_user auth_user_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user
ADD CONSTRAINT auth_user_pkey PRIMARY KEY (id);
--
-- Name: auth_user_user_permissions auth_user_user_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_user_permissions
ADD CONSTRAINT auth_user_user_permissions_pkey PRIMARY KEY (id);
--
-- Name: auth_user_user_permissions auth_user_user_permissions_user_id_permission_id_14a6b632_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_user_permissions
ADD CONSTRAINT auth_user_user_permissions_user_id_permission_id_14a6b632_uniq UNIQUE (user_id, permission_id);
--
-- Name: auth_user auth_user_username_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user
ADD CONSTRAINT auth_user_username_key UNIQUE (username);
--
-- Name: basic_info_bankaccount basic_info_bankaccount_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_bankaccount
ADD CONSTRAINT basic_info_bankaccount_pkey PRIMARY KEY (id);
--
-- Name: basic_info_customer basic_info_customer_mdy_uid_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer
ADD CONSTRAINT basic_info_customer_mdy_uid_key UNIQUE (mdy_uid);
--
-- Name: basic_info_customer basic_info_customer_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer
ADD CONSTRAINT basic_info_customer_pkey PRIMARY KEY (id);
--
-- Name: basic_info_customer_visible_employees basic_info_customer_visi_customer_id_employee_id_7be5046b_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer_visible_employees
ADD CONSTRAINT basic_info_customer_visi_customer_id_employee_id_7be5046b_uniq UNIQUE (customer_id, employee_id);
--
-- Name: basic_info_customer_visible_employees basic_info_customer_visible_employees_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer_visible_employees
ADD CONSTRAINT basic_info_customer_visible_employees_pkey PRIMARY KEY (id);
--
-- Name: basic_info_deviceinfo basic_info_deviceinfo_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_deviceinfo
ADD CONSTRAINT basic_info_deviceinfo_pkey PRIMARY KEY (id);
--
-- Name: basic_info_employee basic_info_employee_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employee
ADD CONSTRAINT basic_info_employee_pkey PRIMARY KEY (id);
--
-- Name: basic_info_employee basic_info_employee_sys_user_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employee
ADD CONSTRAINT basic_info_employee_sys_user_id_key UNIQUE (sys_user_id);
--
-- Name: basic_info_employeetype basic_info_employeetype_merchant_id_title_cdb313e8_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employeetype
ADD CONSTRAINT basic_info_employeetype_merchant_id_title_cdb313e8_uniq UNIQUE (merchant_id, title);
--
-- Name: basic_info_employeetype basic_info_employeetype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employeetype
ADD CONSTRAINT basic_info_employeetype_pkey PRIMARY KEY (id);
--
-- Name: basic_info_merchant basic_info_merchant_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_merchant
ADD CONSTRAINT basic_info_merchant_pkey PRIMARY KEY (id);
--
-- Name: basic_info_merchantsetting basic_info_merchantsetting_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_merchantsetting
ADD CONSTRAINT basic_info_merchantsetting_pkey PRIMARY KEY (id);
--
-- Name: basic_info_product basic_info_product_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_product
ADD CONSTRAINT basic_info_product_pkey PRIMARY KEY (id);
--
-- Name: basic_info_productcategory basic_info_productcategory_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_productcategory
ADD CONSTRAINT basic_info_productcategory_pkey PRIMARY KEY (id);
--
-- Name: basic_info_quickinput basic_info_quickinput_name_group_68f4787a_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_quickinput
ADD CONSTRAINT basic_info_quickinput_name_group_68f4787a_uniq UNIQUE (name, "group");
--
-- Name: basic_info_quickinput basic_info_quickinput_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_quickinput
ADD CONSTRAINT basic_info_quickinput_pkey PRIMARY KEY (id);
--
-- Name: basic_info_supplier basic_info_supplier_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_supplier
ADD CONSTRAINT basic_info_supplier_pkey PRIMARY KEY (id);
--
-- Name: basic_info_userprofile basic_info_userprofile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_userprofile
ADD CONSTRAINT basic_info_userprofile_pkey PRIMARY KEY (id);
--
-- Name: basic_info_userprofile basic_info_userprofile_user_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_userprofile
ADD CONSTRAINT basic_info_userprofile_user_id_key UNIQUE (user_id);
--
-- Name: basic_info_vehicletransportrecord basic_info_vehicletransportrecord_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_vehicletransportrecord
ADD CONSTRAINT basic_info_vehicletransportrecord_pkey PRIMARY KEY (id);
--
-- Name: basic_info_vehicletype basic_info_vehicletype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_vehicletype
ADD CONSTRAINT basic_info_vehicletype_pkey PRIMARY KEY (id);
--
-- Name: basic_info_warehouse basic_info_warehouse_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_warehouse
ADD CONSTRAINT basic_info_warehouse_pkey PRIMARY KEY (id);
--
-- Name: business_balancechangerecord business_balancechangerecord_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_balancechangerecord
ADD CONSTRAINT business_balancechangerecord_pkey PRIMARY KEY (id);
--
-- Name: business_customerbalance business_customerbalance_merchant_id_customer_id_2a8343f7_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_customerbalance
ADD CONSTRAINT business_customerbalance_merchant_id_customer_id_2a8343f7_uniq UNIQUE (merchant_id, customer_id);
--
-- Name: business_customerbalance business_customerbalance_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_customerbalance
ADD CONSTRAINT business_customerbalance_pkey PRIMARY KEY (id);
--
-- Name: business_paymentorder business_paymentorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_paymentorder
ADD CONSTRAINT business_paymentorder_pkey PRIMARY KEY (id);
--
-- Name: business_purchaseorderitem business_purchaseorderitem_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorderitem
ADD CONSTRAINT business_purchaseorderitem_pkey PRIMARY KEY (id);
--
-- Name: business_purchasereturnorder business_purchasereturnorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorder
ADD CONSTRAINT business_purchasereturnorder_pkey PRIMARY KEY (id);
--
-- Name: business_purchasereturnorderitem business_purchasereturnorderitem_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorderitem
ADD CONSTRAINT business_purchasereturnorderitem_pkey PRIMARY KEY (id);
--
-- Name: business_receiptorder business_receiptorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_receiptorder
ADD CONSTRAINT business_receiptorder_pkey PRIMARY KEY (id);
--
-- Name: business_salesorder business_salesorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorder
ADD CONSTRAINT business_salesorder_pkey PRIMARY KEY (id);
--
-- Name: business_salesorderitem business_salesorderitem_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorderitem
ADD CONSTRAINT business_salesorderitem_pkey PRIMARY KEY (id);
--
-- Name: business_salesreturnorder business_salesreturnorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorder
ADD CONSTRAINT business_salesreturnorder_pkey PRIMARY KEY (id);
--
-- Name: business_salesreturnorderitem business_salesreturnorderitem_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorderitem
ADD CONSTRAINT business_salesreturnorderitem_pkey PRIMARY KEY (id);
--
-- Name: business_supplierbalance business_supplierbalance_merchant_id_supplier_id_2d9400c1_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_supplierbalance
ADD CONSTRAINT business_supplierbalance_merchant_id_supplier_id_2d9400c1_uniq UNIQUE (merchant_id, supplier_id);
--
-- Name: business_supplierbalance business_supplierbalance_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_supplierbalance
ADD CONSTRAINT business_supplierbalance_pkey PRIMARY KEY (id);
--
-- Name: django_admin_log django_admin_log_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.django_admin_log
ADD CONSTRAINT django_admin_log_pkey PRIMARY KEY (id);
--
-- Name: django_content_type django_content_type_app_label_model_76bd3d3b_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.django_content_type
ADD CONSTRAINT django_content_type_app_label_model_76bd3d3b_uniq UNIQUE (app_label, model);
--
-- Name: django_content_type django_content_type_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.django_content_type
ADD CONSTRAINT django_content_type_pkey PRIMARY KEY (id);
--
-- Name: django_migrations django_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.django_migrations
ADD CONSTRAINT django_migrations_pkey PRIMARY KEY (id);
--
-- Name: django_session django_session_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.django_session
ADD CONSTRAINT django_session_pkey PRIMARY KEY (session_key);
--
-- Name: printing_plateorder printing_plateorder_business_object_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_plateorder
ADD CONSTRAINT printing_plateorder_business_object_id_key UNIQUE (business_object_id);
--
-- Name: printing_plateorder printing_plateorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_plateorder
ADD CONSTRAINT printing_plateorder_pkey PRIMARY KEY (id);
--
-- Name: printing_printingjob printing_printingjob_business_object_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjob
ADD CONSTRAINT printing_printingjob_business_object_id_key UNIQUE (business_object_id);
--
-- Name: printing_printingjob printing_printingjob_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjob
ADD CONSTRAINT printing_printingjob_pkey PRIMARY KEY (id);
--
-- Name: printing_printingorder printing_printingorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingorder
ADD CONSTRAINT printing_printingorder_pkey PRIMARY KEY (id);
--
-- Name: state_log_parameter_record state_log_parameter_record_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.state_log_parameter_record
ADD CONSTRAINT state_log_parameter_record_pkey PRIMARY KEY (id);
--
-- Name: business_object stateflow_order_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_object
ADD CONSTRAINT stateflow_order_pkey PRIMARY KEY (id);
--
-- Name: state_flow_record stateflow_orderstatelog_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.state_flow_record
ADD CONSTRAINT stateflow_orderstatelog_pkey PRIMARY KEY (id);
--
-- Name: stateflow_process stateflow_process_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_process
ADD CONSTRAINT stateflow_process_pkey PRIMARY KEY (id);
--
-- Name: stateflow_processnode stateflow_processnode_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_processnode
ADD CONSTRAINT stateflow_processnode_pkey PRIMARY KEY (id);
--
-- Name: stateflow_processnode stateflow_processnode_process_id_order_d27bc733_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_processnode
ADD CONSTRAINT stateflow_processnode_process_id_order_d27bc733_uniq UNIQUE (process_id, "order");
--
-- Name: stateflow_state_parameters stateflow_state_paramete_state_id_stateparameter__91e23688_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_state_parameters
ADD CONSTRAINT stateflow_state_paramete_state_id_stateparameter__91e23688_uniq UNIQUE (state_id, stateparameter_id);
--
-- Name: stateflow_state_parameters stateflow_state_parameters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_state_parameters
ADD CONSTRAINT stateflow_state_parameters_pkey PRIMARY KEY (id);
--
-- Name: stateflow_state stateflow_state_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_state
ADD CONSTRAINT stateflow_state_pkey PRIMARY KEY (id);
--
-- Name: stateflow_stateparameter stateflow_stateparameter_key_2174542b_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_stateparameter
ADD CONSTRAINT stateflow_stateparameter_key_2174542b_uniq UNIQUE (key);
--
-- Name: stateflow_stateparameter stateflow_stateparameter_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_stateparameter
ADD CONSTRAINT stateflow_stateparameter_pkey PRIMARY KEY (id);
--
-- Name: stock_inventory stock_inventory_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_inventory
ADD CONSTRAINT stock_inventory_pkey PRIMARY KEY (id);
--
-- Name: stock_inventory stock_inventory_product_id_warehouse_id_b146267d_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_inventory
ADD CONSTRAINT stock_inventory_product_id_warehouse_id_b146267d_uniq UNIQUE (product_id, warehouse_id);
--
-- Name: business_purchaseorder stock_purchaseorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorder
ADD CONSTRAINT stock_purchaseorder_pkey PRIMARY KEY (id);
--
-- Name: stock_stockchangedetail stock_stockchangedetail_consume_with_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangedetail
ADD CONSTRAINT stock_stockchangedetail_consume_with_id_key UNIQUE (consume_with_id);
--
-- Name: stock_stockchangedetail stock_stockchangedetail_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangedetail
ADD CONSTRAINT stock_stockchangedetail_pkey PRIMARY KEY (id);
--
-- Name: stock_stockchangerecord stock_stockchangerecord_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangerecord
ADD CONSTRAINT stock_stockchangerecord_pkey PRIMARY KEY (id);
--
-- Name: stock_stockfreeze stock_stockfreeze_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_pkey PRIMARY KEY (id);
--
-- Name: stock_stocksnapshot stock_stocksnapshot_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stocksnapshot
ADD CONSTRAINT stock_stocksnapshot_pkey PRIMARY KEY (id);
--
-- Name: stock_transferorder stock_transferorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_pkey PRIMARY KEY (id);
--
-- Name: stock_transferorderitem stock_transferorderitem_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorderitem
ADD CONSTRAINT stock_transferorderitem_pkey PRIMARY KEY (id);
--
-- Name: api_uploaded_file_owner_id_f2e6fe5c; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX api_uploaded_file_owner_id_f2e6fe5c ON public.api_uploaded_file USING btree (owner_id);
--
-- Name: auth_group_name_a6ea08ec_like; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_group_name_a6ea08ec_like ON public.auth_group USING btree (name varchar_pattern_ops);
--
-- Name: auth_group_permissions_group_id_b120cbf9; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_group_permissions_group_id_b120cbf9 ON public.auth_group_permissions USING btree (group_id);
--
-- Name: auth_group_permissions_permission_id_84c5c92e; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_group_permissions_permission_id_84c5c92e ON public.auth_group_permissions USING btree (permission_id);
--
-- Name: auth_permission_content_type_id_2f476e4b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_permission_content_type_id_2f476e4b ON public.auth_permission USING btree (content_type_id);
--
-- Name: auth_user_groups_group_id_97559544; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_user_groups_group_id_97559544 ON public.auth_user_groups USING btree (group_id);
--
-- Name: auth_user_groups_user_id_6a12ed8b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_user_groups_user_id_6a12ed8b ON public.auth_user_groups USING btree (user_id);
--
-- Name: auth_user_user_permissions_permission_id_1fbb5f2c; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_user_user_permissions_permission_id_1fbb5f2c ON public.auth_user_user_permissions USING btree (permission_id);
--
-- Name: auth_user_user_permissions_user_id_a95ead1b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_user_user_permissions_user_id_a95ead1b ON public.auth_user_user_permissions USING btree (user_id);
--
-- Name: auth_user_username_6821ab7c_like; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_user_username_6821ab7c_like ON public.auth_user USING btree (username varchar_pattern_ops);
--
-- Name: balance_change_source_idx; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX balance_change_source_idx ON public.business_balancechangerecord USING btree (merchant_id, source_type, source_id);
--
-- Name: basic_info_bankaccount_merchant_id_0dc91094; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_bankaccount_merchant_id_0dc91094 ON public.basic_info_bankaccount USING btree (merchant_id);
--
-- Name: basic_info_customer_created_by_id_e4898d6a; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_customer_created_by_id_e4898d6a ON public.basic_info_customer USING btree (created_by_id);
--
-- Name: basic_info_customer_mdy_uid_6364401c_like; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_customer_mdy_uid_6364401c_like ON public.basic_info_customer USING btree (mdy_uid varchar_pattern_ops);
--
-- Name: basic_info_customer_merchant_id_c342572c; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_customer_merchant_id_c342572c ON public.basic_info_customer USING btree (merchant_id);
--
-- Name: basic_info_customer_visible_employees_customer_id_a05ec7e2; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_customer_visible_employees_customer_id_a05ec7e2 ON public.basic_info_customer_visible_employees USING btree (customer_id);
--
-- Name: basic_info_customer_visible_employees_employee_id_fb51a1e0; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_customer_visible_employees_employee_id_fb51a1e0 ON public.basic_info_customer_visible_employees USING btree (employee_id);
--
-- Name: basic_info_deviceinfo_merchant_id_8ba16bd2; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_deviceinfo_merchant_id_8ba16bd2 ON public.basic_info_deviceinfo USING btree (merchant_id);
--
-- Name: basic_info_employee_merchant_id_508e9a14; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_employee_merchant_id_508e9a14 ON public.basic_info_employee USING btree (merchant_id);
--
-- Name: basic_info_employee_position_id_0f790d25; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_employee_position_id_0f790d25 ON public.basic_info_employee USING btree (position_id);
--
-- Name: basic_info_employeetype_merchant_id_cf26fc93; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_employeetype_merchant_id_cf26fc93 ON public.basic_info_employeetype USING btree (merchant_id);
--
-- Name: basic_info_merchantsetting_merchant_id_4ec5ec48; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_merchantsetting_merchant_id_4ec5ec48 ON public.basic_info_merchantsetting USING btree (merchant_id);
--
-- Name: basic_info_product_category_id_2bbbe6be; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_product_category_id_2bbbe6be ON public.basic_info_product USING btree (category_id);
--
-- Name: basic_info_product_merchant_id_16465f25; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_product_merchant_id_16465f25 ON public.basic_info_product USING btree (merchant_id);
--
-- Name: basic_info_productcategory_merchant_id_026ead5b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_productcategory_merchant_id_026ead5b ON public.basic_info_productcategory USING btree (merchant_id);
--
-- Name: basic_info_supplier_merchant_id_7b0fafc0; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_supplier_merchant_id_7b0fafc0 ON public.basic_info_supplier USING btree (merchant_id);
--
-- Name: basic_info_userprofile_merchant_id_4c25789b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_userprofile_merchant_id_4c25789b ON public.basic_info_userprofile USING btree (merchant_id);
--
-- Name: basic_info_vehicletransportrecord_merchant_id_da543289; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_vehicletransportrecord_merchant_id_da543289 ON public.basic_info_vehicletransportrecord USING btree (merchant_id);
--
-- Name: basic_info_vehicletransportrecord_vehicle_type_id_ca9c2c9a; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_vehicletransportrecord_vehicle_type_id_ca9c2c9a ON public.basic_info_vehicletransportrecord USING btree (vehicle_type_id);
--
-- Name: basic_info_vehicletype_merchant_id_834e9500; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_vehicletype_merchant_id_834e9500 ON public.basic_info_vehicletype USING btree (merchant_id);
--
-- Name: basic_info_warehouse_merchant_id_d5bb4b76; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_warehouse_merchant_id_d5bb4b76 ON public.basic_info_warehouse USING btree (merchant_id);
--
-- Name: business_balancechangerecord_customer_id_72613c19; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_balancechangerecord_customer_id_72613c19 ON public.business_balancechangerecord USING btree (customer_id);
--
-- Name: business_balancechangerecord_merchant_id_94bc6397; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_balancechangerecord_merchant_id_94bc6397 ON public.business_balancechangerecord USING btree (merchant_id);
--
-- Name: business_balancechangerecord_supplier_id_08930ba0; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_balancechangerecord_supplier_id_08930ba0 ON public.business_balancechangerecord USING btree (supplier_id);
--
-- Name: business_customerbalance_customer_id_f5b3fbca; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_customerbalance_customer_id_f5b3fbca ON public.business_customerbalance USING btree (customer_id);
--
-- Name: business_customerbalance_merchant_id_d6252af9; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_customerbalance_merchant_id_d6252af9 ON public.business_customerbalance USING btree (merchant_id);
--
-- Name: business_object_content_type_id_94dccf29; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_object_content_type_id_94dccf29 ON public.business_object USING btree (content_type_id);
--
-- Name: business_paymentorder_bank_account_id_0de1edcc; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_paymentorder_bank_account_id_0de1edcc ON public.business_paymentorder USING btree (bank_account_id);
--
-- Name: business_paymentorder_merchant_id_d161c5be; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_paymentorder_merchant_id_d161c5be ON public.business_paymentorder USING btree (merchant_id);
--
-- Name: business_paymentorder_operator_id_6922977f; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_paymentorder_operator_id_6922977f ON public.business_paymentorder USING btree (operator_id);
--
-- Name: business_paymentorder_supplier_id_1e5a469f; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_paymentorder_supplier_id_1e5a469f ON public.business_paymentorder USING btree (supplier_id);
--
-- Name: business_purchaseorder_operator_id_759fe141; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchaseorder_operator_id_759fe141 ON public.business_purchaseorder USING btree (operator_id);
--
-- Name: business_purchaseorder_warehouse_id_7aad4bbe; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchaseorder_warehouse_id_7aad4bbe ON public.business_purchaseorder USING btree (warehouse_id);
--
-- Name: business_purchaseorderitem_product_id_1cd637ce; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchaseorderitem_product_id_1cd637ce ON public.business_purchaseorderitem USING btree (product_id);
--
-- Name: business_purchaseorderitem_purchase_order_id_329d998b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchaseorderitem_purchase_order_id_329d998b ON public.business_purchaseorderitem USING btree (purchase_order_id);
--
-- Name: business_purchasereturnord_purchase_return_order_id_7d64b30f; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchasereturnord_purchase_return_order_id_7d64b30f ON public.business_purchasereturnorderitem USING btree (purchase_return_order_id);
--
-- Name: business_purchasereturnorder_merchant_id_374baf57; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchasereturnorder_merchant_id_374baf57 ON public.business_purchasereturnorder USING btree (merchant_id);
--
-- Name: business_purchasereturnorder_operator_id_6f839c67; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchasereturnorder_operator_id_6f839c67 ON public.business_purchasereturnorder USING btree (operator_id);
--
-- Name: business_purchasereturnorder_purchase_order_id_b6f00a8d; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchasereturnorder_purchase_order_id_b6f00a8d ON public.business_purchasereturnorder USING btree (purchase_order_id);
--
-- Name: business_purchasereturnorder_supplier_id_985ce5d0; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchasereturnorder_supplier_id_985ce5d0 ON public.business_purchasereturnorder USING btree (supplier_id);
--
-- Name: business_purchasereturnorder_warehouse_id_c8edb73b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchasereturnorder_warehouse_id_c8edb73b ON public.business_purchasereturnorder USING btree (warehouse_id);
--
-- Name: business_purchasereturnorderitem_product_id_66b5322d; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchasereturnorderitem_product_id_66b5322d ON public.business_purchasereturnorderitem USING btree (product_id);
--
-- Name: business_receiptorder_bank_account_id_c29219be; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_receiptorder_bank_account_id_c29219be ON public.business_receiptorder USING btree (bank_account_id);
--
-- Name: business_receiptorder_customer_id_666323a6; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_receiptorder_customer_id_666323a6 ON public.business_receiptorder USING btree (customer_id);
--
-- Name: business_receiptorder_merchant_id_1e7920b7; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_receiptorder_merchant_id_1e7920b7 ON public.business_receiptorder USING btree (merchant_id);
--
-- Name: business_receiptorder_operator_id_72eaad52; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_receiptorder_operator_id_72eaad52 ON public.business_receiptorder USING btree (operator_id);
--
-- Name: business_salesorder_customer_id_165d7e5d; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesorder_customer_id_165d7e5d ON public.business_salesorder USING btree (customer_id);
--
-- Name: business_salesorder_merchant_id_ecffa78c; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesorder_merchant_id_ecffa78c ON public.business_salesorder USING btree (merchant_id);
--
-- Name: business_salesorder_operator_id_cc3385ec; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesorder_operator_id_cc3385ec ON public.business_salesorder USING btree (operator_id);
--
-- Name: business_salesorder_warehouse_id_4a77caf8; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesorder_warehouse_id_4a77caf8 ON public.business_salesorder USING btree (warehouse_id);
--
-- Name: business_salesorderitem_product_id_d843ccd4; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesorderitem_product_id_d843ccd4 ON public.business_salesorderitem USING btree (product_id);
--
-- Name: business_salesorderitem_sales_order_id_931d0c9f; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesorderitem_sales_order_id_931d0c9f ON public.business_salesorderitem USING btree (sales_order_id);
--
-- Name: business_salesreturnorder_customer_id_ce2116fa; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesreturnorder_customer_id_ce2116fa ON public.business_salesreturnorder USING btree (customer_id);
--
-- Name: business_salesreturnorder_merchant_id_4b9f39b4; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesreturnorder_merchant_id_4b9f39b4 ON public.business_salesreturnorder USING btree (merchant_id);
--
-- Name: business_salesreturnorder_operator_id_bc265b54; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesreturnorder_operator_id_bc265b54 ON public.business_salesreturnorder USING btree (operator_id);
--
-- Name: business_salesreturnorder_sales_order_id_7b362aab; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesreturnorder_sales_order_id_7b362aab ON public.business_salesreturnorder USING btree (sales_order_id);
--
-- Name: business_salesreturnorder_warehouse_id_eca0b2ba; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesreturnorder_warehouse_id_eca0b2ba ON public.business_salesreturnorder USING btree (warehouse_id);
--
-- Name: business_salesreturnorderitem_product_id_c5b969ba; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesreturnorderitem_product_id_c5b969ba ON public.business_salesreturnorderitem USING btree (product_id);
--
-- Name: business_salesreturnorderitem_sales_return_order_id_820a6954; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesreturnorderitem_sales_return_order_id_820a6954 ON public.business_salesreturnorderitem USING btree (sales_return_order_id);
--
-- Name: business_supplierbalance_merchant_id_8ffc61a3; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_supplierbalance_merchant_id_8ffc61a3 ON public.business_supplierbalance USING btree (merchant_id);
--
-- Name: business_supplierbalance_supplier_id_084f585e; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_supplierbalance_supplier_id_084f585e ON public.business_supplierbalance USING btree (supplier_id);
--
-- Name: django_admin_log_content_type_id_c4bce8eb; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX django_admin_log_content_type_id_c4bce8eb ON public.django_admin_log USING btree (content_type_id);
--
-- Name: django_admin_log_user_id_c564eba6; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX django_admin_log_user_id_c564eba6 ON public.django_admin_log USING btree (user_id);
--
-- Name: django_session_expire_date_a5c62663; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX django_session_expire_date_a5c62663 ON public.django_session USING btree (expire_date);
--
-- Name: django_session_session_key_c0390e0f_like; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX django_session_session_key_c0390e0f_like ON public.django_session USING btree (session_key varchar_pattern_ops);
--
-- Name: printing_plateorder_customer_id_920c92fc; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_plateorder_customer_id_920c92fc ON public.printing_plateorder USING btree (customer_id);
--
-- Name: printing_plateorder_designer_id_4f94e8c1; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_plateorder_designer_id_4f94e8c1 ON public.printing_plateorder USING btree (designer_id);
--
-- Name: printing_plateorder_merchandiser_id_f85f2095; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_plateorder_merchandiser_id_f85f2095 ON public.printing_plateorder USING btree (merchandiser_id);
--
-- Name: printing_plateorder_salesperson_id_0d75b741; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_plateorder_salesperson_id_0d75b741 ON public.printing_plateorder USING btree (salesperson_id);
--
-- Name: printing_printingjob_printing_order_id_ca5569e7; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_printingjob_printing_order_id_ca5569e7 ON public.printing_printingjob USING btree (printing_order_id);
--
-- Name: printing_printingjob_product_id_6c4bda82; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_printingjob_product_id_6c4bda82 ON public.printing_printingjob USING btree (product_id);
--
-- Name: printing_printingorder_customer_id_2f5affa4; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_printingorder_customer_id_2f5affa4 ON public.printing_printingorder USING btree (customer_id);
--
-- Name: printing_printingorder_process_id_087e5007; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_printingorder_process_id_087e5007 ON public.printing_printingorder USING btree (process_id);
--
-- Name: state_log_p_state_l_8cc99f_idx; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX state_log_p_state_l_8cc99f_idx ON public.state_log_parameter_record USING btree (state_log_id, created_at);
--
-- Name: state_log_parameter_record_state_log_id_f233799b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX state_log_parameter_record_state_log_id_f233799b ON public.state_log_parameter_record USING btree (state_log_id);
--
-- Name: stateflow_order_process_id_8c0bb6c0; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_order_process_id_8c0bb6c0 ON public.business_object USING btree (process_id);
--
-- Name: stateflow_orderstatelog_completed_by_id_2f822f5b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_orderstatelog_completed_by_id_2f822f5b ON public.state_flow_record USING btree (completed_by_id);
--
-- Name: stateflow_orderstatelog_order_id_4d729f58; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_orderstatelog_order_id_4d729f58 ON public.state_flow_record USING btree (business_object_id);
--
-- Name: stateflow_orderstatelog_state_id_70d1101d; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_orderstatelog_state_id_70d1101d ON public.state_flow_record USING btree (state_id);
--
-- Name: stateflow_processnode_process_id_146d7cc7; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_processnode_process_id_146d7cc7 ON public.stateflow_processnode USING btree (process_id);
--
-- Name: stateflow_processnode_state_id_18e2868e; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_processnode_state_id_18e2868e ON public.stateflow_processnode USING btree (state_id);
--
-- Name: stateflow_state_parameters_state_id_1888c236; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_state_parameters_state_id_1888c236 ON public.stateflow_state_parameters USING btree (state_id);
--
-- Name: stateflow_state_parameters_stateparameter_id_2a4745a3; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_state_parameters_stateparameter_id_2a4745a3 ON public.stateflow_state_parameters USING btree (stateparameter_id);
--
-- Name: stateflow_stateparameter_key_2174542b_like; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_stateparameter_key_2174542b_like ON public.stateflow_stateparameter USING btree (key varchar_pattern_ops);
--
-- Name: stock_inventory_merchant_id_474e786a; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_inventory_merchant_id_474e786a ON public.stock_inventory USING btree (merchant_id);
--
-- Name: stock_inventory_product_id_87e1d4a4; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_inventory_product_id_87e1d4a4 ON public.stock_inventory USING btree (product_id);
--
-- Name: stock_inventory_warehouse_id_38e88ef3; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_inventory_warehouse_id_38e88ef3 ON public.stock_inventory USING btree (warehouse_id);
--
-- Name: stock_purchaseorder_merchant_id_5175381b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_purchaseorder_merchant_id_5175381b ON public.business_purchaseorder USING btree (merchant_id);
--
-- Name: stock_purchaseorder_supplier_id_bc7a300c; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_purchaseorder_supplier_id_bc7a300c ON public.business_purchaseorder USING btree (supplier_id);
--
-- Name: stock_stockchangedetail_merchant_id_222521fc; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockchangedetail_merchant_id_222521fc ON public.stock_stockchangedetail USING btree (merchant_id);
--
-- Name: stock_stockchangedetail_product_id_a013d432; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockchangedetail_product_id_a013d432 ON public.stock_stockchangedetail USING btree (product_id);
--
-- Name: stock_stockchangedetail_stock_change_record_id_b388d2f0; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockchangedetail_stock_change_record_id_b388d2f0 ON public.stock_stockchangedetail USING btree (stock_change_record_id);
--
-- Name: stock_stockchangerecord_created_by_id_7317d383; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockchangerecord_created_by_id_7317d383 ON public.stock_stockchangerecord USING btree (created_by_id);
--
-- Name: stock_stockchangerecord_merchant_id_777ab07d; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockchangerecord_merchant_id_777ab07d ON public.stock_stockchangerecord USING btree (merchant_id);
--
-- Name: stock_stockchangerecord_warehouse_id_c7a706de; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockchangerecord_warehouse_id_c7a706de ON public.stock_stockchangerecord USING btree (warehouse_id);
--
-- Name: stock_stockfreeze_cancelled_by_id_f36ed57b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockfreeze_cancelled_by_id_f36ed57b ON public.stock_stockfreeze USING btree (cancelled_by_id);
--
-- Name: stock_stockfreeze_completed_by_id_feb5742a; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockfreeze_completed_by_id_feb5742a ON public.stock_stockfreeze USING btree (completed_by_id);
--
-- Name: stock_stockfreeze_frozen_by_id_747bed1c; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockfreeze_frozen_by_id_747bed1c ON public.stock_stockfreeze USING btree (frozen_by_id);
--
-- Name: stock_stockfreeze_merchant_id_778ecada; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockfreeze_merchant_id_778ecada ON public.stock_stockfreeze USING btree (merchant_id);
--
-- Name: stock_stockfreeze_product_id_0915f126; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockfreeze_product_id_0915f126 ON public.stock_stockfreeze USING btree (product_id);
--
-- Name: stock_stockfreeze_stock_detail_id_3c1f49b0; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockfreeze_stock_detail_id_3c1f49b0 ON public.stock_stockfreeze USING btree (stock_detail_id);
--
-- Name: stock_stockfreeze_warehouse_id_7cd7f629; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockfreeze_warehouse_id_7cd7f629 ON public.stock_stockfreeze USING btree (warehouse_id);
--
-- Name: stock_stocksnapshot_merchant_id_345af02e; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stocksnapshot_merchant_id_345af02e ON public.stock_stocksnapshot USING btree (merchant_id);
--
-- Name: stock_stocksnapshot_product_id_f6e948d7; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stocksnapshot_product_id_f6e948d7 ON public.stock_stocksnapshot USING btree (product_id);
--
-- Name: stock_stocksnapshot_stock_change_record_id_a12e8dc3; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stocksnapshot_stock_change_record_id_a12e8dc3 ON public.stock_stocksnapshot USING btree (stock_change_record_id);
--
-- Name: stock_stocksnapshot_warehouse_id_469ad069; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stocksnapshot_warehouse_id_469ad069 ON public.stock_stocksnapshot USING btree (warehouse_id);
--
-- Name: stock_transferorder_created_by_id_8426a804; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorder_created_by_id_8426a804 ON public.stock_transferorder USING btree (created_by_id);
--
-- Name: stock_transferorder_from_warehouse_id_38b8aba4; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorder_from_warehouse_id_38b8aba4 ON public.stock_transferorder USING btree (from_warehouse_id);
--
-- Name: stock_transferorder_incoming_record_id_289d0a0f; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorder_incoming_record_id_289d0a0f ON public.stock_transferorder USING btree (incoming_record_id);
--
-- Name: stock_transferorder_merchant_id_34312a0d; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorder_merchant_id_34312a0d ON public.stock_transferorder USING btree (merchant_id);
--
-- Name: stock_transferorder_operator_id_4e3824e2; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorder_operator_id_4e3824e2 ON public.stock_transferorder USING btree (operator_id);
--
-- Name: stock_transferorder_outgoing_record_id_a6a0dd28; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorder_outgoing_record_id_a6a0dd28 ON public.stock_transferorder USING btree (outgoing_record_id);
--
-- Name: stock_transferorder_to_warehouse_id_e597030e; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorder_to_warehouse_id_e597030e ON public.stock_transferorder USING btree (to_warehouse_id);
--
-- Name: stock_transferorderitem_product_id_7bb0508f; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorderitem_product_id_7bb0508f ON public.stock_transferorderitem USING btree (product_id);
--
-- Name: stock_transferorderitem_transfer_order_id_333e8fab; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorderitem_transfer_order_id_333e8fab ON public.stock_transferorderitem USING btree (transfer_order_id);
--
-- Name: unique_transfer_request_per_merchant; Type: INDEX; Schema: public; Owner: postgres
--
CREATE UNIQUE INDEX unique_transfer_request_per_merchant ON public.stock_transferorder USING btree (merchant_id, request_id) WHERE (request_id IS NOT NULL);
--
-- Name: api_uploaded_file api_uploaded_file_owner_id_f2e6fe5c_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.api_uploaded_file
ADD CONSTRAINT api_uploaded_file_owner_id_f2e6fe5c_fk_auth_user_id FOREIGN KEY (owner_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_group_permissions auth_group_permissio_permission_id_84c5c92e_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_group_permissions
ADD CONSTRAINT auth_group_permissio_permission_id_84c5c92e_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_group_permissions auth_group_permissions_group_id_b120cbf9_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_group_permissions
ADD CONSTRAINT auth_group_permissions_group_id_b120cbf9_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_permission auth_permission_content_type_id_2f476e4b_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_permission
ADD CONSTRAINT auth_permission_content_type_id_2f476e4b_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_user_groups auth_user_groups_group_id_97559544_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_groups
ADD CONSTRAINT auth_user_groups_group_id_97559544_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_user_groups auth_user_groups_user_id_6a12ed8b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_groups
ADD CONSTRAINT auth_user_groups_user_id_6a12ed8b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_user_user_permissions auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_user_permissions
ADD CONSTRAINT auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_user_user_permissions auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_user_permissions
ADD CONSTRAINT auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_bankaccount basic_info_bankaccou_merchant_id_0dc91094_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_bankaccount
ADD CONSTRAINT basic_info_bankaccou_merchant_id_0dc91094_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_customer_visible_employees basic_info_customer__customer_id_a05ec7e2_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer_visible_employees
ADD CONSTRAINT basic_info_customer__customer_id_a05ec7e2_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_customer_visible_employees basic_info_customer__employee_id_fb51a1e0_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer_visible_employees
ADD CONSTRAINT basic_info_customer__employee_id_fb51a1e0_fk_basic_inf FOREIGN KEY (employee_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_customer basic_info_customer_created_by_id_e4898d6a_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer
ADD CONSTRAINT basic_info_customer_created_by_id_e4898d6a_fk_basic_inf FOREIGN KEY (created_by_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_customer basic_info_customer_merchant_id_c342572c_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer
ADD CONSTRAINT basic_info_customer_merchant_id_c342572c_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_deviceinfo basic_info_deviceinf_merchant_id_8ba16bd2_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_deviceinfo
ADD CONSTRAINT basic_info_deviceinf_merchant_id_8ba16bd2_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_employee basic_info_employee_merchant_id_508e9a14_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employee
ADD CONSTRAINT basic_info_employee_merchant_id_508e9a14_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_employee basic_info_employee_position_id_0f790d25_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employee
ADD CONSTRAINT basic_info_employee_position_id_0f790d25_fk_basic_inf FOREIGN KEY (position_id) REFERENCES public.basic_info_employeetype(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_employee basic_info_employee_sys_user_id_ea7739c5_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employee
ADD CONSTRAINT basic_info_employee_sys_user_id_ea7739c5_fk_auth_user_id FOREIGN KEY (sys_user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_employeetype basic_info_employeet_merchant_id_cf26fc93_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employeetype
ADD CONSTRAINT basic_info_employeet_merchant_id_cf26fc93_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_merchantsetting basic_info_merchants_merchant_id_4ec5ec48_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_merchantsetting
ADD CONSTRAINT basic_info_merchants_merchant_id_4ec5ec48_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_product basic_info_product_category_id_2bbbe6be_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_product
ADD CONSTRAINT basic_info_product_category_id_2bbbe6be_fk_basic_inf FOREIGN KEY (category_id) REFERENCES public.basic_info_productcategory(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_product basic_info_product_merchant_id_16465f25_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_product
ADD CONSTRAINT basic_info_product_merchant_id_16465f25_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_productcategory basic_info_productca_merchant_id_026ead5b_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_productcategory
ADD CONSTRAINT basic_info_productca_merchant_id_026ead5b_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_supplier basic_info_supplier_merchant_id_7b0fafc0_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_supplier
ADD CONSTRAINT basic_info_supplier_merchant_id_7b0fafc0_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_userprofile basic_info_userprofi_merchant_id_4c25789b_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_userprofile
ADD CONSTRAINT basic_info_userprofi_merchant_id_4c25789b_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_userprofile basic_info_userprofile_user_id_ed5ab8a5_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_userprofile
ADD CONSTRAINT basic_info_userprofile_user_id_ed5ab8a5_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_vehicletransportrecord basic_info_vehicletr_merchant_id_da543289_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_vehicletransportrecord
ADD CONSTRAINT basic_info_vehicletr_merchant_id_da543289_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_vehicletransportrecord basic_info_vehicletr_vehicle_type_id_ca9c2c9a_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_vehicletransportrecord
ADD CONSTRAINT basic_info_vehicletr_vehicle_type_id_ca9c2c9a_fk_basic_inf FOREIGN KEY (vehicle_type_id) REFERENCES public.basic_info_vehicletype(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_vehicletype basic_info_vehiclety_merchant_id_834e9500_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_vehicletype
ADD CONSTRAINT basic_info_vehiclety_merchant_id_834e9500_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_warehouse basic_info_warehouse_merchant_id_d5bb4b76_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_warehouse
ADD CONSTRAINT basic_info_warehouse_merchant_id_d5bb4b76_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_balancechangerecord business_balancechan_customer_id_72613c19_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_balancechangerecord
ADD CONSTRAINT business_balancechan_customer_id_72613c19_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_balancechangerecord business_balancechan_merchant_id_94bc6397_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_balancechangerecord
ADD CONSTRAINT business_balancechan_merchant_id_94bc6397_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_balancechangerecord business_balancechan_supplier_id_08930ba0_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_balancechangerecord
ADD CONSTRAINT business_balancechan_supplier_id_08930ba0_fk_basic_inf FOREIGN KEY (supplier_id) REFERENCES public.basic_info_supplier(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_customerbalance business_customerbal_customer_id_f5b3fbca_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_customerbalance
ADD CONSTRAINT business_customerbal_customer_id_f5b3fbca_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_customerbalance business_customerbal_merchant_id_d6252af9_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_customerbalance
ADD CONSTRAINT business_customerbal_merchant_id_d6252af9_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_object business_object_content_type_id_94dccf29_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_object
ADD CONSTRAINT business_object_content_type_id_94dccf29_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_paymentorder business_paymentorde_bank_account_id_0de1edcc_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_paymentorder
ADD CONSTRAINT business_paymentorde_bank_account_id_0de1edcc_fk_basic_inf FOREIGN KEY (bank_account_id) REFERENCES public.basic_info_bankaccount(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_paymentorder business_paymentorde_merchant_id_d161c5be_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_paymentorder
ADD CONSTRAINT business_paymentorde_merchant_id_d161c5be_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_paymentorder business_paymentorde_operator_id_6922977f_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_paymentorder
ADD CONSTRAINT business_paymentorde_operator_id_6922977f_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_paymentorder business_paymentorde_supplier_id_1e5a469f_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_paymentorder
ADD CONSTRAINT business_paymentorde_supplier_id_1e5a469f_fk_basic_inf FOREIGN KEY (supplier_id) REFERENCES public.basic_info_supplier(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchaseorder business_purchaseord_operator_id_759fe141_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorder
ADD CONSTRAINT business_purchaseord_operator_id_759fe141_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchaseorderitem business_purchaseord_product_id_1cd637ce_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorderitem
ADD CONSTRAINT business_purchaseord_product_id_1cd637ce_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchaseorderitem business_purchaseord_purchase_order_id_329d998b_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorderitem
ADD CONSTRAINT business_purchaseord_purchase_order_id_329d998b_fk_business_ FOREIGN KEY (purchase_order_id) REFERENCES public.business_purchaseorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchaseorder business_purchaseord_warehouse_id_7aad4bbe_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorder
ADD CONSTRAINT business_purchaseord_warehouse_id_7aad4bbe_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchasereturnorder business_purchaseret_merchant_id_374baf57_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorder
ADD CONSTRAINT business_purchaseret_merchant_id_374baf57_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchasereturnorder business_purchaseret_operator_id_6f839c67_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorder
ADD CONSTRAINT business_purchaseret_operator_id_6f839c67_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchasereturnorderitem business_purchaseret_product_id_66b5322d_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorderitem
ADD CONSTRAINT business_purchaseret_product_id_66b5322d_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchasereturnorder business_purchaseret_purchase_order_id_b6f00a8d_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorder
ADD CONSTRAINT business_purchaseret_purchase_order_id_b6f00a8d_fk_business_ FOREIGN KEY (purchase_order_id) REFERENCES public.business_purchaseorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchasereturnorderitem business_purchaseret_purchase_return_orde_7d64b30f_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorderitem
ADD CONSTRAINT business_purchaseret_purchase_return_orde_7d64b30f_fk_business_ FOREIGN KEY (purchase_return_order_id) REFERENCES public.business_purchasereturnorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchasereturnorder business_purchaseret_supplier_id_985ce5d0_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorder
ADD CONSTRAINT business_purchaseret_supplier_id_985ce5d0_fk_basic_inf FOREIGN KEY (supplier_id) REFERENCES public.basic_info_supplier(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchasereturnorder business_purchaseret_warehouse_id_c8edb73b_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorder
ADD CONSTRAINT business_purchaseret_warehouse_id_c8edb73b_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_receiptorder business_receiptorde_bank_account_id_c29219be_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_receiptorder
ADD CONSTRAINT business_receiptorde_bank_account_id_c29219be_fk_basic_inf FOREIGN KEY (bank_account_id) REFERENCES public.basic_info_bankaccount(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_receiptorder business_receiptorde_customer_id_666323a6_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_receiptorder
ADD CONSTRAINT business_receiptorde_customer_id_666323a6_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_receiptorder business_receiptorde_merchant_id_1e7920b7_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_receiptorder
ADD CONSTRAINT business_receiptorde_merchant_id_1e7920b7_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_receiptorder business_receiptorde_operator_id_72eaad52_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_receiptorder
ADD CONSTRAINT business_receiptorde_operator_id_72eaad52_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesorder business_salesorder_customer_id_165d7e5d_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorder
ADD CONSTRAINT business_salesorder_customer_id_165d7e5d_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesorder business_salesorder_merchant_id_ecffa78c_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorder
ADD CONSTRAINT business_salesorder_merchant_id_ecffa78c_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesorder business_salesorder_operator_id_cc3385ec_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorder
ADD CONSTRAINT business_salesorder_operator_id_cc3385ec_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesorder business_salesorder_warehouse_id_4a77caf8_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorder
ADD CONSTRAINT business_salesorder_warehouse_id_4a77caf8_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesorderitem business_salesorderi_product_id_d843ccd4_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorderitem
ADD CONSTRAINT business_salesorderi_product_id_d843ccd4_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesorderitem business_salesorderi_sales_order_id_931d0c9f_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorderitem
ADD CONSTRAINT business_salesorderi_sales_order_id_931d0c9f_fk_business_ FOREIGN KEY (sales_order_id) REFERENCES public.business_salesorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesreturnorder business_salesreturn_customer_id_ce2116fa_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorder
ADD CONSTRAINT business_salesreturn_customer_id_ce2116fa_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesreturnorder business_salesreturn_merchant_id_4b9f39b4_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorder
ADD CONSTRAINT business_salesreturn_merchant_id_4b9f39b4_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesreturnorder business_salesreturn_operator_id_bc265b54_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorder
ADD CONSTRAINT business_salesreturn_operator_id_bc265b54_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesreturnorderitem business_salesreturn_product_id_c5b969ba_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorderitem
ADD CONSTRAINT business_salesreturn_product_id_c5b969ba_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesreturnorder business_salesreturn_sales_order_id_7b362aab_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorder
ADD CONSTRAINT business_salesreturn_sales_order_id_7b362aab_fk_business_ FOREIGN KEY (sales_order_id) REFERENCES public.business_salesorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesreturnorderitem business_salesreturn_sales_return_order_i_820a6954_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorderitem
ADD CONSTRAINT business_salesreturn_sales_return_order_i_820a6954_fk_business_ FOREIGN KEY (sales_return_order_id) REFERENCES public.business_salesreturnorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesreturnorder business_salesreturn_warehouse_id_eca0b2ba_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorder
ADD CONSTRAINT business_salesreturn_warehouse_id_eca0b2ba_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_supplierbalance business_supplierbal_merchant_id_8ffc61a3_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_supplierbalance
ADD CONSTRAINT business_supplierbal_merchant_id_8ffc61a3_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_supplierbalance business_supplierbal_supplier_id_084f585e_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_supplierbalance
ADD CONSTRAINT business_supplierbal_supplier_id_084f585e_fk_basic_inf FOREIGN KEY (supplier_id) REFERENCES public.basic_info_supplier(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: django_admin_log django_admin_log_content_type_id_c4bce8eb_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.django_admin_log
ADD CONSTRAINT django_admin_log_content_type_id_c4bce8eb_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: django_admin_log django_admin_log_user_id_c564eba6_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.django_admin_log
ADD CONSTRAINT django_admin_log_user_id_c564eba6_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: state_flow_record order_state_log_business_object_id_f642bfbd_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.state_flow_record
ADD CONSTRAINT order_state_log_business_object_id_f642bfbd_fk_business_ FOREIGN KEY (business_object_id) REFERENCES public.business_object(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_plateorder printing_plateorder_business_object_id_303b8c81_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_plateorder
ADD CONSTRAINT printing_plateorder_business_object_id_303b8c81_fk_business_ FOREIGN KEY (business_object_id) REFERENCES public.business_object(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_plateorder printing_plateorder_customer_id_920c92fc_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_plateorder
ADD CONSTRAINT printing_plateorder_customer_id_920c92fc_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_plateorder printing_plateorder_designer_id_4f94e8c1_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_plateorder
ADD CONSTRAINT printing_plateorder_designer_id_4f94e8c1_fk_basic_inf FOREIGN KEY (designer_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_plateorder printing_plateorder_merchandiser_id_f85f2095_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_plateorder
ADD CONSTRAINT printing_plateorder_merchandiser_id_f85f2095_fk_basic_inf FOREIGN KEY (merchandiser_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_plateorder printing_plateorder_salesperson_id_0d75b741_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_plateorder
ADD CONSTRAINT printing_plateorder_salesperson_id_0d75b741_fk_basic_inf FOREIGN KEY (salesperson_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_printingjob printing_printingjob_business_object_id_76a7d2fd_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjob
ADD CONSTRAINT printing_printingjob_business_object_id_76a7d2fd_fk_business_ FOREIGN KEY (business_object_id) REFERENCES public.business_object(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_printingjob printing_printingjob_printing_order_id_ca5569e7_fk_printing_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjob
ADD CONSTRAINT printing_printingjob_printing_order_id_ca5569e7_fk_printing_ FOREIGN KEY (printing_order_id) REFERENCES public.printing_printingorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_printingjob printing_printingjob_product_id_6c4bda82_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjob
ADD CONSTRAINT printing_printingjob_product_id_6c4bda82_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_printingorder printing_printingord_customer_id_2f5affa4_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingorder
ADD CONSTRAINT printing_printingord_customer_id_2f5affa4_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_printingorder printing_printingord_process_id_087e5007_fk_stateflow; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingorder
ADD CONSTRAINT printing_printingord_process_id_087e5007_fk_stateflow FOREIGN KEY (process_id) REFERENCES public.stateflow_process(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: state_log_parameter_record state_log_parameter__state_log_id_f233799b_fk_state_flo; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.state_log_parameter_record
ADD CONSTRAINT state_log_parameter__state_log_id_f233799b_fk_state_flo FOREIGN KEY (state_log_id) REFERENCES public.state_flow_record(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_object stateflow_order_process_id_8c0bb6c0_fk_stateflow_process_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_object
ADD CONSTRAINT stateflow_order_process_id_8c0bb6c0_fk_stateflow_process_id FOREIGN KEY (process_id) REFERENCES public.stateflow_process(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: state_flow_record stateflow_orderstate_completed_by_id_2f822f5b_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.state_flow_record
ADD CONSTRAINT stateflow_orderstate_completed_by_id_2f822f5b_fk_auth_user FOREIGN KEY (completed_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: state_flow_record stateflow_orderstatelog_state_id_70d1101d_fk_stateflow_state_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.state_flow_record
ADD CONSTRAINT stateflow_orderstatelog_state_id_70d1101d_fk_stateflow_state_id FOREIGN KEY (state_id) REFERENCES public.stateflow_state(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stateflow_processnode stateflow_processnod_process_id_146d7cc7_fk_stateflow; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_processnode
ADD CONSTRAINT stateflow_processnod_process_id_146d7cc7_fk_stateflow FOREIGN KEY (process_id) REFERENCES public.stateflow_process(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stateflow_processnode stateflow_processnode_state_id_18e2868e_fk_stateflow_state_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_processnode
ADD CONSTRAINT stateflow_processnode_state_id_18e2868e_fk_stateflow_state_id FOREIGN KEY (state_id) REFERENCES public.stateflow_state(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stateflow_state_parameters stateflow_state_para_state_id_1888c236_fk_stateflow; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_state_parameters
ADD CONSTRAINT stateflow_state_para_state_id_1888c236_fk_stateflow FOREIGN KEY (state_id) REFERENCES public.stateflow_state(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stateflow_state_parameters stateflow_state_para_stateparameter_id_2a4745a3_fk_stateflow; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_state_parameters
ADD CONSTRAINT stateflow_state_para_stateparameter_id_2a4745a3_fk_stateflow FOREIGN KEY (stateparameter_id) REFERENCES public.stateflow_stateparameter(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_inventory stock_inventory_merchant_id_474e786a_fk_basic_info_merchant_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_inventory
ADD CONSTRAINT stock_inventory_merchant_id_474e786a_fk_basic_info_merchant_id FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_inventory stock_inventory_product_id_87e1d4a4_fk_basic_info_product_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_inventory
ADD CONSTRAINT stock_inventory_product_id_87e1d4a4_fk_basic_info_product_id FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_inventory stock_inventory_warehouse_id_38e88ef3_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_inventory
ADD CONSTRAINT stock_inventory_warehouse_id_38e88ef3_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchaseorder stock_purchaseorder_merchant_id_5175381b_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorder
ADD CONSTRAINT stock_purchaseorder_merchant_id_5175381b_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchaseorder stock_purchaseorder_supplier_id_bc7a300c_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorder
ADD CONSTRAINT stock_purchaseorder_supplier_id_bc7a300c_fk_basic_inf FOREIGN KEY (supplier_id) REFERENCES public.basic_info_supplier(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockchangedetail stock_stockchangedet_consume_with_id_3844510b_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangedetail
ADD CONSTRAINT stock_stockchangedet_consume_with_id_3844510b_fk_stock_sto FOREIGN KEY (consume_with_id) REFERENCES public.stock_stockchangedetail(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockchangedetail stock_stockchangedet_merchant_id_222521fc_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangedetail
ADD CONSTRAINT stock_stockchangedet_merchant_id_222521fc_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockchangedetail stock_stockchangedet_product_id_a013d432_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangedetail
ADD CONSTRAINT stock_stockchangedet_product_id_a013d432_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockchangedetail stock_stockchangedet_stock_change_record__b388d2f0_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangedetail
ADD CONSTRAINT stock_stockchangedet_stock_change_record__b388d2f0_fk_stock_sto FOREIGN KEY (stock_change_record_id) REFERENCES public.stock_stockchangerecord(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockchangerecord stock_stockchangerec_merchant_id_777ab07d_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangerecord
ADD CONSTRAINT stock_stockchangerec_merchant_id_777ab07d_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockchangerecord stock_stockchangerec_warehouse_id_c7a706de_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangerecord
ADD CONSTRAINT stock_stockchangerec_warehouse_id_c7a706de_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockchangerecord stock_stockchangerecord_created_by_id_7317d383_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangerecord
ADD CONSTRAINT stock_stockchangerecord_created_by_id_7317d383_fk_auth_user_id FOREIGN KEY (created_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockfreeze stock_stockfreeze_cancelled_by_id_f36ed57b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_cancelled_by_id_f36ed57b_fk_auth_user_id FOREIGN KEY (cancelled_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockfreeze stock_stockfreeze_completed_by_id_feb5742a_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_completed_by_id_feb5742a_fk_auth_user_id FOREIGN KEY (completed_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockfreeze stock_stockfreeze_frozen_by_id_747bed1c_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_frozen_by_id_747bed1c_fk_auth_user_id FOREIGN KEY (frozen_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockfreeze stock_stockfreeze_merchant_id_778ecada_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_merchant_id_778ecada_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockfreeze stock_stockfreeze_product_id_0915f126_fk_basic_info_product_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_product_id_0915f126_fk_basic_info_product_id FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockfreeze stock_stockfreeze_stock_detail_id_3c1f49b0_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_stock_detail_id_3c1f49b0_fk_stock_sto FOREIGN KEY (stock_detail_id) REFERENCES public.stock_stockchangedetail(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockfreeze stock_stockfreeze_warehouse_id_7cd7f629_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_warehouse_id_7cd7f629_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stocksnapshot stock_stocksnapshot_merchant_id_345af02e_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stocksnapshot
ADD CONSTRAINT stock_stocksnapshot_merchant_id_345af02e_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stocksnapshot stock_stocksnapshot_product_id_f6e948d7_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stocksnapshot
ADD CONSTRAINT stock_stocksnapshot_product_id_f6e948d7_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stocksnapshot stock_stocksnapshot_stock_change_record__a12e8dc3_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stocksnapshot
ADD CONSTRAINT stock_stocksnapshot_stock_change_record__a12e8dc3_fk_stock_sto FOREIGN KEY (stock_change_record_id) REFERENCES public.stock_stockchangerecord(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stocksnapshot stock_stocksnapshot_warehouse_id_469ad069_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stocksnapshot
ADD CONSTRAINT stock_stocksnapshot_warehouse_id_469ad069_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorder stock_transferorder_created_by_id_8426a804_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_created_by_id_8426a804_fk_auth_user_id FOREIGN KEY (created_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorder stock_transferorder_from_warehouse_id_38b8aba4_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_from_warehouse_id_38b8aba4_fk_basic_inf FOREIGN KEY (from_warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorder stock_transferorder_incoming_record_id_289d0a0f_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_incoming_record_id_289d0a0f_fk_stock_sto FOREIGN KEY (incoming_record_id) REFERENCES public.stock_stockchangerecord(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorder stock_transferorder_merchant_id_34312a0d_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_merchant_id_34312a0d_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorder stock_transferorder_operator_id_4e3824e2_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_operator_id_4e3824e2_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorder stock_transferorder_outgoing_record_id_a6a0dd28_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_outgoing_record_id_a6a0dd28_fk_stock_sto FOREIGN KEY (outgoing_record_id) REFERENCES public.stock_stockchangerecord(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorder stock_transferorder_to_warehouse_id_e597030e_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_to_warehouse_id_e597030e_fk_basic_inf FOREIGN KEY (to_warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorderitem stock_transferorderi_product_id_7bb0508f_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorderitem
ADD CONSTRAINT stock_transferorderi_product_id_7bb0508f_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorderitem stock_transferorderi_transfer_order_id_333e8fab_fk_stock_tra; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorderitem
ADD CONSTRAINT stock_transferorderi_transfer_order_id_333e8fab_fk_stock_tra FOREIGN KEY (transfer_order_id) REFERENCES public.stock_transferorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- PostgreSQL database dump complete
--
\unrestrict qkhlMlg0xNzGqTKThmiE0C2TGCVMTHMThbmIDwYViGZiIUKDdyEIXubSEqv4dr4