1
0
forked from erp-dev/erp
Files
erpnew/data-bak/db-backup-20251213-190000.sql
2025-12-16 08:42:53 +08:00

10954 lines
788 KiB
SQL
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 N3RbYjBHvjSxEP4QS0CAevPriQjlxLEz5YNz6U17F0fUwXBLiwGVGRl4Bcxnpz8
-- Dumped from database version 16.10
-- Dumped by pg_dump version 17.6 (Debian 17.6-0+deb13u1)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET transaction_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: api_data_sync; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.api_data_sync (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
table_name character varying(50) NOT NULL,
page_index integer NOT NULL,
page_size integer NOT NULL,
total_count integer NOT NULL,
synced_rows integer NOT NULL,
last_ctime timestamp with time zone,
last_rowid character varying(64) NOT NULL,
note character varying(255) NOT NULL,
CONSTRAINT api_data_sync_page_index_check CHECK ((page_index >= 0)),
CONSTRAINT api_data_sync_page_size_check CHECK ((page_size >= 0)),
CONSTRAINT api_data_sync_synced_rows_check CHECK ((synced_rows >= 0)),
CONSTRAINT api_data_sync_total_count_check CHECK ((total_count >= 0))
);
ALTER TABLE public.api_data_sync OWNER TO postgres;
--
-- Name: api_data_sync_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.api_data_sync ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.api_data_sync_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: api_uploaded_file; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.api_uploaded_file (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
path character varying(500) NOT NULL,
is_deleted boolean NOT NULL,
original_filename character varying(255) NOT NULL,
file_size bigint,
content_type character varying(100) NOT NULL,
owner_id integer NOT NULL
);
ALTER TABLE public.api_uploaded_file OWNER TO postgres;
--
-- Name: api_uploaded_file_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.api_uploaded_file ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.api_uploaded_file_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_group; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_group (
id integer NOT NULL,
name character varying(150) NOT NULL
);
ALTER TABLE public.auth_group OWNER TO postgres;
--
-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.auth_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_group_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_group_permissions (
id bigint NOT NULL,
group_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_group_permissions OWNER TO postgres;
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.auth_group_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_group_permissions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_permission; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_permission (
id integer NOT NULL,
name character varying(255) NOT NULL,
content_type_id integer NOT NULL,
codename character varying(100) NOT NULL
);
ALTER TABLE public.auth_permission OWNER TO postgres;
--
-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.auth_permission ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_permission_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_user; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_user (
id integer NOT NULL,
password character varying(128) NOT NULL,
last_login timestamp with time zone,
is_superuser boolean NOT NULL,
username character varying(150) NOT NULL,
first_name character varying(150) NOT NULL,
last_name character varying(150) NOT NULL,
email character varying(254) NOT NULL,
is_staff boolean NOT NULL,
is_active boolean NOT NULL,
date_joined timestamp with time zone NOT NULL
);
ALTER TABLE public.auth_user OWNER TO postgres;
--
-- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_user_groups (
id bigint NOT NULL,
user_id integer NOT NULL,
group_id integer NOT NULL
);
ALTER TABLE public.auth_user_groups OWNER TO postgres;
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.auth_user_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_user_groups_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.auth_user ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_user_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.auth_user_user_permissions (
id bigint NOT NULL,
user_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_user_user_permissions OWNER TO postgres;
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.auth_user_user_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_user_user_permissions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_bankaccount; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_bankaccount (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
auto_number character varying(50) NOT NULL,
description text,
attachment character varying(100),
merchant_id bigint NOT NULL
);
ALTER TABLE public.basic_info_bankaccount OWNER TO postgres;
--
-- Name: basic_info_bankaccount_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_bankaccount ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_bankaccount_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_customer; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_customer (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
mobile character varying(20),
area character varying(100),
email character varying(254),
contact character varying,
description text,
merchant_id bigint NOT NULL,
created_by_id bigint,
mdy_uid character varying(100),
from_mdy boolean NOT NULL
);
ALTER TABLE public.basic_info_customer OWNER TO postgres;
--
-- Name: basic_info_customer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_customer ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_customer_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_customer_visible_employees; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_customer_visible_employees (
id bigint NOT NULL,
customer_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.basic_info_customer_visible_employees OWNER TO postgres;
--
-- Name: basic_info_customer_visible_employees_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_customer_visible_employees ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_customer_visible_employees_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_deviceinfo; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_deviceinfo (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
type character varying(20) NOT NULL,
status character varying(20) NOT NULL,
start_working_at date,
stop_working_at date,
is_occupied boolean NOT NULL,
description text,
merchant_id bigint NOT NULL
);
ALTER TABLE public.basic_info_deviceinfo OWNER TO postgres;
--
-- Name: basic_info_deviceinfo_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_deviceinfo ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_deviceinfo_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_employee; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_employee (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
mobile character varying(20),
area character varying(100),
description text,
status character varying(20) NOT NULL,
sys_user_id integer,
merchant_id bigint NOT NULL,
position_id bigint
);
ALTER TABLE public.basic_info_employee OWNER TO postgres;
--
-- Name: basic_info_employee_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_employee ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_employee_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_employeetype; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_employeetype (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
title character varying(50) NOT NULL,
description text,
reverse character varying(100),
merchant_id bigint NOT NULL
);
ALTER TABLE public.basic_info_employeetype OWNER TO postgres;
--
-- Name: basic_info_employeetype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_employeetype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_employeetype_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_merchant; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_merchant (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
type integer NOT NULL,
area character varying(100),
email character varying(254),
mobile character varying(20),
contact text,
description text,
auto_complete_stock_change boolean NOT NULL
);
ALTER TABLE public.basic_info_merchant OWNER TO postgres;
--
-- Name: basic_info_merchant_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_merchant ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_merchant_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_merchantsetting; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_merchantsetting (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
key character varying(100) NOT NULL,
description text,
merchant_id bigint NOT NULL,
val_bool boolean,
val_float double precision,
val_int integer,
val_str character varying(100),
type character varying(20) NOT NULL
);
ALTER TABLE public.basic_info_merchantsetting OWNER TO postgres;
--
-- Name: basic_info_merchantsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_merchantsetting ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_merchantsetting_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_product; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_product (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
human_id character varying(100) NOT NULL,
color character varying(50),
width_size numeric(10,2),
single_price_in numeric(10,2),
single_price_out numeric(10,2),
unit integer NOT NULL,
spec character varying(100),
description text,
image character varying(100),
transform_rate numeric(10,4),
merchant_id bigint NOT NULL,
category_id bigint NOT NULL,
minimum_quantity integer,
from_mdy boolean NOT NULL,
mdy_image_url character varying(500),
pieces integer,
segment_size integer
);
ALTER TABLE public.basic_info_product OWNER TO postgres;
--
-- Name: basic_info_product_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_product ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_product_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_productcategory; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_productcategory (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
description text,
product_prefix character varying(5) NOT NULL,
merchant_id bigint NOT NULL
);
ALTER TABLE public.basic_info_productcategory OWNER TO postgres;
--
-- Name: basic_info_productcategory_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_productcategory ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_productcategory_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_quickinput; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_quickinput (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
value character varying(200) NOT NULL,
"group" character varying NOT NULL
);
ALTER TABLE public.basic_info_quickinput OWNER TO postgres;
--
-- Name: basic_info_quickinput_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_quickinput ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_quickinput_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_supplier; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_supplier (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
area character varying(100),
email character varying(254),
mobile character varying(20),
contact text,
description text,
merchant_id bigint NOT NULL
);
ALTER TABLE public.basic_info_supplier OWNER TO postgres;
--
-- Name: basic_info_supplier_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_supplier ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_supplier_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_userprofile; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_userprofile (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
description text,
merchant_id bigint NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.basic_info_userprofile OWNER TO postgres;
--
-- Name: basic_info_userprofile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_userprofile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_userprofile_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_vehicletransportrecord; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_vehicletransportrecord (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
driver_name character varying(100) NOT NULL,
contact_number character varying(20),
license_plate character varying(20),
delivery_date date NOT NULL,
merchant_id bigint NOT NULL,
vehicle_type_id bigint NOT NULL
);
ALTER TABLE public.basic_info_vehicletransportrecord OWNER TO postgres;
--
-- Name: basic_info_vehicletransportrecord_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_vehicletransportrecord ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_vehicletransportrecord_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_vehicletype; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_vehicletype (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(50) NOT NULL,
description text,
merchant_id bigint NOT NULL
);
ALTER TABLE public.basic_info_vehicletype OWNER TO postgres;
--
-- Name: basic_info_vehicletype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_vehicletype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_vehicletype_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: basic_info_warehouse; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.basic_info_warehouse (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
name character varying(100) NOT NULL,
location character varying(200),
contact character varying(100),
mobile character varying(20),
area character varying(100),
description text,
merchant_id bigint NOT NULL,
mode integer NOT NULL,
type integer NOT NULL
);
ALTER TABLE public.basic_info_warehouse OWNER TO postgres;
--
-- Name: basic_info_warehouse_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.basic_info_warehouse ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.basic_info_warehouse_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_balancechangerecord; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_balancechangerecord (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
target_type integer NOT NULL,
source_type integer NOT NULL,
source_id bigint NOT NULL,
delta numeric(15,2) NOT NULL,
direction integer NOT NULL,
balance_before numeric(15,2) NOT NULL,
balance_after numeric(15,2) NOT NULL,
request_id character varying(64),
remarks text,
extra_meta jsonb NOT NULL,
offset_to bigint,
offset_at timestamp with time zone,
offset_id bigint,
cancelled boolean NOT NULL,
cancelled_at timestamp with time zone,
customer_id bigint,
merchant_id bigint NOT NULL,
supplier_id bigint,
CONSTRAINT balance_change_single_counterparty CHECK ((((customer_id IS NULL) AND (supplier_id IS NOT NULL)) OR ((customer_id IS NOT NULL) AND (supplier_id IS NULL))))
);
ALTER TABLE public.business_balancechangerecord OWNER TO postgres;
--
-- Name: business_balancechangerecord_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_balancechangerecord ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_balancechangerecord_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_customerbalance; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_customerbalance (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
balance numeric(15,2) NOT NULL,
customer_id bigint NOT NULL,
merchant_id bigint NOT NULL
);
ALTER TABLE public.business_customerbalance OWNER TO postgres;
--
-- Name: business_customerbalance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_customerbalance ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_customerbalance_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_object; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_object (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
name character varying(100) NOT NULL,
description text NOT NULL,
process_id bigint NOT NULL,
content_type_id integer,
object_id integer,
CONSTRAINT business_object_object_id_check CHECK ((object_id >= 0))
);
ALTER TABLE public.business_object OWNER TO postgres;
--
-- Name: business_paymentorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_paymentorder (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
payment_date date NOT NULL,
amount numeric(15,2) NOT NULL,
status integer NOT NULL,
remarks text,
merchant_id bigint NOT NULL,
operator_id bigint NOT NULL,
supplier_id bigint NOT NULL,
bank_account_id bigint,
markup character varying(255),
discount_amount numeric(15,2) NOT NULL
);
ALTER TABLE public.business_paymentorder OWNER TO postgres;
--
-- Name: business_paymentorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_paymentorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_paymentorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_purchaseorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_purchaseorder (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
remarks text,
merchant_id bigint NOT NULL,
supplier_id bigint NOT NULL,
kind integer NOT NULL,
operator_id bigint NOT NULL,
purchase_date date NOT NULL,
status integer NOT NULL,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.business_purchaseorder OWNER TO postgres;
--
-- Name: business_purchaseorderitem; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_purchaseorderitem (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
price numeric(15,2) NOT NULL,
color character varying(50),
quantity numeric(10,2) NOT NULL,
unit character varying(50) NOT NULL,
empty_diff_percent numeric(15,2) NOT NULL,
quantity_of_rolls character varying(255),
num_of_rolls integer NOT NULL,
batch_number character varying(100),
remarks text,
product_id bigint NOT NULL,
purchase_order_id bigint NOT NULL,
spec character varying(100),
CONSTRAINT business_purchaseorderitem_num_of_rolls_check CHECK ((num_of_rolls >= 0))
);
ALTER TABLE public.business_purchaseorderitem OWNER TO postgres;
--
-- Name: business_purchaseorderitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_purchaseorderitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_purchaseorderitem_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_purchasereturnorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_purchasereturnorder (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
return_date date NOT NULL,
status integer NOT NULL,
remarks text,
merchant_id bigint NOT NULL,
operator_id bigint NOT NULL,
purchase_order_id bigint,
supplier_id bigint NOT NULL,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.business_purchasereturnorder OWNER TO postgres;
--
-- Name: business_purchasereturnorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_purchasereturnorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_purchasereturnorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_purchasereturnorderitem; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_purchasereturnorderitem (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
price numeric(15,2) NOT NULL,
color character varying(50),
quantity numeric(10,2) NOT NULL,
unit character varying(50) NOT NULL,
spec character varying(100),
empty_diff_percent numeric(15,2) NOT NULL,
quantity_of_rolls character varying(255),
num_of_rolls integer NOT NULL,
consume_detail_ids character varying(255),
batch_number character varying(100),
remarks text,
product_id bigint NOT NULL,
purchase_return_order_id bigint NOT NULL,
CONSTRAINT business_purchasereturnorderitem_num_of_rolls_check CHECK ((num_of_rolls >= 0))
);
ALTER TABLE public.business_purchasereturnorderitem OWNER TO postgres;
--
-- Name: business_purchasereturnorderitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_purchasereturnorderitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_purchasereturnorderitem_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_receiptorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_receiptorder (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
receipt_date date NOT NULL,
amount numeric(15,2) NOT NULL,
status integer NOT NULL,
remarks text,
customer_id bigint NOT NULL,
merchant_id bigint NOT NULL,
operator_id bigint NOT NULL,
bank_account_id bigint,
markup character varying(255),
discount_amount numeric(15,2) NOT NULL
);
ALTER TABLE public.business_receiptorder OWNER TO postgres;
--
-- Name: business_receiptorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_receiptorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_receiptorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_salesorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_salesorder (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
sales_date date NOT NULL,
kind integer NOT NULL,
status integer NOT NULL,
remarks text,
customer_id bigint NOT NULL,
merchant_id bigint NOT NULL,
operator_id bigint NOT NULL,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.business_salesorder OWNER TO postgres;
--
-- Name: business_salesorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_salesorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_salesorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_salesorderitem; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_salesorderitem (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
price numeric(15,2) NOT NULL,
color character varying(50),
quantity numeric(10,2) NOT NULL,
unit character varying(50) NOT NULL,
spec character varying(100),
empty_diff_percent numeric(15,2) NOT NULL,
quantity_of_rolls text,
num_of_rolls integer NOT NULL,
consume_detail_ids character varying(255),
batch_number character varying(100),
remarks text,
product_id bigint NOT NULL,
sales_order_id bigint NOT NULL,
printing_job_id bigint,
CONSTRAINT business_salesorderitem_num_of_rolls_check CHECK ((num_of_rolls >= 0))
);
ALTER TABLE public.business_salesorderitem OWNER TO postgres;
--
-- Name: business_salesorderitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_salesorderitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_salesorderitem_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_salesreturnorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_salesreturnorder (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
return_date date NOT NULL,
status integer NOT NULL,
remarks text,
customer_id bigint NOT NULL,
merchant_id bigint NOT NULL,
operator_id bigint NOT NULL,
sales_order_id bigint,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.business_salesreturnorder OWNER TO postgres;
--
-- Name: business_salesreturnorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_salesreturnorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_salesreturnorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_salesreturnorderitem; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_salesreturnorderitem (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
price numeric(15,2) NOT NULL,
color character varying(50),
quantity numeric(10,2) NOT NULL,
unit character varying(50) NOT NULL,
spec character varying(100),
empty_diff_percent numeric(15,2) NOT NULL,
quantity_of_rolls character varying(255),
num_of_rolls integer NOT NULL,
consume_detail_ids character varying(255),
batch_number character varying(100),
remarks text,
product_id bigint NOT NULL,
sales_return_order_id bigint NOT NULL,
CONSTRAINT business_salesreturnorderitem_num_of_rolls_check CHECK ((num_of_rolls >= 0))
);
ALTER TABLE public.business_salesreturnorderitem OWNER TO postgres;
--
-- Name: business_salesreturnorderitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_salesreturnorderitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_salesreturnorderitem_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: business_supplierbalance; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.business_supplierbalance (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
balance numeric(15,2) NOT NULL,
merchant_id bigint NOT NULL,
supplier_id bigint NOT NULL
);
ALTER TABLE public.business_supplierbalance OWNER TO postgres;
--
-- Name: business_supplierbalance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_supplierbalance ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.business_supplierbalance_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_admin_log; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_admin_log (
id integer NOT NULL,
action_time timestamp with time zone NOT NULL,
object_id text,
object_repr character varying(200) NOT NULL,
action_flag smallint NOT NULL,
change_message text NOT NULL,
content_type_id integer,
user_id integer NOT NULL,
CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0))
);
ALTER TABLE public.django_admin_log OWNER TO postgres;
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.django_admin_log ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_admin_log_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_content_type; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_content_type (
id integer NOT NULL,
app_label character varying(100) NOT NULL,
model character varying(100) NOT NULL
);
ALTER TABLE public.django_content_type OWNER TO postgres;
--
-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.django_content_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_content_type_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_migrations; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_migrations (
id bigint NOT NULL,
app character varying(255) NOT NULL,
name character varying(255) NOT NULL,
applied timestamp with time zone NOT NULL
);
ALTER TABLE public.django_migrations OWNER TO postgres;
--
-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.django_migrations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_migrations_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_session; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.django_session (
session_key character varying(40) NOT NULL,
session_data text NOT NULL,
expire_date timestamp with time zone NOT NULL
);
ALTER TABLE public.django_session OWNER TO postgres;
--
-- Name: printing_plateorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.printing_plateorder (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
design_code character varying(50),
plate_type character varying(20),
plate_date timestamp with time zone,
plate_method character varying(50),
plate_image jsonb NOT NULL,
plate_notes text,
reprint_reason text,
urgency_level character varying(20) NOT NULL,
area character varying(255),
default_address character varying(500),
is_mark_frame boolean NOT NULL,
drawing_rating character varying(20),
color_matching_rating character varying(20),
sample_rating character varying(20),
difficulty_rating character varying(20),
required_completion_date timestamp with time zone,
completion_date timestamp with time zone,
fabric character varying(100),
width character varying(50),
style_name character varying(100),
production_method character varying(50),
sample_meter character varying(100),
required_sample_meters numeric(10,2),
approval_result character varying(50),
is_ordered boolean NOT NULL,
customer_feedback text,
business_object_id bigint,
customer_id bigint NOT NULL,
merchandiser_id bigint,
salesperson_id bigint,
is_invalid boolean NOT NULL,
process integer NOT NULL,
fabric_source character varying(100),
designer_id bigint,
image_name text,
print_count integer NOT NULL,
CONSTRAINT printing_plateorder_print_count_check CHECK ((print_count >= 0))
);
ALTER TABLE public.printing_plateorder OWNER TO postgres;
--
-- Name: printing_plateorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.printing_plateorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.printing_plateorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: printing_printingjob; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.printing_printingjob (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
quantity integer NOT NULL,
unit character varying(50) NOT NULL,
size character varying(100),
pieces integer,
description text,
product_id bigint NOT NULL,
printing_order_id bigint NOT NULL,
business_object_id bigint,
work_state integer NOT NULL,
CONSTRAINT printing_printingjob_pieces_check CHECK ((pieces >= 0)),
CONSTRAINT printing_printingjob_quantity_check CHECK ((quantity >= 0))
);
ALTER TABLE public.printing_printingjob OWNER TO postgres;
--
-- Name: printing_printingjob_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.printing_printingjob ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.printing_printingjob_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: printing_printingjobbatchadvancerecord; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.printing_printingjobbatchadvancerecord (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
parameters jsonb NOT NULL,
created_by_id integer,
printing_order_id bigint NOT NULL,
state_id bigint NOT NULL
);
ALTER TABLE public.printing_printingjobbatchadvancerecord OWNER TO postgres;
--
-- Name: printing_printingjobbatchadvancerecord_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.printing_printingjobbatchadvancerecord ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.printing_printingjobbatchadvancerecord_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: printing_printingjobbatchadvancerecord_printing_jobs; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.printing_printingjobbatchadvancerecord_printing_jobs (
id bigint NOT NULL,
printingjobbatchadvancerecord_id bigint NOT NULL,
printingjob_id bigint NOT NULL
);
ALTER TABLE public.printing_printingjobbatchadvancerecord_printing_jobs OWNER TO postgres;
--
-- Name: printing_printingjobbatchadvancerecord_printing_jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.printing_printingjobbatchadvancerecord_printing_jobs ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.printing_printingjobbatchadvancerecord_printing_jobs_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: printing_printingorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.printing_printingorder (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
fabric character varying(100) NOT NULL,
width character varying(100) NOT NULL,
is_urgent boolean NOT NULL,
area character varying(100),
address character varying(200),
fabric_source character varying(100),
is_fabric_received boolean NOT NULL,
craft character varying(100),
description text,
outgoing_date date,
curve character varying(100),
new_curve character varying(100),
"position" text,
printing_warn text,
rolling_warn text,
production_warn text,
customer_id bigint NOT NULL,
is_invalid boolean NOT NULL,
process_id bigint,
print_count integer NOT NULL,
CONSTRAINT printing_printingorder_print_count_check CHECK ((print_count >= 0))
);
ALTER TABLE public.printing_printingorder OWNER TO postgres;
--
-- Name: printing_printingorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.printing_printingorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.printing_printingorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: state_flow_record; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.state_flow_record (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
completed_at timestamp with time zone NOT NULL,
completed_by_id integer,
business_object_id bigint NOT NULL,
state_id bigint NOT NULL,
cancelled_at timestamp with time zone,
is_cancelled boolean NOT NULL
);
ALTER TABLE public.state_flow_record OWNER TO postgres;
--
-- Name: state_log_parameter_record; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.state_log_parameter_record (
id bigint NOT NULL,
updated_at timestamp with time zone NOT NULL,
parameters jsonb NOT NULL,
created_at timestamp with time zone NOT NULL,
remark text NOT NULL,
state_log_id bigint NOT NULL
);
ALTER TABLE public.state_log_parameter_record OWNER TO postgres;
--
-- Name: state_log_parameter_record_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.state_log_parameter_record ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.state_log_parameter_record_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stateflow_order_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_object ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stateflow_order_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stateflow_orderstatelog_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.state_flow_record ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stateflow_orderstatelog_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stateflow_process; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stateflow_process (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
name character varying(100) NOT NULL,
description text NOT NULL
);
ALTER TABLE public.stateflow_process OWNER TO postgres;
--
-- Name: stateflow_process_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stateflow_process ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stateflow_process_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stateflow_processnode; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stateflow_processnode (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
"order" integer NOT NULL,
process_id bigint NOT NULL,
state_id bigint NOT NULL,
CONSTRAINT stateflow_processnode_order_check CHECK (("order" >= 0))
);
ALTER TABLE public.stateflow_processnode OWNER TO postgres;
--
-- Name: stateflow_processnode_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stateflow_processnode ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stateflow_processnode_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stateflow_state; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stateflow_state (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
name character varying(100) NOT NULL,
description character varying(200) NOT NULL
);
ALTER TABLE public.stateflow_state OWNER TO postgres;
--
-- Name: stateflow_state_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stateflow_state ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stateflow_state_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stateflow_state_parameters; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stateflow_state_parameters (
id bigint NOT NULL,
state_id bigint NOT NULL,
stateparameter_id bigint NOT NULL
);
ALTER TABLE public.stateflow_state_parameters OWNER TO postgres;
--
-- Name: stateflow_state_parameters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stateflow_state_parameters ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stateflow_state_parameters_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stateflow_stateparameter; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stateflow_stateparameter (
id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
key character varying(100) NOT NULL,
value character varying(200),
description character varying(200) NOT NULL,
attachment character varying(100),
is_required boolean NOT NULL,
is_image_path boolean NOT NULL
);
ALTER TABLE public.stateflow_stateparameter OWNER TO postgres;
--
-- Name: stateflow_stateparameter_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stateflow_stateparameter ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stateflow_stateparameter_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_inventory; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stock_inventory (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
quantity numeric(10,2) NOT NULL,
num_of_rolls integer NOT NULL,
spec character varying(100),
description text,
merchant_id bigint NOT NULL,
product_id bigint NOT NULL,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.stock_inventory OWNER TO postgres;
--
-- Name: stock_inventory_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stock_inventory ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_inventory_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_purchaseorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.business_purchaseorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_purchaseorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_stockchangedetail; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stock_stockchangedetail (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
quantity numeric(10,2) NOT NULL,
unit integer NOT NULL,
merchant_id bigint NOT NULL,
product_id bigint NOT NULL,
stock_change_record_id bigint NOT NULL,
is_consumed boolean NOT NULL,
consume_with_id bigint
);
ALTER TABLE public.stock_stockchangedetail OWNER TO postgres;
--
-- Name: stock_stockchangedetail_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stock_stockchangedetail ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_stockchangedetail_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_stockchangerecord; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stock_stockchangerecord (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
type integer NOT NULL,
source_type integer NOT NULL,
source_id bigint,
is_finished boolean NOT NULL,
finished_at timestamp with time zone,
remarks text,
created_by_id integer,
merchant_id bigint NOT NULL,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.stock_stockchangerecord OWNER TO postgres;
--
-- Name: stock_stockchangerecord_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stock_stockchangerecord ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_stockchangerecord_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_stockfreeze; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stock_stockfreeze (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
quantity numeric(10,2) NOT NULL,
unit integer NOT NULL,
status integer NOT NULL,
frozen_with bigint,
completed_at timestamp with time zone,
completed_with bigint,
cancelled_at timestamp with time zone,
reason text,
cancelled_by_id integer,
completed_by_id integer,
frozen_by_id integer NOT NULL,
merchant_id bigint NOT NULL,
product_id bigint NOT NULL,
stock_detail_id bigint NOT NULL,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.stock_stockfreeze OWNER TO postgres;
--
-- Name: stock_stockfreeze_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stock_stockfreeze ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_stockfreeze_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_stocksnapshot; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stock_stocksnapshot (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
delta numeric(10,2) NOT NULL,
quantity_before numeric(10,2) NOT NULL,
quantity_after numeric(10,2) NOT NULL,
unit integer NOT NULL,
num_of_rolls integer NOT NULL,
offset_to bigint,
offset_at timestamp with time zone,
cancelled boolean NOT NULL,
cancelled_at timestamp with time zone,
offset_id bigint,
merchant_id bigint NOT NULL,
product_id bigint NOT NULL,
stock_change_record_id bigint NOT NULL,
warehouse_id bigint NOT NULL
);
ALTER TABLE public.stock_stocksnapshot OWNER TO postgres;
--
-- Name: stock_stocksnapshot_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stock_stocksnapshot ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_stocksnapshot_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_transferorder; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stock_transferorder (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
mode integer NOT NULL,
transfer_date date NOT NULL,
status integer NOT NULL,
remarks text,
request_id character varying(64),
created_by_id integer,
from_warehouse_id bigint NOT NULL,
incoming_record_id bigint,
merchant_id bigint NOT NULL,
operator_id bigint NOT NULL,
outgoing_record_id bigint,
to_warehouse_id bigint NOT NULL,
CONSTRAINT transfer_different_warehouses CHECK ((NOT (from_warehouse_id = to_warehouse_id)))
);
ALTER TABLE public.stock_transferorder OWNER TO postgres;
--
-- Name: stock_transferorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stock_transferorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_transferorder_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: stock_transferorderitem; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.stock_transferorderitem (
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
id bigint NOT NULL,
unit integer NOT NULL,
total_quantity numeric(10,2) NOT NULL,
num_of_rolls integer NOT NULL,
product_id bigint NOT NULL,
transfer_order_id bigint NOT NULL,
CONSTRAINT stock_transferorderitem_num_of_rolls_check CHECK ((num_of_rolls >= 0))
);
ALTER TABLE public.stock_transferorderitem OWNER TO postgres;
--
-- Name: stock_transferorderitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
ALTER TABLE public.stock_transferorderitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.stock_transferorderitem_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Data for Name: api_data_sync; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.api_data_sync (id, created_at, updated_at, table_name, page_index, page_size, total_count, synced_rows, last_ctime, last_rowid, note) FROM stdin;
104 2025-12-09 09:00:00.653229+00 2025-12-09 09:00:00.653239+00 customer 3 100 1843 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
105 2025-12-09 10:00:01.537445+00 2025-12-09 10:00:01.537451+00 customer 3 100 1843 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
106 2025-12-09 11:00:00.63698+00 2025-12-09 11:00:00.636986+00 customer 3 100 1843 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
107 2025-12-09 12:00:02.474507+00 2025-12-09 12:00:02.474513+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
108 2025-12-09 13:00:01.84484+00 2025-12-09 13:00:01.844847+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
109 2025-12-09 14:00:01.075239+00 2025-12-09 14:00:01.075245+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
110 2025-12-09 15:00:00.663226+00 2025-12-09 15:00:00.663232+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
111 2025-12-09 16:00:02.607129+00 2025-12-09 16:00:02.607135+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
112 2025-12-09 17:00:00.835087+00 2025-12-09 17:00:00.835093+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
113 2025-12-09 18:00:02.150147+00 2025-12-09 18:00:02.150153+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
114 2025-12-09 19:00:02.033763+00 2025-12-09 19:00:02.033769+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
115 2025-12-09 20:00:02.625341+00 2025-12-09 20:00:02.625348+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
116 2025-12-09 21:00:00.673736+00 2025-12-09 21:00:00.673742+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
117 2025-12-09 22:00:02.406177+00 2025-12-09 22:00:02.406183+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
118 2025-12-09 23:00:01.998055+00 2025-12-09 23:00:01.998061+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
119 2025-12-10 00:00:02.348564+00 2025-12-10 00:00:02.34857+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
120 2025-12-10 01:00:01.216192+00 2025-12-10 01:00:01.216198+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
121 2025-12-10 02:00:01.083534+00 2025-12-10 02:00:01.08354+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
122 2025-12-10 03:00:00.8483+00 2025-12-10 03:00:00.848306+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
123 2025-12-10 04:00:02.172956+00 2025-12-10 04:00:02.172963+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
124 2025-12-10 05:00:00.661057+00 2025-12-10 05:00:00.661064+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
125 2025-12-10 06:00:02.246847+00 2025-12-10 06:00:02.246853+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
126 2025-12-10 07:00:01.73964+00 2025-12-10 07:00:01.739646+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
127 2025-12-10 08:00:02.103673+00 2025-12-10 08:00:02.10368+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
128 2025-12-10 09:00:01.698863+00 2025-12-10 09:00:01.69887+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
129 2025-12-10 10:00:00.986996+00 2025-12-10 10:00:00.987002+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
130 2025-12-10 11:00:00.673032+00 2025-12-10 11:00:00.673039+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
131 2025-12-10 12:00:00.998191+00 2025-12-10 12:00:00.998197+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
132 2025-12-10 13:00:01.911645+00 2025-12-10 13:00:01.911652+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
133 2025-12-10 14:00:02.185054+00 2025-12-10 14:00:02.185061+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
134 2025-12-10 15:00:01.872884+00 2025-12-10 15:00:01.87289+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
135 2025-12-10 16:00:01.296712+00 2025-12-10 16:00:01.296718+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
136 2025-12-10 17:00:00.748068+00 2025-12-10 17:00:00.748075+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
137 2025-12-10 18:00:00.955365+00 2025-12-10 18:00:00.955371+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
138 2025-12-10 19:00:01.472321+00 2025-12-10 19:00:01.472328+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
139 2025-12-10 20:00:00.976641+00 2025-12-10 20:00:00.976647+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
140 2025-12-10 21:00:00.612485+00 2025-12-10 21:00:00.612491+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
141 2025-12-10 22:00:02.217301+00 2025-12-10 22:00:02.217307+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
142 2025-12-10 23:00:00.635041+00 2025-12-10 23:00:00.635048+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
143 2025-12-11 00:00:00.981119+00 2025-12-11 00:00:00.981126+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
144 2025-12-11 01:00:00.803153+00 2025-12-11 01:00:00.80316+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
145 2025-12-11 02:00:02.209417+00 2025-12-11 02:00:02.209423+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
146 2025-12-11 03:00:00.811471+00 2025-12-11 03:00:00.811477+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
147 2025-12-11 04:00:01.812461+00 2025-12-11 04:00:01.812468+00 customer 3 100 1846 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
148 2025-12-11 05:00:00.642621+00 2025-12-11 05:00:00.642628+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
149 2025-12-11 06:00:01.006186+00 2025-12-11 06:00:01.006192+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
150 2025-12-11 07:00:01.170133+00 2025-12-11 07:00:01.17014+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
151 2025-12-11 08:00:01.1949+00 2025-12-11 08:00:01.194906+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
152 2025-12-11 09:00:00.672311+00 2025-12-11 09:00:00.672317+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
153 2025-12-11 10:00:01.295486+00 2025-12-11 10:00:01.295492+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
154 2025-12-11 11:00:00.621941+00 2025-12-11 11:00:00.621947+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
155 2025-12-11 12:00:02.099292+00 2025-12-11 12:00:02.099299+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
156 2025-12-11 13:00:00.633332+00 2025-12-11 13:00:00.633338+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
157 2025-12-11 14:00:02.17408+00 2025-12-11 14:00:02.174087+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
158 2025-12-11 15:00:01.428906+00 2025-12-11 15:00:01.428913+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
159 2025-12-11 16:00:01.459219+00 2025-12-11 16:00:01.459225+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
160 2025-12-11 17:00:02.216276+00 2025-12-11 17:00:02.216282+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
161 2025-12-11 18:00:00.921905+00 2025-12-11 18:00:00.921911+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
162 2025-12-11 19:00:02.343351+00 2025-12-11 19:00:02.343357+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
163 2025-12-11 20:00:00.603587+00 2025-12-11 20:00:00.603593+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
164 2025-12-11 21:00:01.871759+00 2025-12-11 21:00:01.871765+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
165 2025-12-11 22:00:01.619334+00 2025-12-11 22:00:01.619341+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
166 2025-12-11 23:00:00.940606+00 2025-12-11 23:00:00.940612+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
167 2025-12-12 00:00:00.734641+00 2025-12-12 00:00:00.734647+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
168 2025-12-12 01:00:01.07306+00 2025-12-12 01:00:01.073066+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
169 2025-12-12 02:00:01.837832+00 2025-12-12 02:00:01.837839+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
170 2025-12-12 03:00:01.398695+00 2025-12-12 03:00:01.398701+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
171 2025-12-12 04:00:00.618029+00 2025-12-12 04:00:00.618035+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
172 2025-12-12 05:00:02.545333+00 2025-12-12 05:00:02.545339+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
173 2025-12-12 06:00:00.627008+00 2025-12-12 06:00:00.627015+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
174 2025-12-12 07:00:01.108572+00 2025-12-12 07:00:01.108578+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
175 2025-12-12 08:00:00.627836+00 2025-12-12 08:00:00.627842+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
176 2025-12-12 09:00:01.484804+00 2025-12-12 09:00:01.48481+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
177 2025-12-12 10:00:00.641692+00 2025-12-12 10:00:00.641698+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
178 2025-12-12 11:00:01.199997+00 2025-12-12 11:00:01.200004+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
179 2025-12-12 12:00:00.599805+00 2025-12-12 12:00:00.599811+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
180 2025-12-12 13:00:01.014662+00 2025-12-12 13:00:01.014668+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
181 2025-12-12 14:00:00.840988+00 2025-12-12 14:00:00.840995+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
182 2025-12-12 15:00:00.960038+00 2025-12-12 15:00:00.960044+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
183 2025-12-12 16:00:01.816452+00 2025-12-12 16:00:01.816458+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
184 2025-12-12 17:00:00.95729+00 2025-12-12 17:00:00.957296+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
185 2025-12-12 18:00:01.161056+00 2025-12-12 18:00:01.161062+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
186 2025-12-12 19:00:02.569288+00 2025-12-12 19:00:02.569294+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
187 2025-12-12 20:00:00.717492+00 2025-12-12 20:00:00.717499+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
188 2025-12-12 21:00:01.087522+00 2025-12-12 21:00:01.087528+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
189 2025-12-12 22:00:01.371942+00 2025-12-12 22:00:01.371948+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
190 2025-12-12 23:00:00.617432+00 2025-12-12 23:00:00.617439+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
191 2025-12-13 00:00:02.355136+00 2025-12-13 00:00:02.355142+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
192 2025-12-13 01:00:01.763528+00 2025-12-13 01:00:01.763535+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
193 2025-12-13 02:00:02.487673+00 2025-12-13 02:00:02.48768+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
194 2025-12-13 03:00:00.795339+00 2025-12-13 03:00:00.795346+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
195 2025-12-13 04:00:01.006104+00 2025-12-13 04:00:01.00611+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
196 2025-12-13 05:00:01.230506+00 2025-12-13 05:00:01.230513+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
197 2025-12-13 06:00:00.967943+00 2025-12-13 06:00:00.967949+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
198 2025-12-13 07:00:00.647476+00 2025-12-13 07:00:00.647482+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
199 2025-12-13 08:00:01.149594+00 2025-12-13 08:00:01.149601+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
200 2025-12-13 09:00:02.169239+00 2025-12-13 09:00:02.169245+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
201 2025-12-13 10:00:00.647573+00 2025-12-13 10:00:00.647579+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
202 2025-12-13 11:00:02.152464+00 2025-12-13 11:00:02.152472+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
203 2025-12-13 12:00:00.621564+00 2025-12-13 12:00:00.621569+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
204 2025-12-13 13:00:02.14727+00 2025-12-13 13:00:02.147277+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
205 2025-12-13 14:00:01.631829+00 2025-12-13 14:00:01.631836+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
206 2025-12-13 15:00:01.078682+00 2025-12-13 15:00:01.078688+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
207 2025-12-13 16:00:00.803649+00 2025-12-13 16:00:00.803655+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
208 2025-12-13 17:00:00.944632+00 2025-12-13 17:00:00.944638+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
209 2025-12-13 18:00:00.73119+00 2025-12-13 18:00:00.731196+00 customer 3 100 1847 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan
\.
--
-- Data for Name: api_uploaded_file; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.api_uploaded_file (id, created_at, updated_at, path, is_deleted, original_filename, file_size, content_type, owner_id) FROM stdin;
1 2025-11-21 02:46:27.837198+00 2025-11-21 02:46:27.837209+00 uploads/2025/11/21/21aed50ea13146c68d20b4ae3e1b3079.png f debug_group_4.png 159627 image/png 2
2 2025-11-28 01:20:36.190015+00 2025-11-28 01:20:36.190028+00 uploads/2025/11/28/3f6310da200d4eed95fbf83e3a91c5d3.png f image.png 20215 image/png 2
3 2025-11-28 01:32:56.717249+00 2025-11-28 01:32:56.717258+00 uploads/2025/11/28/669cb9d758ec4d1d812221634c0a8f0c.png f image.png 9562 image/png 2
4 2025-11-28 01:33:05.201488+00 2025-11-28 01:33:05.201499+00 uploads/2025/11/28/7ceb226e55ff49f1ae19288bceb30043.png f image.png 27946 image/png 2
5 2025-11-28 01:33:07.382898+00 2025-11-28 01:33:07.382907+00 uploads/2025/11/28/d8476a09bc65428186de1fff70acc8cb.png f image.png 19360 image/png 2
6 2025-11-28 01:33:10.519571+00 2025-11-28 01:33:10.519581+00 uploads/2025/11/28/114c7bdecf9547dd8d55c19d814fcbe5.png f image.png 25338 image/png 2
7 2025-11-28 02:45:21.799563+00 2025-11-28 02:45:21.799574+00 uploads/2025/11/28/ccaba46c20a249f1ba70cc00a4abe75a.png f image.png 17641 image/png 2
8 2025-11-28 02:51:44.90851+00 2025-11-28 02:51:44.908523+00 uploads/2025/11/28/427aa1b8af0c44a3ba2ef930585e5f0e.png f image.png 29584 image/png 2
9 2025-11-28 02:53:41.308123+00 2025-11-28 02:53:41.308132+00 uploads/2025/11/28/ebb3a627a5ce4eaaabc6fc4d9cd15bc7.png f image.png 55897 image/png 2
10 2025-11-28 02:58:51.677179+00 2025-11-28 02:58:51.677189+00 uploads/2025/11/28/afaea93815684e2c8c3ea17124a702ed.png f image.png 35906 image/png 2
11 2025-12-01 03:39:12.602557+00 2025-12-01 03:39:12.602566+00 uploads/2025/12/01/bd8047e51ef94621aa7741374fbad214.png f image.png 38709 image/png 2
12 2025-12-01 03:39:16.058997+00 2025-12-01 03:39:16.059007+00 uploads/2025/12/01/2df23a8b39584f239830ea46b696f00f.png f image.png 38709 image/png 2
13 2025-12-01 03:42:49.826549+00 2025-12-01 03:42:49.826559+00 uploads/2025/12/01/2751345bc5714bec9ae26dbe7dbfeb01.png f image.png 22147 image/png 2
14 2025-12-01 03:42:49.959785+00 2025-12-01 03:42:49.959794+00 uploads/2025/12/01/beb6888ed0f44751a83534047560a320.png f image.png 22147 image/png 2
15 2025-12-01 03:42:50.145671+00 2025-12-01 03:42:50.145685+00 uploads/2025/12/01/6a5eab59f6f4421d956ac1173c20977c.png f image.png 22147 image/png 2
16 2025-12-01 03:42:50.262591+00 2025-12-01 03:42:50.262602+00 uploads/2025/12/01/0da6a1db469d4bbe82fac9acca841639.png f image.png 22147 image/png 2
17 2025-12-01 03:42:52.388878+00 2025-12-01 03:42:52.388889+00 uploads/2025/12/01/26583acb02d840aaabda7ec243ca64bd.png f image.png 22147 image/png 2
18 2025-12-01 03:43:09.800171+00 2025-12-01 03:43:09.800183+00 uploads/2025/12/01/fe2184c0908e4a31a3ed8d76c4d65cfb.jpeg f 1 (1).jpeg 5913871 image/jpeg 2
19 2025-12-01 03:43:17.140383+00 2025-12-01 03:43:17.140394+00 uploads/2025/12/01/4c89f613e5c748db804f5bbbe0fb0530.png f image.png 38036 image/png 2
20 2025-12-01 03:43:21.352445+00 2025-12-01 03:43:21.352456+00 uploads/2025/12/01/79d1132658c54d67aefc9546c8d8dae0.png f image.png 38036 image/png 2
21 2025-12-01 03:48:54.293441+00 2025-12-01 03:48:54.293456+00 uploads/2025/12/01/25c73df5548343e08f3ebe122d7206c6.png f image.png 60356 image/png 2
22 2025-12-01 03:49:31.899348+00 2025-12-01 03:49:31.899362+00 uploads/2025/12/01/1c464f8f5bcb4935831144894b40e5c4.png f image.png 31944 image/png 2
23 2025-12-01 03:52:04.190298+00 2025-12-01 03:52:04.190311+00 uploads/2025/12/01/84a8084a41914790817a3bbb0c6e1479.png f image.png 43993 image/png 2
24 2025-12-01 03:52:06.288095+00 2025-12-01 03:52:06.288104+00 uploads/2025/12/01/196fee8283a84aa7a809b73ed02a340a.png f image.png 43993 image/png 2
25 2025-12-01 03:53:53.77133+00 2025-12-01 03:53:53.77134+00 uploads/2025/12/01/f452e84e583b4afd930c26b61f353f44.png f image.png 43993 image/png 2
26 2025-12-01 03:53:55.465146+00 2025-12-01 03:53:55.465156+00 uploads/2025/12/01/1d1f9e7455a24d78b9434ebbe960f955.png f image.png 43993 image/png 2
27 2025-12-01 03:53:57.113175+00 2025-12-01 03:53:57.113187+00 uploads/2025/12/01/6a9628c0035f4e41b38301e642576c66.png f image.png 43993 image/png 2
28 2025-12-01 04:04:08.336637+00 2025-12-01 04:04:08.336649+00 uploads/2025/12/01/5d8bb0cb41574d6386a5bc6a2e9e8942.png f image.png 69136 image/png 2
29 2025-12-01 04:04:09.684582+00 2025-12-01 04:04:09.684592+00 uploads/2025/12/01/247c3dd314e748cc9569ca66098fe00e.png f image.png 69136 image/png 2
30 2025-12-01 04:04:11.687555+00 2025-12-01 04:04:11.687568+00 uploads/2025/12/01/a7915058c4624b1d8f4500a124f42d12.png f image.png 69136 image/png 2
31 2025-12-01 04:04:22.505629+00 2025-12-01 04:04:22.505638+00 uploads/2025/12/01/a50e4741d6824a1ab6989b06ee751c97.png f image.png 39520 image/png 2
32 2025-12-03 03:52:53.822552+00 2025-12-03 03:52:53.822568+00 uploads/2025/12/03/ad693dd7fc1241c49b756b63f2b31456.png f image.png 24247 image/png 2
33 2025-12-03 05:27:05.091131+00 2025-12-03 05:27:05.091145+00 uploads/2025/12/03/7d8e5d4a686e42ea849c3ff0754338e1.png f image.png 47455 image/png 2
34 2025-12-04 03:40:39.700448+00 2025-12-04 03:40:39.700461+00 uploads/2025/12/04/2927c245e093403d9a16cee069777518.jpg f xxx.jpg 5212160 image/jpeg 2
35 2025-12-04 05:45:22.413965+00 2025-12-04 05:45:22.413975+00 uploads/2025/12/04/dc5a16d8d5324a8c8a186ca7f86c1775.png f image.png 46007 image/png 2
36 2025-12-04 09:21:57.698525+00 2025-12-04 09:21:57.698534+00 uploads/2025/12/04/19140efce1194b378282fb98e18ee001.png f image.png 12171 image/png 2
37 2025-12-05 08:00:29.570759+00 2025-12-05 08:00:29.570768+00 uploads/2025/12/05/dbfca16214324684aae1008d13ecf44a.jpg f 2025-11-25.1.jpg 87204 image/jpeg 14
38 2025-12-05 08:03:27.791114+00 2025-12-05 08:03:27.791124+00 uploads/2025/12/05/6326e47af0bd4bd18b08c5317d929f7e.jpg f 2025-11-25.1.jpg 87204 image/jpeg 14
39 2025-12-05 08:03:47.551145+00 2025-12-05 08:03:47.551155+00 uploads/2025/12/05/429bca9610064d93b8fb81f469a526e5.jpg f 2025-11-25.1.jpg 87204 image/jpeg 14
40 2025-12-05 08:04:50.596871+00 2025-12-05 08:04:50.596884+00 uploads/2025/12/05/a65d9834edd04ba088c106ce50f65aee.jpg f 2025-11-25.1.jpg 87204 image/jpeg 14
41 2025-12-05 08:58:40.796438+00 2025-12-05 08:58:40.796447+00 uploads/2025/12/05/113eccd5e41c40d192f302a4e6ed3af4.png f image.png 22681 image/png 2
42 2025-12-05 10:17:12.708469+00 2025-12-05 10:17:12.70848+00 uploads/2025/12/05/19b400c7ddaa45beade3e87c201f74d9.jpg f photo_1764929831705.jpg 103287 image/jpeg 2
43 2025-12-05 10:22:33.890108+00 2025-12-05 10:22:33.890119+00 uploads/2025/12/05/0b0c7647efe04caa9bc71b2f4ad7c6cf.jpg f photo_1764930153041.jpg 110407 image/jpeg 2
44 2025-12-05 10:22:36.795543+00 2025-12-05 10:22:36.795554+00 uploads/2025/12/05/b9479b8eb0d64de6b1ddd131de68ae83.jpg f photo_1764930155953.jpg 108268 image/jpeg 2
45 2025-12-05 10:22:38.761304+00 2025-12-05 10:22:38.761314+00 uploads/2025/12/05/18b5f3db8c2b4f78ac59da5090e56455.jpg f photo_1764930157956.jpg 109249 image/jpeg 2
46 2025-12-05 10:26:46.466244+00 2025-12-05 10:26:46.466255+00 uploads/2025/12/05/6dd4d1ec58f0471a9c4d0b1f430304d2.jpg f photo_1764930405464.jpg 101992 image/jpeg 2
47 2025-12-06 07:40:19.401624+00 2025-12-06 07:40:19.401633+00 uploads/2025/12/06/e739711495144a818ec43a48faea023d.jpg f 2025-12-6.1.jpg 185231 image/jpeg 14
48 2025-12-08 03:52:20.404872+00 2025-12-08 03:52:20.404886+00 uploads/2025/12/08/81fca5cf0fd14d8dace07bab3ff94c0d.png f image.png 26972 image/png 2
49 2025-12-08 05:02:10.614022+00 2025-12-08 05:02:10.614031+00 uploads/2025/12/08/0ecfe1cedac04e808abed32a61239170.png f image.png 26567 image/png 2
50 2025-12-08 05:25:57.890618+00 2025-12-08 05:25:57.890627+00 uploads/2025/12/08/9b8d6eb8c45242da866631afb7052a0f.png f image.png 63588 image/png 2
51 2025-12-08 06:46:45.57139+00 2025-12-08 06:46:45.571401+00 uploads/2025/12/08/d2e2a1e393dd4a2db86ef9eab52cd338.png f image.png 23812 image/png 2
52 2025-12-08 06:47:32.26917+00 2025-12-08 06:47:32.269183+00 uploads/2025/12/08/6e520ed1cbc949318195f6fed6684041.png f image.png 40234 image/png 2
53 2025-12-08 06:50:59.939669+00 2025-12-08 06:50:59.939678+00 uploads/2025/12/08/7b3ed67e7fc3468f89ba6eb5afb1e942.png f image.png 28732 image/png 2
54 2025-12-08 06:51:21.747772+00 2025-12-08 06:51:21.747782+00 uploads/2025/12/08/2edefbeb64b347ad84effefb6ea89744.png f image.png 27059 image/png 2
55 2025-12-08 09:33:06.958305+00 2025-12-08 09:33:06.958319+00 uploads/2025/12/08/9eef37b62bf84176b7175f73ba07b862.png f image.png 27272 image/png 2
56 2025-12-08 09:33:07.878419+00 2025-12-08 09:33:07.878426+00 uploads/2025/12/08/bc210a6ce1fe4818a3bbf65ac526d649.png f image.png 27272 image/png 2
57 2025-12-08 09:37:10.576298+00 2025-12-08 09:37:10.576307+00 uploads/2025/12/08/2fa5eb4eb4a24e9ba41ec9b10f9e8172.png f image.png 46167 image/png 2
58 2025-12-08 09:47:28.920235+00 2025-12-08 09:47:28.920245+00 uploads/2025/12/08/3269bf2f3f794bd3be309cf757423c4f.png f image.png 45007 image/png 2
59 2025-12-09 06:41:10.806085+00 2025-12-09 06:41:10.806103+00 uploads/2025/12/09/01ad0041e87c4e278e6b7402a1d62fd1.png f image.png 22162 image/png 2
60 2025-12-09 06:41:11.418761+00 2025-12-09 06:41:11.418769+00 uploads/2025/12/09/22d87ed3ee8143a18fe9b57d36b267df.png f image.png 22162 image/png 2
61 2025-12-09 06:41:12.879523+00 2025-12-09 06:41:12.879533+00 uploads/2025/12/09/fcbc5d4f576b4dee98c662d24c8937e1.png f image.png 22162 image/png 2
62 2025-12-09 06:41:13.782504+00 2025-12-09 06:41:13.782517+00 uploads/2025/12/09/6d4c7f2767d64ddf9cc6544e81a3e1d8.png f image.png 22162 image/png 2
63 2025-12-09 06:56:56.378444+00 2025-12-09 06:56:56.378453+00 uploads/2025/12/09/2ecbad61ac9843ea9257acd07959e7b3.png f image.png 25714 image/png 2
64 2025-12-11 09:14:34.364488+00 2025-12-11 09:14:34.364499+00 uploads/2025/12/11/986bb363b99e427bbc9c5d3a9a14d45d.png f image.png 24760 image/png 2
65 2025-12-13 05:06:35.538784+00 2025-12-13 05:06:35.538792+00 uploads/2025/12/13/7ebdc7ef319e409c8ce874cb255fb6a5.jpg f photo_1765602393544.jpg 101524 image/jpeg 2
66 2025-12-13 05:09:17.084739+00 2025-12-13 05:09:17.084746+00 uploads/2025/12/13/f0074bf6b82c41c99909895b3f23d2ba.jpg f photo_1765602554969.jpg 93561 image/jpeg 2
67 2025-12-13 05:09:21.037898+00 2025-12-13 05:09:21.037907+00 uploads/2025/12/13/12b8565eb01e452094f862ccada06ffa.jpg f photo_1765602558754.jpg 93789 image/jpeg 2
68 2025-12-13 05:09:24.40556+00 2025-12-13 05:09:24.405569+00 uploads/2025/12/13/37bd9bf1dbb74b478133b089a7790396.jpg f photo_1765602562336.jpg 93250 image/jpeg 2
69 2025-12-13 05:09:29.357956+00 2025-12-13 05:09:29.357964+00 uploads/2025/12/13/524eee85c0c14f7e9277758056145d91.jpg f photo_1765602567340.jpg 93207 image/jpeg 2
70 2025-12-13 07:15:38.047132+00 2025-12-13 07:15:38.047143+00 uploads/2025/12/13/23bba9618fc743bc94cef715e46abd24.jpg f photo_1765610135178.jpg 546779 image/jpeg 2
71 2025-12-13 07:15:44.051426+00 2025-12-13 07:15:44.051442+00 uploads/2025/12/13/0ef5df8880ba4abfa69487d2db68e5fe.jpg f photo_1765610141671.jpg 572413 image/jpeg 2
72 2025-12-13 07:19:42.695406+00 2025-12-13 07:19:42.695415+00 uploads/2025/12/13/9f0474e9bd804ac393fbc900f3e25700.jpg f photo_1765610379908.jpg 135341 image/jpeg 2
73 2025-12-13 09:43:29.692733+00 2025-12-13 09:43:29.692747+00 uploads/2025/12/13/fde848ede76f45c0b59ece0c987d15f4.jpg f photo_1765619006031.jpg 280173 image/jpeg 2
74 2025-12-13 09:43:41.979923+00 2025-12-13 09:43:41.979938+00 uploads/2025/12/13/b1770f724d684c2087a8e63c45d6764b.jpg f photo_1765619018278.jpg 308923 image/jpeg 2
75 2025-12-13 09:43:47.566917+00 2025-12-13 09:43:47.566927+00 uploads/2025/12/13/47cc0f01e73c4479bf81bd5d721659ef.jpg f photo_1765619024253.jpg 283697 image/jpeg 2
76 2025-12-13 09:43:50.960852+00 2025-12-13 09:43:50.960869+00 uploads/2025/12/13/5dc25fa5a2244600899bf323262dc8f6.jpg f photo_1765619027563.jpg 257831 image/jpeg 2
77 2025-12-13 09:46:18.632216+00 2025-12-13 09:46:18.632227+00 uploads/2025/12/13/34f32e8bce5f44ae93e322cfe2cddfbb.jpg f photo_1765619168204.jpg 305319 image/jpeg 2
78 2025-12-13 09:46:20.939636+00 2025-12-13 09:46:20.939646+00 uploads/2025/12/13/440dd15910ee4a04aec5e9f7067564aa.jpg f photo_1765619163139.jpg 305319 image/jpeg 2
79 2025-12-13 09:46:24.837436+00 2025-12-13 09:46:24.837445+00 uploads/2025/12/13/0edbd42b3b7046459384c4423152374b.jpg f photo_1765619173265.jpg 325088 image/jpeg 2
80 2025-12-13 09:46:35.264187+00 2025-12-13 09:46:35.264196+00 uploads/2025/12/13/a47edf290a0a46b2b05244a2a604478c.jpg f photo_1765619178578.jpg 310002 image/jpeg 2
81 2025-12-13 09:46:38.968253+00 2025-12-13 09:46:38.968267+00 uploads/2025/12/13/161cdc35079d49feafaa48aeb18edd09.jpg f photo_1765619188234.jpg 311761 image/jpeg 2
82 2025-12-13 09:48:29.261905+00 2025-12-13 09:48:29.261914+00 uploads/2025/12/13/7a511cbb52894e3eb95c32700c64f318.jpg f photo_1765619298345.jpg 316959 image/jpeg 2
83 2025-12-13 11:22:40.248593+00 2025-12-13 11:22:40.248609+00 uploads/2025/12/13/e0070166832248f9819fc652215fd2fd.jpg f photo_1765624956623.jpg 472359 image/jpeg 27
\.
--
-- 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
222 Can add 55 add_salesorderprintingjobrelation
223 Can change 55 change_salesorderprintingjobrelation
224 Can delete 55 delete_salesorderprintingjobrelation
225 Can view 55 view_salesorderprintingjobrelation
226 Can add 56 add_printingjobbatchadvancerecord
227 Can change 56 change_printingjobbatchadvancerecord
228 Can delete 56 delete_printingjobbatchadvancerecord
229 Can view 56 view_printingjobbatchadvancerecord
\.
--
-- 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
24 pbkdf2_sha256$1000000$XRssJtzwzRAZlrwGNfEq2e$GTd0X5T2w2Vk+9gawVJ+BzfKboyNAavNbXEFBPY57FI= \N f test_user_1764836864862_958 f t 2025-12-04 08:27:46.316135+00
25 pbkdf2_sha256$1000000$c4avrjiDfI4OTUAmGsjbtH$Sl2X4HMQBxDx4XVWq5pT84rPiE8tzK06YWv5YdcSLbo= \N f test_user_1764836870109_178 fulltest@example.com f t 2025-12-04 08:27:51.660225+00
14 pbkdf2_sha256$1000000$3cXzJtomgVsxYpXsRYq2Wj$8fvB061f7icuhK8H8dj34r/srMH5rYDAMZyL+BrEzTA= 2025-12-05 07:58:15.004682+00 f f t 2025-12-04 06:11:00+00
2 pbkdf2_sha256$1000000$FQEiwQ12oi0PN5Eiy8yBj8$5K56mG8hMRXmQDNAJaeacM1f7ILZ0cF/6Ad6wTI69QA= 2025-12-13 09:42:36.532542+00 f jimi f t 2025-11-18 05:59:00+00
1 pbkdf2_sha256$1000000$NyR8RyN6CWu3xEJP4rXclZ$vKH5DuApHqxxHaxiWd/b6Ek0BTozUZ+ZaJXcxtfRkiA= 2025-12-12 04:33:09.878856+00 t admin t t 2025-11-18 05:58:19.271303+00
27 pbkdf2_sha256$1000000$365Ai9plo1kZKO18CKZWYP$HA7DaItbm1Kx/uKXMxN11o5qaooBXXIoSfCRqNxr7GQ= 2025-12-13 11:21:39.503657+00 f ruicai16888 f t 2025-12-13 09:26:38.385023+00
26 pbkdf2_sha256$1000000$kIjIxsSWRNUVhXKm0o3GVb$582Es/Z5PVABOqezLhqk1cGFiK36wcYdIcwEdIDikhw= 2025-12-05 10:38:45.877563+00 f jimi6 184793177@qq.com f t 2025-12-05 10:38:28.001447+00
\.
--
-- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.auth_user_groups (id, user_id, group_id) FROM stdin;
1 8 2
2 9 2
3 17 3
5 18 3
6 3 2
7 10 2
8 11 2
9 16 3
10 12 3
11 13 2
12 14 2
13 15 3
\.
--
-- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.auth_user_user_permissions (id, user_id, permission_id) FROM stdin;
1 2 101
2 2 102
3 2 103
4 2 104
5 2 105
6 2 106
7 2 107
8 2 108
9 2 109
10 2 110
11 2 111
12 2 112
13 2 113
14 2 114
15 2 115
16 2 116
17 3 101
18 3 102
19 3 103
20 3 104
21 3 105
22 3 106
23 3 107
24 3 108
25 3 109
26 3 110
27 3 111
28 3 112
29 3 113
30 3 114
31 3 115
32 3 116
33 2 16
34 2 13
35 2 153
36 2 40
37 2 37
38 2 38
39 2 39
\.
--
-- Data for Name: basic_info_bankaccount; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_bankaccount (created_at, updated_at, id, name, auto_number, description, attachment, merchant_id) FROM stdin;
2025-12-03 06:31:51.611411+00 2025-12-03 06:31:51.611424+00 1 001 \N 1
\.
--
-- Data for Name: basic_info_customer; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_customer (created_at, updated_at, id, name, mobile, area, email, contact, description, merchant_id, created_by_id, mdy_uid, from_mdy) FROM stdin;
2025-12-08 15:00:00.672505+00 2025-12-08 15:00:00.672515+00 411 \N 12.7 \N \N \N 1 \N ff69f4e3-9a6e-4847-bd7d-85da354de9dd t
2025-11-23 13:08:03.63937+00 2025-11-23 13:08:03.639378+00 5 15361280510 \N \N \N \N 1 2 \N f
2025-11-23 13:08:17.625385+00 2025-11-23 13:08:17.625392+00 6 15361280510 \N \N \N \N 1 2 \N f
2025-11-23 13:08:36.458555+00 2025-11-23 13:08:36.458562+00 7 15361280510 \N \N \N \N 1 2 \N f
2025-12-08 15:00:00.673898+00 2025-12-08 15:00:00.673904+00 412 ODM大码玖源服饰 \N \N \N \N 1 \N b4fd9125-59fc-4621-9134-9d9a0b343b44 t
2025-12-08 15:00:00.675145+00 2025-12-08 15:00:00.675151+00 413 \N \N \N \N 1 \N 73dee00d-c962-4eb0-bb5a-c5b42a19a208 t
2025-12-08 15:00:00.676082+00 2025-12-08 15:00:00.676086+00 414 \N \N \N \N 1 \N 17ec92b2-2d25-4d9f-9e62-7473200ffe5e t
2025-12-08 15:00:00.67691+00 2025-12-08 15:00:00.676914+00 415 - \N \N \N \N 1 \N b1eae9eb-8707-48c0-b005-84c15b3d593f t
2025-12-05 08:20:53.169777+00 2025-12-05 08:21:02.701651+00 8 15361280510 \N \N \N \N 1 16 \N f
2025-12-08 15:00:00.677715+00 2025-12-08 15:00:00.677719+00 416 \N \N \N \N 1 \N daaf90af-949f-4442-8a5f-acec106041c5 t
2025-11-18 08:20:30.133277+00 2025-12-08 10:24:25.661474+00 4 1235565 \N \N \N 1 1 \N f
2025-12-08 15:00:00.678496+00 2025-12-08 15:00:00.678501+00 417 \N \N \N \N 1 \N 9aecb21a-0bc7-4b65-a923-e4cdcbb1465d t
2025-11-18 08:20:18.652207+00 2025-12-08 10:29:21.609068+00 3 123 123 \N \N \N 1 1 \N f
2025-12-08 10:29:38.499508+00 2025-12-08 10:29:38.499517+00 9 13104882887 \N \N \N 1 1 \N f
2025-12-08 15:00:00.679292+00 2025-12-08 15:00:00.679296+00 418 \N \N \N \N 1 \N e7b2377c-4780-4805-847e-2fa2bdbdd77b t
2025-12-08 15:00:00.680065+00 2025-12-08 15:00:00.680068+00 419 广 \N \N \N \N 1 \N fa411693-cbf8-4282-a68f-640f2b73cbb1 t
2025-12-08 15:00:00.68083+00 2025-12-08 15:00:00.680833+00 420 \N \N \N \N 1 \N 07979ace-2a8c-4f05-9763-c457e3075a88 t
2025-12-08 15:00:00.681618+00 2025-12-08 15:00:00.681622+00 421 \N \N \N \N 1 \N c783f2eb-63b2-4889-8e58-f4a296856d3c t
2025-12-08 15:00:00.6824+00 2025-12-08 15:00:00.682403+00 422 \N \N \N \N 1 \N cff343f0-2a98-4228-9911-97b329700ce1 t
2025-12-08 15:00:00.683156+00 2025-12-08 15:00:00.68316+00 423 \N \N \N \N 1 \N c61d73fd-fbee-494c-814c-de18a0bffa4e t
2025-12-08 15:00:00.68392+00 2025-12-08 15:00:00.683924+00 424 F组 \N \N \N \N 1 \N 9b612e17-18b1-4a4e-9d13-ffaa25df7359 t
2025-12-08 15:00:00.684685+00 2025-12-08 15:00:00.684689+00 425 \N \N \N \N 1 \N 1560042c-51a2-430a-b723-b8e6a8a43a9c t
2025-12-08 15:00:00.685452+00 2025-12-08 15:00:00.685455+00 426 姿 \N \N \N \N 1 \N 6409554e-eb95-400c-8704-a91c0cb1cafa t
2025-12-08 15:00:00.686214+00 2025-12-08 15:00:00.686218+00 427 A陈雅丽 \N \N \N \N 1 \N d001dea9-02a0-4d40-a89a-1e42783324f4 t
2025-12-08 15:00:00.686991+00 2025-12-08 15:00:00.686995+00 428 \N \N \N \N 1 \N 5e0be22a-b9f0-4435-98a2-e542b0ea53b2 t
2025-12-08 15:00:00.68775+00 2025-12-08 15:00:00.687754+00 429 \N \N \N \N 1 \N 19cce44b-c982-4b82-816f-125bdc956594 t
2025-12-08 15:00:00.688517+00 2025-12-08 15:00:00.688521+00 430 \N \N \N \N 1 \N 2e9649fd-619f-43cf-8805-612f9d63764e t
2025-12-08 15:00:00.689787+00 2025-12-08 15:00:00.68979+00 431 - \N \N \N \N 1 \N 22a6d61d-b8bd-4e47-bb1a-05dd6bab0e9a t
2025-12-08 15:00:00.690667+00 2025-12-08 15:00:00.69067+00 432 \N \N \N \N 1 \N 21a333f2-7ae1-42dc-a93b-7920899e01ac t
2025-12-08 15:00:00.691524+00 2025-12-08 15:00:00.691528+00 433 \N \N \N \N 1 \N 20a91c7e-587a-4e3c-96b9-0d228003cc17 t
2025-12-08 15:00:00.692381+00 2025-12-08 15:00:00.692385+00 434 \N \N \N \N 1 \N fd9d17e2-dd5e-4126-ba3f-27bd7a9f187d t
2025-12-08 15:00:00.693219+00 2025-12-08 15:00:00.693223+00 435 \N \N \N \N 1 \N 7215b544-af54-4a5c-8af2-875533ad4a2b t
2025-12-08 15:00:00.694042+00 2025-12-08 15:00:00.694046+00 436 Alice服饰 \N \N \N \N 1 \N 75305cc5-0af4-4df1-abda-f6b207f5ce40 t
2025-12-08 15:00:00.694823+00 2025-12-08 15:00:00.694827+00 437 \N \N \N \N 1 \N 38f3ae86-bf77-434b-8d02-0e7194668af5 t
2025-12-08 15:00:00.695578+00 2025-12-08 15:00:00.695581+00 438 0000 \N \N \N \N 1 \N 1470636f-7264-4229-80d2-dea309632d73 t
2025-12-08 15:00:00.696353+00 2025-12-08 15:00:00.696357+00 439 - \N \N \N \N 1 \N 987219fa-ef3f-4c07-b6bb-35b3f09094d3 t
2025-12-08 15:00:00.697117+00 2025-12-08 15:00:00.697121+00 440 广 \N \N \N \N 1 \N 554d7e68-72c1-43f5-8006-3aa728dd33ea t
2025-12-08 15:00:00.69789+00 2025-12-08 15:00:00.697894+00 441 A森欣服饰 \N \N \N \N 1 \N 47ba5524-5931-45aa-b7f8-24a0e89152de t
2025-12-08 15:00:00.698648+00 2025-12-08 15:00:00.698652+00 442 \N \N \N \N 1 \N 7fb6a319-d2f9-43cb-9b32-3cee259447dc t
2025-12-08 15:00:00.699392+00 2025-12-08 15:00:00.699396+00 443 \N \N \N \N 1 \N 874493cc-cc4e-422e-9bd7-bf36ed104b2a t
2025-12-08 15:00:00.700147+00 2025-12-08 15:00:00.700151+00 444 \N \N \N \N 1 \N 54f6fb88-6eb8-4538-bebb-527fd9df08b6 t
2025-12-08 15:00:00.700906+00 2025-12-08 15:00:00.70091+00 445 \N \N \N \N 1 \N 054974d2-2d79-43ad-9939-b1f41ebdd690 t
2025-12-08 15:00:00.701648+00 2025-12-08 15:00:00.701652+00 446 A卡曼轩 \N \N \N \N 1 \N c629c276-9965-40a1-8f9d-0d8373e81bfd t
2025-12-08 15:00:00.702418+00 2025-12-08 15:00:00.702421+00 447 \N \N \N \N 1 \N e205e9d5-8203-4faf-b8c3-5aae7c8f5a33 t
2025-12-08 15:00:00.70318+00 2025-12-08 15:00:00.703183+00 448 \N \N \N \N 1 \N c78bd1c5-6113-4a9b-b357-e5ed20cc5a7c t
2025-12-08 15:00:00.703932+00 2025-12-08 15:00:00.703936+00 449 \N \N \N \N 1 \N 13b65a2c-ad08-49ff-ad89-6519a351c97a t
2025-12-08 15:00:00.704698+00 2025-12-08 15:00:00.704702+00 450 \N \N \N \N 1 \N 057effe7-b0f1-415e-b585-9993d1f10988 t
2025-12-08 15:00:00.705455+00 2025-12-08 15:00:00.705459+00 451 A王爱兵 \N \N \N \N 1 \N 44bfe40c-2c46-42bf-9fbc-2acf628e8ccb t
2025-12-08 15:00:00.706194+00 2025-12-08 15:00:00.706197+00 452 \N \N \N \N 1 \N 8768cc6b-86a0-4fee-b96a-946cafccfd7f t
2025-12-08 15:00:00.706968+00 2025-12-08 15:00:00.706972+00 453 \N \N \N \N 1 \N d23c3f9f-1d24-41ae-a85a-28bca693f2bc t
2025-12-08 15:00:00.70772+00 2025-12-08 15:00:00.707724+00 454 \N \N \N \N 1 \N 71940e48-471f-4fb5-ab3f-88b7cf49fbd2 t
2025-12-08 15:00:00.708472+00 2025-12-08 15:00:00.708476+00 455 A小阳 \N \N \N \N 1 \N 87aa6885-6f84-41ca-b438-585a9438d5ae t
2025-12-08 15:00:00.709228+00 2025-12-08 15:00:00.709232+00 456 \N \N \N \N 1 \N 6341fe89-712c-4a7d-9f8a-e43f6f9cab7d t
2025-12-08 15:00:00.709974+00 2025-12-08 15:00:00.709978+00 457 \N \N \N \N 1 \N 42dc335d-da59-47cd-af29-9cb983713921 t
2025-12-08 15:00:00.710731+00 2025-12-08 15:00:00.710735+00 458 \N \N \N \N 1 \N 3317c827-adbc-4470-aee8-8883b90e76e0 t
2025-12-08 15:00:00.711481+00 2025-12-08 15:00:00.711485+00 459 A蔓妮 \N \N \N \N 1 \N e26e9a40-41e9-454f-b53f-71d201a02159 t
2025-12-08 15:00:00.712211+00 2025-12-08 15:00:00.712215+00 460 \N \N \N \N 1 \N 43192a1d-8d0e-4a70-9acf-cc62b2404745 t
2025-12-08 15:00:00.712966+00 2025-12-08 15:00:00.71297+00 461 A欧阳晓 \N \N \N \N 1 \N 1627e156-9ecc-497f-b937-81400e428d05 t
2025-12-08 15:00:00.713739+00 2025-12-08 15:00:00.713743+00 462 A盛达洪老板 \N \N \N \N 1 \N 04859a59-152e-4833-8502-390a3092c27c t
2025-12-08 15:00:00.714492+00 2025-12-08 15:00:00.714496+00 463 A金鑫 \N \N \N \N 1 \N d1f92cc6-2af7-4515-bcff-987d586f8ebb t
2025-12-08 15:00:00.715227+00 2025-12-08 15:00:00.71523+00 464 \N \N \N \N 1 \N 6c36fc52-1144-4e31-9c9b-6f6289d0024b t
2025-12-08 15:00:00.715993+00 2025-12-08 15:00:00.715997+00 465 A和胜和杨总 \N \N \N \N 1 \N afaaea03-b139-4cc7-a37b-ec2247a12e48 t
2025-12-08 15:00:00.716748+00 2025-12-08 15:00:00.716751+00 466 A金锦 \N \N \N \N 1 \N cdf26e01-3f1f-4b73-b031-f6ea58828f40 t
2025-12-08 15:00:00.71785+00 2025-12-08 15:00:00.717854+00 467 \N \N \N \N 1 \N 0562763e-d0f5-4f1b-9a88-74be0179af82 t
2025-12-08 15:00:00.718611+00 2025-12-08 15:00:00.718615+00 468 \N \N \N \N 1 \N 7a1f10ab-f623-47a4-99c1-160cebc5fba4 t
2025-12-08 15:00:00.719366+00 2025-12-08 15:00:00.71937+00 469 \N \N \N \N 1 \N d68ac0ab-e363-48dd-afdc-d1b24e35cdf8 t
2025-12-08 15:00:00.720457+00 2025-12-08 15:00:00.720461+00 470 \N \N \N \N 1 \N 24f35d3b-367f-4bc7-a709-c6f9b07e1ab2 t
2025-12-08 15:00:00.721231+00 2025-12-08 15:00:00.721235+00 471 \N \N \N \N 1 \N 9a907e9f-9ebc-493a-84bf-00e67accb6ea t
2025-12-08 15:00:00.721998+00 2025-12-08 15:00:00.722002+00 472 A尹志勇 \N \N \N \N 1 \N 07dc7546-47bb-4aab-aa63-b0f98e292f30 t
2025-12-08 15:00:00.722762+00 2025-12-08 15:00:00.722766+00 473 F思雨服饰 \N \N \N \N 1 \N 8de1b506-d152-4990-8edb-cbeb82a3787a t
2025-12-08 15:00:00.723529+00 2025-12-08 15:00:00.723533+00 474 10.4.1 \N \N \N \N 1 \N 94857c54-e39f-4f42-82f5-327fbd59a28c t
2025-12-08 15:00:00.724561+00 2025-12-08 15:00:00.724565+00 475 \N \N \N \N 1 \N d8bc9479-d55a-4ab9-8273-f2f01d561672 t
2025-12-08 15:00:00.725611+00 2025-12-08 15:00:00.725615+00 476 \N \N \N \N 1 \N 781d7852-597b-42ac-adaa-4014cf30f94e t
2025-12-08 15:00:00.726665+00 2025-12-08 15:00:00.726669+00 477 \N \N \N \N 1 \N 959f4ba3-3dba-454d-9986-0a4745bcf897 t
2025-12-08 15:00:00.727699+00 2025-12-08 15:00:00.727706+00 478 \N \N \N \N 1 \N 10fad7ca-1d61-45a9-bdd0-efe2a91c816d t
2025-12-08 15:00:00.72875+00 2025-12-08 15:00:00.728754+00 479 \N \N \N \N 1 \N 5e444b37-c0eb-40ff-bc9b-da05747b2d5a t
2025-12-08 15:00:00.72979+00 2025-12-08 15:00:00.729794+00 480 A欧莉娅服饰 \N \N \N \N 1 \N 4217d1fd-3ab8-428e-aa6e-f813f30607d5 t
2025-12-08 15:00:00.730831+00 2025-12-08 15:00:00.730835+00 481 A青青 \N \N \N \N 1 \N 1ec47792-d568-4909-8d55-9e6a5ae998e8 t
2025-12-08 15:00:00.731871+00 2025-12-08 15:00:00.731875+00 482 \N \N \N \N 1 \N 19466f0d-09a2-4aa5-9c78-44d544e257b6 t
2025-12-08 15:00:00.732612+00 2025-12-08 15:00:00.732615+00 483 \N \N \N \N 1 \N 6c05230c-52ae-4667-bbe6-654bc900870c t
2025-12-08 15:00:00.73335+00 2025-12-08 15:00:00.733354+00 484 \N \N \N \N 1 \N 85047d01-bee0-4e9d-a26c-fa42d5ede100 t
2025-12-08 15:00:00.734097+00 2025-12-08 15:00:00.734102+00 485 \N \N \N \N 1 \N 402235ed-4217-4526-bf0b-6dc0bc66634d t
2025-12-08 15:00:00.734879+00 2025-12-08 15:00:00.734883+00 486 A李华 \N \N \N \N 1 \N b2314055-21f4-4a4d-9c85-642002879feb t
2025-12-08 15:00:00.735707+00 2025-12-08 15:00:00.735711+00 487 A宝发 \N \N \N \N 1 \N 595aba2d-02a6-427e-a33e-3ee40d22168c t
2025-12-08 15:00:00.736588+00 2025-12-08 15:00:00.736591+00 488 A晨林服饰 \N \N \N \N 1 \N fdb9d1fd-27ee-4418-8efd-84ec93115938 t
2025-12-08 15:00:00.737384+00 2025-12-08 15:00:00.737388+00 489 A升都苗子 \N \N \N \N 1 \N 60c88e3b-bffa-46ce-bd94-7235748697d6 t
2025-12-08 15:00:00.738174+00 2025-12-08 15:00:00.738178+00 490 \N \N \N \N 1 \N 05e07c33-2158-44c0-b2ef-9b4318a95ac3 t
2025-12-08 15:00:00.738958+00 2025-12-08 15:00:00.738962+00 491 \N \N \N \N 1 \N 5766c260-b690-4cb2-8c8b-2a78fd1aae4c t
2025-12-08 15:00:00.739722+00 2025-12-08 15:00:00.739726+00 492 \N \N \N \N 1 \N c19e1ccf-0e34-42b4-8dcd-c53adda4f6b6 t
2025-12-08 15:00:00.740499+00 2025-12-08 15:00:00.740503+00 493 A欧阳家杰 \N A欧阳家杰 \N \N \N 1 \N 0142a5c1-6f2a-419e-a31a-2f8998afa1eb t
2025-12-08 15:00:00.741252+00 2025-12-08 15:00:00.741255+00 494 0 \N 0 \N \N \N 1 \N a27e9a2e-1fa4-46b5-b59e-350a4408df63 t
2025-12-08 15:00:00.741997+00 2025-12-08 15:00:00.742+00 495 A唯依服饰 \N \N \N \N 1 \N ae5683f7-ee3f-4a72-811f-3f096984ab87 t
2025-12-08 15:00:00.742742+00 2025-12-08 15:00:00.742746+00 496 10.7 \N \N \N \N 1 \N ca076bcc-2f52-4fce-b713-67994ee02c79 t
2025-12-08 15:00:00.74351+00 2025-12-08 15:00:00.743514+00 497 - \N \N \N \N 1 \N f03963a5-df8f-47c8-b18a-2bb7180741c3 t
2025-12-08 15:00:00.744267+00 2025-12-08 15:00:00.744271+00 498 ATA \N \N \N \N 1 \N a1bf2da2-6a5e-4a8e-ab96-7d4002f183c6 t
2025-12-08 15:00:00.745026+00 2025-12-08 15:00:00.74503+00 499 西 \N \N \N \N 1 \N 493f15db-3241-4c64-ba6b-332fafed6332 t
2025-12-08 15:00:00.745795+00 2025-12-08 15:00:00.745799+00 500 A林中梁 \N \N \N \N 1 \N e260c02b-6666-4ee2-bfe7-ddcd21794623 t
2025-12-08 15:00:00.746572+00 2025-12-08 15:00:00.746575+00 501 10.4 \N \N \N \N 1 \N 132a1896-8e24-4485-8d47-251c2d332813 t
2025-12-08 15:00:00.747334+00 2025-12-08 15:00:00.747338+00 502 Z嘉发 \N \N \N \N 1 \N 35cc3456-9834-46ff-a80d-af6864a000c5 t
2025-12-08 15:00:00.748122+00 2025-12-08 15:00:00.748126+00 503 \N \N \N \N 1 \N 600affab-c734-41fa-98c5-e4c706f9db98 t
2025-12-08 15:00:00.748901+00 2025-12-08 15:00:00.748905+00 504 \N \N \N \N 1 \N 973fab20-ed55-4001-83ce-cb72506a5df3 t
2025-12-08 15:00:00.749655+00 2025-12-08 15:00:00.749659+00 505 \N \N \N \N 1 \N 9eed4771-8ff0-4511-85d8-c0723e8e3a51 t
2025-12-08 15:00:00.75041+00 2025-12-08 15:00:00.750414+00 506 耀 \N \N \N \N 1 \N 90412fa6-180d-4498-a87f-22cce8acf2bb t
2025-12-08 15:00:00.751168+00 2025-12-08 15:00:00.751172+00 507 \N \N \N \N 1 \N 04b07f3e-75a2-4bf0-be08-1ecf4b65fc12 t
2025-12-08 15:00:00.751931+00 2025-12-08 15:00:00.751935+00 508 - \N \N \N \N 1 \N 7a50a5e6-029d-4d79-97f4-b6ecca7bab07 t
2025-12-08 15:00:00.752692+00 2025-12-08 15:00:00.752696+00 509 - \N \N \N \N 1 \N 6cbbedce-b1e3-48c7-aad8-96cac9d688a5 t
2025-12-08 15:00:01.175171+00 2025-12-08 15:00:01.175179+00 510 - \N \N \N \N 1 \N 4a5b23fc-22dc-4442-b425-fc818018e23e t
2025-12-08 15:00:01.176414+00 2025-12-08 15:00:01.176419+00 511 - \N \N \N \N 1 \N 6cd30a34-7090-4b0f-ae96-97488ec06a67 t
2025-12-08 15:00:01.17726+00 2025-12-08 15:00:01.177265+00 512 - \N \N \N \N 1 \N 4ef72246-0489-438e-9220-1be66bfb7346 t
2025-12-08 15:00:01.178073+00 2025-12-08 15:00:01.178078+00 513 \N \N \N \N 1 \N 56ea8491-67ce-4c59-82c8-fa0685e8d369 t
2025-12-08 15:00:01.178889+00 2025-12-08 15:00:01.178894+00 514 - \N \N \N \N 1 \N 77e467be-0278-4883-acea-1fa32b7f8921 t
2025-12-08 15:00:01.179686+00 2025-12-08 15:00:01.17969+00 515 - \N \N \N \N 1 \N f5b09dcd-a73e-4431-8463-846c0792a7fc t
2025-12-08 15:00:01.180463+00 2025-12-08 15:00:01.180467+00 516 - \N \N \N \N 1 \N 2bffeeab-b3ef-4b7b-84c7-d2ec53e10980 t
2025-12-08 15:00:01.181223+00 2025-12-08 15:00:01.181226+00 517 - \N \N \N \N 1 \N ba7c5263-5ea0-4928-a603-598ff9e66421 t
2025-12-08 15:00:01.182013+00 2025-12-08 15:00:01.182017+00 518 - \N \N \N \N 1 \N 572aa878-b229-4591-b47b-60e4ba6866d1 t
2025-12-08 15:00:01.182786+00 2025-12-08 15:00:01.18279+00 519 \N \N \N \N 1 \N 690c1f1f-a89c-4b56-9902-2e82cdec7ee1 t
2025-12-08 15:00:01.183541+00 2025-12-08 15:00:01.183545+00 520 \N \N \N \N 1 \N 2bbb1c25-ebd5-4fc9-b67d-e1011e701e09 t
2025-12-08 15:00:01.184313+00 2025-12-08 15:00:01.184317+00 521 \N \N \N \N 1 \N 2f8d4f7e-e72b-4f00-9b40-14c0a8457d1c t
2025-12-08 15:00:01.185072+00 2025-12-08 15:00:01.185075+00 522 2 \N \N \N \N 1 \N f71c0d7b-3d84-4e39-8e7c-519202232dc9 t
2025-12-08 15:00:01.185835+00 2025-12-08 15:00:01.185839+00 523 \N \N \N \N 1 \N b9dcfd45-9da7-4c04-9c06-066bf5623093 t
2025-12-08 15:00:01.186615+00 2025-12-08 15:00:01.186619+00 524 \N \N \N \N 1 \N 4fee6ddd-bf3d-4b66-ad0a-52b4a4d03696 t
2025-12-08 15:00:01.187386+00 2025-12-08 15:00:01.18739+00 525 - \N \N \N \N 1 \N 2ae3a539-5274-4ede-bbf2-93b4ba1d5246 t
2025-12-08 15:00:01.188168+00 2025-12-08 15:00:01.188172+00 526 \N \N \N \N 1 \N 748f2475-19cf-4c31-8b3d-acc97064d4b4 t
2025-12-08 15:00:01.188944+00 2025-12-08 15:00:01.188948+00 527 \N \N \N \N 1 \N 3ae02dc8-fbf6-49d4-994f-74f8dcda14fd t
2025-12-08 15:00:01.189718+00 2025-12-08 15:00:01.189722+00 528 - \N \N \N \N 1 \N 33f79a90-879c-4542-9775-c1011df05f98 t
2025-12-08 15:00:01.190719+00 2025-12-08 15:00:01.190723+00 529 \N \N \N \N 1 \N 9d0efb7d-b5b5-4dd0-9d5c-6dc539cd3d2f t
2025-12-08 15:00:01.191531+00 2025-12-08 15:00:01.191535+00 530 G() \N \N \N \N 1 \N 0e3c5208-b242-45e5-9544-125f5213d038 t
2025-12-08 15:00:01.192308+00 2025-12-08 15:00:01.192313+00 531 MC时尚 \N \N \N \N 1 \N a77fa988-385e-4b5a-a830-d45a9c7feea6 t
2025-12-08 15:00:01.193087+00 2025-12-08 15:00:01.193091+00 532 \N \N \N \N 1 \N 5ce4be96-1f9f-4e98-af00-fecdad0f3960 t
2025-12-08 15:00:01.193885+00 2025-12-08 15:00:01.193889+00 533 \N \N \N \N 1 \N 08f23e23-ed9c-4eca-b8b0-abb6d198332f t
2025-12-08 15:00:01.19481+00 2025-12-08 15:00:01.194814+00 534 \N \N \N \N 1 \N b0940502-6360-4e51-ba20-4a11829f1fb4 t
2025-12-08 15:00:01.195629+00 2025-12-08 15:00:01.195633+00 535 \N \N \N \N 1 \N d4e0d73f-00ea-4474-b917-5803dc11458a t
2025-12-08 15:00:01.196415+00 2025-12-08 15:00:01.196419+00 536 - \N \N \N \N 1 \N 6f85bb3a-611f-4f56-b49c-774b37c4a91a t
2025-12-08 15:00:01.197205+00 2025-12-08 15:00:01.197209+00 537 \N \N \N \N 1 \N 594e8cc2-9416-498d-bc92-c721ca10e0de t
2025-12-08 15:00:01.197991+00 2025-12-08 15:00:01.197995+00 538 \N \N \N \N 1 \N c984efcb-ffd6-4b2c-ac6e-3cbe2e97e60e t
2025-12-08 15:00:01.198754+00 2025-12-08 15:00:01.198758+00 539 LC- \N \N \N \N 1 \N 940fa8bf-a053-4d53-8d44-60c3fcf6aa1b t
2025-12-08 15:00:01.199535+00 2025-12-08 15:00:01.199539+00 540 耀 \N \N \N \N 1 \N 68626e67-9431-46a7-b5dd-b6139953d665 t
2025-12-08 15:00:01.200322+00 2025-12-08 15:00:01.200325+00 541 2- \N \N \N \N 1 \N 4ee5e3fa-e087-43dc-b886-80a18fbef8b6 t
2025-12-08 15:00:01.201084+00 2025-12-08 15:00:01.201087+00 542 \N \N \N \N 1 \N b4230736-442f-4675-a747-9ef94b5b258d t
2025-12-08 15:00:01.201862+00 2025-12-08 15:00:01.201866+00 543 \N \N \N \N 1 \N 31e4e961-ac61-448d-92aa-e5bea1a7e63a t
2025-12-08 15:00:01.202629+00 2025-12-08 15:00:01.202633+00 544 \N \N \N \N 1 \N 0589f14d-a5c8-403f-939e-26f667fac0f6 t
2025-12-08 15:00:01.203392+00 2025-12-08 15:00:01.203396+00 545 \N \N \N \N 1 \N b8e6d8c4-3519-4914-9e36-741a66755bd3 t
2025-12-08 15:00:01.20417+00 2025-12-08 15:00:01.204174+00 546 \N \N \N \N 1 \N 41a85713-360e-42aa-b436-3d3835dbca7c t
2025-12-08 15:00:01.204936+00 2025-12-08 15:00:01.20494+00 547 \N \N \N \N 1 \N 088e2f7a-e08d-431c-9c08-53f590d66893 t
2025-12-08 15:00:01.2057+00 2025-12-08 15:00:01.205708+00 548 \N \N \N \N 1 \N 802294cb-1a9e-4c73-a71c-64252c618b02 t
2025-12-08 15:00:01.206483+00 2025-12-08 15:00:01.206488+00 549 \N \N \N \N 1 \N 6ff268ee-e5b7-4826-98f3-6af55d5f9477 t
2025-12-08 15:00:01.207239+00 2025-12-08 15:00:01.207242+00 550 \N \N \N \N 1 \N 5f244e73-54cb-44e8-b3e3-2a6b1de0d321 t
2025-12-08 15:00:01.208018+00 2025-12-08 15:00:01.208022+00 551 \N \N \N \N 1 \N 85cfc361-def6-4087-837b-14af20a96f6d t
2025-12-08 15:00:01.208801+00 2025-12-08 15:00:01.208805+00 552 \N \N \N \N 1 \N 2792955d-d043-4349-b219-67a70f04d720 t
2025-12-08 15:00:01.20957+00 2025-12-08 15:00:01.209574+00 553 广 \N \N \N \N 1 \N c91b978f-db1c-42b0-b2a9-304533ebbd1e t
2025-12-08 15:00:01.210352+00 2025-12-08 15:00:01.210357+00 554 \N \N \N \N 1 \N 68497e10-9835-442d-8c65-31c698469eb3 t
2025-12-08 15:00:01.21112+00 2025-12-08 15:00:01.211124+00 555 \N \N \N \N 1 \N e267f649-746f-41ac-b055-eae303d45f5c t
2025-12-08 15:00:01.211889+00 2025-12-08 15:00:01.211893+00 556 广 \N \N \N \N 1 \N 8eeab2d1-9ebb-451b-959a-0d6d66c0cceb t
2025-12-08 15:00:01.212657+00 2025-12-08 15:00:01.212661+00 557 \N \N \N \N 1 \N 761bc55c-1220-4365-8009-f122d1366b68 t
2025-12-08 15:00:01.213435+00 2025-12-08 15:00:01.213439+00 558 亿 \N \N \N \N 1 \N d265c804-aaf9-49ff-96bd-96e7742eb20d t
2025-12-08 15:00:01.214192+00 2025-12-08 15:00:01.214195+00 559 \N \N \N \N 1 \N 141e5763-ddb8-4ed0-b008-48daa2ef5b75 t
2025-12-08 15:00:01.214966+00 2025-12-08 15:00:01.21497+00 560 \N \N \N \N 1 \N 2c8a228d-3842-49a2-b25c-ed374dad82c7 t
2025-12-08 15:00:01.21574+00 2025-12-08 15:00:01.215744+00 561 \N \N \N \N 1 \N 625d315e-5ae5-478b-a7ef-a927ad99f723 t
2025-12-08 15:00:01.216497+00 2025-12-08 15:00:01.216501+00 562 \N \N \N \N 1 \N be60dbf0-ab4a-414a-8fa4-3e55853541e7 t
2025-12-08 15:00:01.21724+00 2025-12-08 15:00:01.217244+00 563 \N \N \N \N 1 \N 0047a2c0-c027-4592-80a1-2eec4a3fbf77 t
2025-12-08 15:00:01.218029+00 2025-12-08 15:00:01.218033+00 564 \N \N \N \N 1 \N b3008556-a66b-41f3-93e0-4a8715236880 t
2025-12-08 15:00:01.21885+00 2025-12-08 15:00:01.218854+00 565 \N \N \N \N 1 \N f8338078-aed1-4c86-979f-1db460884a8c t
2025-12-08 15:00:01.219644+00 2025-12-08 15:00:01.219648+00 566 鸿 \N \N \N \N 1 \N 8f9a6ae8-9750-487e-a566-e9d1594a60d5 t
2025-12-08 15:00:01.220433+00 2025-12-08 15:00:01.220437+00 567 \N \N \N \N 1 \N 6c6786f3-e62f-4f79-90b2-c2060f5e2bff t
2025-12-08 15:00:01.221206+00 2025-12-08 15:00:01.22121+00 568 \N \N \N \N 1 \N bfe59ab1-3773-4eea-b0d9-ed5c1eec224e t
2025-12-08 15:00:01.221988+00 2025-12-08 15:00:01.221992+00 569 鸿亿 \N \N \N \N 1 \N 0ffa5a28-0357-4cb2-95a2-b9ee334d21e3 t
2025-12-08 15:00:01.222768+00 2025-12-08 15:00:01.222773+00 570 \N \N \N \N 1 \N f619fea7-2b1e-4832-85bc-da4f1a5df34a t
2025-12-08 15:00:01.223526+00 2025-12-08 15:00:01.223529+00 571 \N \N \N \N 1 \N d0185c83-bdfc-4229-8ed5-1d7ba88303f2 t
2025-12-08 15:00:01.224279+00 2025-12-08 15:00:01.224283+00 572 - \N \N \N \N 1 \N c70fdce8-37db-4ecb-8ff4-3c668a61ca9b t
2025-12-08 15:00:01.225068+00 2025-12-08 15:00:01.225072+00 573 亿 \N \N \N \N 1 \N 8c669187-3cf1-4158-89a5-34580ad76368 t
2025-12-08 15:00:01.225844+00 2025-12-08 15:00:01.225847+00 574 \N \N \N \N 1 \N 51f955ee-6ece-4732-af21-24738fa7edce t
2025-12-08 15:00:01.226603+00 2025-12-08 15:00:01.226606+00 575 \N \N \N \N 1 \N 369904b8-e1f9-4c1f-a2be-8049ee254c9b t
2025-12-08 15:00:01.22738+00 2025-12-08 15:00:01.227384+00 576 \N \N \N \N 1 \N cf42c4dd-e2dd-4717-8210-ce106f9199e1 t
2025-12-08 15:00:01.228165+00 2025-12-08 15:00:01.228169+00 577 \N \N \N \N 1 \N f519d8df-ee1b-4491-9ea5-5855ea4b75ff t
2025-12-08 15:00:01.228932+00 2025-12-08 15:00:01.228936+00 578 \N \N \N \N 1 \N 2ea8a58c-d054-4455-8f3a-031d347a824b t
2025-12-08 15:00:01.229684+00 2025-12-08 15:00:01.229688+00 579 \N \N \N \N 1 \N 596a9bd3-390b-437d-85b3-16ca689956ec t
2025-12-08 15:00:01.23045+00 2025-12-08 15:00:01.230454+00 580 \N \N \N \N 1 \N 13f5c199-fe92-4559-a1c0-26a93fff2e3e t
2025-12-08 15:00:01.231222+00 2025-12-08 15:00:01.231225+00 581 \N \N \N \N 1 \N c281cc05-0097-4b75-bbcb-6fe9c1a9b527 t
2025-12-08 15:00:01.231989+00 2025-12-08 15:00:01.231992+00 582 Z凯盛 \N \N \N \N 1 \N 27bef759-4a08-454a-8cdc-352d3d23e7d5 t
2025-12-08 15:00:01.232766+00 2025-12-08 15:00:01.23277+00 583 \N \N \N \N 1 \N 86182ba5-59b7-40d3-b9dd-11041275ef0b t
2025-12-08 15:00:01.233593+00 2025-12-08 15:00:01.233597+00 584 \N \N \N \N 1 \N 14acfa7c-e554-43ae-af62-54eb623660d4 t
2025-12-08 15:00:01.234372+00 2025-12-08 15:00:01.234377+00 585 \N \N \N \N 1 \N 7fca6d8b-9a11-4063-879e-1b567b816921 t
2025-12-08 15:00:01.235396+00 2025-12-08 15:00:01.2354+00 586 \N \N \N \N 1 \N 14e23955-b938-498a-90ee-106c2f847faa t
2025-12-08 15:00:01.236176+00 2025-12-08 15:00:01.23618+00 587 \N \N \N \N 1 \N 4ce376c4-8501-406a-a8f6-417fca071d70 t
2025-12-08 15:00:01.236941+00 2025-12-08 15:00:01.236945+00 588 \N \N \N \N 1 \N 37196f84-8c1f-491a-83e0-ce4aeacfd6b1 t
2025-12-08 15:00:01.237733+00 2025-12-08 15:00:01.237737+00 589 \N \N \N \N 1 \N a35f1d8d-1f9a-4333-b495-84e9f8d00a15 t
2025-12-08 15:00:01.238498+00 2025-12-08 15:00:01.238502+00 590 - \N \N \N \N 1 \N 85df8a86-21f1-4c2f-95c4-5c7336f530c3 t
2025-12-08 15:00:01.239244+00 2025-12-08 15:00:01.239248+00 591 \N \N \N \N 1 \N f9e20e66-1a59-4a27-9649-3a9fbbb4024a t
2025-12-08 15:00:01.239993+00 2025-12-08 15:00:01.239997+00 592 \N \N \N \N 1 \N 5e42269d-4b5b-4aad-97de-c256343c91a4 t
2025-12-08 15:00:01.240779+00 2025-12-08 15:00:01.240783+00 593 \N \N \N \N 1 \N b61d6fc7-ea16-436e-a7a2-65ff2ab774f6 t
2025-12-08 15:00:01.241535+00 2025-12-08 15:00:01.241539+00 594 \N \N \N \N 1 \N e1dfc60e-5fcb-49ce-8d27-c131264220d7 t
2025-12-08 15:00:01.242285+00 2025-12-08 15:00:01.242289+00 595 - \N \N \N \N 1 \N bab919a2-7bb1-480a-8c0f-1c143efd7fd1 t
2025-12-08 15:00:01.243067+00 2025-12-08 15:00:01.243071+00 596 \N \N \N \N 1 \N a182f13a-1a1b-4df6-aef3-c6c636419dfe t
2025-12-08 15:00:01.243841+00 2025-12-08 15:00:01.243845+00 597 \N \N \N \N 1 \N 57714eaa-8c55-4f5d-8c1c-f0886c72bb98 t
2025-12-08 15:00:01.244604+00 2025-12-08 15:00:01.244608+00 598 \N \N \N \N 1 \N e49ac18d-31c2-4c9b-93d8-060f2aa3a523 t
2025-12-08 15:00:01.245398+00 2025-12-08 15:00:01.245402+00 599 \N \N \N \N 1 \N bb72e244-f60e-49db-b2a2-b6dfc617571b t
2025-12-08 15:00:01.246165+00 2025-12-08 15:00:01.246169+00 600 \N \N \N \N 1 \N 7438d257-66b5-4576-b5cb-7bdf8512a378 t
2025-12-08 15:00:01.24693+00 2025-12-08 15:00:01.246933+00 601 \N \N \N \N 1 \N d87cc14f-183d-4106-a2ad-4a9424b25713 t
2025-12-08 15:00:01.247692+00 2025-12-08 15:00:01.247696+00 602 \N \N \N \N 1 \N 01ece091-ac49-461b-bb68-e5a47366a836 t
2025-12-08 15:00:01.248999+00 2025-12-08 15:00:01.249005+00 603 \N \N \N \N 1 \N c8ba960b-2ba3-4cd8-b332-2e0fd863ea86 t
2025-12-08 15:00:01.250367+00 2025-12-08 15:00:01.250372+00 604 \N \N \N \N 1 \N c2a73295-098d-4632-8b74-2b7d3e85d92e t
2025-12-08 15:00:01.251563+00 2025-12-08 15:00:01.251568+00 605 -886 \N \N \N \N 1 \N c4464061-fea4-4da0-a497-6e861f3e2fc5 t
2025-12-08 15:00:01.252651+00 2025-12-08 15:00:01.252655+00 606 YOYO \N \N \N \N 1 \N 494eb685-8a12-441e-b3a3-82cee8d1b816 t
2025-12-08 15:00:01.253721+00 2025-12-08 15:00:01.253725+00 607 \N \N \N \N 1 \N 346f7d09-4eb2-4beb-8822-abaedaef8054 t
2025-12-08 15:00:01.25478+00 2025-12-08 15:00:01.254784+00 608 \N \N \N \N 1 \N 0830baa9-1dde-4b05-85d7-86e3842ea2f4 t
2025-12-08 15:00:01.255843+00 2025-12-08 15:00:01.255846+00 609 \N \N \N \N 1 \N 37394b3f-8e52-485a-aaa4-68c8268eb1bb t
2025-12-08 15:00:00.669749+00 2025-12-09 06:20:23.837901+00 410 17520145271 \N \N \N 1 \N e179e64d-fbbd-4f8f-8dbb-c847987ec639 t
2025-12-09 07:00:00.379663+00 2025-12-09 07:00:00.379674+00 610 \N \N \N \N 1 \N 56b2fd8d-1bb6-4aec-82c0-5f9a2d854666 t
2025-12-09 07:00:00.381488+00 2025-12-09 07:00:00.381493+00 611 - \N \N \N \N 1 \N 7d723b8b-4484-41d2-8dc5-62cc70cba170 t
2025-12-09 07:00:00.382391+00 2025-12-09 07:00:00.382396+00 612 \N \N \N \N 1 \N 06913fdf-3bae-4b46-a4b4-b177d0782f82 t
2025-12-09 07:00:00.383231+00 2025-12-09 07:00:00.383236+00 613 \N \N \N \N 1 \N 888ac135-3bda-4c50-8b67-d2bc1e0be344 t
2025-12-09 07:00:00.384145+00 2025-12-09 07:00:00.38415+00 614 Z飞岳 \N \N \N \N 1 \N b908e3a3-5696-4a1e-9b6f-d8120c107c49 t
2025-12-09 07:00:00.384972+00 2025-12-09 07:00:00.384976+00 615 Z成鑫-Z-CX) \N \N \N \N 1 \N 2bb8290a-c84d-436f-add2-522f33f36281 t
2025-12-09 07:00:00.385786+00 2025-12-09 07:00:00.38579+00 616 \N \N \N \N 1 \N 9d529e41-30e1-4aba-886e-40893cb380c1 t
2025-12-09 07:00:00.386583+00 2025-12-09 07:00:00.386587+00 617 Z欣发 \N \N \N \N 1 \N 586474d1-79f1-4e3b-8c59-3214e5310e32 t
2025-12-09 07:00:00.387361+00 2025-12-09 07:00:00.387365+00 618 \N \N \N \N 1 \N c682d7ab-333e-4e26-9c22-f2bef31ec4ab t
2025-12-09 07:00:00.388153+00 2025-12-09 07:00:00.388157+00 619 \N \N \N \N 1 \N e1407f05-cda8-4611-9fd7-70a40c42eef1 t
2025-12-09 07:00:00.388945+00 2025-12-09 07:00:00.388948+00 620 \N \N \N \N 1 \N d6fe4d22-5502-4c9f-a0a0-0f15beb0df93 t
2025-12-09 07:00:00.389719+00 2025-12-09 07:00:00.389722+00 621 \N \N \N \N 1 \N 6e3a4d91-c75f-484d-abe5-7f8c9ae38106 t
2025-12-09 07:00:00.390513+00 2025-12-09 07:00:00.390517+00 622 \N \N \N \N 1 \N 60ca8e20-bbee-4d77-a403-ce519c3f0df1 t
2025-12-09 07:00:00.391565+00 2025-12-09 07:00:00.391569+00 623 \N \N \N \N 1 \N cf1e7212-04d9-4523-9d00-4012f92a1c96 t
2025-12-09 07:00:00.392615+00 2025-12-09 07:00:00.392619+00 624 - \N \N \N \N 1 \N a57c9f64-54b4-443e-87a7-9d0c151588b7 t
2025-12-09 07:00:00.393674+00 2025-12-09 07:00:00.393679+00 625 \N \N \N \N 1 \N fb506605-ad92-4521-81b1-fb6060419bc0 t
2025-12-09 07:00:00.394743+00 2025-12-09 07:00:00.394747+00 626 \N \N \N \N 1 \N ec9171c3-ad85-4db0-96b6-178d4f9bb4bc t
2025-12-09 07:00:00.395787+00 2025-12-09 07:00:00.395791+00 627 \N \N \N \N 1 \N 1ebd7d0e-6b85-47a0-8db1-3f2acf587bd6 t
2025-12-09 07:00:00.396864+00 2025-12-09 07:00:00.396868+00 628 \N \N \N \N 1 \N a9d05d30-acfb-4020-8a07-c14624958133 t
2025-12-09 07:00:00.397928+00 2025-12-09 07:00:00.397932+00 629 \N \N \N \N 1 \N 98b88c2e-45e4-4ff9-ac2c-6b53f7d3eb38 t
2025-12-09 07:00:00.398996+00 2025-12-09 07:00:00.399+00 630 \N \N \N \N 1 \N 2d44fcc4-e72a-4cbd-9129-cbdb680d77ca t
2025-12-09 07:00:00.399763+00 2025-12-09 07:00:00.399767+00 631 \N \N \N \N 1 \N 56236d02-53d0-4703-9138-20bca47c2e9a t
2025-12-09 07:00:00.400546+00 2025-12-09 07:00:00.40055+00 632 Z美艾 \N \N \N \N 1 \N a838a23c-53cb-4ab6-8029-df628248ea40 t
2025-12-09 07:00:00.401316+00 2025-12-09 07:00:00.401321+00 633 Z米老鼠 \N \N \N \N 1 \N 93d20d03-0020-4c89-9008-2d872b91188f t
2025-12-09 07:00:00.402082+00 2025-12-09 07:00:00.402086+00 634 A小宝 \N \N \N \N 1 \N 39144145-18c8-4385-a4b3-81c922ee1b20 t
2025-12-09 07:00:00.402862+00 2025-12-09 07:00:00.402866+00 635 A莎澜 \N \N \N \N 1 \N f54f80ee-b4f7-4fb5-80c4-82d9be978e41 t
2025-12-09 07:00:00.403633+00 2025-12-09 07:00:00.403636+00 636 A陈刚华 \N \N \N \N 1 \N 2d48c393-375a-4c25-83ce-4dd0d26d2506 t
2025-12-09 07:00:00.40442+00 2025-12-09 07:00:00.404424+00 637 A陈林帆 \N \N \N \N 1 \N f38e5ccb-3298-4597-8412-9c7f234430fc t
2025-12-09 07:00:00.405184+00 2025-12-09 07:00:00.405188+00 638 A粤焱联富- \N \N \N \N 1 \N d4b67c1c-7b77-4ac6-b82f-6ea68a23b111 t
2025-12-09 07:00:00.405946+00 2025-12-09 07:00:00.40595+00 639 A粤焱联富- \N \N \N \N 1 \N 8cd5c86f-8e96-42bd-a1a0-2cfebc818367 t
2025-12-09 07:00:00.406707+00 2025-12-09 07:00:00.406711+00 640 A粤焱集团 \N \N \N \N 1 \N ff35beaf-e0de-4ccd-a3db-308acc1abc0e t
2025-12-09 07:00:00.407488+00 2025-12-09 07:00:00.407492+00 641 A宋水斌 \N \N \N \N 1 \N 576eafb3-e645-4af8-abc7-4e9233d60806 t
2025-12-09 07:00:00.408253+00 2025-12-09 07:00:00.408257+00 642 A迪林服饰 \N \N \N \N 1 \N 2f8673d9-aa79-4359-9014-3d414ed8f541 t
2025-12-09 07:00:00.40903+00 2025-12-09 07:00:00.409035+00 643 \N \N \N \N 1 \N 58f31d57-f9c5-4655-8c7d-3f585733c04d t
2025-12-09 07:00:00.409807+00 2025-12-09 07:00:00.409812+00 644 Z广鹏 \N \N \N \N 1 \N 336b82a6-6e3d-4ea8-87a4-3cabbc11813d t
2025-12-09 07:00:00.410589+00 2025-12-09 07:00:00.410593+00 645 \N \N \N \N 1 \N f3dac50b-b8f4-49ae-9ec0-ea59583b4dde t
2025-12-09 07:00:00.411356+00 2025-12-09 07:00:00.41136+00 646 \N \N \N \N 1 \N 1e9609c9-cd68-4bd3-a629-dbb99ea1f447 t
2025-12-09 07:00:00.412137+00 2025-12-09 07:00:00.41214+00 647 A龙白燕 \N \N \N \N 1 \N 59b86bdb-3745-4063-9711-8f2d0dadd292 t
2025-12-09 07:00:00.412899+00 2025-12-09 07:00:00.412903+00 648 A林庆洪 \N \N \N \N 1 \N 708d7c41-5de2-41fa-a610-b7dbd068e01e t
2025-12-09 07:00:00.41366+00 2025-12-09 07:00:00.413663+00 649 \N \N \N \N 1 \N 55b0b6d1-1eb3-4b82-b9bb-5d2fd96305a6 t
2025-12-09 07:00:00.414442+00 2025-12-09 07:00:00.414446+00 650 \N \N \N \N 1 \N 6b8bf6c0-b27e-49fe-89be-96395487b209 t
2025-12-09 07:00:00.415207+00 2025-12-09 07:00:00.415211+00 651 \N \N \N \N 1 \N 1e741c12-ebd4-47c1-997d-9bc76b12c52a t
2025-12-09 07:00:00.415965+00 2025-12-09 07:00:00.415969+00 652 A李总 \N \N \N \N 1 \N 050ce989-7cd2-4704-8e93-63c2ce8ac312 t
2025-12-09 07:00:00.416723+00 2025-12-09 07:00:00.416726+00 653 \N \N \N \N 1 \N c1e40b06-36c9-4229-918d-8f218e5c3afc t
2025-12-09 07:00:00.417508+00 2025-12-09 07:00:00.417512+00 654 \N \N \N \N 1 \N a3be3bca-aee4-48e5-a967-4f7632d4ef3e t
2025-12-09 07:00:00.418276+00 2025-12-09 07:00:00.41828+00 655 A吴凯和 \N \N \N \N 1 \N 2aca4355-24a5-4422-8527-98594eb5ae4f t
2025-12-09 07:00:00.419034+00 2025-12-09 07:00:00.419038+00 656 \N \N \N \N 1 \N 3b10fd43-1c6a-440d-a9b8-08c18aeb45ed t
2025-12-09 07:00:00.419889+00 2025-12-09 07:00:00.419895+00 657 \N \N \N \N 1 \N e943ef2a-6931-42d0-b17d-397b2ebcacc3 t
2025-12-09 07:00:00.420755+00 2025-12-09 07:00:00.420759+00 658 \N \N \N \N 1 \N 79748b70-2a59-449e-bbeb-0d8075f7ab33 t
2025-12-09 07:00:00.42154+00 2025-12-09 07:00:00.421544+00 659 \N \N \N \N 1 \N cb3637b4-374c-441f-b74c-f7ccd4e6d96d t
2025-12-09 07:00:00.422331+00 2025-12-09 07:00:00.422335+00 660 G \N \N \N \N 1 \N 5da3d78e-38c9-44e9-b911-891ca25156ea t
2025-12-09 07:00:00.423419+00 2025-12-09 07:00:00.423423+00 661 - \N \N \N \N 1 \N 3c377af7-0397-4d64-ba9e-cba4402cef2d t
2025-12-09 07:00:00.424255+00 2025-12-09 07:00:00.424259+00 662 \N \N \N \N 1 \N daed39af-c253-47e2-a04d-ce47afc2757e t
2025-12-09 07:00:00.425063+00 2025-12-09 07:00:00.425066+00 663 \N \N \N \N 1 \N a0abb05a-4193-453e-9522-9b8f654de7eb t
2025-12-09 07:00:00.425844+00 2025-12-09 07:00:00.425848+00 664 \N \N \N \N 1 \N a0bf013b-61f2-4759-8208-d4694c44e342 t
2025-12-09 07:00:00.426662+00 2025-12-09 07:00:00.426666+00 665 \N \N \N \N 1 \N d0189feb-6e0c-479b-98d8-0917df50ae2d t
2025-12-09 07:00:00.427441+00 2025-12-09 07:00:00.427445+00 666 A俞总 \N \N \N \N 1 \N 409be234-5234-4119-b730-a0a80802e13d t
2025-12-09 07:00:00.428228+00 2025-12-09 07:00:00.428233+00 667 \N \N \N \N 1 \N b765e1de-8706-440d-9be6-20e06cc64e0a t
2025-12-09 07:00:00.429021+00 2025-12-09 07:00:00.429025+00 668 \N \N \N \N 1 \N d0617335-ee4c-4af8-80e7-be49e380559e t
2025-12-09 07:00:00.429797+00 2025-12-09 07:00:00.429801+00 669 \N \N \N \N 1 \N 7522b307-d837-45f2-9e2e-d176e4b2a662 t
2025-12-09 07:00:00.430575+00 2025-12-09 07:00:00.430579+00 670 \N \N \N \N 1 \N 73eaaccf-c101-4598-8541-450100b946c8 t
2025-12-09 07:00:00.431347+00 2025-12-09 07:00:00.431351+00 671 \N \N \N \N 1 \N 73050773-eb46-4682-8aff-ad98cd1baf0f t
2025-12-09 07:00:00.432105+00 2025-12-09 07:00:00.432109+00 672 鸿 \N \N \N \N 1 \N 1b629f78-5f28-4942-b85c-48cfde93923c t
2025-12-09 07:00:00.432877+00 2025-12-09 07:00:00.432881+00 673 \N \N \N \N 1 \N e1e9e49e-b8f0-4b8f-a190-fd9e7d247812 t
2025-12-09 07:00:00.433657+00 2025-12-09 07:00:00.433661+00 674 \N \N \N \N 1 \N 6a6935d5-3e78-4d47-9972-4d3ae031aa6c t
2025-12-09 07:00:00.434424+00 2025-12-09 07:00:00.434428+00 675 \N \N \N \N 1 \N ccfb4ad4-f078-4ff1-bf4f-bb283433130b t
2025-12-09 07:00:00.435203+00 2025-12-09 07:00:00.435207+00 676 A成丰 \N \N \N \N 1 \N 29df5a69-a557-42d1-9783-489cb58c9233 t
2025-12-09 07:00:00.43598+00 2025-12-09 07:00:00.435984+00 677 \N \N \N \N 1 \N fc82d4f2-3d64-4b3e-adca-464aeec0ed69 t
2025-12-09 07:00:00.436742+00 2025-12-09 07:00:00.436746+00 678 \N \N \N \N 1 \N bd729ef3-1c39-41a0-94b5-d73d9447b9a5 t
2025-12-09 07:00:00.437507+00 2025-12-09 07:00:00.437511+00 679 Z铭森 \N \N \N \N 1 \N acb53066-029e-417a-8eb5-fd76650f9855 t
2025-12-09 07:00:00.438298+00 2025-12-09 07:00:00.438302+00 680 \N \N \N \N 1 \N 9077261e-efa0-4d4d-b7ee-3df78d831570 t
2025-12-09 07:00:00.439057+00 2025-12-09 07:00:00.439061+00 681 \N \N \N \N 1 \N b7e64f51-a799-4783-b9d0-b4d76baf43eb t
2025-12-09 07:00:00.439821+00 2025-12-09 07:00:00.439825+00 682 \N \N \N \N 1 \N 8dfddcc0-50ac-44c4-8b54-0852596df20f t
2025-12-09 07:00:00.440606+00 2025-12-09 07:00:00.44061+00 683 \N \N \N \N 1 \N 2cecdbcd-f23d-4ed6-96bc-601c615877ca t
2025-12-09 07:00:00.441379+00 2025-12-09 07:00:00.441382+00 684 \N \N \N \N 1 \N cc6689fe-d703-4eef-a560-d61a88981cfe t
2025-12-09 07:00:00.442158+00 2025-12-09 07:00:00.442163+00 685 - \N \N \N \N 1 \N 6842b884-32fb-4d38-ad22-e16c6bc99a0b t
2025-12-09 07:00:00.443024+00 2025-12-09 07:00:00.443028+00 686 \N \N \N \N 1 \N 0fd401a7-bd08-467b-8bae-8415650b96ce t
2025-12-09 07:00:00.443781+00 2025-12-09 07:00:00.443784+00 687 \N \N \N \N 1 \N 06e7115a-06b6-487d-bda8-59667878179a t
2025-12-09 07:00:00.444539+00 2025-12-09 07:00:00.444543+00 688 \N \N \N \N 1 \N 74591e2a-68e4-4383-b6f1-4395c193a8f2 t
2025-12-09 07:00:00.445319+00 2025-12-09 07:00:00.445323+00 689 \N \N \N \N 1 \N 5f71270f-9cbf-407c-ac45-2fdca0a25ddf t
2025-12-09 07:00:00.446088+00 2025-12-09 07:00:00.446092+00 690 \N \N \N \N 1 \N 8be1089d-8f65-4126-a040-eb009f991a02 t
2025-12-09 07:00:00.446841+00 2025-12-09 07:00:00.446845+00 691 \N \N \N \N 1 \N 8c5b6e6f-271e-415d-9cac-38e90df69ff6 t
2025-12-09 07:00:00.447636+00 2025-12-09 07:00:00.447639+00 692 \N \N \N \N 1 \N 1e3fb561-9ff3-4d2d-ae70-c4210b20f6ae t
2025-12-09 07:00:00.448414+00 2025-12-09 07:00:00.448417+00 693 \N \N \N \N 1 \N 4c06f534-8fa8-4a24-b478-cc5b6864f039 t
2025-12-09 07:00:00.449172+00 2025-12-09 07:00:00.449176+00 694 \N \N \N \N 1 \N a6cd1125-0f95-4ade-a689-f3241218554f t
2025-12-09 07:00:00.449944+00 2025-12-09 07:00:00.449948+00 695 \N \N \N \N 1 \N b95de3a3-a251-46cc-98e6-e023941cb229 t
2025-12-09 07:00:00.450723+00 2025-12-09 07:00:00.450727+00 696 \N \N \N \N 1 \N 533cc818-6da8-4d51-ab02-b5eabf3ebddd t
2025-12-09 07:00:00.451486+00 2025-12-09 07:00:00.451489+00 697 &- \N \N \N \N 1 \N 1ab2145d-6ebf-42cd-9a29-95e072538109 t
2025-12-09 07:00:00.452233+00 2025-12-09 07:00:00.452236+00 698 \N \N \N \N 1 \N 094da8e2-aa54-42fd-bf22-59e448aac339 t
2025-12-09 07:00:00.453016+00 2025-12-09 07:00:00.45302+00 699 \N \N \N \N 1 \N d533699a-83e7-4f8d-8d86-279dd1b19331 t
2025-12-09 07:00:00.453785+00 2025-12-09 07:00:00.453789+00 700 \N \N \N \N 1 \N 782920bd-e896-4e88-a654-adbe3a0b8992 t
2025-12-09 07:00:00.454549+00 2025-12-09 07:00:00.454553+00 701 \N \N \N \N 1 \N 6e820dce-1bca-49c1-867d-c3f2c879fb02 t
2025-12-09 07:00:00.455321+00 2025-12-09 07:00:00.455325+00 702 \N \N \N \N 1 \N f01b79bf-c2a9-4290-b28c-7affede4feb8 t
2025-12-09 07:00:00.456096+00 2025-12-09 07:00:00.4561+00 703 \N \N \N \N 1 \N 2be9278c-0965-4220-82ed-7e8284a931ff t
2025-12-09 07:00:00.456862+00 2025-12-09 07:00:00.456866+00 704 \N \N \N \N 1 \N f4da9d07-5681-4808-b63f-ef86e6296756 t
2025-12-09 07:00:00.457621+00 2025-12-09 07:00:00.457625+00 705 \N \N \N \N 1 \N beede284-37fc-4cdb-976f-59a7fb892c7a t
2025-12-09 07:00:00.458404+00 2025-12-09 07:00:00.458408+00 706 \N \N \N \N 1 \N f65941ca-da37-4243-ac2f-b2e7a38f789a t
2025-12-09 07:00:00.459168+00 2025-12-09 07:00:00.459171+00 707 \N \N \N \N 1 \N a78f867c-159b-4115-b7a5-836aa4867e4f t
2025-12-09 07:00:00.459958+00 2025-12-09 07:00:00.459963+00 708 - \N \N \N \N 1 \N a0cdb3c6-b222-4584-8ea1-61790620780c t
2025-12-09 07:00:00.460737+00 2025-12-09 07:00:00.460741+00 709 \N \N \N \N 1 \N 20dabbd1-60a0-410d-860a-226ff2616780 t
2025-12-09 07:00:00.859137+00 2025-12-09 07:00:00.859147+00 710 \N \N \N \N 1 \N 076385aa-2be5-4c83-acd7-08e8910c2905 t
2025-12-09 07:00:00.860707+00 2025-12-09 07:00:00.860713+00 711 \N \N \N \N 1 \N 647f6ff1-ca14-4769-965f-fb84fc4edf14 t
2025-12-09 07:00:00.861597+00 2025-12-09 07:00:00.861601+00 712 \N \N \N \N 1 \N 382c3987-1725-45c4-9092-d7efcfdfbd55 t
2025-12-09 07:00:00.862445+00 2025-12-09 07:00:00.86245+00 713 \N \N \N \N 1 \N ce856380-1349-4f76-8db3-f4e29ab36add t
2025-12-09 07:00:00.863259+00 2025-12-09 07:00:00.863264+00 714 - \N \N \N \N 1 \N 973e710e-5421-492e-a26f-67708053cd04 t
2025-12-09 07:00:00.864063+00 2025-12-09 07:00:00.864067+00 715 \N \N \N \N 1 \N 74356918-fe91-4afb-87a2-39c3556949fe t
2025-12-09 07:00:00.864872+00 2025-12-09 07:00:00.864876+00 716 \N \N \N \N 1 \N 350e92b5-e525-4d5c-8e9b-0ec712bcb5ab t
2025-12-09 07:00:00.865679+00 2025-12-09 07:00:00.865683+00 717 \N \N \N \N 1 \N 369df537-9e46-4cd4-a47c-3600328a7fe0 t
2025-12-09 07:00:00.866489+00 2025-12-09 07:00:00.866493+00 718 \N \N \N \N 1 \N 39d92877-282f-494d-ab43-4628f6875507 t
2025-12-09 07:00:00.867287+00 2025-12-09 07:00:00.867291+00 719 鸿 \N \N \N \N 1 \N 693a51bb-c2f5-4eb1-b8f4-91b0b0bf527b t
2025-12-09 07:00:00.868062+00 2025-12-09 07:00:00.868066+00 720 \N \N \N \N 1 \N aa37d277-cf03-44c4-9465-a2159d09a0e7 t
2025-12-09 07:00:00.86884+00 2025-12-09 07:00:00.868844+00 721 \N \N \N \N 1 \N f0537d5e-c5b3-4633-862d-62984a9a5905 t
2025-12-09 07:00:00.869635+00 2025-12-09 07:00:00.86964+00 722 \N \N \N \N 1 \N 13d3c57c-2390-444f-9db4-b20a4531c39c t
2025-12-09 07:00:00.870426+00 2025-12-09 07:00:00.87043+00 723 \N \N \N \N 1 \N 83d262d3-a539-43c5-8e46-fbfece76539a t
2025-12-09 07:00:00.871202+00 2025-12-09 07:00:00.871206+00 724 \N \N \N \N 1 \N 2876a2d4-572d-4e1b-9769-c898a00ca76a t
2025-12-09 07:00:00.872019+00 2025-12-09 07:00:00.872024+00 725 \N \N \N \N 1 \N 5383897b-72c8-4ea8-8875-9a629a1be88e t
2025-12-09 07:00:00.872811+00 2025-12-09 07:00:00.872815+00 726 \N \N \N \N 1 \N 306ae583-11a4-445c-8115-16bbab1145fc t
2025-12-09 07:00:00.873577+00 2025-12-09 07:00:00.873581+00 727 \N \N \N \N 1 \N db38a29c-b516-4123-a6a1-5b93abf4d580 t
2025-12-09 07:00:00.874716+00 2025-12-09 07:00:00.87472+00 728 \N \N \N \N 1 \N f2147d80-6d2f-4ba6-bb75-c957dd929111 t
2025-12-09 07:00:00.875513+00 2025-12-09 07:00:00.875517+00 729 \N \N \N \N 1 \N 314bec4d-d3b4-4c6c-b9e9-22f42797de50 t
2025-12-09 07:00:00.876312+00 2025-12-09 07:00:00.876316+00 730 \N \N \N \N 1 \N 6dab74d3-9c7e-4bd8-bd42-029792733cb3 t
2025-12-09 07:00:00.877084+00 2025-12-09 07:00:00.877088+00 731 耀 \N \N \N \N 1 \N f7dfce2f-264d-4d9a-954f-2a0c0a33b573 t
2025-12-09 07:00:00.877866+00 2025-12-09 07:00:00.877871+00 732 \N \N \N \N 1 \N 192c3cf2-c652-4d65-8a12-fb1a7b6911e2 t
2025-12-09 07:00:00.878659+00 2025-12-09 07:00:00.878663+00 733 \N \N \N \N 1 \N bc1338e7-b0a4-4d49-80b5-9ee47311d0e8 t
2025-12-09 07:00:00.879424+00 2025-12-09 07:00:00.879428+00 734 \N \N \N \N 1 \N 61495801-3ec4-4d5e-b43e-25076ff0df3d t
2025-12-09 07:00:00.880203+00 2025-12-09 07:00:00.880207+00 735 \N \N \N \N 1 \N 8ff7ab2d-0c73-4ba7-8222-1531fced5655 t
2025-12-09 07:00:00.881057+00 2025-12-09 07:00:00.881062+00 736 \N \N \N \N 1 \N 652a8c32-25b8-485e-8e93-fb993e776321 t
2025-12-09 07:00:00.881881+00 2025-12-09 07:00:00.881885+00 737 \N \N \N \N 1 \N 312034f8-12a1-4005-92e6-c26148a5f4e8 t
2025-12-09 07:00:00.882664+00 2025-12-09 07:00:00.882668+00 738 \N \N \N \N 1 \N b8e116b5-dab2-40ab-a5c7-60b49d954f3f t
2025-12-09 07:00:00.883459+00 2025-12-09 07:00:00.883463+00 739 \N \N \N \N 1 \N 592844fd-c5dd-4dfa-8b97-143e3b84a62d t
2025-12-09 07:00:00.884228+00 2025-12-09 07:00:00.884232+00 740 \N \N \N \N 1 \N a6b2e3c5-9105-4338-bdbd-84fe2e3e3651 t
2025-12-09 07:00:00.884988+00 2025-12-09 07:00:00.884992+00 741 \N \N \N \N 1 \N 03ec5460-9e2b-4446-a4de-06b4ba458bd6 t
2025-12-09 07:00:00.885771+00 2025-12-09 07:00:00.885774+00 742 \N \N \N \N 1 \N 0d2a8484-467d-4411-a827-ae7e0580cbe7 t
2025-12-09 07:00:00.886644+00 2025-12-09 07:00:00.88665+00 743 \N \N \N \N 1 \N 2d07977a-24c4-4041-b5ca-230cd6d8527f t
2025-12-09 07:00:00.887459+00 2025-12-09 07:00:00.887463+00 744 \N \N \N \N 1 \N 6b4055aa-fa13-4c7e-b91d-fc5d1eeb4271 t
2025-12-09 07:00:00.888244+00 2025-12-09 07:00:00.888248+00 745 \N \N \N \N 1 \N 4668b929-597a-4645-abdd-1cb78ba14b9f t
2025-12-09 07:00:00.889012+00 2025-12-09 07:00:00.889016+00 746 \N \N \N \N 1 \N 20e341db-83f3-4d81-9dad-edb7d03363e1 t
2025-12-09 07:00:00.889774+00 2025-12-09 07:00:00.889781+00 747 \N \N \N \N 1 \N a91003bc-d277-4f6b-a251-98f11222178f t
2025-12-09 07:00:00.890566+00 2025-12-09 07:00:00.89057+00 748 \N \N \N \N 1 \N ce3c2fee-1642-4aff-985a-3eb5335cf613 t
2025-12-09 07:00:00.891331+00 2025-12-09 07:00:00.891335+00 749 \N \N \N \N 1 \N e1b845dd-dbc4-436a-9d53-7c26917ccdb4 t
2025-12-09 07:00:00.892356+00 2025-12-09 07:00:00.89236+00 750 - \N \N \N \N 1 \N b9e4d18e-b736-456a-9afc-aedd8a180a88 t
2025-12-09 07:00:00.893421+00 2025-12-09 07:00:00.893425+00 751 - \N \N \N \N 1 \N 81d1b257-8016-4f90-bf94-2cbc20babc89 t
2025-12-09 07:00:00.894474+00 2025-12-09 07:00:00.894478+00 752 \N \N \N \N 1 \N c2b7b0c4-a862-4417-a2ec-18e132605ddd t
2025-12-09 07:00:00.895518+00 2025-12-09 07:00:00.895522+00 753 \N \N \N \N 1 \N 982f7c71-39e9-4829-8fff-822706f39730 t
2025-12-09 07:00:00.896745+00 2025-12-09 07:00:00.896749+00 754 - \N \N \N \N 1 \N cc16f919-908e-4cfa-90be-6959163cde46 t
2025-12-09 07:00:00.897846+00 2025-12-09 07:00:00.89785+00 755 \N \N \N \N 1 \N 4713c8db-a0ba-4c29-8b4e-4f22490f9ff1 t
2025-12-09 07:00:00.898948+00 2025-12-09 07:00:00.898953+00 756 \N \N \N \N 1 \N a1327ffb-32d4-4e5e-b752-677d1af60530 t
2025-12-09 07:00:00.900024+00 2025-12-09 07:00:00.900028+00 757 \N \N \N \N 1 \N 61e53ef2-c47d-4d70-b1ce-605eb5a82c28 t
2025-12-09 07:00:00.900793+00 2025-12-09 07:00:00.900797+00 758 \N \N \N \N 1 \N 83c9bdc8-e00a-4b6f-9f72-07a4ba423a52 t
2025-12-09 07:00:00.901582+00 2025-12-09 07:00:00.901586+00 759 \N \N \N \N 1 \N 63662b78-c824-4b29-996b-1f29d9154661 t
2025-12-09 07:00:00.902365+00 2025-12-09 07:00:00.902369+00 760 \N \N \N \N 1 \N e20dcabc-d6c3-4b4d-85c9-7b525d78159d t
2025-12-09 07:00:00.903127+00 2025-12-09 07:00:00.903131+00 761 \N \N \N \N 1 \N d1e772e4-b24b-4ab4-bfa2-d19d3161d5dc t
2025-12-09 07:00:00.9039+00 2025-12-09 07:00:00.903905+00 762 \N \N \N \N 1 \N af765636-857d-4cda-bf44-f2d7a6d3054d t
2025-12-09 07:00:00.904675+00 2025-12-09 07:00:00.904679+00 763 \N \N \N \N 1 \N 395d169f-1841-4f1f-b470-7b34e0c61bc4 t
2025-12-09 07:00:00.90544+00 2025-12-09 07:00:00.905444+00 764 \N \N \N \N 1 \N 21e29dbc-9f0b-4c2a-b878-86d029476e12 t
2025-12-09 07:00:00.906188+00 2025-12-09 07:00:00.906191+00 765 \N \N \N \N 1 \N 42b2bfc1-e676-4c1e-835e-6bfdc07fabd6 t
2025-12-09 07:00:00.906949+00 2025-12-09 07:00:00.906953+00 766 \N \N \N \N 1 \N 9db3db4b-83db-425e-ad29-fa2d6439b7bf t
2025-12-09 07:00:00.907719+00 2025-12-09 07:00:00.907723+00 767 \N \N \N \N 1 \N d49cb2a8-9af4-43e8-a648-973f542ff045 t
2025-12-09 07:00:00.908481+00 2025-12-09 07:00:00.908485+00 768 \N \N \N \N 1 \N e77bc780-18a2-42e5-9136-8baa42d10067 t
2025-12-09 07:00:00.909227+00 2025-12-09 07:00:00.909231+00 769 \N \N \N \N 1 \N 32f48277-113c-44ad-a348-29a5220645ed t
2025-12-09 07:00:00.910002+00 2025-12-09 07:00:00.910006+00 770 \N \N \N \N 1 \N 67fa1f66-1b4f-453e-88aa-3d1013e0b785 t
2025-12-09 07:00:00.910829+00 2025-12-09 07:00:00.910833+00 771 \N \N \N \N 1 \N f2466a0c-0855-42de-bf5f-e487132f0ae1 t
2025-12-09 07:00:00.911591+00 2025-12-09 07:00:00.911594+00 772 - \N \N \N \N 1 \N a4f47e27-f0ab-400e-87b7-6a6d89e2dcc4 t
2025-12-09 07:00:00.91237+00 2025-12-09 07:00:00.912374+00 773 - \N \N \N \N 1 \N 69d815c3-db1c-4f84-b61f-587da68004a8 t
2025-12-09 07:00:00.913135+00 2025-12-09 07:00:00.913139+00 774 \N \N \N \N 1 \N 6a66ba01-c69b-4dd1-980c-0de09b05e1f0 t
2025-12-09 07:00:00.9139+00 2025-12-09 07:00:00.913904+00 775 - \N \N \N \N 1 \N 5aa81bc8-2ecf-4ee4-911b-739a003387ff t
2025-12-09 07:00:00.914671+00 2025-12-09 07:00:00.914675+00 776 LY服饰 \N \N \N \N 1 \N 9e98956c-d5f7-4fe5-8f81-b2b1b69d501c t
2025-12-09 07:00:00.91544+00 2025-12-09 07:00:00.915444+00 777 \N \N \N \N 1 \N a81d43b5-1279-4688-b6f3-99fd1db84912 t
2025-12-09 07:00:00.916205+00 2025-12-09 07:00:00.916208+00 778 \N \N \N \N 1 \N b37fc25b-a18e-4e40-a18c-3bb58f9d3459 t
2025-12-09 07:00:00.916968+00 2025-12-09 07:00:00.916972+00 779 \N \N \N \N 1 \N d79ae462-279a-47e0-981e-f1d149d69b2d t
2025-12-09 07:00:00.917753+00 2025-12-09 07:00:00.917756+00 780 \N \N \N \N 1 \N de3b2da8-49ab-40c0-b35f-d377e0caff9f t
2025-12-09 07:00:00.918506+00 2025-12-09 07:00:00.91851+00 781 \N \N \N \N 1 \N 2a1c8978-3498-4b2a-b102-c6e0795560ee t
2025-12-09 07:00:00.91931+00 2025-12-09 07:00:00.919314+00 782 \N \N \N \N 1 \N c7b6dc03-64e7-47d5-8fdb-58ee4a7da1b5 t
2025-12-09 07:00:00.920098+00 2025-12-09 07:00:00.920102+00 783 \N \N \N \N 1 \N 8996756c-9eca-420a-9de4-52bd62878422 t
2025-12-09 07:00:00.92086+00 2025-12-09 07:00:00.920864+00 784 \N \N \N \N 1 \N 8b50ef6c-75ed-4c64-b801-1d0d403b292b t
2025-12-09 07:00:00.921639+00 2025-12-09 07:00:00.921643+00 785 \N \N \N \N 1 \N 90ce5b48-8a7f-413e-a4ec-e67f3a4e4d0e t
2025-12-09 07:00:00.922577+00 2025-12-09 07:00:00.922581+00 786 \N \N \N \N 1 \N 0e33a7c6-d0ec-48d2-919c-194c2e699e37 t
2025-12-09 07:00:00.923414+00 2025-12-09 07:00:00.923419+00 787 - \N \N \N \N 1 \N 99591647-ea40-4c61-b385-bd50fdf9c5e7 t
2025-12-09 07:00:00.924213+00 2025-12-09 07:00:00.924217+00 788 \N \N \N \N 1 \N 3baef4bb-62f4-495e-9def-08b8e09651e3 t
2025-12-09 07:00:00.924997+00 2025-12-09 07:00:00.925001+00 789 \N \N \N \N 1 \N d718806a-4ba2-4a32-8ecd-d026295d0f78 t
2025-12-09 07:00:00.925786+00 2025-12-09 07:00:00.92579+00 790 广 \N \N \N \N 1 \N dee92631-e008-4e4a-8e6d-d141425d2ef3 t
2025-12-09 07:00:00.926575+00 2025-12-09 07:00:00.926579+00 791 \N \N \N \N 1 \N ee1dbf80-66e4-451e-a6af-04ee6f0fb864 t
2025-12-09 07:00:00.927364+00 2025-12-09 07:00:00.927368+00 792 \N \N \N \N 1 \N 472319e9-a19a-435d-8a4b-dac99b108cff t
2025-12-09 07:00:00.928148+00 2025-12-09 07:00:00.928151+00 793 \N \N \N \N 1 \N 316f6748-1a34-4a2a-b464-7b59c540771f t
2025-12-09 07:00:00.928923+00 2025-12-09 07:00:00.928927+00 794 \N \N \N \N 1 \N 02f3428e-a280-4eb0-afa5-82514c224572 t
2025-12-09 07:00:00.929695+00 2025-12-09 07:00:00.929699+00 795 \N \N \N \N 1 \N 10ec4854-fc7d-41e5-b57a-fc766d58d8d4 t
2025-12-09 07:00:00.930474+00 2025-12-09 07:00:00.930478+00 796 \N \N \N \N 1 \N 201fbcfd-e811-422c-9f69-01457201ed4e t
2025-12-09 07:00:00.931235+00 2025-12-09 07:00:00.931239+00 797 广 \N \N \N \N 1 \N 99ed8f7e-e614-4faf-bb7d-fe414ed1fbcc t
2025-12-09 07:00:00.932016+00 2025-12-09 07:00:00.93202+00 798 \N \N \N \N 1 \N efe34601-f00d-40de-bb98-1f401d0cdd62 t
2025-12-09 07:00:00.93279+00 2025-12-09 07:00:00.932794+00 799 \N \N \N \N 1 \N a8d34e75-9a80-4aa9-aaea-ca93f0f4ba93 t
2025-12-09 07:00:00.933543+00 2025-12-09 07:00:00.933547+00 800 \N \N \N \N 1 \N 336432ab-f2d9-4b3f-a379-91be4df9dcda t
2025-12-09 07:00:00.934315+00 2025-12-09 07:00:00.934319+00 801 \N \N \N \N 1 \N 1365740d-ca8e-4442-bb10-3aca11cf5f9a t
2025-12-09 07:00:00.935111+00 2025-12-09 07:00:00.935114+00 802 \N \N \N \N 1 \N 283fa990-21a7-4a3f-a0a0-6c7dc3aca209 t
2025-12-09 07:00:00.935883+00 2025-12-09 07:00:00.935887+00 803 \N \N \N \N 1 \N 7860effa-5135-4d75-9507-99ab0f2c316b t
2025-12-09 07:00:00.936667+00 2025-12-09 07:00:00.936671+00 804 \N \N \N \N 1 \N f7d6b1a5-9bf1-45f3-b7d3-be670fdfe3cb t
2025-12-09 07:00:00.937529+00 2025-12-09 07:00:00.937533+00 805 \N \N \N \N 1 \N 46c3bd24-5f36-4fe6-b22b-edd3b2495ede t
2025-12-09 07:00:00.938294+00 2025-12-09 07:00:00.938298+00 806 \N \N \N \N 1 \N 4d4322bb-e095-437b-8381-19d0287cd5b2 t
2025-12-09 07:00:00.939073+00 2025-12-09 07:00:00.939077+00 807 \N \N \N \N 1 \N aca8976c-b2ef-4867-85ea-4fe0aeb4d5ff t
2025-12-09 07:00:00.93983+00 2025-12-09 07:00:00.939834+00 808 \N \N \N \N 1 \N a932ed9a-e555-444a-abdf-69b7c277ff41 t
2025-12-09 07:00:00.940604+00 2025-12-09 07:00:00.940608+00 809 \N \N \N \N 1 \N d9fe3f30-fe85-4a0f-830c-2913fe0a6eaa t
\.
--
-- Data for Name: basic_info_customer_visible_employees; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_customer_visible_employees (id, customer_id, employee_id) FROM stdin;
1 3 6
4 3 9
5 410 8
6 410 6
\.
--
-- Data for Name: basic_info_deviceinfo; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_deviceinfo (created_at, updated_at, id, name, type, status, start_working_at, stop_working_at, is_occupied, description, merchant_id) FROM stdin;
2025-12-06 06:52:52.804808+00 2025-12-06 06:52:52.804819+00 1 使 \N \N f \N 1
2025-12-06 07:02:37.085012+00 2025-12-06 07:02:37.085021+00 2 2 使 \N \N f \N 1
\.
--
-- Data for Name: basic_info_employee; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_employee (created_at, updated_at, id, name, mobile, area, description, status, sys_user_id, merchant_id, position_id) FROM stdin;
2025-11-18 06:00:44.202474+00 2025-11-20 06:10:09.963599+00 1 \N \N 2 1 2
2025-11-19 08:14:37.879581+00 2025-11-20 06:10:14.371773+00 2 15361280510 \N 3 1 2
2025-11-24 09:25:06.187356+00 2025-11-24 09:25:06.187366+00 4 123 \N \N \N 5 1 \N
2025-11-24 09:25:22.570921+00 2025-11-24 09:25:22.570928+00 5 312 \N \N \N 7 1 2
2025-11-24 09:25:34.682437+00 2025-12-02 05:15:59.929915+00 6 \N \N \N 6 1 7
2025-12-04 06:20:29.464442+00 2025-12-04 06:20:29.46445+00 7 \N \N 9 1 3
2025-12-04 06:20:54.859664+00 2025-12-04 06:22:16.679034+00 8 \N \N 17 1 8
2025-12-04 06:22:59.122061+00 2025-12-04 06:22:59.122069+00 9 \N \N 8 1 3
2025-12-04 06:23:18.893132+00 2025-12-04 06:23:18.893139+00 10 \N \N 18 1 8
2025-12-04 06:27:04.00585+00 2025-12-04 06:27:04.005857+00 11 \N \N 10 1 3
2025-12-04 06:27:36.454577+00 2025-12-04 06:27:36.454585+00 12 \N \N 11 1 3
2025-12-04 06:28:11.769851+00 2025-12-04 06:28:11.769863+00 13 \N \N 16 1 8
2025-12-04 06:28:36.095811+00 2025-12-04 06:28:36.095818+00 14 \N \N 12 1 3
2025-12-04 06:28:57.226452+00 2025-12-04 06:28:57.22646+00 15 \N \N 13 1 3
2025-12-04 06:29:22.663197+00 2025-12-04 06:29:22.663206+00 16 \N \N 14 1 3
2025-12-04 06:29:45.849442+00 2025-12-04 06:29:45.849449+00 17 \N \N 15 1 8
2025-12-04 07:50:40.284012+00 2025-12-04 07:50:40.284019+00 18 19 1 \N
2025-12-04 07:51:58.358692+00 2025-12-04 07:51:58.358699+00 19 13800138000 API测试创建的员工 20 1 \N
2025-12-04 07:51:59.528492+00 2025-12-04 07:51:59.528498+00 20 21 1 \N
2025-12-04 07:52:04.979807+00 2025-12-04 07:52:04.979813+00 21 13900139000 22 1 \N
2025-12-04 08:27:45.113326+00 2025-12-04 08:27:45.113332+00 22 13800138000 API测试创建的员工 23 1 \N
2025-12-04 08:27:46.423583+00 2025-12-04 08:27:46.42359+00 23 24 1 \N
2025-12-04 08:27:51.773532+00 2025-12-04 08:27:51.773538+00 24 13900139000 25 1 \N
2025-12-05 10:38:28.107141+00 2025-12-05 10:38:28.107148+00 25 26 1 \N
2025-12-13 09:26:38.491759+00 2025-12-13 09:26:38.491765+00 26 27 1 \N
\.
--
-- Data for Name: basic_info_employeetype; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_employeetype (created_at, updated_at, id, title, description, reverse, merchant_id) FROM stdin;
2025-11-20 06:10:02.467608+00 2025-11-20 06:10:02.467618+00 2 \N 1
2025-11-20 06:39:12.672087+00 2025-11-20 06:39:12.672099+00 3 \N \N 1
2025-11-20 06:39:22.85184+00 2025-11-20 06:39:22.851853+00 4 \N \N 1
2025-11-20 06:39:34.031356+00 2025-11-20 06:39:41.998153+00 5 \N \N 1
2025-11-20 06:39:48.043445+00 2025-11-20 06:39:48.043455+00 6 \N \N 1
2025-11-20 06:39:54.142622+00 2025-11-20 06:39:54.14263+00 7 \N \N 1
2025-12-04 06:21:06.866439+00 2025-12-04 06:21:06.866447+00 8 \N 1
\.
--
-- Data for Name: basic_info_merchant; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_merchant (created_at, updated_at, id, name, type, area, email, mobile, contact, description, auto_complete_stock_change) FROM stdin;
2025-11-18 06:00:31.465397+00 2025-11-18 06:00:31.465405+00 1 2 \N \N \N f
2025-11-20 06:02:58.795363+00 2025-11-20 06:02:58.795382+00 2 2 1 \N \N \N \N \N f
2025-11-24 05:45:09.309332+00 2025-11-24 05:45:09.309344+00 3 1 \N \N \N \N \N f
\.
--
-- Data for Name: basic_info_merchantsetting; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_merchantsetting (created_at, updated_at, id, key, description, merchant_id, val_bool, val_float, val_int, val_str, type) FROM stdin;
2025-11-28 06:03:02.924489+00 2025-11-28 08:30:04.435452+00 1 auto_create_stock_change_tasks 1 t \N \N \N bool
\.
--
-- Data for Name: basic_info_product; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_product (created_at, updated_at, id, name, human_id, color, width_size, single_price_in, single_price_out, unit, spec, description, image, transform_rate, merchant_id, category_id, minimum_quantity, from_mdy, mdy_image_url, pieces, segment_size) FROM stdin;
2025-11-18 08:21:51.521625+00 2025-11-18 08:21:51.521633+00 1 Tj602#V领19号色-25 RC00001 \N \N \N \N 1 \N \N product_images/Tj602V领19号色-25LWQ15-151---151cmX274cm-147cmX269cm__佩_preview.jpg \N 1 1 \N f \N \N \N
2025-11-18 08:22:17.694033+00 2025-11-18 08:22:17.694041+00 2 Tj602#V领19号色-24 RC00002 \N \N \N \N 1 \N \N product_images/Tj602V领19号色-24LWQ15-151---151cmX268cm-147cmX253cm__佩_preview.jpg \N 1 1 \N f \N \N \N
2025-11-28 10:02:30.737719+00 2025-11-28 10:02:30.737728+00 3 RC00003 \N \N \N \N 1 \N \N \N 1 1 \N f \N \N \N
2025-12-09 10:14:38.911944+00 2025-12-09 10:14:38.911957+00 2721 a597fb5e6246403290a976c0e6806ee8.jpg SPMX-20240815297840 \N \N \N 1 \N \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.913743+00 2025-12-09 10:14:38.913748+00 2722 a597fb5e6246403290a976c0e6806ee8.jpg SPMX-20240815297837 \N \N \N 1 \N \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.914831+00 2025-12-09 10:14:38.914836+00 2723 LHJ0125-A2# SPMX-20240815297842 \N \N \N 1 \N [{"file_id": "0b5fd1ae-d216-4036-9aed-bc93997bbfd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f71defe4ff544a2fac0927ce6b18a231.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f71defe4ff544a2fac0927ce6b18a231.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f71defe4ff544a2fac0927ce6b18a231.jpg", "file_size": 14510, "is_delete": false, "file_type": 1, "original_file_name": "LHJ0125-A2#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f71defe4ff544a2fac0927ce6b18a231.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f71defe4ff544a2fac0927ce6b18a231.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f71defe4ff544a2fac0927ce6b18a231.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f71defe4ff544a2fac0927ce6b18a231.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f71defe4ff544a2fac0927ce6b18a231.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pIW-wXQZggWbJotzAcRA_l5Z7PU=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.915943+00 2025-12-09 10:14:38.915947+00 2724 C208# SPMX-20240815297846 \N \N \N 1 \N [{"file_id": "c63673a8-ee16-4ce1-a460-a974286cdd2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4defee846fb4b269d764cc53cb09d7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4defee846fb4b269d764cc53cb09d7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4defee846fb4b269d764cc53cb09d7d.jpg", "file_size": 8021, "is_delete": false, "file_type": 1, "original_file_name": "C208#枣红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4defee846fb4b269d764cc53cb09d7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4defee846fb4b269d764cc53cb09d7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4defee846fb4b269d764cc53cb09d7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4defee846fb4b269d764cc53cb09d7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4defee846fb4b269d764cc53cb09d7d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oCC7boByBqspG7iD5Kx_GT2DEUA=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.916952+00 2025-12-09 10:14:38.916956+00 2725 JS0104-A1#WJC22 SPMX-20240815297838 \N \N \N 1 \N [{"file_id": "2ca0ccc1-c9c0-401b-aa3c-2cf19b23bbe9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c40ae907fc2f4668a75e575271aa3bd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c40ae907fc2f4668a75e575271aa3bd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c40ae907fc2f4668a75e575271aa3bd5.jpg", "file_size": 12269, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c40ae907fc2f4668a75e575271aa3bd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c40ae907fc2f4668a75e575271aa3bd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c40ae907fc2f4668a75e575271aa3bd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c40ae907fc2f4668a75e575271aa3bd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c40ae907fc2f4668a75e575271aa3bd5.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mak71oSPXqt9NdKUKVNpHFnxNkk=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.917957+00 2025-12-09 10:14:38.917961+00 2726 #T上身号色 SPMX-20240815297844 \N \N \N 1 \N [{"file_id": "46afabb0-24e1-436a-b610-e72e06bcc140", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6705d854baf840288d4799e8c732bf61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6705d854baf840288d4799e8c732bf61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6705d854baf840288d4799e8c732bf61.jpg", "file_size": 25345, "is_delete": false, "file_type": 1, "original_file_name": "#童装T上身号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6705d854baf840288d4799e8c732bf61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6705d854baf840288d4799e8c732bf61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6705d854baf840288d4799e8c732bf61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6705d854baf840288d4799e8c732bf61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6705d854baf840288d4799e8c732bf61.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pC7MUnd0cvbtG7AGacBV40HYoBQ=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.918978+00 2025-12-09 10:14:38.918983+00 2727 DH001# SPMX-20240815297839 \N \N \N 1 \N [{"file_id": "ad7740eb-a8af-4cbe-aae7-d08d6d331033", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1762ba8b3c9042f7ab992097a91bec7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1762ba8b3c9042f7ab992097a91bec7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1762ba8b3c9042f7ab992097a91bec7b.jpg", "file_size": 9336, "is_delete": false, "file_type": 1, "original_file_name": "DH001#柠檬.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1762ba8b3c9042f7ab992097a91bec7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1762ba8b3c9042f7ab992097a91bec7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1762ba8b3c9042f7ab992097a91bec7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1762ba8b3c9042f7ab992097a91bec7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1762ba8b3c9042f7ab992097a91bec7b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fdCx9aRrhm87BqWjWDrzsg4n-0c=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.920373+00 2025-12-09 10:14:38.920378+00 2728 80017#15- SPMX-20240815297845 \N \N \N 1 \N [{"file_id": "01d23899-c7d4-4c77-94dc-04d4b28cda8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82933979ab20498aa5cca8a8ac48fadb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82933979ab20498aa5cca8a8ac48fadb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82933979ab20498aa5cca8a8ac48fadb.jpg", "file_size": 18743, "is_delete": false, "file_type": 1, "original_file_name": "80017#15-短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82933979ab20498aa5cca8a8ac48fadb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82933979ab20498aa5cca8a8ac48fadb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82933979ab20498aa5cca8a8ac48fadb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82933979ab20498aa5cca8a8ac48fadb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82933979ab20498aa5cca8a8ac48fadb.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PKGEa-82OD9aVoo4hKAt69dI_0Y=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.921376+00 2025-12-09 10:14:38.92138+00 2729 1038L-190# SPMX-20240815297843 \N \N \N 1 \N [{"file_id": "810cfba5-58d3-45ec-9ca1-88a9c9e0cb82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fdaea90158942b693fda2b116cf80ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fdaea90158942b693fda2b116cf80ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fdaea90158942b693fda2b116cf80ca.jpg", "file_size": 10812, "is_delete": false, "file_type": 1, "original_file_name": "1038L-190版#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fdaea90158942b693fda2b116cf80ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fdaea90158942b693fda2b116cf80ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fdaea90158942b693fda2b116cf80ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fdaea90158942b693fda2b116cf80ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fdaea90158942b693fda2b116cf80ca.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WQRVPsiblCsn21lNO6FLTKKBrMI=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.922347+00 2025-12-09 10:14:38.922351+00 2730 FHPKDK-062-1 SPMX-20240815297841 \N \N \N 1 \N [{"file_id": "00920677-8b69-4148-ac92-f5641d47749e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f574275c0cd409dae856799064acf93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f574275c0cd409dae856799064acf93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f574275c0cd409dae856799064acf93.jpg", "file_size": 63090, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布062-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f574275c0cd409dae856799064acf93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f574275c0cd409dae856799064acf93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f574275c0cd409dae856799064acf93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f574275c0cd409dae856799064acf93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f574275c0cd409dae856799064acf93.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ARsGyOKFOwAFa3lgpsFIiMW80bE=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.923322+00 2025-12-09 10:14:38.923326+00 2731 HSDC2066#L SPMX-20240815297847 \N \N \N 1 \N [{"file_id": "7da6581b-056f-4c54-842c-fe643af489cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "285830c8821e4f11ae980ed3e627a06a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "285830c8821e4f11ae980ed3e627a06a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "285830c8821e4f11ae980ed3e627a06a.jpg", "file_size": 14822, "is_delete": false, "file_type": 1, "original_file_name": "HSDC2066#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/285830c8821e4f11ae980ed3e627a06a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/285830c8821e4f11ae980ed3e627a06a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/285830c8821e4f11ae980ed3e627a06a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/285830c8821e4f11ae980ed3e627a06a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/285830c8821e4f11ae980ed3e627a06a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7GAtgU-Ux8Hb2bSMvo1A0FxsdsU=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.924326+00 2025-12-09 10:14:38.92433+00 2732 80017#15- SPMX-20240815297858 \N \N \N 1 \N [{"file_id": "2571a803-08fa-4c23-80a4-ea7977f41696", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20685483872d4dac99f27c11f337f5b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20685483872d4dac99f27c11f337f5b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20685483872d4dac99f27c11f337f5b1.jpg", "file_size": 15938, "is_delete": false, "file_type": 1, "original_file_name": "80017#15-短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20685483872d4dac99f27c11f337f5b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20685483872d4dac99f27c11f337f5b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20685483872d4dac99f27c11f337f5b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20685483872d4dac99f27c11f337f5b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20685483872d4dac99f27c11f337f5b1.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F47nbQ4e5bSOzY-873rCAnG9VZY=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.925304+00 2025-12-09 10:14:38.925308+00 2733 #5 SPMX-20240815297856 \N \N \N 1 \N [{"file_id": "0b2a3a32-e61c-4b23-b563-3f14590650d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d799d7877a444c089a7e16ea01465b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d799d7877a444c089a7e16ea01465b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d799d7877a444c089a7e16ea01465b5.jpg", "file_size": 18828, "is_delete": false, "file_type": 1, "original_file_name": "#童装上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d799d7877a444c089a7e16ea01465b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d799d7877a444c089a7e16ea01465b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d799d7877a444c089a7e16ea01465b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d799d7877a444c089a7e16ea01465b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d799d7877a444c089a7e16ea01465b5.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L2MF32Ma1zqL8dXnV1jWgviOY8w=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.926266+00 2025-12-09 10:14:38.92627+00 2734 JS0104-A11#WJC22 SPMX-20240815297860 \N \N \N 1 \N [{"file_id": "6fa9752d-55b4-42f4-829d-95da4ccc5792", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "505a0443023a453e8e77f656790fd6f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "505a0443023a453e8e77f656790fd6f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "505a0443023a453e8e77f656790fd6f1.jpg", "file_size": 7299, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A11#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505a0443023a453e8e77f656790fd6f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505a0443023a453e8e77f656790fd6f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505a0443023a453e8e77f656790fd6f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/505a0443023a453e8e77f656790fd6f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/505a0443023a453e8e77f656790fd6f1.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4lHraNTkRqIkFTBFFkaAmfxDMbE=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.927217+00 2025-12-09 10:14:38.927221+00 2735 LHJ0125-A2#绿 SPMX-20240815297857 \N \N \N 1 \N [{"file_id": "d46c88b8-a1ea-4804-8012-e8696ab80a90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5441781592c441eaa495b9c81d315081.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5441781592c441eaa495b9c81d315081.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5441781592c441eaa495b9c81d315081.jpg", "file_size": 14054, "is_delete": false, "file_type": 1, "original_file_name": "LHJ0125-A2#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5441781592c441eaa495b9c81d315081.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5441781592c441eaa495b9c81d315081.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5441781592c441eaa495b9c81d315081.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5441781592c441eaa495b9c81d315081.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5441781592c441eaa495b9c81d315081.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:USLug_o41FsfZxcL3DYyJZSliJ0=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.928922+00 2025-12-09 10:14:38.92893+00 2736 DH001# SPMX-20240815297850 \N \N \N 1 \N [{"file_id": "af5229f7-f053-4a39-8eb5-04ad014d023a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "871db63efa364ba3812c0c928bfb066e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "871db63efa364ba3812c0c928bfb066e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "871db63efa364ba3812c0c928bfb066e.jpg", "file_size": 10347, "is_delete": false, "file_type": 1, "original_file_name": "DH001#气球.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/871db63efa364ba3812c0c928bfb066e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/871db63efa364ba3812c0c928bfb066e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/871db63efa364ba3812c0c928bfb066e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/871db63efa364ba3812c0c928bfb066e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/871db63efa364ba3812c0c928bfb066e.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wTOZA0bpYixmbj-OA_xhQno8ow0=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.931072+00 2025-12-09 10:14:38.931078+00 2737 FHPKDK-062-2 SPMX-20240815297852 \N \N \N 1 \N [{"file_id": "882fb781-7f46-43f8-97d5-1b19e9d8c031", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7fff5bdf4fe424095175bf224ed19f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7fff5bdf4fe424095175bf224ed19f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7fff5bdf4fe424095175bf224ed19f4.jpg", "file_size": 48028, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布062-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7fff5bdf4fe424095175bf224ed19f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7fff5bdf4fe424095175bf224ed19f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7fff5bdf4fe424095175bf224ed19f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7fff5bdf4fe424095175bf224ed19f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7fff5bdf4fe424095175bf224ed19f4.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FRsTOXX_iMcUVSdiYjq_zqR6IV4=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.933043+00 2025-12-09 10:14:38.933048+00 2738 22A-95#B SPMX-20240815297859 \N \N \N 1 \N [{"file_id": "49e065f0-ebc4-420e-b919-072c39ad2f1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9f707b9ecf7410e8c6a14981fa4bb65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9f707b9ecf7410e8c6a14981fa4bb65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9f707b9ecf7410e8c6a14981fa4bb65.jpg", "file_size": 16081, "is_delete": false, "file_type": 1, "original_file_name": "22A-95单#B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9f707b9ecf7410e8c6a14981fa4bb65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9f707b9ecf7410e8c6a14981fa4bb65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9f707b9ecf7410e8c6a14981fa4bb65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9f707b9ecf7410e8c6a14981fa4bb65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9f707b9ecf7410e8c6a14981fa4bb65.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jwZl_M97LXn95DMJU7g1HLwqzXE=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.934987+00 2025-12-09 10:14:38.934993+00 2739 HSDC2066#M SPMX-20240815297853 \N \N \N 1 \N [{"file_id": "6012c6b7-895f-41bf-9ab4-cc9338048d6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "add9c50894ef4f75a20e09686f3c482b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "add9c50894ef4f75a20e09686f3c482b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "add9c50894ef4f75a20e09686f3c482b.jpg", "file_size": 15471, "is_delete": false, "file_type": 1, "original_file_name": "HSDC2066#蓝色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add9c50894ef4f75a20e09686f3c482b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add9c50894ef4f75a20e09686f3c482b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add9c50894ef4f75a20e09686f3c482b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/add9c50894ef4f75a20e09686f3c482b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/add9c50894ef4f75a20e09686f3c482b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dUEOeVQcGKhb_foi4BFkaPJGQwU=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.936976+00 2025-12-09 10:14:38.936983+00 2740 JS0104-A10#WJC22 SPMX-20240815297849 \N \N \N 1 \N [{"file_id": "7475887e-3be0-41f1-91c0-16c71222ad0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f76b2c114cc44f8bea10ff5c4108145.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f76b2c114cc44f8bea10ff5c4108145.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f76b2c114cc44f8bea10ff5c4108145.jpg", "file_size": 11209, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A10#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f76b2c114cc44f8bea10ff5c4108145.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f76b2c114cc44f8bea10ff5c4108145.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f76b2c114cc44f8bea10ff5c4108145.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f76b2c114cc44f8bea10ff5c4108145.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f76b2c114cc44f8bea10ff5c4108145.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qMT-NJnYSgNROEOV8zVbLeDkApk=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.938934+00 2025-12-09 10:14:38.938939+00 2741 1038L-190# SPMX-20240815297851 \N \N \N 1 \N [{"file_id": "21b747ed-a795-4fc7-94c5-cc75b1b55140", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c6cab7771fb46689f0b718b6a16146e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c6cab7771fb46689f0b718b6a16146e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c6cab7771fb46689f0b718b6a16146e.jpg", "file_size": 13328, "is_delete": false, "file_type": 1, "original_file_name": "1038L-190版#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c6cab7771fb46689f0b718b6a16146e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c6cab7771fb46689f0b718b6a16146e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c6cab7771fb46689f0b718b6a16146e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c6cab7771fb46689f0b718b6a16146e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c6cab7771fb46689f0b718b6a16146e.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zApmtStkSk2QuFh5BpqxNEcTJps=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.940302+00 2025-12-09 10:14:38.940306+00 2742 LZ1172#3 SPMX-20240815297854 \N \N \N 1 \N [{"file_id": "a4cacd8e-4c91-40fe-a4d3-2b6abf37344d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "337e4e5a65a445e1a21e205f043c98f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "337e4e5a65a445e1a21e205f043c98f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "337e4e5a65a445e1a21e205f043c98f3.jpg", "file_size": 11870, "is_delete": false, "file_type": 1, "original_file_name": "LZ1172#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/337e4e5a65a445e1a21e205f043c98f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/337e4e5a65a445e1a21e205f043c98f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/337e4e5a65a445e1a21e205f043c98f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/337e4e5a65a445e1a21e205f043c98f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/337e4e5a65a445e1a21e205f043c98f3.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tyhViiBJg6UceIa-_RnCoK8TFqE=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.941608+00 2025-12-09 10:14:38.941612+00 2743 C208# SPMX-20240815297855 \N \N \N 1 \N [{"file_id": "4a7bfb04-2a89-4ca9-9a43-ab446cff123f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a30cf99eee8e49b9984f0cc249edba5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a30cf99eee8e49b9984f0cc249edba5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a30cf99eee8e49b9984f0cc249edba5f.jpg", "file_size": 14037, "is_delete": false, "file_type": 1, "original_file_name": "C208#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a30cf99eee8e49b9984f0cc249edba5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a30cf99eee8e49b9984f0cc249edba5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a30cf99eee8e49b9984f0cc249edba5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a30cf99eee8e49b9984f0cc249edba5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a30cf99eee8e49b9984f0cc249edba5f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FJhP6gvCYvnO4hhVt1pTeHi57uk=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.942603+00 2025-12-09 10:14:38.942608+00 2744 22A-95#A SPMX-20240815297848 \N \N \N 1 \N [{"file_id": "8b33b2e8-336f-43bc-a533-659c69bac1be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cebeb822a003481aad6b65bb8828c56e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cebeb822a003481aad6b65bb8828c56e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cebeb822a003481aad6b65bb8828c56e.jpg", "file_size": 8856, "is_delete": false, "file_type": 1, "original_file_name": "22A-95单#A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cebeb822a003481aad6b65bb8828c56e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cebeb822a003481aad6b65bb8828c56e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cebeb822a003481aad6b65bb8828c56e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cebeb822a003481aad6b65bb8828c56e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cebeb822a003481aad6b65bb8828c56e.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oGdtwZ1L07DeXZ-T07G9SZplm-c=", "createTime": "2024-08-15 14:37:30"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.943614+00 2025-12-09 10:14:38.943618+00 2745 DH001# SPMX-20240815297861 \N \N \N 1 \N [{"file_id": "03aabefa-33e9-470a-b12e-5ee0e79ae0f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "652f95b4220849a4988ab960fdfadb88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "652f95b4220849a4988ab960fdfadb88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "652f95b4220849a4988ab960fdfadb88.jpg", "file_size": 11749, "is_delete": false, "file_type": 1, "original_file_name": "DH001#火烈鸟.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/652f95b4220849a4988ab960fdfadb88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/652f95b4220849a4988ab960fdfadb88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/652f95b4220849a4988ab960fdfadb88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/652f95b4220849a4988ab960fdfadb88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/652f95b4220849a4988ab960fdfadb88.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PKcUpn6NiyFf_7WuYwrOCk_GR9U=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.944591+00 2025-12-09 10:14:38.944595+00 2746 HSDC2066#S SPMX-20240815297866 \N \N \N 1 \N [{"file_id": "cc9e9d9f-8abe-4bc4-aa20-e098e5d1c110", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbfd200e61f844d5a7acc52fd6bb103e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbfd200e61f844d5a7acc52fd6bb103e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbfd200e61f844d5a7acc52fd6bb103e.jpg", "file_size": 16242, "is_delete": false, "file_type": 1, "original_file_name": "HSDC2066#蓝色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbfd200e61f844d5a7acc52fd6bb103e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbfd200e61f844d5a7acc52fd6bb103e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbfd200e61f844d5a7acc52fd6bb103e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbfd200e61f844d5a7acc52fd6bb103e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbfd200e61f844d5a7acc52fd6bb103e.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qt3OMWqNa7MPZA5U6sO6xEQCL7g=", "createTime": "2024-08-15 14:37:32"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.945589+00 2025-12-09 10:14:38.945593+00 2747 LZ1172#4 SPMX-20240815297864 \N \N \N 1 \N [{"file_id": "e3b01b5b-ad79-4c00-b971-e2c7d41bbd7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3733cccc1834761895e090e7019312f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3733cccc1834761895e090e7019312f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3733cccc1834761895e090e7019312f.jpg", "file_size": 11560, "is_delete": false, "file_type": 1, "original_file_name": "LZ1172#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3733cccc1834761895e090e7019312f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3733cccc1834761895e090e7019312f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3733cccc1834761895e090e7019312f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3733cccc1834761895e090e7019312f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3733cccc1834761895e090e7019312f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j0cXhKPXSIhZ_JgyMunJlTmKGv8=", "createTime": "2024-08-15 14:37:32"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.946565+00 2025-12-09 10:14:38.946569+00 2748 80017# SPMX-20240815297865 \N \N \N 1 \N [{"file_id": "bfbe449c-1b71-44a8-b7c4-b2c1c3f606a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c046a8e6db3748619764bd04586770bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c046a8e6db3748619764bd04586770bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c046a8e6db3748619764bd04586770bb.jpg", "file_size": 18631, "is_delete": false, "file_type": 1, "original_file_name": "80017#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c046a8e6db3748619764bd04586770bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c046a8e6db3748619764bd04586770bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c046a8e6db3748619764bd04586770bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c046a8e6db3748619764bd04586770bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c046a8e6db3748619764bd04586770bb.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JlmCV-m_miZHovbX08qn-6lwuBU=", "createTime": "2024-08-15 14:37:32"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.947821+00 2025-12-09 10:14:38.947826+00 2749 FHPKDK-062-4 SPMX-20240815297863 \N \N \N 1 \N [{"file_id": "f05209e4-927f-4dec-adc1-0f83f0d54a78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32e6c3b13d454e1fa13d1956dc541cce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32e6c3b13d454e1fa13d1956dc541cce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32e6c3b13d454e1fa13d1956dc541cce.jpg", "file_size": 49043, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布062-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32e6c3b13d454e1fa13d1956dc541cce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32e6c3b13d454e1fa13d1956dc541cce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32e6c3b13d454e1fa13d1956dc541cce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32e6c3b13d454e1fa13d1956dc541cce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32e6c3b13d454e1fa13d1956dc541cce.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D6xG-dPDrtQLslW_7-WJHxWNzio=", "createTime": "2024-08-15 14:37:32"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.948878+00 2025-12-09 10:14:38.948883+00 2750 1038L-190# SPMX-20240815297862 \N \N \N 1 \N [{"file_id": "b40e1546-5a90-4c86-aa97-a12da68b2ba3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f17a6ecf52e49ad97b8b13a2665298c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f17a6ecf52e49ad97b8b13a2665298c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f17a6ecf52e49ad97b8b13a2665298c.jpg", "file_size": 13189, "is_delete": false, "file_type": 1, "original_file_name": "1038L-190版#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f17a6ecf52e49ad97b8b13a2665298c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f17a6ecf52e49ad97b8b13a2665298c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f17a6ecf52e49ad97b8b13a2665298c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f17a6ecf52e49ad97b8b13a2665298c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f17a6ecf52e49ad97b8b13a2665298c.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:76TXz5Do4j7IP1jKym97Hjhsr08=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.949934+00 2025-12-09 10:14:38.949938+00 2751 DH001# SPMX-20240815297871 \N \N \N 1 \N [{"file_id": "e425efa8-a75f-4827-a6d8-b3d3fc7de142", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7000ab3ddb8c4d83a8974a17d6b35a59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7000ab3ddb8c4d83a8974a17d6b35a59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7000ab3ddb8c4d83a8974a17d6b35a59.jpg", "file_size": 19015, "is_delete": false, "file_type": 1, "original_file_name": "DH001#爱心.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7000ab3ddb8c4d83a8974a17d6b35a59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7000ab3ddb8c4d83a8974a17d6b35a59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7000ab3ddb8c4d83a8974a17d6b35a59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7000ab3ddb8c4d83a8974a17d6b35a59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7000ab3ddb8c4d83a8974a17d6b35a59.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ScUIxVXhJ2HoQ5V2O9zsoYzLlFo=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.950934+00 2025-12-09 10:14:38.950938+00 2752 LHJ0125-A2# SPMX-20240815297873 \N \N \N 1 \N [{"file_id": "e3648a2c-aca1-4c67-ad27-1b10fb00deb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be3cb53fc63f492ea0c5026d3ac2532c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be3cb53fc63f492ea0c5026d3ac2532c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be3cb53fc63f492ea0c5026d3ac2532c.jpg", "file_size": 15144, "is_delete": false, "file_type": 1, "original_file_name": "LHJ0125-A2#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be3cb53fc63f492ea0c5026d3ac2532c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be3cb53fc63f492ea0c5026d3ac2532c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be3cb53fc63f492ea0c5026d3ac2532c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be3cb53fc63f492ea0c5026d3ac2532c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be3cb53fc63f492ea0c5026d3ac2532c.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MHFdbSwy6onT1qz-8tM-eqBv1Uw=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.951935+00 2025-12-09 10:14:38.951938+00 2753 22A-95#C SPMX-20240815297870 \N \N \N 1 \N [{"file_id": "b888812f-c18c-4303-b813-8f256394f1fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcc78c48b86e4f11947deed41f5ba961.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcc78c48b86e4f11947deed41f5ba961.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcc78c48b86e4f11947deed41f5ba961.jpg", "file_size": 7866, "is_delete": false, "file_type": 1, "original_file_name": "22A-95单#C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcc78c48b86e4f11947deed41f5ba961.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcc78c48b86e4f11947deed41f5ba961.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcc78c48b86e4f11947deed41f5ba961.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcc78c48b86e4f11947deed41f5ba961.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcc78c48b86e4f11947deed41f5ba961.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pd0uQ-MmC5tSwu49OKTlZJ0NxUQ=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.952917+00 2025-12-09 10:14:38.952921+00 2754 1039# SPMX-20240815297874 \N \N \N 1 \N [{"file_id": "c6200965-c94e-493b-a449-3afa497268b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bd107031b0f4f95846ae2a9d4f43191.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bd107031b0f4f95846ae2a9d4f43191.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bd107031b0f4f95846ae2a9d4f43191.jpg", "file_size": 12684, "is_delete": false, "file_type": 1, "original_file_name": "1039#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bd107031b0f4f95846ae2a9d4f43191.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bd107031b0f4f95846ae2a9d4f43191.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bd107031b0f4f95846ae2a9d4f43191.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bd107031b0f4f95846ae2a9d4f43191.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bd107031b0f4f95846ae2a9d4f43191.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vnFrUGP_8xm9tr3TMBBRI-s6Qps=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.95389+00 2025-12-09 10:14:38.953894+00 2755 LZ1173#1 SPMX-20240815297877 \N \N \N 1 \N [{"file_id": "243bfc53-354d-49f2-a521-d0c101ffa247", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9e657567f8949f4848464a7e7ed7713.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9e657567f8949f4848464a7e7ed7713.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9e657567f8949f4848464a7e7ed7713.jpg", "file_size": 12308, "is_delete": false, "file_type": 1, "original_file_name": "LZ1173#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e657567f8949f4848464a7e7ed7713.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e657567f8949f4848464a7e7ed7713.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e657567f8949f4848464a7e7ed7713.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9e657567f8949f4848464a7e7ed7713.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9e657567f8949f4848464a7e7ed7713.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bXIbTkvpqC9cnxGwLBsHjvKbeUw=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.954888+00 2025-12-09 10:14:38.954893+00 2756 JS0104-A12# SPMX-20240815297868 \N \N \N 1 \N [{"file_id": "71a107e1-ff87-4523-b14d-165c5badc0b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ff5194bd1b44709a11d50f01dd892b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ff5194bd1b44709a11d50f01dd892b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ff5194bd1b44709a11d50f01dd892b8.jpg", "file_size": 6749, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A12#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ff5194bd1b44709a11d50f01dd892b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ff5194bd1b44709a11d50f01dd892b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ff5194bd1b44709a11d50f01dd892b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ff5194bd1b44709a11d50f01dd892b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ff5194bd1b44709a11d50f01dd892b8.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0BUf_KmMGqP6oeOlLZ2x8eEWi88=", "createTime": "2024-08-15 14:37:32"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.955865+00 2025-12-09 10:14:38.955869+00 2757 80017# SPMX-20240815297875 \N \N \N 1 \N [{"file_id": "e24dfe2e-b544-4abc-a7cf-e1de354fc001", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa364fe460ac4f58aa0e6a37dea822d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa364fe460ac4f58aa0e6a37dea822d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa364fe460ac4f58aa0e6a37dea822d7.jpg", "file_size": 15409, "is_delete": false, "file_type": 1, "original_file_name": "80017#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa364fe460ac4f58aa0e6a37dea822d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa364fe460ac4f58aa0e6a37dea822d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa364fe460ac4f58aa0e6a37dea822d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa364fe460ac4f58aa0e6a37dea822d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa364fe460ac4f58aa0e6a37dea822d7.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vvng3miamUgKyyZMS3N1Djg21Ok=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.956845+00 2025-12-09 10:14:38.956849+00 2758 C208# SPMX-20240815297867 \N \N \N 1 \N [{"file_id": "a334c617-56a3-49d9-99c0-6256c2a51fdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49471af9f0a14656901f08d2db3e6b59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49471af9f0a14656901f08d2db3e6b59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49471af9f0a14656901f08d2db3e6b59.jpg", "file_size": 8264, "is_delete": false, "file_type": 1, "original_file_name": "C208#浅玫红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49471af9f0a14656901f08d2db3e6b59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49471af9f0a14656901f08d2db3e6b59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49471af9f0a14656901f08d2db3e6b59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49471af9f0a14656901f08d2db3e6b59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49471af9f0a14656901f08d2db3e6b59.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4udnHRSOHpTQEBHMtKVdW0b77SM=", "createTime": "2024-08-15 14:37:32"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.957803+00 2025-12-09 10:14:38.957807+00 2759 FHPKDK-062-5 SPMX-20240815297872 \N \N \N 1 \N [{"file_id": "095a287c-be44-4ffb-96b1-55e2feeec403", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c91b498e9424b9bb1c9f79b5a0d627d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c91b498e9424b9bb1c9f79b5a0d627d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c91b498e9424b9bb1c9f79b5a0d627d.jpg", "file_size": 55566, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布062-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c91b498e9424b9bb1c9f79b5a0d627d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c91b498e9424b9bb1c9f79b5a0d627d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c91b498e9424b9bb1c9f79b5a0d627d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c91b498e9424b9bb1c9f79b5a0d627d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c91b498e9424b9bb1c9f79b5a0d627d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6e8EaWG2sXErWCLr549vjFZxdKM=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.958783+00 2025-12-09 10:14:38.958787+00 2760 HSDC2066#XL SPMX-20240815297876 \N \N \N 1 \N [{"file_id": "1e056c0d-7a1a-42d5-95a2-d1f8021c1a51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c311a5dcdeb4d46937de256de61b666.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c311a5dcdeb4d46937de256de61b666.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c311a5dcdeb4d46937de256de61b666.jpg", "file_size": 15071, "is_delete": false, "file_type": 1, "original_file_name": "HSDC2066#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c311a5dcdeb4d46937de256de61b666.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c311a5dcdeb4d46937de256de61b666.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c311a5dcdeb4d46937de256de61b666.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c311a5dcdeb4d46937de256de61b666.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c311a5dcdeb4d46937de256de61b666.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iEf7ipluwnZ56T2WqPkFiTrZrlo=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.959776+00 2025-12-09 10:14:38.95978+00 2761 -1#-003-6# SPMX-20240815297869 \N \N \N 1 \N [{"file_id": "ccd3d255-c32f-4ec0-87be-0d22634b042c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67fb652ea11a4e8683526f5bf7d902b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67fb652ea11a4e8683526f5bf7d902b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67fb652ea11a4e8683526f5bf7d902b4.jpg", "file_size": 64499, "is_delete": false, "file_type": 1, "original_file_name": "-1#-003-6#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fb652ea11a4e8683526f5bf7d902b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fb652ea11a4e8683526f5bf7d902b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fb652ea11a4e8683526f5bf7d902b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67fb652ea11a4e8683526f5bf7d902b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67fb652ea11a4e8683526f5bf7d902b4.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w3LOgNX-0B6UexZeog745x-KFW0=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.960806+00 2025-12-09 10:14:38.96081+00 2762 LHJ0125-A2# SPMX-20240815297888 \N \N \N 1 \N [{"file_id": "acec7390-1c1e-4297-a712-b7f85fe22241", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a82ae48b65eb459481ab73b12d950a38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a82ae48b65eb459481ab73b12d950a38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a82ae48b65eb459481ab73b12d950a38.jpg", "file_size": 15452, "is_delete": false, "file_type": 1, "original_file_name": "LHJ0125-A2#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a82ae48b65eb459481ab73b12d950a38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a82ae48b65eb459481ab73b12d950a38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a82ae48b65eb459481ab73b12d950a38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a82ae48b65eb459481ab73b12d950a38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a82ae48b65eb459481ab73b12d950a38.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cGnWq843qANpvI0gGKLErKREbYw=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.961779+00 2025-12-09 10:14:38.961783+00 2763 80018# SPMX-20240815297882 \N \N \N 1 \N [{"file_id": "0d635985-2d13-4927-b05b-16af85bbee20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7027718f1bc4c0089d9658a04160fd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7027718f1bc4c0089d9658a04160fd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7027718f1bc4c0089d9658a04160fd5.jpg", "file_size": 24554, "is_delete": false, "file_type": 1, "original_file_name": "80018#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7027718f1bc4c0089d9658a04160fd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7027718f1bc4c0089d9658a04160fd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7027718f1bc4c0089d9658a04160fd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7027718f1bc4c0089d9658a04160fd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7027718f1bc4c0089d9658a04160fd5.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gFvNEFkC_Htsa-5NX3p-Z7c7_TM=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.962744+00 2025-12-09 10:14:38.962748+00 2764 22A-95#HB SPMX-20240815297889 \N \N \N 1 \N [{"file_id": "8b3be81c-c7c8-4128-8242-54b631afdf7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f2fe1c05d1d422b870a0fdae23b9349.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f2fe1c05d1d422b870a0fdae23b9349.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f2fe1c05d1d422b870a0fdae23b9349.jpg", "file_size": 16081, "is_delete": false, "file_type": 1, "original_file_name": "22A-95单#HB.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2fe1c05d1d422b870a0fdae23b9349.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2fe1c05d1d422b870a0fdae23b9349.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2fe1c05d1d422b870a0fdae23b9349.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f2fe1c05d1d422b870a0fdae23b9349.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f2fe1c05d1d422b870a0fdae23b9349.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CUPMAzb4SGhibMatRpI0_ASQVGM=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.963724+00 2025-12-09 10:14:38.963728+00 2765 22A-95#D SPMX-20240815297879 \N \N \N 1 \N [{"file_id": "7f4efe8b-ad43-4293-85bf-5cb0fb1f2706", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b19e55f7e930450d97976816f9afc84e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b19e55f7e930450d97976816f9afc84e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b19e55f7e930450d97976816f9afc84e.jpg", "file_size": 7964, "is_delete": false, "file_type": 1, "original_file_name": "22A-95单#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19e55f7e930450d97976816f9afc84e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19e55f7e930450d97976816f9afc84e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19e55f7e930450d97976816f9afc84e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b19e55f7e930450d97976816f9afc84e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b19e55f7e930450d97976816f9afc84e.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sx5Iz17Eif-jC4huXWUAusuLBck=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.964683+00 2025-12-09 10:14:38.964688+00 2766 DH001# SPMX-20240815297881 \N \N \N 1 \N [{"file_id": "0668cba7-4f17-4540-bf70-a24980c12803", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a2271585f1448b68af9b0fbe67e3385.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a2271585f1448b68af9b0fbe67e3385.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a2271585f1448b68af9b0fbe67e3385.jpg", "file_size": 23940, "is_delete": false, "file_type": 1, "original_file_name": "DH001#粉红点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2271585f1448b68af9b0fbe67e3385.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2271585f1448b68af9b0fbe67e3385.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2271585f1448b68af9b0fbe67e3385.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a2271585f1448b68af9b0fbe67e3385.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a2271585f1448b68af9b0fbe67e3385.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fzSFQZmY4qlB1KMwK3ojIw_5Mbg=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.965646+00 2025-12-09 10:14:38.965649+00 2767 HSDC2066# SPMX-20240815297886 \N \N \N 1 \N [{"file_id": "6bdc037b-0779-4304-b126-652bed52e5a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48527486fb15494c891c233cba819ad6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48527486fb15494c891c233cba819ad6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48527486fb15494c891c233cba819ad6.jpg", "file_size": 5218, "is_delete": false, "file_type": 1, "original_file_name": "HSDC2066#蓝色净色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48527486fb15494c891c233cba819ad6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48527486fb15494c891c233cba819ad6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48527486fb15494c891c233cba819ad6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48527486fb15494c891c233cba819ad6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48527486fb15494c891c233cba819ad6.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rZs1ZgcTjF0laUsuETsz4O4g4jw=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.966602+00 2025-12-09 10:14:38.966606+00 2768 -13#L码 SPMX-20240815297884 \N \N \N 1 \N [{"file_id": "835d83d7-e75d-4156-b841-5b22acbc17b7", "thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "thumbnail_name": "0cf3344af5424f018a5a6e79d66a7c32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "large_thumbnail_name": "0cf3344af5424f018a5a6e79d66a7c32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241121/", "file_name": "0cf3344af5424f018a5a6e79d66a7c32.jpg", "file_size": 75299, "is_delete": false, "file_type": 1, "original_file_name": "aO6X0Z5L9q414L6Pco1FcKbQdEa1d83Hdi7y3Mc9755VcD4N4Y3z6qbIcY1ncLd8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/0cf3344af5424f018a5a6e79d66a7c32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/0cf3344af5424f018a5a6e79d66a7c32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241121/0cf3344af5424f018a5a6e79d66a7c32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241121/0cf3344af5424f018a5a6e79d66a7c32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241121/0cf3344af5424f018a5a6e79d66a7c32.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yOXyupdRkz-FFTa_-x_bEVXCTnM=", "createTime": "2024-11-21 13:37:04"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.967584+00 2025-12-09 10:14:38.967588+00 2769 C208# SPMX-20240815297890 \N \N \N 1 \N [{"file_id": "c176cdbe-edad-46fe-b880-b0c1a163c74e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "546f23b7511641c38e444c15f11fe3d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "546f23b7511641c38e444c15f11fe3d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "546f23b7511641c38e444c15f11fe3d8.jpg", "file_size": 7971, "is_delete": false, "file_type": 1, "original_file_name": "C208#玫红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546f23b7511641c38e444c15f11fe3d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546f23b7511641c38e444c15f11fe3d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546f23b7511641c38e444c15f11fe3d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/546f23b7511641c38e444c15f11fe3d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/546f23b7511641c38e444c15f11fe3d8.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wq5K1KJrQD3sz1z5GV6BIkyZ0Wo=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.968528+00 2025-12-09 10:14:38.968531+00 2770 JS0104-A12# SPMX-20240815297880 \N \N \N 1 \N [{"file_id": "3b8eb120-6356-450d-921b-9166912c70b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91028b4a2da64bfc8d3c568152d07a4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91028b4a2da64bfc8d3c568152d07a4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91028b4a2da64bfc8d3c568152d07a4c.jpg", "file_size": 15806, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A12#浅粉底裙子版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91028b4a2da64bfc8d3c568152d07a4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91028b4a2da64bfc8d3c568152d07a4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91028b4a2da64bfc8d3c568152d07a4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91028b4a2da64bfc8d3c568152d07a4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91028b4a2da64bfc8d3c568152d07a4c.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XlWaYonQrVm-a6wONzdDWmqXNHc=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.969498+00 2025-12-09 10:14:38.969502+00 2771 FHPKDK-063-1 SPMX-20240815297883 \N \N \N 1 \N [{"file_id": "04498812-e913-4ef0-8c03-712f1b9ce8b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f09e03c8470448b846a4091b42074b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f09e03c8470448b846a4091b42074b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f09e03c8470448b846a4091b42074b0.jpg", "file_size": 61312, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布063-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f09e03c8470448b846a4091b42074b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f09e03c8470448b846a4091b42074b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f09e03c8470448b846a4091b42074b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f09e03c8470448b846a4091b42074b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f09e03c8470448b846a4091b42074b0.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oKOGRTzndz18K73kcp9UolOiTT8=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.970469+00 2025-12-09 10:14:38.970473+00 2772 C208# SPMX-20240815297878 \N \N \N 1 \N [{"file_id": "0eb6a597-306e-4021-8bb4-9571bf5d8bf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6c846a921de4488a2f4649c96148e9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6c846a921de4488a2f4649c96148e9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6c846a921de4488a2f4649c96148e9f.jpg", "file_size": 13013, "is_delete": false, "file_type": 1, "original_file_name": "C208#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6c846a921de4488a2f4649c96148e9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6c846a921de4488a2f4649c96148e9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6c846a921de4488a2f4649c96148e9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6c846a921de4488a2f4649c96148e9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6c846a921de4488a2f4649c96148e9f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IXFaCFapJUgy1PufFohW5AizKKE=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.971463+00 2025-12-09 10:14:38.971467+00 2773 1039# SPMX-20240815297887 \N \N \N 1 \N [{"file_id": "dc8e8d7c-213a-4c9e-829c-557b50cb0ff1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d68fbdc8c9f472db40a9bf1d22c1f87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d68fbdc8c9f472db40a9bf1d22c1f87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d68fbdc8c9f472db40a9bf1d22c1f87.jpg", "file_size": 13595, "is_delete": false, "file_type": 1, "original_file_name": "1039#浅粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d68fbdc8c9f472db40a9bf1d22c1f87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d68fbdc8c9f472db40a9bf1d22c1f87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d68fbdc8c9f472db40a9bf1d22c1f87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d68fbdc8c9f472db40a9bf1d22c1f87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d68fbdc8c9f472db40a9bf1d22c1f87.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:717oETWZPGDt-9PM36La-knxlp4=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.972428+00 2025-12-09 10:14:38.972432+00 2774 LZ1173#2 SPMX-20240815297885 \N \N \N 1 \N [{"file_id": "231f7392-0e0b-43a3-8497-13500f265d90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19ba3d14b84b49ac8a12d8f65c728ad3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19ba3d14b84b49ac8a12d8f65c728ad3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19ba3d14b84b49ac8a12d8f65c728ad3.jpg", "file_size": 12081, "is_delete": false, "file_type": 1, "original_file_name": "LZ1173#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ba3d14b84b49ac8a12d8f65c728ad3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ba3d14b84b49ac8a12d8f65c728ad3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ba3d14b84b49ac8a12d8f65c728ad3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19ba3d14b84b49ac8a12d8f65c728ad3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19ba3d14b84b49ac8a12d8f65c728ad3.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_LbyfK_AelkCe0n2_WP5GGOStB0=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.973383+00 2025-12-09 10:14:38.973387+00 2775 80018# SPMX-20240815297894 \N \N \N 1 \N [{"file_id": "6091f88f-51da-44d2-8cde-ae8654d7ef72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c066ff1d84749e9b58ca718ddb71d46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c066ff1d84749e9b58ca718ddb71d46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c066ff1d84749e9b58ca718ddb71d46.jpg", "file_size": 24895, "is_delete": false, "file_type": 1, "original_file_name": "80018#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c066ff1d84749e9b58ca718ddb71d46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c066ff1d84749e9b58ca718ddb71d46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c066ff1d84749e9b58ca718ddb71d46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c066ff1d84749e9b58ca718ddb71d46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c066ff1d84749e9b58ca718ddb71d46.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A8g8VaUCSQ7kQClcQElUCedt3K8=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.974347+00 2025-12-09 10:14:38.974351+00 2776 -LJX-D3399# SPMX-20240815297895 \N \N \N 1 \N [{"file_id": "21857be4-cd1f-4d54-af33-5bea1d39479e", "thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "thumbnail_name": "24b2034fbfae4e54983fd487883f07db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "large_thumbnail_name": "24b2034fbfae4e54983fd487883f07db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241121/", "file_name": "24b2034fbfae4e54983fd487883f07db.jpg", "file_size": 90205, "is_delete": false, "file_type": 1, "original_file_name": "eRbZ9O2k0d550d5P6e3l3Hfda23f1B2I3T3u91dLdQ2O9jdU2t10fEdX5JaXcC1e.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/24b2034fbfae4e54983fd487883f07db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/24b2034fbfae4e54983fd487883f07db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241121/24b2034fbfae4e54983fd487883f07db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241121/24b2034fbfae4e54983fd487883f07db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241121/24b2034fbfae4e54983fd487883f07db.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qb6akYonNLyli2ZZaZLHsNhR9jU=", "createTime": "2024-11-21 13:37:04"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.975319+00 2025-12-09 10:14:38.975323+00 2777 HSDC2066# SPMX-20240815297899 \N \N \N 1 \N [{"file_id": "d3714fb8-c122-47ef-9594-143671c6d560", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eed0bf4844724e8998f94e0bce41419b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eed0bf4844724e8998f94e0bce41419b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eed0bf4844724e8998f94e0bce41419b.jpg", "file_size": 22459, "is_delete": false, "file_type": 1, "original_file_name": "HSDC2066#蓝色领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eed0bf4844724e8998f94e0bce41419b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eed0bf4844724e8998f94e0bce41419b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eed0bf4844724e8998f94e0bce41419b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eed0bf4844724e8998f94e0bce41419b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eed0bf4844724e8998f94e0bce41419b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mK303ZzW69rwfXQs7guqmwo3xcE=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.976276+00 2025-12-09 10:14:38.97628+00 2778 22A-9#A SPMX-20240815297898 \N \N \N 1 \N [{"file_id": "1a3c3708-883d-4fad-873f-c6372ba8db0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "646c134668374088acecfade34c0add8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "646c134668374088acecfade34c0add8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "646c134668374088acecfade34c0add8.jpg", "file_size": 8915, "is_delete": false, "file_type": 1, "original_file_name": "22A-9单#A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646c134668374088acecfade34c0add8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646c134668374088acecfade34c0add8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646c134668374088acecfade34c0add8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/646c134668374088acecfade34c0add8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/646c134668374088acecfade34c0add8.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MCZEwwzJTdRpR-rYhkB4IHR3idU=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.977245+00 2025-12-09 10:14:38.977249+00 2779 JS0104-A12# SPMX-20240815297891 \N \N \N 1 \N [{"file_id": "6970c6b2-1b7d-4588-adbe-9310dd1d222f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cb66f4f287f497bb5c3333136b3f987.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cb66f4f287f497bb5c3333136b3f987.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cb66f4f287f497bb5c3333136b3f987.jpg", "file_size": 23426, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A12#浅蓝底裙子版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cb66f4f287f497bb5c3333136b3f987.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cb66f4f287f497bb5c3333136b3f987.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cb66f4f287f497bb5c3333136b3f987.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cb66f4f287f497bb5c3333136b3f987.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cb66f4f287f497bb5c3333136b3f987.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VuS6iSrbdPo9SIKSSekohD3fDc0=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.978205+00 2025-12-09 10:14:38.978209+00 2780 LHJ1160# SPMX-20240815297900 \N \N \N 1 \N [{"file_id": "99494c6e-493c-4c1b-8343-5460d35844e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64f15edd69ed4e918a58144fec3f5419.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64f15edd69ed4e918a58144fec3f5419.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64f15edd69ed4e918a58144fec3f5419.jpg", "file_size": 10552, "is_delete": false, "file_type": 1, "original_file_name": "LHJ1160#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f15edd69ed4e918a58144fec3f5419.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f15edd69ed4e918a58144fec3f5419.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f15edd69ed4e918a58144fec3f5419.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64f15edd69ed4e918a58144fec3f5419.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64f15edd69ed4e918a58144fec3f5419.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VL5IYbksy88HrEuOLHZFoPKONp0=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.979171+00 2025-12-09 10:14:38.979175+00 2781 LZ1173#4 SPMX-20240815297902 \N \N \N 1 \N [{"file_id": "ce301e39-369f-4b5b-ad55-0d18bbf28892", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "372e15142c924e6f93fc7b769c1e00e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "372e15142c924e6f93fc7b769c1e00e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "372e15142c924e6f93fc7b769c1e00e7.jpg", "file_size": 13162, "is_delete": false, "file_type": 1, "original_file_name": "LZ1173#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372e15142c924e6f93fc7b769c1e00e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372e15142c924e6f93fc7b769c1e00e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372e15142c924e6f93fc7b769c1e00e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/372e15142c924e6f93fc7b769c1e00e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/372e15142c924e6f93fc7b769c1e00e7.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_5QpY0kydjMg93fQW64eN3yBG7c=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.980232+00 2025-12-09 10:14:38.980237+00 2782 DH001# SPMX-20240815297892 \N \N \N 1 \N [{"file_id": "c8bbdfab-c5fc-4453-993f-7921ae617d65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afc48e1d1c3148bfb6c356a583ac9b94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afc48e1d1c3148bfb6c356a583ac9b94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afc48e1d1c3148bfb6c356a583ac9b94.jpg", "file_size": 15686, "is_delete": false, "file_type": 1, "original_file_name": "DH001#蒲公英.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afc48e1d1c3148bfb6c356a583ac9b94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afc48e1d1c3148bfb6c356a583ac9b94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afc48e1d1c3148bfb6c356a583ac9b94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afc48e1d1c3148bfb6c356a583ac9b94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afc48e1d1c3148bfb6c356a583ac9b94.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cMACzxyClZ3MVCczQ1qVRfPRpTM=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.981228+00 2025-12-09 10:14:38.981231+00 2783 LZ1173#3 SPMX-20240815297893 \N \N \N 1 \N [{"file_id": "6b6ec008-167c-4ddd-9c91-58779732114a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2e9518355964251b6d86351edc296fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2e9518355964251b6d86351edc296fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2e9518355964251b6d86351edc296fa.jpg", "file_size": 12640, "is_delete": false, "file_type": 1, "original_file_name": "LZ1173#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2e9518355964251b6d86351edc296fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2e9518355964251b6d86351edc296fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2e9518355964251b6d86351edc296fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2e9518355964251b6d86351edc296fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2e9518355964251b6d86351edc296fa.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0cPe2vlyQTQ1wCd5BKuEnipaKug=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.982196+00 2025-12-09 10:14:38.9822+00 2784 JS0104-A12#绿 SPMX-20240815297904 \N \N \N 1 \N [{"file_id": "389c60bf-1b7d-46df-a4f8-7397f425156e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd64d2d5fb524993851e2600f852756f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd64d2d5fb524993851e2600f852756f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd64d2d5fb524993851e2600f852756f.jpg", "file_size": 7225, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A12#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd64d2d5fb524993851e2600f852756f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd64d2d5fb524993851e2600f852756f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd64d2d5fb524993851e2600f852756f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd64d2d5fb524993851e2600f852756f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd64d2d5fb524993851e2600f852756f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FAJOt8EzXZOV36T3MLsZQFDrOOk=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.983182+00 2025-12-09 10:14:38.983186+00 2785 FHPKDK-063-2 SPMX-20240815297896 \N \N \N 1 \N [{"file_id": "d9365daa-5b72-44a9-953f-7b434ed13c9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16a0626761414981906ce6c3b8ddd15a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16a0626761414981906ce6c3b8ddd15a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16a0626761414981906ce6c3b8ddd15a.jpg", "file_size": 49709, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布063-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a0626761414981906ce6c3b8ddd15a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a0626761414981906ce6c3b8ddd15a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a0626761414981906ce6c3b8ddd15a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16a0626761414981906ce6c3b8ddd15a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16a0626761414981906ce6c3b8ddd15a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6jVFv0bp_HVgiv9U1sN76anOMfE=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.984218+00 2025-12-09 10:14:38.984222+00 2786 C208# SPMX-20240815297901 \N \N \N 1 \N [{"file_id": "9d937c55-49b4-46e4-99a6-cb45022ea8bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e21eacf4e07c40cda6f69bb55509200d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e21eacf4e07c40cda6f69bb55509200d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e21eacf4e07c40cda6f69bb55509200d.jpg", "file_size": 13033, "is_delete": false, "file_type": 1, "original_file_name": "C208#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e21eacf4e07c40cda6f69bb55509200d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e21eacf4e07c40cda6f69bb55509200d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e21eacf4e07c40cda6f69bb55509200d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e21eacf4e07c40cda6f69bb55509200d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e21eacf4e07c40cda6f69bb55509200d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PsiS_qYzhhbnvv-jzcWXl3sFwgI=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.98524+00 2025-12-09 10:14:38.985244+00 2787 DH001#西 SPMX-20240815297903 \N \N \N 1 \N [{"file_id": "1d928c98-2e82-4b1c-9550-522ae620b440", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f59905055354b44bccef466f2e51b9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f59905055354b44bccef466f2e51b9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f59905055354b44bccef466f2e51b9a.jpg", "file_size": 9598, "is_delete": false, "file_type": 1, "original_file_name": "DH001#西瓜.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f59905055354b44bccef466f2e51b9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f59905055354b44bccef466f2e51b9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f59905055354b44bccef466f2e51b9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f59905055354b44bccef466f2e51b9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f59905055354b44bccef466f2e51b9a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ywNxhD0QGAdMyjBDgwPEkmYtqhE=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.9862+00 2025-12-09 10:14:38.986204+00 2788 1039# SPMX-20240815297897 \N \N \N 1 \N [{"file_id": "a51ce6b2-b348-4080-8a2f-0b71851d5c0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13e8c3e041ae46ed93c4a5e7ea56f46d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13e8c3e041ae46ed93c4a5e7ea56f46d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13e8c3e041ae46ed93c4a5e7ea56f46d.jpg", "file_size": 14742, "is_delete": false, "file_type": 1, "original_file_name": "1039#浅蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13e8c3e041ae46ed93c4a5e7ea56f46d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13e8c3e041ae46ed93c4a5e7ea56f46d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13e8c3e041ae46ed93c4a5e7ea56f46d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13e8c3e041ae46ed93c4a5e7ea56f46d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13e8c3e041ae46ed93c4a5e7ea56f46d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q_zyDD37QfUTwQqUhIvUssLeyOo=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.987161+00 2025-12-09 10:14:38.987166+00 2789 FHPKDK-063-4 SPMX-20240815297906 \N \N \N 1 \N [{"file_id": "86b56799-c963-4763-ba9c-ef6eed7263e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09c1110489c14df1933c5cd4071bd2bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09c1110489c14df1933c5cd4071bd2bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09c1110489c14df1933c5cd4071bd2bb.jpg", "file_size": 51581, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布063-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09c1110489c14df1933c5cd4071bd2bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09c1110489c14df1933c5cd4071bd2bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09c1110489c14df1933c5cd4071bd2bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09c1110489c14df1933c5cd4071bd2bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09c1110489c14df1933c5cd4071bd2bb.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LxfJD71Zd__Pu-01Fgj1VDPFmps=", "createTime": "2024-08-15 14:37:36"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.988146+00 2025-12-09 10:14:38.98815+00 2790 HSH001#D枣红 SPMX-20240815297910 \N \N \N 1 \N [{"file_id": "5ea82c73-726d-40a6-8463-8c029211b007", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c3c7e726b8b42e48429e07632a112a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c3c7e726b8b42e48429e07632a112a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c3c7e726b8b42e48429e07632a112a9.jpg", "file_size": 20541, "is_delete": false, "file_type": 1, "original_file_name": "HSH001#D枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c3c7e726b8b42e48429e07632a112a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c3c7e726b8b42e48429e07632a112a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c3c7e726b8b42e48429e07632a112a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c3c7e726b8b42e48429e07632a112a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c3c7e726b8b42e48429e07632a112a9.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sTI4m-K74xSklRD94pWtK4K3ZYM=", "createTime": "2024-08-15 14:37:36"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.989101+00 2025-12-09 10:14:38.989105+00 2791 LHJ1160# SPMX-20240815297911 \N \N \N 1 \N [{"file_id": "b9761a54-46c9-44a9-ae60-ce793b8fed61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4350cc8fea58439ab62a81fecb9f4f60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4350cc8fea58439ab62a81fecb9f4f60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4350cc8fea58439ab62a81fecb9f4f60.jpg", "file_size": 20027, "is_delete": false, "file_type": 1, "original_file_name": "LHJ1160#浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4350cc8fea58439ab62a81fecb9f4f60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4350cc8fea58439ab62a81fecb9f4f60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4350cc8fea58439ab62a81fecb9f4f60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4350cc8fea58439ab62a81fecb9f4f60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4350cc8fea58439ab62a81fecb9f4f60.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xjl4GfMzUENwP892o4u2o4Bxpmc=", "createTime": "2024-08-15 14:37:36"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.990063+00 2025-12-09 10:14:38.990067+00 2792 80019# SPMX-20240815297905 \N \N \N 1 \N [{"file_id": "2c439d0d-f979-4311-8b8d-4158bed3a4ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04e222a7d51048ea916ba9451f2a8e2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04e222a7d51048ea916ba9451f2a8e2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04e222a7d51048ea916ba9451f2a8e2a.jpg", "file_size": 23847, "is_delete": false, "file_type": 1, "original_file_name": "80019#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04e222a7d51048ea916ba9451f2a8e2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04e222a7d51048ea916ba9451f2a8e2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04e222a7d51048ea916ba9451f2a8e2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04e222a7d51048ea916ba9451f2a8e2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04e222a7d51048ea916ba9451f2a8e2a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HURyEj7misxgn3S0_jrAcmKDuu8=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.991014+00 2025-12-09 10:14:38.991018+00 2793 1039# SPMX-20240815297908 \N \N \N 1 \N [{"file_id": "84e4c49a-b7ed-44b9-bf8b-43d7e9f90322", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38bc310cf5d8426caa950e125ede5dd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38bc310cf5d8426caa950e125ede5dd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38bc310cf5d8426caa950e125ede5dd0.jpg", "file_size": 13145, "is_delete": false, "file_type": 1, "original_file_name": "1039#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38bc310cf5d8426caa950e125ede5dd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38bc310cf5d8426caa950e125ede5dd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38bc310cf5d8426caa950e125ede5dd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38bc310cf5d8426caa950e125ede5dd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38bc310cf5d8426caa950e125ede5dd0.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PSy_te6GnWZI1fRyHa8K2BPcCtw=", "createTime": "2024-08-15 14:37:36"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.991985+00 2025-12-09 10:14:38.991989+00 2794 22A-9#B SPMX-20240815297909 \N \N \N 1 \N [{"file_id": "c8a9084c-6a89-495e-aa9e-889fd61527ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c70b2257ae5e4903b6cd00906f907f3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c70b2257ae5e4903b6cd00906f907f3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c70b2257ae5e4903b6cd00906f907f3e.jpg", "file_size": 15927, "is_delete": false, "file_type": 1, "original_file_name": "22A-9单#B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c70b2257ae5e4903b6cd00906f907f3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c70b2257ae5e4903b6cd00906f907f3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c70b2257ae5e4903b6cd00906f907f3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c70b2257ae5e4903b6cd00906f907f3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c70b2257ae5e4903b6cd00906f907f3e.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ixKBSzZvNHkuTkW0ZaL7UBBkEZ0=", "createTime": "2024-08-15 14:37:36"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.992952+00 2025-12-09 10:14:38.992956+00 2795 JS0104-A13#LWQ15 SPMX-20240815297915 \N \N \N 1 \N [{"file_id": "d20a1d05-7d7e-4224-8a12-eb0821d936bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a59b221bb4db46cfb50d286ca428878d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a59b221bb4db46cfb50d286ca428878d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a59b221bb4db46cfb50d286ca428878d.jpg", "file_size": 11997, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A13#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a59b221bb4db46cfb50d286ca428878d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a59b221bb4db46cfb50d286ca428878d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a59b221bb4db46cfb50d286ca428878d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a59b221bb4db46cfb50d286ca428878d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a59b221bb4db46cfb50d286ca428878d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WkFFPFjfF_UYCh7ovuNVkDJj0Nw=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.993923+00 2025-12-09 10:14:38.993928+00 2796 DH001# SPMX-20240815297912 \N \N \N 1 \N [{"file_id": "d47b598a-fb76-4f62-9d5e-1601c718f305", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cdb346f46834d93b136b80d3c3242ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cdb346f46834d93b136b80d3c3242ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cdb346f46834d93b136b80d3c3242ab.jpg", "file_size": 24783, "is_delete": false, "file_type": 1, "original_file_name": "DH001#豹纹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cdb346f46834d93b136b80d3c3242ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cdb346f46834d93b136b80d3c3242ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cdb346f46834d93b136b80d3c3242ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cdb346f46834d93b136b80d3c3242ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cdb346f46834d93b136b80d3c3242ab.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZHc9SMuaykhWBPQBg5qmiIJb7C4=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.99493+00 2025-12-09 10:14:38.994934+00 2797 1039FWF#-1 SPMX-20240815297920 \N \N \N 1 \N [{"file_id": "3233b9a4-858f-410c-b922-0bd6b05f549a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c071358ba70248fca78c623b2d7c6183.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c071358ba70248fca78c623b2d7c6183.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c071358ba70248fca78c623b2d7c6183.jpg", "file_size": 18656, "is_delete": false, "file_type": 1, "original_file_name": "1039FWF#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c071358ba70248fca78c623b2d7c6183.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c071358ba70248fca78c623b2d7c6183.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c071358ba70248fca78c623b2d7c6183.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c071358ba70248fca78c623b2d7c6183.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c071358ba70248fca78c623b2d7c6183.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xRuFonfe_Q3CiVp9jWCkan21UUM=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.995895+00 2025-12-09 10:14:38.9959+00 2798 -TT21037#L码 SPMX-20240815297918 \N \N \N 1 \N [{"file_id": "ad919c69-07a9-4f52-8a9f-a2f5a8a633dd", "thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "thumbnail_name": "7e207524336349b3846a1933c57f2fa0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "large_thumbnail_name": "7e207524336349b3846a1933c57f2fa0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241121/", "file_name": "7e207524336349b3846a1933c57f2fa0.jpg", "file_size": 55601, "is_delete": false, "file_type": 1, "original_file_name": "4zag8G6YeW6adw9S1Ran6nfdbTd45GbWbqfh075tbD1v6hfa5h7j4O921Uet4ceA.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/7e207524336349b3846a1933c57f2fa0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/7e207524336349b3846a1933c57f2fa0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241121/7e207524336349b3846a1933c57f2fa0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241121/7e207524336349b3846a1933c57f2fa0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241121/7e207524336349b3846a1933c57f2fa0.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-l2NGCGLE0stUMu_GpNhk7AOqe8=", "createTime": "2024-11-21 13:37:06"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.996969+00 2025-12-09 10:14:38.996973+00 2799 C208# SPMX-20240815297913 \N \N \N 1 \N [{"file_id": "afc85235-a2a7-412d-bdcf-fa6fcf94ec09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13980d11a1f54648bccfaa645b060381.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13980d11a1f54648bccfaa645b060381.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13980d11a1f54648bccfaa645b060381.jpg", "file_size": 8138, "is_delete": false, "file_type": 1, "original_file_name": "C208#紫色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13980d11a1f54648bccfaa645b060381.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13980d11a1f54648bccfaa645b060381.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13980d11a1f54648bccfaa645b060381.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13980d11a1f54648bccfaa645b060381.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13980d11a1f54648bccfaa645b060381.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nv6h6gQeW4-15zWxUfrI-MSiFuM=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N
2025-12-09 10:14:38.997933+00 2025-12-09 10:14:38.997937+00 2800 LZ1174#1 SPMX-20240815297916 \N \N \N 1 \N [{"file_id": "c2d2044d-1c82-4400-9377-753593157852", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3341cc32ddcc43259097c3180f77ebe8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3341cc32ddcc43259097c3180f77ebe8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3341cc32ddcc43259097c3180f77ebe8.jpg", "file_size": 12414, "is_delete": false, "file_type": 1, "original_file_name": "LZ1174#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3341cc32ddcc43259097c3180f77ebe8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3341cc32ddcc43259097c3180f77ebe8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3341cc32ddcc43259097c3180f77ebe8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3341cc32ddcc43259097c3180f77ebe8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3341cc32ddcc43259097c3180f77ebe8.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2oSbkDnxyqo-B3H7pdGeX-oxqdE=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N
\.
--
-- Data for Name: basic_info_productcategory; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_productcategory (created_at, updated_at, id, name, description, product_prefix, merchant_id) FROM stdin;
2025-11-18 08:21:39.444624+00 2025-11-18 08:21:39.444631+00 1 \N RC 1
\.
--
-- Data for Name: basic_info_quickinput; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_quickinput (created_at, updated_at, id, name, value, "group") FROM stdin;
2025-11-18 09:48:48.101462+00 2025-11-18 09:48:48.10147+00 2
2025-11-18 15:31:40.483308+00 2025-11-18 15:31:40.483315+00 4 1.5 1.5
2025-11-19 04:41:28.625384+00 2025-11-19 04:41:28.625402+00 5
2025-11-19 04:46:07.968444+00 2025-11-19 04:46:07.968452+00 6
2025-11-19 06:09:13.561928+00 2025-11-19 06:09:13.561936+00 7 线
2025-11-19 06:09:18.26355+00 2025-11-19 06:09:18.263558+00 8 3124123 3124123 线
2025-11-20 06:13:06.17721+00 2025-11-20 06:13:06.177218+00 10 1 1
2025-11-20 06:13:20.783887+00 2025-11-20 06:13:20.783896+00 11 1 1
2025-11-20 06:13:34.886151+00 2025-11-20 06:13:34.886159+00 12 1 1
2025-11-20 06:13:57.754838+00 2025-11-20 06:13:57.75485+00 13 1 1
2025-11-20 06:17:51.458274+00 2025-11-20 06:17:51.458287+00 14
2025-11-20 06:18:08.574225+00 2025-11-20 06:18:08.574233+00 15
2025-11-20 06:18:21.724272+00 2025-11-20 06:18:21.724285+00 16
2025-11-20 06:18:34.280577+00 2025-11-20 06:18:34.280585+00 17
2025-11-21 08:42:37.687031+00 2025-11-21 08:42:37.687043+00 18
2025-11-21 08:42:43.58409+00 2025-11-21 08:42:43.584103+00 19
2025-11-21 08:42:47.910144+00 2025-11-21 08:42:47.910152+00 20
2025-11-21 08:43:02.652536+00 2025-11-21 08:43:02.652544+00 21
2025-11-23 13:09:39.526104+00 2025-11-23 13:09:39.526113+00 22
2025-11-24 11:29:21.156305+00 2025-11-24 11:29:21.156323+00 23
2025-12-05 10:36:43.035366+00 2025-12-05 10:36:43.035376+00 24
2025-12-08 09:41:43.36996+00 2025-12-08 09:41:43.369974+00 25
2025-12-09 02:18:36.510827+00 2025-12-09 02:18:47.011889+00 26
2025-12-09 02:18:36.512378+00 2025-12-09 02:18:47.013748+00 27 628#仿 628#仿
2025-12-09 02:18:36.513248+00 2025-12-09 02:18:47.014997+00 28
2025-12-09 02:18:36.514053+00 2025-12-09 02:18:47.0162+00 29
2025-12-09 02:18:36.514849+00 2025-12-09 02:18:47.017565+00 30 K002仿天丝 K002仿天丝
2025-12-09 02:18:47.019564+00 2025-12-09 02:18:47.019571+00 31
2025-12-09 02:18:47.029825+00 2025-12-09 02:18:47.029828+00 39 C501# C501#
2025-12-09 02:18:47.177841+00 2025-12-09 02:18:47.177846+00 191 1 1
2025-12-09 02:18:47.406136+00 2025-12-09 02:18:47.406139+00 410 230 230
2025-12-09 02:18:47.48031+00 2025-12-09 02:18:47.480314+00 494 仿 仿
2025-12-09 02:18:47.55633+00 2025-12-09 02:18:47.556334+00 583 651 651
2025-12-09 02:18:47.600135+00 2025-12-09 02:18:47.600139+00 629 h8784 h8784
2025-12-09 02:18:47.633819+00 2025-12-09 02:18:47.633823+00 668
2025-12-09 02:18:47.720177+00 2025-12-09 02:18:47.720182+00 774 15A 15A
2025-12-09 02:18:47.841368+00 2025-12-09 02:18:47.841372+00 920 A A
2025-12-09 02:18:47.922515+00 2025-12-09 02:18:47.922519+00 1002 250 250
2025-12-09 02:18:48.785286+00 2025-12-09 02:18:48.78529+00 1084 230 230
2025-12-09 02:18:48.837366+00 2025-12-09 02:18:48.83737+00 1140
2025-12-09 02:18:49.429732+00 2025-12-09 02:18:49.429736+00 1767 40D 40D
2025-12-09 02:18:50.314987+00 2025-12-09 02:18:50.314991+00 2179
2025-12-09 02:18:47.021201+00 2025-12-09 02:18:47.021207+00 32 120 120
2025-12-09 02:18:47.022472+00 2025-12-09 02:18:47.022477+00 33 C227婚纱缎 C227婚纱缎
2025-12-09 02:18:47.023733+00 2025-12-09 02:18:47.023739+00 34 220 220
2025-12-09 02:18:47.024993+00 2025-12-09 02:18:47.024998+00 35 200 200
2025-12-09 02:18:47.02623+00 2025-12-09 02:18:47.026235+00 36
2025-12-09 02:18:47.027476+00 2025-12-09 02:18:47.027481+00 37
2025-12-09 02:18:47.028766+00 2025-12-09 02:18:47.028771+00 38
2025-12-09 02:18:47.030655+00 2025-12-09 02:18:47.030659+00 40 8069 8069
2025-12-09 02:18:47.03148+00 2025-12-09 02:18:47.031484+00 41 HG428# HG428#
2025-12-09 02:18:47.03229+00 2025-12-09 02:18:47.032294+00 42 100D精品平纹四面弹130克039#C 100D精品平纹四面弹130克039#C
2025-12-09 02:18:47.033085+00 2025-12-09 02:18:47.033089+00 43
2025-12-09 02:18:47.033853+00 2025-12-09 02:18:47.033856+00 44 16070D涤氨 16070D涤氨
2025-12-09 02:18:47.034684+00 2025-12-09 02:18:47.034688+00 45 110g 110g
2025-12-09 02:18:47.035505+00 2025-12-09 02:18:47.035509+00 46 36A本白19条X175 36A本白19条X175
2025-12-09 02:18:47.036286+00 2025-12-09 02:18:47.036289+00 47 210 210
2025-12-09 02:18:47.037051+00 2025-12-09 02:18:47.037054+00 48
2025-12-09 02:18:47.037843+00 2025-12-09 02:18:47.037847+00 49
2025-12-09 02:18:47.038607+00 2025-12-09 02:18:47.03861+00 50 06-36A本白16码 06-36A本白16码
2025-12-09 02:18:47.039367+00 2025-12-09 02:18:47.039371+00 51
2025-12-09 02:18:47.040155+00 2025-12-09 02:18:47.040158+00 52 120100D加密四面弹 120100D加密四面弹
2025-12-09 02:18:47.040923+00 2025-12-09 02:18:47.040926+00 53
2025-12-09 02:18:47.041876+00 2025-12-09 02:18:47.04188+00 54 15- 15-
2025-12-09 02:18:47.042651+00 2025-12-09 02:18:47.042655+00 55 M3361缎面 M3361缎面
2025-12-09 02:18:47.043404+00 2025-12-09 02:18:47.043407+00 56
2025-12-09 02:18:47.044181+00 2025-12-09 02:18:47.044185+00 57 155 155
2025-12-09 02:18:47.044958+00 2025-12-09 02:18:47.044961+00 58 120100D精品平纹四面弹 120100D精品平纹四面弹
2025-12-09 02:18:47.04572+00 2025-12-09 02:18:47.045723+00 59 240 240
2025-12-09 02:18:47.046497+00 2025-12-09 02:18:47.046501+00 60
2025-12-09 02:18:47.047249+00 2025-12-09 02:18:47.047253+00 61 200 200
2025-12-09 02:18:47.048025+00 2025-12-09 02:18:47.048028+00 62 2*2 2*2
2025-12-09 02:18:47.049069+00 2025-12-09 02:18:47.049073+00 63 100 100
2025-12-09 02:18:47.050118+00 2025-12-09 02:18:47.050122+00 64 36A网布 36A网布
2025-12-09 02:18:47.051175+00 2025-12-09 02:18:47.051178+00 65 105 105
2025-12-09 02:18:47.059442+00 2025-12-09 02:18:47.059449+00 66
2025-12-09 02:18:47.060862+00 2025-12-09 02:18:47.060868+00 67 14070D涤氨网布 14070D涤氨网布
2025-12-09 02:18:47.062165+00 2025-12-09 02:18:47.06217+00 68
2025-12-09 02:18:47.063475+00 2025-12-09 02:18:47.06348+00 69 40d涤氨花型 40d涤氨花型
2025-12-09 02:18:47.064735+00 2025-12-09 02:18:47.064739+00 70
2025-12-09 02:18:47.065727+00 2025-12-09 02:18:47.065731+00 71 70D涤氨网布 70D涤氨网布
2025-12-09 02:18:47.066701+00 2025-12-09 02:18:47.066711+00 72
2025-12-09 02:18:47.067664+00 2025-12-09 02:18:47.067668+00 73 40D涤氨网 40D涤氨网
2025-12-09 02:18:47.068638+00 2025-12-09 02:18:47.068642+00 74 12*4 12*4
2025-12-09 02:18:47.06962+00 2025-12-09 02:18:47.069624+00 75 100G-仿 100G-仿
2025-12-09 02:18:47.070587+00 2025-12-09 02:18:47.070591+00 76
2025-12-09 02:18:47.071546+00 2025-12-09 02:18:47.07155+00 77
2025-12-09 02:18:47.072722+00 2025-12-09 02:18:47.072726+00 78 仿 仿
2025-12-09 02:18:47.073681+00 2025-12-09 02:18:47.073686+00 79 C227# C227#
2025-12-09 02:18:47.074646+00 2025-12-09 02:18:47.07465+00 80
2025-12-09 02:18:47.075621+00 2025-12-09 02:18:47.075625+00 81 1802*2 1802*2
2025-12-09 02:18:47.076696+00 2025-12-09 02:18:47.076701+00 82 180212 180212
2025-12-09 02:18:47.077665+00 2025-12-09 02:18:47.07767+00 83 210 210
2025-12-09 02:18:47.078632+00 2025-12-09 02:18:47.078636+00 84
2025-12-09 02:18:47.079635+00 2025-12-09 02:18:47.079639+00 85 190 190
2025-12-09 02:18:47.080483+00 2025-12-09 02:18:47.080487+00 86 200仿 200仿
2025-12-09 02:18:47.081274+00 2025-12-09 02:18:47.081277+00 87 120 120
2025-12-09 02:18:47.082081+00 2025-12-09 02:18:47.082085+00 88 M3361 M3361
2025-12-09 02:18:47.082878+00 2025-12-09 02:18:47.082881+00 89 120 120
2025-12-09 02:18:47.083652+00 2025-12-09 02:18:47.083655+00 90 105 105
2025-12-09 02:18:47.084464+00 2025-12-09 02:18:47.084468+00 91
2025-12-09 02:18:47.08524+00 2025-12-09 02:18:47.085243+00 92 130 130
2025-12-09 02:18:47.086018+00 2025-12-09 02:18:47.086022+00 93 A82110 A82110
2025-12-09 02:18:47.086804+00 2025-12-09 02:18:47.086808+00 94
2025-12-09 02:18:47.087561+00 2025-12-09 02:18:47.087565+00 95 210 210
2025-12-09 02:18:47.088334+00 2025-12-09 02:18:47.088338+00 96 120 120
2025-12-09 02:18:47.089112+00 2025-12-09 02:18:47.089116+00 97
2025-12-09 02:18:47.089989+00 2025-12-09 02:18:47.089994+00 98
2025-12-09 02:18:47.091029+00 2025-12-09 02:18:47.091033+00 99 70 70
2025-12-09 02:18:47.091997+00 2025-12-09 02:18:47.092002+00 100
2025-12-09 02:18:47.092966+00 2025-12-09 02:18:47.09297+00 101 190 190
2025-12-09 02:18:47.094096+00 2025-12-09 02:18:47.094101+00 102
2025-12-09 02:18:47.095065+00 2025-12-09 02:18:47.095069+00 103 180 180
2025-12-09 02:18:47.096033+00 2025-12-09 02:18:47.096038+00 104 190 190
2025-12-09 02:18:47.097003+00 2025-12-09 02:18:47.097007+00 105 BX锦涤直弹 BX锦涤直弹
2025-12-09 02:18:47.097982+00 2025-12-09 02:18:47.097987+00 106
2025-12-09 02:18:47.09896+00 2025-12-09 02:18:47.098965+00 107 90 90
2025-12-09 02:18:47.099927+00 2025-12-09 02:18:47.099932+00 108 90 90
2025-12-09 02:18:47.100899+00 2025-12-09 02:18:47.100904+00 109 250 250
2025-12-09 02:18:47.101866+00 2025-12-09 02:18:47.101871+00 110 75D涤氨 75D涤氨
2025-12-09 02:18:47.102853+00 2025-12-09 02:18:47.102857+00 111 239c 239c
2025-12-09 02:18:47.103825+00 2025-12-09 02:18:47.103829+00 112 237# 237#
2025-12-09 02:18:47.104798+00 2025-12-09 02:18:47.104803+00 113 C226 C226
2025-12-09 02:18:47.105769+00 2025-12-09 02:18:47.105774+00 114
2025-12-09 02:18:47.106732+00 2025-12-09 02:18:47.106736+00 115 D9734 D9734
2025-12-09 02:18:47.107735+00 2025-12-09 02:18:47.10774+00 116
2025-12-09 02:18:47.108715+00 2025-12-09 02:18:47.108719+00 117 160 160
2025-12-09 02:18:47.109682+00 2025-12-09 02:18:47.109687+00 118 120 120
2025-12-09 02:18:47.110659+00 2025-12-09 02:18:47.110663+00 119 120 120
2025-12-09 02:18:47.111627+00 2025-12-09 02:18:47.111631+00 120 190 190
2025-12-09 02:18:47.112613+00 2025-12-09 02:18:47.112617+00 121
2025-12-09 02:18:47.113598+00 2025-12-09 02:18:47.113603+00 122 120 120
2025-12-09 02:18:47.114563+00 2025-12-09 02:18:47.114567+00 123 236c提花 236c提花
2025-12-09 02:18:47.115536+00 2025-12-09 02:18:47.115541+00 124 c226提花 c226提花
2025-12-09 02:18:47.116508+00 2025-12-09 02:18:47.116512+00 125 160G70涤氨网布 160G70涤氨网布
2025-12-09 02:18:47.11747+00 2025-12-09 02:18:47.117475+00 126 广80 广80
2025-12-09 02:18:47.118415+00 2025-12-09 02:18:47.11842+00 127 120 120
2025-12-09 02:18:47.119265+00 2025-12-09 02:18:47.119269+00 128 200鹿 200鹿
2025-12-09 02:18:47.120063+00 2025-12-09 02:18:47.120067+00 129
2025-12-09 02:18:47.120859+00 2025-12-09 02:18:47.120863+00 130
2025-12-09 02:18:47.121642+00 2025-12-09 02:18:47.121645+00 131
2025-12-09 02:18:47.122424+00 2025-12-09 02:18:47.122428+00 132 3366 3366
2025-12-09 02:18:47.123213+00 2025-12-09 02:18:47.123217+00 133 9904 9904
2025-12-09 02:18:47.123988+00 2025-12-09 02:18:47.123992+00 134 186#35仿120 186#35仿120
2025-12-09 02:18:47.124761+00 2025-12-09 02:18:47.124765+00 135 C227提花 C227提花
2025-12-09 02:18:47.125523+00 2025-12-09 02:18:47.125527+00 136 120 120
2025-12-09 02:18:47.126291+00 2025-12-09 02:18:47.126295+00 137
2025-12-09 02:18:47.127068+00 2025-12-09 02:18:47.127071+00 138 c227 c227
2025-12-09 02:18:47.127854+00 2025-12-09 02:18:47.127857+00 139
2025-12-09 02:18:47.128721+00 2025-12-09 02:18:47.128725+00 140
2025-12-09 02:18:47.129525+00 2025-12-09 02:18:47.129529+00 141 120G- 120G-
2025-12-09 02:18:47.130308+00 2025-12-09 02:18:47.130312+00 142
2025-12-09 02:18:47.131093+00 2025-12-09 02:18:47.131097+00 143
2025-12-09 02:18:47.131954+00 2025-12-09 02:18:47.131959+00 144
2025-12-09 02:18:47.132964+00 2025-12-09 02:18:47.132969+00 145
2025-12-09 02:18:47.133935+00 2025-12-09 02:18:47.13394+00 146
2025-12-09 02:18:47.134919+00 2025-12-09 02:18:47.134924+00 147
2025-12-09 02:18:47.135897+00 2025-12-09 02:18:47.135902+00 148 280 280
2025-12-09 02:18:47.136875+00 2025-12-09 02:18:47.13688+00 149 130 130
2025-12-09 02:18:47.137853+00 2025-12-09 02:18:47.137858+00 150 155 155
2025-12-09 02:18:47.138815+00 2025-12-09 02:18:47.138819+00 151 280 280
2025-12-09 02:18:47.139783+00 2025-12-09 02:18:47.139787+00 152 8028# 8028#
2025-12-09 02:18:47.140765+00 2025-12-09 02:18:47.14077+00 153
2025-12-09 02:18:47.141738+00 2025-12-09 02:18:47.141743+00 154
2025-12-09 02:18:47.142698+00 2025-12-09 02:18:47.142702+00 155
2025-12-09 02:18:47.143662+00 2025-12-09 02:18:47.143667+00 156
2025-12-09 02:18:47.144635+00 2025-12-09 02:18:47.144639+00 157
2025-12-09 02:18:47.145595+00 2025-12-09 02:18:47.145599+00 158
2025-12-09 02:18:47.146565+00 2025-12-09 02:18:47.14657+00 159
2025-12-09 02:18:47.147531+00 2025-12-09 02:18:47.147535+00 160 40D涤纶网 40D涤纶网
2025-12-09 02:18:47.148495+00 2025-12-09 02:18:47.1485+00 161 180 180
2025-12-09 02:18:47.149468+00 2025-12-09 02:18:47.149473+00 162
2025-12-09 02:18:47.150431+00 2025-12-09 02:18:47.150436+00 163
2025-12-09 02:18:47.306063+00 2025-12-09 02:18:47.306066+00 327
2025-12-09 02:18:47.151386+00 2025-12-09 02:18:47.15139+00 164
2025-12-09 02:18:47.152368+00 2025-12-09 02:18:47.152372+00 165
2025-12-09 02:18:47.15334+00 2025-12-09 02:18:47.153345+00 166
2025-12-09 02:18:47.154295+00 2025-12-09 02:18:47.1543+00 167
2025-12-09 02:18:47.155263+00 2025-12-09 02:18:47.155268+00 168 50D网纱 50D网纱
2025-12-09 02:18:47.156217+00 2025-12-09 02:18:47.156221+00 169
2025-12-09 02:18:47.157178+00 2025-12-09 02:18:47.157182+00 170 5085 5085
2025-12-09 02:18:47.158141+00 2025-12-09 02:18:47.158145+00 171 40仿 40仿
2025-12-09 02:18:47.159108+00 2025-12-09 02:18:47.159112+00 172
2025-12-09 02:18:47.160083+00 2025-12-09 02:18:47.160088+00 173
2025-12-09 02:18:47.161047+00 2025-12-09 02:18:47.161051+00 174 8013 8013
2025-12-09 02:18:47.162022+00 2025-12-09 02:18:47.162026+00 175 4438# 50 4438# 50
2025-12-09 02:18:47.163012+00 2025-12-09 02:18:47.163016+00 176 40 40
2025-12-09 02:18:47.163985+00 2025-12-09 02:18:47.163989+00 177 1015 1015
2025-12-09 02:18:47.164953+00 2025-12-09 02:18:47.164957+00 178 200 200
2025-12-09 02:18:47.165917+00 2025-12-09 02:18:47.165922+00 179
2025-12-09 02:18:47.166882+00 2025-12-09 02:18:47.166886+00 180
2025-12-09 02:18:47.167845+00 2025-12-09 02:18:47.167849+00 181 800# 800#
2025-12-09 02:18:47.168813+00 2025-12-09 02:18:47.168817+00 182 260 260
2025-12-09 02:18:47.169767+00 2025-12-09 02:18:47.169772+00 183
2025-12-09 02:18:47.17074+00 2025-12-09 02:18:47.170743+00 184 230 230
2025-12-09 02:18:47.171711+00 2025-12-09 02:18:47.171715+00 185
2025-12-09 02:18:47.172675+00 2025-12-09 02:18:47.17268+00 186
2025-12-09 02:18:47.173659+00 2025-12-09 02:18:47.173663+00 187 仿 仿
2025-12-09 02:18:47.174625+00 2025-12-09 02:18:47.174629+00 188 123123123 123123123
2025-12-09 02:18:47.175595+00 2025-12-09 02:18:47.175599+00 189 250 250
2025-12-09 02:18:47.176576+00 2025-12-09 02:18:47.17658+00 190 95 95
2025-12-09 02:18:47.179104+00 2025-12-09 02:18:47.179109+00 192 123 123
2025-12-09 02:18:47.18035+00 2025-12-09 02:18:47.180355+00 193 12 12
2025-12-09 02:18:47.181594+00 2025-12-09 02:18:47.181598+00 194 11 11
2025-12-09 02:18:47.182836+00 2025-12-09 02:18:47.182841+00 195 140G牛奶丝 140G牛奶丝
2025-12-09 02:18:47.184079+00 2025-12-09 02:18:47.184083+00 196 140 140
2025-12-09 02:18:47.185347+00 2025-12-09 02:18:47.185351+00 197 130 130
2025-12-09 02:18:47.186595+00 2025-12-09 02:18:47.186599+00 198 100D双斜套 100D双斜套
2025-12-09 02:18:47.187572+00 2025-12-09 02:18:47.187576+00 199 260 260
2025-12-09 02:18:47.188536+00 2025-12-09 02:18:47.18854+00 200
2025-12-09 02:18:47.189571+00 2025-12-09 02:18:47.189575+00 201 33 33
2025-12-09 02:18:47.190557+00 2025-12-09 02:18:47.19056+00 202 230 230
2025-12-09 02:18:47.191523+00 2025-12-09 02:18:47.191528+00 203
2025-12-09 02:18:47.192496+00 2025-12-09 02:18:47.1925+00 204
2025-12-09 02:18:47.193465+00 2025-12-09 02:18:47.193469+00 205 120 120
2025-12-09 02:18:47.194448+00 2025-12-09 02:18:47.194453+00 206
2025-12-09 02:18:47.195422+00 2025-12-09 02:18:47.195427+00 207
2025-12-09 02:18:47.196387+00 2025-12-09 02:18:47.196392+00 208 250 250
2025-12-09 02:18:47.197356+00 2025-12-09 02:18:47.19736+00 209 120 120
2025-12-09 02:18:47.198236+00 2025-12-09 02:18:47.19824+00 210 100D米白加密雪纺 100D米白加密雪纺
2025-12-09 02:18:47.199063+00 2025-12-09 02:18:47.199067+00 211
2025-12-09 02:18:47.199872+00 2025-12-09 02:18:47.199876+00 212
2025-12-09 02:18:47.200707+00 2025-12-09 02:18:47.200712+00 213 40D本白涤氨网布 40D本白涤氨网布
2025-12-09 02:18:47.201516+00 2025-12-09 02:18:47.20152+00 214 T391# T391#
2025-12-09 02:18:47.20232+00 2025-12-09 02:18:47.202324+00 215 190线 190线
2025-12-09 02:18:47.203125+00 2025-12-09 02:18:47.203129+00 216 34 34
2025-12-09 02:18:47.203944+00 2025-12-09 02:18:47.203948+00 217 53 53
2025-12-09 02:18:47.204739+00 2025-12-09 02:18:47.204743+00 218 120 120
2025-12-09 02:18:47.205544+00 2025-12-09 02:18:47.205548+00 219 200 200
2025-12-09 02:18:47.206348+00 2025-12-09 02:18:47.206352+00 220 627 627
2025-12-09 02:18:47.207154+00 2025-12-09 02:18:47.207158+00 221 100D高密雪纺 100D高密雪纺
2025-12-09 02:18:47.208192+00 2025-12-09 02:18:47.208196+00 222
2025-12-09 02:18:47.209023+00 2025-12-09 02:18:47.209026+00 223
2025-12-09 02:18:47.209833+00 2025-12-09 02:18:47.209837+00 224
2025-12-09 02:18:47.210622+00 2025-12-09 02:18:47.210626+00 225 12447# 12447#
2025-12-09 02:18:47.211427+00 2025-12-09 02:18:47.211431+00 226 2M17# 2M17#
2025-12-09 02:18:47.212229+00 2025-12-09 02:18:47.212233+00 227 3 3
2025-12-09 02:18:47.213027+00 2025-12-09 02:18:47.213031+00 228 4 4
2025-12-09 02:18:47.213833+00 2025-12-09 02:18:47.213837+00 229 110 110
2025-12-09 02:18:47.214631+00 2025-12-09 02:18:47.214635+00 230 210 210
2025-12-09 02:18:47.21544+00 2025-12-09 02:18:47.215445+00 231 300 300
2025-12-09 02:18:47.216231+00 2025-12-09 02:18:47.216235+00 232
2025-12-09 02:18:47.21705+00 2025-12-09 02:18:47.217054+00 233 CC CC
2025-12-09 02:18:47.217838+00 2025-12-09 02:18:47.217842+00 234
2025-12-09 02:18:47.218643+00 2025-12-09 02:18:47.218646+00 235
2025-12-09 02:18:47.219454+00 2025-12-09 02:18:47.219458+00 236
2025-12-09 02:18:47.220252+00 2025-12-09 02:18:47.220255+00 237 Z6807#25# Z6807#25#
2025-12-09 02:18:47.221054+00 2025-12-09 02:18:47.221057+00 238 50D本白四面弹 50D本白四面弹
2025-12-09 02:18:47.221853+00 2025-12-09 02:18:47.221857+00 239 200 200
2025-12-09 02:18:47.222641+00 2025-12-09 02:18:47.222645+00 240 2/1 2/1
2025-12-09 02:18:47.223438+00 2025-12-09 02:18:47.223441+00 241 230 230
2025-12-09 02:18:47.224234+00 2025-12-09 02:18:47.224238+00 242 8070 8070
2025-12-09 02:18:47.225017+00 2025-12-09 02:18:47.225021+00 243
2025-12-09 02:18:47.225821+00 2025-12-09 02:18:47.225825+00 244 50D纬捻仿记忆 50D纬捻仿记忆
2025-12-09 02:18:47.226606+00 2025-12-09 02:18:47.226609+00 245
2025-12-09 02:18:47.227631+00 2025-12-09 02:18:47.227635+00 246
2025-12-09 02:18:47.228449+00 2025-12-09 02:18:47.228453+00 247 26070D双层四面弹 26070D双层四面弹
2025-12-09 02:18:47.229259+00 2025-12-09 02:18:47.229263+00 248 170 170
2025-12-09 02:18:47.230062+00 2025-12-09 02:18:47.230066+00 249 CEY中毛球 CEY中毛球
2025-12-09 02:18:47.230852+00 2025-12-09 02:18:47.230855+00 250 130 130
2025-12-09 02:18:47.231652+00 2025-12-09 02:18:47.231656+00 251 250 250
2025-12-09 02:18:47.232445+00 2025-12-09 02:18:47.232449+00 252
2025-12-09 02:18:47.233253+00 2025-12-09 02:18:47.233256+00 253 鹿 鹿
2025-12-09 02:18:47.234063+00 2025-12-09 02:18:47.234068+00 254 鹿 鹿
2025-12-09 02:18:47.234958+00 2025-12-09 02:18:47.234961+00 255
2025-12-09 02:18:47.235947+00 2025-12-09 02:18:47.235951+00 256 190 190
2025-12-09 02:18:47.236917+00 2025-12-09 02:18:47.236922+00 257
2025-12-09 02:18:47.237891+00 2025-12-09 02:18:47.237896+00 258 40D米白涤氨 40D米白涤氨
2025-12-09 02:18:47.238856+00 2025-12-09 02:18:47.23886+00 259 S755# S755#
2025-12-09 02:18:47.239826+00 2025-12-09 02:18:47.239831+00 260 170 170
2025-12-09 02:18:47.240808+00 2025-12-09 02:18:47.240813+00 261 170 170
2025-12-09 02:18:47.241786+00 2025-12-09 02:18:47.24179+00 262 180 180
2025-12-09 02:18:47.242745+00 2025-12-09 02:18:47.242749+00 263 120 120
2025-12-09 02:18:47.243715+00 2025-12-09 02:18:47.243719+00 264 170 170
2025-12-09 02:18:47.244683+00 2025-12-09 02:18:47.244687+00 265 TR417 TR417
2025-12-09 02:18:47.245653+00 2025-12-09 02:18:47.245657+00 266 180 180
2025-12-09 02:18:47.246621+00 2025-12-09 02:18:47.246626+00 267
2025-12-09 02:18:47.247589+00 2025-12-09 02:18:47.247593+00 268
2025-12-09 02:18:47.248578+00 2025-12-09 02:18:47.248582+00 269 400 400
2025-12-09 02:18:47.249555+00 2025-12-09 02:18:47.24956+00 270
2025-12-09 02:18:47.250513+00 2025-12-09 02:18:47.250517+00 271 140 140
2025-12-09 02:18:47.251499+00 2025-12-09 02:18:47.251503+00 272
2025-12-09 02:18:47.252477+00 2025-12-09 02:18:47.252481+00 273 110 110
2025-12-09 02:18:47.253449+00 2025-12-09 02:18:47.253453+00 274
2025-12-09 02:18:47.254415+00 2025-12-09 02:18:47.254419+00 275 1057# 1057#
2025-12-09 02:18:47.255384+00 2025-12-09 02:18:47.255389+00 276 130 130
2025-12-09 02:18:47.256356+00 2025-12-09 02:18:47.256361+00 277 651# 651#
2025-12-09 02:18:47.257316+00 2025-12-09 02:18:47.25732+00 278 130 130
2025-12-09 02:18:47.258283+00 2025-12-09 02:18:47.258288+00 279 200 200
2025-12-09 02:18:47.259243+00 2025-12-09 02:18:47.259247+00 280 M3361# M3361#
2025-12-09 02:18:47.260201+00 2025-12-09 02:18:47.260205+00 281
2025-12-09 02:18:47.261155+00 2025-12-09 02:18:47.261159+00 282
2025-12-09 02:18:47.262124+00 2025-12-09 02:18:47.262129+00 283 830 830
2025-12-09 02:18:47.263109+00 2025-12-09 02:18:47.263114+00 284 250 250
2025-12-09 02:18:47.264082+00 2025-12-09 02:18:47.264086+00 285
2025-12-09 02:18:47.265048+00 2025-12-09 02:18:47.265053+00 286 250 250
2025-12-09 02:18:47.266027+00 2025-12-09 02:18:47.266032+00 287 115 115
2025-12-09 02:18:47.267004+00 2025-12-09 02:18:47.267009+00 288
2025-12-09 02:18:47.26798+00 2025-12-09 02:18:47.267984+00 289
2025-12-09 02:18:47.268956+00 2025-12-09 02:18:47.26896+00 290
2025-12-09 02:18:47.269926+00 2025-12-09 02:18:47.269931+00 291
2025-12-09 02:18:47.270905+00 2025-12-09 02:18:47.270909+00 292
2025-12-09 02:18:47.271882+00 2025-12-09 02:18:47.271886+00 293 40D本白涤安 40D本白涤安
2025-12-09 02:18:47.272865+00 2025-12-09 02:18:47.272869+00 294 20D本白涤安 20D本白涤安
2025-12-09 02:18:47.273846+00 2025-12-09 02:18:47.27385+00 295
2025-12-09 02:18:47.274821+00 2025-12-09 02:18:47.274826+00 296 200 200
2025-12-09 02:18:47.275791+00 2025-12-09 02:18:47.275795+00 297 亿G34 亿G34
2025-12-09 02:18:47.276763+00 2025-12-09 02:18:47.276768+00 298 120 120
2025-12-09 02:18:47.277735+00 2025-12-09 02:18:47.277739+00 299 130 130
2025-12-09 02:18:47.278728+00 2025-12-09 02:18:47.278732+00 300 180 180
2025-12-09 02:18:47.279692+00 2025-12-09 02:18:47.279697+00 301
2025-12-09 02:18:47.280662+00 2025-12-09 02:18:47.280666+00 302 230 230
2025-12-09 02:18:47.281629+00 2025-12-09 02:18:47.281633+00 303 200 200
2025-12-09 02:18:47.282605+00 2025-12-09 02:18:47.282609+00 304 200 200
2025-12-09 02:18:47.283572+00 2025-12-09 02:18:47.283576+00 305 CC提花布 CC提花布
2025-12-09 02:18:47.284559+00 2025-12-09 02:18:47.284563+00 306
2025-12-09 02:18:47.285528+00 2025-12-09 02:18:47.285532+00 307 仿 仿
2025-12-09 02:18:47.286492+00 2025-12-09 02:18:47.286496+00 308
2025-12-09 02:18:47.287468+00 2025-12-09 02:18:47.287472+00 309
2025-12-09 02:18:47.288428+00 2025-12-09 02:18:47.288432+00 310 140 140
2025-12-09 02:18:47.289383+00 2025-12-09 02:18:47.289388+00 311 140 140
2025-12-09 02:18:47.290355+00 2025-12-09 02:18:47.29036+00 312
2025-12-09 02:18:47.291313+00 2025-12-09 02:18:47.291317+00 313 120 120
2025-12-09 02:18:47.292282+00 2025-12-09 02:18:47.292286+00 314 110100D 110100D
2025-12-09 02:18:47.293243+00 2025-12-09 02:18:47.293247+00 315 120100D 120100D
2025-12-09 02:18:47.294206+00 2025-12-09 02:18:47.29421+00 316
2025-12-09 02:18:47.295172+00 2025-12-09 02:18:47.295176+00 317 120D 120D
2025-12-09 02:18:47.296141+00 2025-12-09 02:18:47.296145+00 318
2025-12-09 02:18:47.297379+00 2025-12-09 02:18:47.297383+00 319 120 120
2025-12-09 02:18:47.298604+00 2025-12-09 02:18:47.298608+00 320
2025-12-09 02:18:47.299747+00 2025-12-09 02:18:47.299751+00 321
2025-12-09 02:18:47.300861+00 2025-12-09 02:18:47.300865+00 322
2025-12-09 02:18:47.301969+00 2025-12-09 02:18:47.301973+00 323 100 100
2025-12-09 02:18:47.303049+00 2025-12-09 02:18:47.303053+00 324
2025-12-09 02:18:47.30417+00 2025-12-09 02:18:47.304174+00 325 75D双面四面弹 75D双面四面弹
2025-12-09 02:18:47.305245+00 2025-12-09 02:18:47.305249+00 326 250 250
2025-12-09 02:18:47.306855+00 2025-12-09 02:18:47.306859+00 328
2025-12-09 02:18:47.307673+00 2025-12-09 02:18:47.307677+00 329 B乐丽丝斜软 B乐丽丝斜软
2025-12-09 02:18:47.308481+00 2025-12-09 02:18:47.308485+00 330
2025-12-09 02:18:47.309279+00 2025-12-09 02:18:47.309283+00 331
2025-12-09 02:18:47.310094+00 2025-12-09 02:18:47.310098+00 332 180 180
2025-12-09 02:18:47.310904+00 2025-12-09 02:18:47.310908+00 333 100D四米面弹白印 100D四米面弹白印
2025-12-09 02:18:47.311741+00 2025-12-09 02:18:47.311745+00 334 160 160
2025-12-09 02:18:47.312726+00 2025-12-09 02:18:47.312731+00 335 180 180
2025-12-09 02:18:47.313694+00 2025-12-09 02:18:47.313698+00 336
2025-12-09 02:18:47.31466+00 2025-12-09 02:18:47.314664+00 337
2025-12-09 02:18:47.315635+00 2025-12-09 02:18:47.315639+00 338
2025-12-09 02:18:47.316599+00 2025-12-09 02:18:47.316604+00 339
2025-12-09 02:18:47.31756+00 2025-12-09 02:18:47.317565+00 340
2025-12-09 02:18:47.318535+00 2025-12-09 02:18:47.318539+00 341 250 250
2025-12-09 02:18:47.341539+00 2025-12-09 02:18:47.341544+00 342
2025-12-09 02:18:47.342514+00 2025-12-09 02:18:47.342519+00 343
2025-12-09 02:18:47.343478+00 2025-12-09 02:18:47.343483+00 344
2025-12-09 02:18:47.344439+00 2025-12-09 02:18:47.344443+00 345
2025-12-09 02:18:47.345413+00 2025-12-09 02:18:47.345417+00 346 230 230
2025-12-09 02:18:47.346369+00 2025-12-09 02:18:47.346373+00 347 230G单磨 230G单磨
2025-12-09 02:18:47.347339+00 2025-12-09 02:18:47.347343+00 348
2025-12-09 02:18:47.348305+00 2025-12-09 02:18:47.348309+00 349 120 120
2025-12-09 02:18:47.349272+00 2025-12-09 02:18:47.349276+00 350
2025-12-09 02:18:47.350226+00 2025-12-09 02:18:47.350231+00 351
2025-12-09 02:18:47.351183+00 2025-12-09 02:18:47.351187+00 352 40d涤安 40d涤安
2025-12-09 02:18:47.352146+00 2025-12-09 02:18:47.35215+00 353 S746 S746
2025-12-09 02:18:47.353121+00 2025-12-09 02:18:47.353125+00 354
2025-12-09 02:18:47.354087+00 2025-12-09 02:18:47.354091+00 355 160 160
2025-12-09 02:18:47.355054+00 2025-12-09 02:18:47.355058+00 356 120 120
2025-12-09 02:18:47.356034+00 2025-12-09 02:18:47.356038+00 357
2025-12-09 02:18:47.356999+00 2025-12-09 02:18:47.357004+00 358
2025-12-09 02:18:47.357963+00 2025-12-09 02:18:47.357967+00 359
2025-12-09 02:18:47.358936+00 2025-12-09 02:18:47.35894+00 360
2025-12-09 02:18:47.359898+00 2025-12-09 02:18:47.359903+00 361 1020 1020
2025-12-09 02:18:47.36087+00 2025-12-09 02:18:47.360874+00 362 200 200
2025-12-09 02:18:47.361851+00 2025-12-09 02:18:47.361856+00 363 TR面料 TR面料
2025-12-09 02:18:47.362816+00 2025-12-09 02:18:47.36282+00 364 16仿 16仿
2025-12-09 02:18:47.363788+00 2025-12-09 02:18:47.363793+00 365
2025-12-09 02:18:47.364855+00 2025-12-09 02:18:47.36486+00 366 140 140
2025-12-09 02:18:47.365823+00 2025-12-09 02:18:47.365828+00 367 线 线
2025-12-09 02:18:47.366783+00 2025-12-09 02:18:47.366788+00 368 120 120
2025-12-09 02:18:47.36776+00 2025-12-09 02:18:47.367764+00 369 230 230
2025-12-09 02:18:47.368727+00 2025-12-09 02:18:47.368731+00 370
2025-12-09 02:18:47.369671+00 2025-12-09 02:18:47.369675+00 371 1770 1770
2025-12-09 02:18:47.370653+00 2025-12-09 02:18:47.370657+00 372 仿 仿
2025-12-09 02:18:47.371629+00 2025-12-09 02:18:47.371633+00 373
2025-12-09 02:18:47.372585+00 2025-12-09 02:18:47.37259+00 374
2025-12-09 02:18:47.373561+00 2025-12-09 02:18:47.373565+00 375
2025-12-09 02:18:47.374522+00 2025-12-09 02:18:47.374526+00 376 230 230
2025-12-09 02:18:47.375498+00 2025-12-09 02:18:47.375502+00 377
2025-12-09 02:18:47.376468+00 2025-12-09 02:18:47.376472+00 378 160 160
2025-12-09 02:18:47.377417+00 2025-12-09 02:18:47.377421+00 379
2025-12-09 02:18:47.378383+00 2025-12-09 02:18:47.378388+00 380 200 200
2025-12-09 02:18:47.379348+00 2025-12-09 02:18:47.379352+00 381 200 200
2025-12-09 02:18:47.380309+00 2025-12-09 02:18:47.380313+00 382 120 120
2025-12-09 02:18:47.381284+00 2025-12-09 02:18:47.381288+00 383
2025-12-09 02:18:47.382243+00 2025-12-09 02:18:47.382248+00 384 160仿 160仿
2025-12-09 02:18:47.383212+00 2025-12-09 02:18:47.383217+00 385 135 135
2025-12-09 02:18:47.384165+00 2025-12-09 02:18:47.384169+00 386 200 200
2025-12-09 02:18:47.385122+00 2025-12-09 02:18:47.385127+00 387 200 200
2025-12-09 02:18:47.386099+00 2025-12-09 02:18:47.386103+00 388
2025-12-09 02:18:47.387071+00 2025-12-09 02:18:47.387076+00 389 160 160
2025-12-09 02:18:47.388131+00 2025-12-09 02:18:47.388135+00 390
2025-12-09 02:18:47.389101+00 2025-12-09 02:18:47.389105+00 391
2025-12-09 02:18:47.390071+00 2025-12-09 02:18:47.390075+00 392
2025-12-09 02:18:47.391035+00 2025-12-09 02:18:47.39104+00 393
2025-12-09 02:18:47.392013+00 2025-12-09 02:18:47.392018+00 394
2025-12-09 02:18:47.392971+00 2025-12-09 02:18:47.392975+00 395
2025-12-09 02:18:47.393941+00 2025-12-09 02:18:47.393945+00 396
2025-12-09 02:18:47.394914+00 2025-12-09 02:18:47.394918+00 397 120 120
2025-12-09 02:18:47.395882+00 2025-12-09 02:18:47.395886+00 398 230 230
2025-12-09 02:18:47.396844+00 2025-12-09 02:18:47.396849+00 399 260 260
2025-12-09 02:18:47.397817+00 2025-12-09 02:18:47.397822+00 400 170 170
2025-12-09 02:18:47.398723+00 2025-12-09 02:18:47.398727+00 401 180 180
2025-12-09 02:18:47.399543+00 2025-12-09 02:18:47.399546+00 402 260 260
2025-12-09 02:18:47.400371+00 2025-12-09 02:18:47.400375+00 403
2025-12-09 02:18:47.401193+00 2025-12-09 02:18:47.401197+00 404 160 160
2025-12-09 02:18:47.402005+00 2025-12-09 02:18:47.402009+00 405 8064 8064
2025-12-09 02:18:47.402821+00 2025-12-09 02:18:47.402825+00 406
2025-12-09 02:18:47.403633+00 2025-12-09 02:18:47.403637+00 407
2025-12-09 02:18:47.404441+00 2025-12-09 02:18:47.404445+00 408 仿 仿
2025-12-09 02:18:47.405322+00 2025-12-09 02:18:47.405327+00 409 120D米白四面弹 120D米白四面弹
2025-12-09 02:18:47.406954+00 2025-12-09 02:18:47.406958+00 411
2025-12-09 02:18:47.407761+00 2025-12-09 02:18:47.407764+00 412
2025-12-09 02:18:47.408569+00 2025-12-09 02:18:47.408573+00 413
2025-12-09 02:18:47.409476+00 2025-12-09 02:18:47.40948+00 414
2025-12-09 02:18:47.410291+00 2025-12-09 02:18:47.410295+00 415
2025-12-09 02:18:47.411077+00 2025-12-09 02:18:47.411081+00 416
2025-12-09 02:18:47.411877+00 2025-12-09 02:18:47.411881+00 417
2025-12-09 02:18:47.412673+00 2025-12-09 02:18:47.412677+00 418 170 170
2025-12-09 02:18:47.413529+00 2025-12-09 02:18:47.413533+00 419 线 线
2025-12-09 02:18:47.414343+00 2025-12-09 02:18:47.414347+00 420 40D涤纶 40D涤纶
2025-12-09 02:18:47.415151+00 2025-12-09 02:18:47.415155+00 421 230 230
2025-12-09 02:18:47.416034+00 2025-12-09 02:18:47.416039+00 422 s409 s409
2025-12-09 02:18:47.417024+00 2025-12-09 02:18:47.417028+00 423
2025-12-09 02:18:47.417988+00 2025-12-09 02:18:47.417992+00 424
2025-12-09 02:18:47.418951+00 2025-12-09 02:18:47.418955+00 425
2025-12-09 02:18:47.419916+00 2025-12-09 02:18:47.41992+00 426 S66 S66
2025-12-09 02:18:47.420858+00 2025-12-09 02:18:47.420862+00 427 8 8
2025-12-09 02:18:47.421799+00 2025-12-09 02:18:47.421803+00 428 634 634
2025-12-09 02:18:47.422748+00 2025-12-09 02:18:47.422752+00 429 绿 绿
2025-12-09 02:18:47.423688+00 2025-12-09 02:18:47.423692+00 430
2025-12-09 02:18:47.424639+00 2025-12-09 02:18:47.424644+00 431 95 95
2025-12-09 02:18:47.42558+00 2025-12-09 02:18:47.425584+00 432 100D120克面弹 100D120克面弹
2025-12-09 02:18:47.426537+00 2025-12-09 02:18:47.426542+00 433
2025-12-09 02:18:47.42748+00 2025-12-09 02:18:47.427485+00 434 7754 7754
2025-12-09 02:18:47.428415+00 2025-12-09 02:18:47.428419+00 435 2*2 2*2
2025-12-09 02:18:47.429372+00 2025-12-09 02:18:47.429376+00 436 230 230
2025-12-09 02:18:47.430322+00 2025-12-09 02:18:47.430327+00 437 125 125
2025-12-09 02:18:47.432433+00 2025-12-09 02:18:47.432437+00 439 200g牛奶丝拉架 200g牛奶丝拉架
2025-12-09 02:18:47.433376+00 2025-12-09 02:18:47.43338+00 440 130B 130B
2025-12-09 02:18:47.434319+00 2025-12-09 02:18:47.434323+00 441
2025-12-09 02:18:47.435261+00 2025-12-09 02:18:47.435265+00 442 135 135
2025-12-09 02:18:47.436206+00 2025-12-09 02:18:47.436211+00 443
2025-12-09 02:18:47.437142+00 2025-12-09 02:18:47.437146+00 444 S601 S601
2025-12-09 02:18:47.438104+00 2025-12-09 02:18:47.438108+00 445 220 220
2025-12-09 02:18:47.439065+00 2025-12-09 02:18:47.439069+00 446 10040D涤氨 10040D涤氨
2025-12-09 02:18:47.440193+00 2025-12-09 02:18:47.440197+00 447 180 180
2025-12-09 02:18:47.441269+00 2025-12-09 02:18:47.441272+00 448
2025-12-09 02:18:47.442343+00 2025-12-09 02:18:47.442347+00 449
2025-12-09 02:18:47.443397+00 2025-12-09 02:18:47.443401+00 450
2025-12-09 02:18:47.444449+00 2025-12-09 02:18:47.444453+00 451 120 120
2025-12-09 02:18:47.445522+00 2025-12-09 02:18:47.445526+00 452
2025-12-09 02:18:47.446569+00 2025-12-09 02:18:47.446573+00 453
2025-12-09 02:18:47.447629+00 2025-12-09 02:18:47.447633+00 454 180 180
2025-12-09 02:18:47.448392+00 2025-12-09 02:18:47.448395+00 455 940 940
2025-12-09 02:18:47.449153+00 2025-12-09 02:18:47.449156+00 456
2025-12-09 02:18:47.44996+00 2025-12-09 02:18:47.449963+00 457
2025-12-09 02:18:47.45073+00 2025-12-09 02:18:47.450733+00 458 S647-1 S647-1
2025-12-09 02:18:47.451507+00 2025-12-09 02:18:47.451511+00 459 8040#100D斜纹四面弹 8040#100D斜纹四面弹
2025-12-09 02:18:47.452275+00 2025-12-09 02:18:47.452278+00 460
2025-12-09 02:18:47.453043+00 2025-12-09 02:18:47.453047+00 461 8065 8065
2025-12-09 02:18:47.453919+00 2025-12-09 02:18:47.453922+00 462 135 135
2025-12-09 02:18:47.454683+00 2025-12-09 02:18:47.454687+00 463 192 192
2025-12-09 02:18:47.455462+00 2025-12-09 02:18:47.455466+00 464
2025-12-09 02:18:47.456226+00 2025-12-09 02:18:47.456229+00 465
2025-12-09 02:18:47.457011+00 2025-12-09 02:18:47.457015+00 466 120 120
2025-12-09 02:18:47.457817+00 2025-12-09 02:18:47.457821+00 467 230 230
2025-12-09 02:18:47.458608+00 2025-12-09 02:18:47.458613+00 468 G21 G21
2025-12-09 02:18:47.459393+00 2025-12-09 02:18:47.459397+00 469 仿 仿
2025-12-09 02:18:47.460146+00 2025-12-09 02:18:47.460149+00 470
2025-12-09 02:18:47.460936+00 2025-12-09 02:18:47.46094+00 471 仿 仿
2025-12-09 02:18:47.461697+00 2025-12-09 02:18:47.4617+00 472 仿 仿
2025-12-09 02:18:47.462455+00 2025-12-09 02:18:47.462459+00 473
2025-12-09 02:18:47.463245+00 2025-12-09 02:18:47.463248+00 474
2025-12-09 02:18:47.464005+00 2025-12-09 02:18:47.464008+00 475
2025-12-09 02:18:47.464762+00 2025-12-09 02:18:47.464766+00 476 M147米白底 M147米白底
2025-12-09 02:18:47.465538+00 2025-12-09 02:18:47.465542+00 477
2025-12-09 02:18:47.466289+00 2025-12-09 02:18:47.466292+00 478
2025-12-09 02:18:47.46706+00 2025-12-09 02:18:47.467064+00 479
2025-12-09 02:18:47.467822+00 2025-12-09 02:18:47.467825+00 480
2025-12-09 02:18:47.468567+00 2025-12-09 02:18:47.468571+00 481 6009B 6009B
2025-12-09 02:18:47.469355+00 2025-12-09 02:18:47.469358+00 482 40D--100 40D--100
2025-12-09 02:18:47.470107+00 2025-12-09 02:18:47.47011+00 483 100 100
2025-12-09 02:18:47.470882+00 2025-12-09 02:18:47.470886+00 484 40D涤安网布 40D涤安网布
2025-12-09 02:18:47.471652+00 2025-12-09 02:18:47.471655+00 485
2025-12-09 02:18:47.472708+00 2025-12-09 02:18:47.472713+00 486 218 218
2025-12-09 02:18:47.473649+00 2025-12-09 02:18:47.473653+00 487 100 100
2025-12-09 02:18:47.4746+00 2025-12-09 02:18:47.474604+00 488
2025-12-09 02:18:47.475549+00 2025-12-09 02:18:47.475554+00 489 仿 仿
2025-12-09 02:18:47.476507+00 2025-12-09 02:18:47.476512+00 490 仿 仿
2025-12-09 02:18:47.477448+00 2025-12-09 02:18:47.477452+00 491 92 92
2025-12-09 02:18:47.478401+00 2025-12-09 02:18:47.478405+00 492 仿() 仿()
2025-12-09 02:18:47.479357+00 2025-12-09 02:18:47.479361+00 493 180 180
2025-12-09 02:18:47.481275+00 2025-12-09 02:18:47.481279+00 495
2025-12-09 02:18:47.482214+00 2025-12-09 02:18:47.482218+00 496
2025-12-09 02:18:47.483158+00 2025-12-09 02:18:47.483163+00 497
2025-12-09 02:18:47.484101+00 2025-12-09 02:18:47.484105+00 498 150 150
2025-12-09 02:18:47.485037+00 2025-12-09 02:18:47.485041+00 499
2025-12-09 02:18:47.486+00 2025-12-09 02:18:47.486004+00 500
2025-12-09 02:18:47.486951+00 2025-12-09 02:18:47.486956+00 501 180g牛奶丝拉架 180g牛奶丝拉架
2025-12-09 02:18:47.487902+00 2025-12-09 02:18:47.487906+00 502
2025-12-09 02:18:47.488863+00 2025-12-09 02:18:47.488867+00 503
2025-12-09 02:18:47.489814+00 2025-12-09 02:18:47.489818+00 504 D256提花 D256提花
2025-12-09 02:18:47.490769+00 2025-12-09 02:18:47.490773+00 505 仿 仿
2025-12-09 02:18:47.491709+00 2025-12-09 02:18:47.491713+00 506 仿 仿
2025-12-09 02:18:47.492646+00 2025-12-09 02:18:47.492651+00 507 S746 S746
2025-12-09 02:18:47.493597+00 2025-12-09 02:18:47.493601+00 508 618 618
2025-12-09 02:18:47.49455+00 2025-12-09 02:18:47.494554+00 509 120 120
2025-12-09 02:18:47.495734+00 2025-12-09 02:18:47.495738+00 510 95 95
2025-12-09 02:18:47.497585+00 2025-12-09 02:18:47.49759+00 512
2025-12-09 02:18:47.498402+00 2025-12-09 02:18:47.498406+00 513
2025-12-09 02:18:47.499176+00 2025-12-09 02:18:47.49918+00 514
2025-12-09 02:18:47.499959+00 2025-12-09 02:18:47.499962+00 515 190 190
2025-12-09 02:18:47.500732+00 2025-12-09 02:18:47.500736+00 516
2025-12-09 02:18:47.501523+00 2025-12-09 02:18:47.501526+00 517
2025-12-09 02:18:47.502276+00 2025-12-09 02:18:47.502279+00 518
2025-12-09 02:18:47.503048+00 2025-12-09 02:18:47.503052+00 519 90 90
2025-12-09 02:18:47.503822+00 2025-12-09 02:18:47.503826+00 520 3017 3017
2025-12-09 02:18:47.504589+00 2025-12-09 02:18:47.504593+00 521 18075D牛奶丝 18075D牛奶丝
2025-12-09 02:18:47.505368+00 2025-12-09 02:18:47.505372+00 522 17575D双层四面弹 17575D双层四面弹
2025-12-09 02:18:47.506151+00 2025-12-09 02:18:47.506155+00 523
2025-12-09 02:18:47.506927+00 2025-12-09 02:18:47.50693+00 524
2025-12-09 02:18:47.5077+00 2025-12-09 02:18:47.507707+00 525
2025-12-09 02:18:47.50849+00 2025-12-09 02:18:47.508493+00 526
2025-12-09 02:18:47.509244+00 2025-12-09 02:18:47.509247+00 527 210 210
2025-12-09 02:18:47.51001+00 2025-12-09 02:18:47.510014+00 528 100 100
2025-12-09 02:18:47.510786+00 2025-12-09 02:18:47.51079+00 529 8043 8043
2025-12-09 02:18:47.511548+00 2025-12-09 02:18:47.511551+00 530 38# 38#
2025-12-09 02:18:47.512328+00 2025-12-09 02:18:47.512332+00 531
2025-12-09 02:18:47.513095+00 2025-12-09 02:18:47.513099+00 532
2025-12-09 02:18:47.513848+00 2025-12-09 02:18:47.513852+00 533 101 101
2025-12-09 02:18:47.514714+00 2025-12-09 02:18:47.514717+00 534 148 148
2025-12-09 02:18:47.515476+00 2025-12-09 02:18:47.515479+00 535 121 121
2025-12-09 02:18:47.516224+00 2025-12-09 02:18:47.516227+00 536
2025-12-09 02:18:47.517094+00 2025-12-09 02:18:47.517099+00 537
2025-12-09 02:18:47.517933+00 2025-12-09 02:18:47.517937+00 538
2025-12-09 02:18:47.518732+00 2025-12-09 02:18:47.518736+00 539 8697 8697
2025-12-09 02:18:47.519544+00 2025-12-09 02:18:47.519548+00 540
2025-12-09 02:18:47.520345+00 2025-12-09 02:18:47.520348+00 541 7791 7791
2025-12-09 02:18:47.521156+00 2025-12-09 02:18:47.52116+00 542 654 654
2025-12-09 02:18:47.521957+00 2025-12-09 02:18:47.521961+00 543
2025-12-09 02:18:47.522763+00 2025-12-09 02:18:47.522768+00 544
2025-12-09 02:18:47.523561+00 2025-12-09 02:18:47.523565+00 545
2025-12-09 02:18:47.524377+00 2025-12-09 02:18:47.524381+00 546 75D米白双面平板布 75D米白双面平板布
2025-12-09 02:18:47.525166+00 2025-12-09 02:18:47.52517+00 547 130 130
2025-12-09 02:18:47.525973+00 2025-12-09 02:18:47.525977+00 548
2025-12-09 02:18:47.526785+00 2025-12-09 02:18:47.526789+00 549 1767 1767
2025-12-09 02:18:47.527583+00 2025-12-09 02:18:47.527587+00 550 仿 仿
2025-12-09 02:18:47.528394+00 2025-12-09 02:18:47.528399+00 551 956 956
2025-12-09 02:18:47.529195+00 2025-12-09 02:18:47.529199+00 552 940 940
2025-12-09 02:18:47.529998+00 2025-12-09 02:18:47.530002+00 553
2025-12-09 02:18:47.530801+00 2025-12-09 02:18:47.530805+00 554 Y598 Y598
2025-12-09 02:18:47.531602+00 2025-12-09 02:18:47.531606+00 555 908 908
2025-12-09 02:18:47.532406+00 2025-12-09 02:18:47.53241+00 556 75D米白双面印 75D米白双面印
2025-12-09 02:18:47.533193+00 2025-12-09 02:18:47.533197+00 557 667# 667#
2025-12-09 02:18:47.534069+00 2025-12-09 02:18:47.534072+00 558 110 110
2025-12-09 02:18:47.534862+00 2025-12-09 02:18:47.534866+00 559 120 120
2025-12-09 02:18:47.535662+00 2025-12-09 02:18:47.535665+00 560
2025-12-09 02:18:47.536451+00 2025-12-09 02:18:47.536455+00 561 线 线
2025-12-09 02:18:47.537244+00 2025-12-09 02:18:47.537248+00 562
2025-12-09 02:18:47.538043+00 2025-12-09 02:18:47.538047+00 563
2025-12-09 02:18:47.538866+00 2025-12-09 02:18:47.538869+00 564 120 120
2025-12-09 02:18:47.539654+00 2025-12-09 02:18:47.539658+00 565 仿35 仿35
2025-12-09 02:18:47.540464+00 2025-12-09 02:18:47.540467+00 566 7725 7725
2025-12-09 02:18:47.541256+00 2025-12-09 02:18:47.54126+00 567 S618 S618
2025-12-09 02:18:47.542059+00 2025-12-09 02:18:47.542063+00 568 230 230
2025-12-09 02:18:47.542858+00 2025-12-09 02:18:47.542862+00 569
2025-12-09 02:18:47.543646+00 2025-12-09 02:18:47.54365+00 570 250 250
2025-12-09 02:18:47.544463+00 2025-12-09 02:18:47.544467+00 571 100D四面弹120克 100D四面弹120克
2025-12-09 02:18:47.545258+00 2025-12-09 02:18:47.545261+00 572 200 200
2025-12-09 02:18:47.546065+00 2025-12-09 02:18:47.546069+00 573 200 200
2025-12-09 02:18:47.546878+00 2025-12-09 02:18:47.546881+00 574 s451 s451
2025-12-09 02:18:47.547952+00 2025-12-09 02:18:47.547955+00 575
2025-12-09 02:18:47.54904+00 2025-12-09 02:18:47.549044+00 576 596# 596#
2025-12-09 02:18:47.550119+00 2025-12-09 02:18:47.550123+00 577 7756 7756
2025-12-09 02:18:47.551208+00 2025-12-09 02:18:47.551211+00 578
2025-12-09 02:18:47.552286+00 2025-12-09 02:18:47.55229+00 579
2025-12-09 02:18:47.553364+00 2025-12-09 02:18:47.553368+00 580 579 579
2025-12-09 02:18:47.554452+00 2025-12-09 02:18:47.554455+00 581
2025-12-09 02:18:47.555531+00 2025-12-09 02:18:47.555535+00 582 2X2坑条蓝光大白 2X2坑条蓝光大白
2025-12-09 02:18:47.557159+00 2025-12-09 02:18:47.557162+00 584 170仿 170仿
2025-12-09 02:18:47.557962+00 2025-12-09 02:18:47.557966+00 585 120仿 120仿
2025-12-09 02:18:47.55877+00 2025-12-09 02:18:47.558774+00 586
2025-12-09 02:18:47.559564+00 2025-12-09 02:18:47.559568+00 587 200 200
2025-12-09 02:18:47.560366+00 2025-12-09 02:18:47.56037+00 588 156 156
2025-12-09 02:18:47.561165+00 2025-12-09 02:18:47.561169+00 589
2025-12-09 02:18:47.561957+00 2025-12-09 02:18:47.56196+00 590
2025-12-09 02:18:47.562834+00 2025-12-09 02:18:47.562838+00 591
2025-12-09 02:18:47.564125+00 2025-12-09 02:18:47.56413+00 592
2025-12-09 02:18:47.56508+00 2025-12-09 02:18:47.565084+00 593
2025-12-09 02:18:47.567029+00 2025-12-09 02:18:47.567033+00 595
2025-12-09 02:18:47.567995+00 2025-12-09 02:18:47.567999+00 596 90 90
2025-12-09 02:18:47.568977+00 2025-12-09 02:18:47.568981+00 597 仿线 仿线
2025-12-09 02:18:47.569941+00 2025-12-09 02:18:47.569945+00 598 230 230
2025-12-09 02:18:47.570918+00 2025-12-09 02:18:47.570922+00 599 仿 仿
2025-12-09 02:18:47.571893+00 2025-12-09 02:18:47.571898+00 600 40D本白涤氨 40D本白涤氨
2025-12-09 02:18:47.572853+00 2025-12-09 02:18:47.572857+00 601 100 100
2025-12-09 02:18:47.573832+00 2025-12-09 02:18:47.573836+00 602
2025-12-09 02:18:47.574804+00 2025-12-09 02:18:47.574808+00 603 9005 9005
2025-12-09 02:18:47.575774+00 2025-12-09 02:18:47.575778+00 604
2025-12-09 02:18:47.576755+00 2025-12-09 02:18:47.57676+00 605
2025-12-09 02:18:47.577876+00 2025-12-09 02:18:47.577881+00 606
2025-12-09 02:18:47.578843+00 2025-12-09 02:18:47.578848+00 607 185 185
2025-12-09 02:18:47.579809+00 2025-12-09 02:18:47.579813+00 608 160 160
2025-12-09 02:18:47.580765+00 2025-12-09 02:18:47.58077+00 609 1341 1341
2025-12-09 02:18:47.581739+00 2025-12-09 02:18:47.581744+00 610 6688 6688
2025-12-09 02:18:47.582718+00 2025-12-09 02:18:47.582723+00 611 95 95
2025-12-09 02:18:47.583677+00 2025-12-09 02:18:47.583681+00 612
2025-12-09 02:18:47.584652+00 2025-12-09 02:18:47.584656+00 613
2025-12-09 02:18:47.585616+00 2025-12-09 02:18:47.585621+00 614 160 160
2025-12-09 02:18:47.586578+00 2025-12-09 02:18:47.586582+00 615
2025-12-09 02:18:47.587542+00 2025-12-09 02:18:47.587546+00 616
2025-12-09 02:18:47.588511+00 2025-12-09 02:18:47.588516+00 617
2025-12-09 02:18:47.589474+00 2025-12-09 02:18:47.589478+00 618
2025-12-09 02:18:47.590445+00 2025-12-09 02:18:47.59045+00 619 40D涤安网 40D涤安网
2025-12-09 02:18:47.591412+00 2025-12-09 02:18:47.591417+00 620
2025-12-09 02:18:47.592383+00 2025-12-09 02:18:47.592387+00 621 8023B 8023B
2025-12-09 02:18:47.593347+00 2025-12-09 02:18:47.593352+00 622
2025-12-09 02:18:47.594297+00 2025-12-09 02:18:47.594302+00 623
2025-12-09 02:18:47.595255+00 2025-12-09 02:18:47.595259+00 624
2025-12-09 02:18:47.596233+00 2025-12-09 02:18:47.596238+00 625 3060 3060
2025-12-09 02:18:47.597205+00 2025-12-09 02:18:47.597209+00 626
2025-12-09 02:18:47.598172+00 2025-12-09 02:18:47.598177+00 627
2025-12-09 02:18:47.59916+00 2025-12-09 02:18:47.599164+00 628 19385 19385
2025-12-09 02:18:47.601173+00 2025-12-09 02:18:47.601178+00 630 200G双磨牛奶丝 200G双磨牛奶丝
2025-12-09 02:18:47.602124+00 2025-12-09 02:18:47.602128+00 631 75D全光里布 75D全光里布
2025-12-09 02:18:47.603102+00 2025-12-09 02:18:47.603106+00 632
2025-12-09 02:18:47.604069+00 2025-12-09 02:18:47.604073+00 633 仿 仿
2025-12-09 02:18:47.605044+00 2025-12-09 02:18:47.605049+00 634
2025-12-09 02:18:47.60601+00 2025-12-09 02:18:47.606015+00 635
2025-12-09 02:18:47.606969+00 2025-12-09 02:18:47.606973+00 636 651ma麻棉 651ma麻棉
2025-12-09 02:18:47.607948+00 2025-12-09 02:18:47.607953+00 637
2025-12-09 02:18:47.608909+00 2025-12-09 02:18:47.608914+00 638 9067 9067
2025-12-09 02:18:47.609871+00 2025-12-09 02:18:47.609876+00 639 667 667
2025-12-09 02:18:47.610836+00 2025-12-09 02:18:47.610841+00 640
2025-12-09 02:18:47.611801+00 2025-12-09 02:18:47.611805+00 641 180 180
2025-12-09 02:18:47.612761+00 2025-12-09 02:18:47.612765+00 642
2025-12-09 02:18:47.613712+00 2025-12-09 02:18:47.613717+00 643 100D顺宇皱 100D顺宇皱
2025-12-09 02:18:47.614673+00 2025-12-09 02:18:47.614677+00 644
2025-12-09 02:18:47.615658+00 2025-12-09 02:18:47.615663+00 645 160 160
2025-12-09 02:18:47.616669+00 2025-12-09 02:18:47.616673+00 646 180 180
2025-12-09 02:18:47.617561+00 2025-12-09 02:18:47.617565+00 647 170 170
2025-12-09 02:18:47.618426+00 2025-12-09 02:18:47.61843+00 648 A A
2025-12-09 02:18:47.619213+00 2025-12-09 02:18:47.619217+00 649
2025-12-09 02:18:47.620003+00 2025-12-09 02:18:47.620007+00 650 线 线
2025-12-09 02:18:47.620786+00 2025-12-09 02:18:47.620789+00 651
2025-12-09 02:18:47.621541+00 2025-12-09 02:18:47.621544+00 652 G12# G12#
2025-12-09 02:18:47.62233+00 2025-12-09 02:18:47.622334+00 653 60D特密纱欧根纱 60D特密纱欧根纱
2025-12-09 02:18:47.623096+00 2025-12-09 02:18:47.6231+00 654 G196 G196
2025-12-09 02:18:47.623879+00 2025-12-09 02:18:47.623883+00 655 98 98
2025-12-09 02:18:47.62464+00 2025-12-09 02:18:47.624643+00 656 100D纬弹 100D纬弹
2025-12-09 02:18:47.6254+00 2025-12-09 02:18:47.625404+00 657 180 180
2025-12-09 02:18:47.626169+00 2025-12-09 02:18:47.626172+00 658 7768 7768
2025-12-09 02:18:47.626929+00 2025-12-09 02:18:47.626933+00 659
2025-12-09 02:18:47.627697+00 2025-12-09 02:18:47.627701+00 660
2025-12-09 02:18:47.628469+00 2025-12-09 02:18:47.628473+00 661
2025-12-09 02:18:47.629255+00 2025-12-09 02:18:47.629259+00 662 D8499春风格 D8499春风格
2025-12-09 02:18:47.630025+00 2025-12-09 02:18:47.630029+00 663 MF1082 MF1082
2025-12-09 02:18:47.63078+00 2025-12-09 02:18:47.630783+00 664
2025-12-09 02:18:47.631553+00 2025-12-09 02:18:47.631557+00 665 1+1 1+1
2025-12-09 02:18:47.632307+00 2025-12-09 02:18:47.632311+00 666 0105仿 0105仿
2025-12-09 02:18:47.633049+00 2025-12-09 02:18:47.633053+00 667 8030# 8030#
2025-12-09 02:18:47.634596+00 2025-12-09 02:18:47.6346+00 669 125B 125B
2025-12-09 02:18:47.635362+00 2025-12-09 02:18:47.635366+00 670
2025-12-09 02:18:47.636123+00 2025-12-09 02:18:47.636127+00 671 901 901
2025-12-09 02:18:47.636881+00 2025-12-09 02:18:47.636885+00 672 S755 S755
2025-12-09 02:18:47.637653+00 2025-12-09 02:18:47.637656+00 673 40D本白涤氨网 40D本白涤氨网
2025-12-09 02:18:47.638424+00 2025-12-09 02:18:47.638428+00 674
2025-12-09 02:18:47.639187+00 2025-12-09 02:18:47.639191+00 675 270 270
2025-12-09 02:18:47.639952+00 2025-12-09 02:18:47.639956+00 676 810 810
2025-12-09 02:18:47.640719+00 2025-12-09 02:18:47.640723+00 677 180仿 180仿
2025-12-09 02:18:47.641495+00 2025-12-09 02:18:47.641498+00 678 105仿 105仿
2025-12-09 02:18:47.642274+00 2025-12-09 02:18:47.642277+00 679 90 90
2025-12-09 02:18:47.643028+00 2025-12-09 02:18:47.643031+00 680
2025-12-09 02:18:47.643797+00 2025-12-09 02:18:47.643801+00 681
2025-12-09 02:18:47.644569+00 2025-12-09 02:18:47.644572+00 682 G128纱 G128纱
2025-12-09 02:18:47.645331+00 2025-12-09 02:18:47.645335+00 683 140 140
2025-12-09 02:18:47.646102+00 2025-12-09 02:18:47.646105+00 684 G12 G12
2025-12-09 02:18:47.646862+00 2025-12-09 02:18:47.646865+00 685 150D长丝四面弹 150D长丝四面弹
2025-12-09 02:18:47.647635+00 2025-12-09 02:18:47.647638+00 686
2025-12-09 02:18:47.648409+00 2025-12-09 02:18:47.648413+00 687 150 150
2025-12-09 02:18:47.649179+00 2025-12-09 02:18:47.649183+00 688 1*1 1*1
2025-12-09 02:18:47.649945+00 2025-12-09 02:18:47.649949+00 689
2025-12-09 02:18:47.650719+00 2025-12-09 02:18:47.650722+00 690
2025-12-09 02:18:47.651477+00 2025-12-09 02:18:47.651481+00 691 c77 c77
2025-12-09 02:18:47.65224+00 2025-12-09 02:18:47.652243+00 692
2025-12-09 02:18:47.652991+00 2025-12-09 02:18:47.652995+00 693 180 180
2025-12-09 02:18:47.653773+00 2025-12-09 02:18:47.653777+00 694 140 140
2025-12-09 02:18:47.654527+00 2025-12-09 02:18:47.654531+00 695 11 11
2025-12-09 02:18:47.655302+00 2025-12-09 02:18:47.655306+00 696
2025-12-09 02:18:47.656063+00 2025-12-09 02:18:47.656066+00 697
2025-12-09 02:18:47.656807+00 2025-12-09 02:18:47.656811+00 698 仿 仿
2025-12-09 02:18:47.657573+00 2025-12-09 02:18:47.657577+00 699 1708099仿 1708099仿
2025-12-09 02:18:47.658333+00 2025-12-09 02:18:47.658337+00 700 652 652
2025-12-09 02:18:47.659088+00 2025-12-09 02:18:47.659092+00 701 100D彩虹斜 100D彩虹斜
2025-12-09 02:18:47.660015+00 2025-12-09 02:18:47.660019+00 702
2025-12-09 02:18:47.661095+00 2025-12-09 02:18:47.6611+00 703 200 200
2025-12-09 02:18:47.662366+00 2025-12-09 02:18:47.66237+00 704 19558 19558
2025-12-09 02:18:47.663597+00 2025-12-09 02:18:47.663601+00 705
2025-12-09 02:18:47.664837+00 2025-12-09 02:18:47.664841+00 706 45D涤氨 45D涤氨
2025-12-09 02:18:47.666064+00 2025-12-09 02:18:47.666068+00 707
2025-12-09 02:18:47.66729+00 2025-12-09 02:18:47.667295+00 708
2025-12-09 02:18:47.668419+00 2025-12-09 02:18:47.668423+00 709 170 170
2025-12-09 02:18:47.669502+00 2025-12-09 02:18:47.669505+00 710
2025-12-09 02:18:47.670292+00 2025-12-09 02:18:47.670296+00 711
2025-12-09 02:18:47.67108+00 2025-12-09 02:18:47.671084+00 712 150 150
2025-12-09 02:18:47.671846+00 2025-12-09 02:18:47.671849+00 713 12*2 12*2
2025-12-09 02:18:47.672741+00 2025-12-09 02:18:47.672745+00 714 36 36
2025-12-09 02:18:47.673511+00 2025-12-09 02:18:47.673515+00 715 1875 1875
2025-12-09 02:18:47.674307+00 2025-12-09 02:18:47.674311+00 716 170仿 170仿
2025-12-09 02:18:47.675078+00 2025-12-09 02:18:47.675082+00 717 339 339
2025-12-09 02:18:47.675843+00 2025-12-09 02:18:47.675847+00 718
2025-12-09 02:18:47.677391+00 2025-12-09 02:18:47.677394+00 720 40D涤氨网纱 40D涤氨网纱
2025-12-09 02:18:47.678166+00 2025-12-09 02:18:47.67817+00 721 Y729泡 Y729泡
2025-12-09 02:18:47.678932+00 2025-12-09 02:18:47.678936+00 722 186# 186#
2025-12-09 02:18:47.680455+00 2025-12-09 02:18:47.680458+00 724 200 200
2025-12-09 02:18:47.681235+00 2025-12-09 02:18:47.681239+00 725
2025-12-09 02:18:47.681996+00 2025-12-09 02:18:47.681999+00 726 621# 621#
2025-12-09 02:18:47.682746+00 2025-12-09 02:18:47.682749+00 727 120 120
2025-12-09 02:18:47.683532+00 2025-12-09 02:18:47.683536+00 728 7759 7759
2025-12-09 02:18:47.6843+00 2025-12-09 02:18:47.684304+00 729 B442# B442#
2025-12-09 02:18:47.685059+00 2025-12-09 02:18:47.685062+00 730 200 200
2025-12-09 02:18:47.685847+00 2025-12-09 02:18:47.685851+00 731 9012 9012
2025-12-09 02:18:47.686612+00 2025-12-09 02:18:47.686615+00 732 8030 8030
2025-12-09 02:18:47.687377+00 2025-12-09 02:18:47.68738+00 733 240X180楼梯布 240X180楼梯布
2025-12-09 02:18:47.688142+00 2025-12-09 02:18:47.688146+00 734 170 170
2025-12-09 02:18:47.688891+00 2025-12-09 02:18:47.688895+00 735 190 190
2025-12-09 02:18:47.689666+00 2025-12-09 02:18:47.68967+00 736
2025-12-09 02:18:47.690419+00 2025-12-09 02:18:47.690423+00 737 160 160
2025-12-09 02:18:47.691196+00 2025-12-09 02:18:47.691199+00 738 172/180 172/180
2025-12-09 02:18:47.691954+00 2025-12-09 02:18:47.691957+00 739 40D网纱 40D网纱
2025-12-09 02:18:47.692719+00 2025-12-09 02:18:47.692723+00 740 240 240
2025-12-09 02:18:47.693485+00 2025-12-09 02:18:47.693489+00 741 仿 仿
2025-12-09 02:18:47.694251+00 2025-12-09 02:18:47.694255+00 742
2025-12-09 02:18:47.695033+00 2025-12-09 02:18:47.695036+00 743 3215 3215
2025-12-09 02:18:47.695796+00 2025-12-09 02:18:47.695799+00 744
2025-12-09 02:18:47.696561+00 2025-12-09 02:18:47.696564+00 745
2025-12-09 02:18:47.697336+00 2025-12-09 02:18:47.69734+00 746 B881# B881#
2025-12-09 02:18:47.698079+00 2025-12-09 02:18:47.698082+00 747
2025-12-09 02:18:47.698952+00 2025-12-09 02:18:47.698957+00 748 443 443
2025-12-09 02:18:47.699908+00 2025-12-09 02:18:47.699912+00 749 40D网布底布 40D网布底布
2025-12-09 02:18:47.700858+00 2025-12-09 02:18:47.700862+00 750
2025-12-09 02:18:47.701802+00 2025-12-09 02:18:47.701807+00 751 180 180
2025-12-09 02:18:47.702777+00 2025-12-09 02:18:47.702782+00 752
2025-12-09 02:18:47.703697+00 2025-12-09 02:18:47.703701+00 753 仿 仿
2025-12-09 02:18:47.676623+00 2025-12-09 02:18:50.210317+00 719 90 90
2025-12-09 02:18:47.704515+00 2025-12-09 02:18:47.704518+00 754
2025-12-09 02:18:47.705317+00 2025-12-09 02:18:47.705321+00 755 250 250
2025-12-09 02:18:47.706103+00 2025-12-09 02:18:47.706107+00 756
2025-12-09 02:18:47.706876+00 2025-12-09 02:18:47.706879+00 757
2025-12-09 02:18:47.707651+00 2025-12-09 02:18:47.707654+00 758
2025-12-09 02:18:47.708416+00 2025-12-09 02:18:47.70842+00 759 G34欧根纱足节 G34欧根纱足节
2025-12-09 02:18:47.709184+00 2025-12-09 02:18:47.709188+00 760 180 180
2025-12-09 02:18:47.70995+00 2025-12-09 02:18:47.709953+00 761
2025-12-09 02:18:47.710715+00 2025-12-09 02:18:47.710719+00 762
2025-12-09 02:18:47.711483+00 2025-12-09 02:18:47.711487+00 763 180 180
2025-12-09 02:18:47.712241+00 2025-12-09 02:18:47.712244+00 764
2025-12-09 02:18:47.71303+00 2025-12-09 02:18:47.713033+00 765
2025-12-09 02:18:47.713781+00 2025-12-09 02:18:47.713784+00 766
2025-12-09 02:18:47.714524+00 2025-12-09 02:18:47.714528+00 767 17075D双层四面弹 17075D双层四面弹
2025-12-09 02:18:47.715301+00 2025-12-09 02:18:47.715304+00 768 140 140
2025-12-09 02:18:47.716175+00 2025-12-09 02:18:47.71618+00 769 仿 仿
2025-12-09 02:18:47.716993+00 2025-12-09 02:18:47.716997+00 770
2025-12-09 02:18:47.717767+00 2025-12-09 02:18:47.71777+00 771 - -
2025-12-09 02:18:47.718541+00 2025-12-09 02:18:47.718545+00 772 8088 8088
2025-12-09 02:18:47.719327+00 2025-12-09 02:18:47.719331+00 773 647-1仿 647-1仿
2025-12-09 02:18:47.720993+00 2025-12-09 02:18:47.720997+00 775
2025-12-09 02:18:47.721761+00 2025-12-09 02:18:47.721765+00 776
2025-12-09 02:18:47.722532+00 2025-12-09 02:18:47.722535+00 777 143 143
2025-12-09 02:18:47.723319+00 2025-12-09 02:18:47.723323+00 778 87 87
2025-12-09 02:18:47.724099+00 2025-12-09 02:18:47.724103+00 779
2025-12-09 02:18:47.724893+00 2025-12-09 02:18:47.724896+00 780
2025-12-09 02:18:47.725667+00 2025-12-09 02:18:47.725671+00 781
2025-12-09 02:18:47.726439+00 2025-12-09 02:18:47.726443+00 782
2025-12-09 02:18:47.727191+00 2025-12-09 02:18:47.727195+00 783
2025-12-09 02:18:47.727971+00 2025-12-09 02:18:47.727974+00 784
2025-12-09 02:18:47.728734+00 2025-12-09 02:18:47.728737+00 785
2025-12-09 02:18:47.729485+00 2025-12-09 02:18:47.729488+00 786 170 170
2025-12-09 02:18:47.73025+00 2025-12-09 02:18:47.730253+00 787
2025-12-09 02:18:47.731014+00 2025-12-09 02:18:47.731018+00 788 180 180
2025-12-09 02:18:47.731786+00 2025-12-09 02:18:47.73179+00 789
2025-12-09 02:18:47.732532+00 2025-12-09 02:18:47.732535+00 790
2025-12-09 02:18:47.733304+00 2025-12-09 02:18:47.733308+00 791 210 210
2025-12-09 02:18:47.734053+00 2025-12-09 02:18:47.734056+00 792 210 210
2025-12-09 02:18:47.734806+00 2025-12-09 02:18:47.734809+00 793 8025 8025
2025-12-09 02:18:47.73557+00 2025-12-09 02:18:47.735573+00 794
2025-12-09 02:18:47.736335+00 2025-12-09 02:18:47.736338+00 795 250 250
2025-12-09 02:18:47.737106+00 2025-12-09 02:18:47.73711+00 796 240 240
2025-12-09 02:18:47.737873+00 2025-12-09 02:18:47.737877+00 797
2025-12-09 02:18:47.740154+00 2025-12-09 02:18:47.740158+00 800
2025-12-09 02:18:47.740921+00 2025-12-09 02:18:47.740924+00 801
2025-12-09 02:18:47.741702+00 2025-12-09 02:18:47.741709+00 802 14070D涤氨网 14070D涤氨网
2025-12-09 02:18:47.742464+00 2025-12-09 02:18:47.742467+00 803
2025-12-09 02:18:47.743229+00 2025-12-09 02:18:47.743233+00 804 G9平面料 G9平面料
2025-12-09 02:18:47.744+00 2025-12-09 02:18:47.744003+00 805
2025-12-09 02:18:47.744751+00 2025-12-09 02:18:47.744755+00 806
2025-12-09 02:18:47.745515+00 2025-12-09 02:18:47.745518+00 807
2025-12-09 02:18:47.74628+00 2025-12-09 02:18:47.746283+00 808
2025-12-09 02:18:47.747055+00 2025-12-09 02:18:47.747059+00 809 160T爽棉 160T爽棉
2025-12-09 02:18:47.747817+00 2025-12-09 02:18:47.747821+00 810 115g 115g
2025-12-09 02:18:47.749355+00 2025-12-09 02:18:47.749358+00 812
2025-12-09 02:18:47.750116+00 2025-12-09 02:18:47.750119+00 813
2025-12-09 02:18:47.748563+00 2025-12-09 02:18:47.750877+00 811 260 260
2025-12-09 02:18:47.751674+00 2025-12-09 02:18:47.751678+00 814
2025-12-09 02:18:47.752463+00 2025-12-09 02:18:47.752466+00 815 150 150
2025-12-09 02:18:47.753216+00 2025-12-09 02:18:47.75322+00 816 200仿 200仿
2025-12-09 02:18:47.754753+00 2025-12-09 02:18:47.754757+00 818
2025-12-09 02:18:47.755505+00 2025-12-09 02:18:47.755508+00 819 130 130
2025-12-09 02:18:47.756274+00 2025-12-09 02:18:47.756277+00 820 210 210
2025-12-09 02:18:47.757028+00 2025-12-09 02:18:47.757032+00 821
2025-12-09 02:18:47.757798+00 2025-12-09 02:18:47.757801+00 822 120 120
2025-12-09 02:18:47.758546+00 2025-12-09 02:18:47.758549+00 823 200 200
2025-12-09 02:18:47.759321+00 2025-12-09 02:18:47.759325+00 824
2025-12-09 02:18:47.760087+00 2025-12-09 02:18:47.76009+00 825
2025-12-09 02:18:47.76084+00 2025-12-09 02:18:47.760844+00 826
2025-12-09 02:18:47.761621+00 2025-12-09 02:18:47.761624+00 827 85g弹力缎本白 85g弹力缎本白
2025-12-09 02:18:47.762384+00 2025-12-09 02:18:47.762388+00 828 120 120
2025-12-09 02:18:47.763132+00 2025-12-09 02:18:47.763135+00 829
2025-12-09 02:18:47.764182+00 2025-12-09 02:18:47.764185+00 830 200 200
2025-12-09 02:18:47.76521+00 2025-12-09 02:18:47.765213+00 831 8099仿 8099仿
2025-12-09 02:18:47.766361+00 2025-12-09 02:18:47.766365+00 832 80D乱麻 80D乱麻
2025-12-09 02:18:47.767546+00 2025-12-09 02:18:47.767551+00 833
2025-12-09 02:18:47.76882+00 2025-12-09 02:18:47.768824+00 834
2025-12-09 02:18:47.770064+00 2025-12-09 02:18:47.770068+00 835 95 95
2025-12-09 02:18:47.771352+00 2025-12-09 02:18:47.771357+00 836 亿S647-1 亿S647-1
2025-12-09 02:18:47.772575+00 2025-12-09 02:18:47.77258+00 837
2025-12-09 02:18:47.739388+00 2025-12-09 02:18:48.724469+00 799
2025-12-09 02:18:47.738637+00 2025-12-09 02:18:48.867482+00 798
2025-12-09 02:18:47.75399+00 2025-12-09 02:18:48.940729+00 817
2025-12-09 02:18:47.773526+00 2025-12-09 02:18:47.77353+00 838
2025-12-09 02:18:47.774497+00 2025-12-09 02:18:47.774501+00 839 70 70
2025-12-09 02:18:47.77545+00 2025-12-09 02:18:47.775454+00 840 40D涤氨网 40D涤氨网
2025-12-09 02:18:47.776402+00 2025-12-09 02:18:47.776406+00 841
2025-12-09 02:18:47.77734+00 2025-12-09 02:18:47.777344+00 842 95仿 95仿
2025-12-09 02:18:47.778314+00 2025-12-09 02:18:47.778318+00 843 仿 仿
2025-12-09 02:18:47.779286+00 2025-12-09 02:18:47.77929+00 844
2025-12-09 02:18:47.780311+00 2025-12-09 02:18:47.780315+00 845 75 75
2025-12-09 02:18:47.781252+00 2025-12-09 02:18:47.781256+00 846
2025-12-09 02:18:47.782208+00 2025-12-09 02:18:47.782213+00 847 230 230
2025-12-09 02:18:47.783154+00 2025-12-09 02:18:47.783159+00 848 230 230
2025-12-09 02:18:47.784098+00 2025-12-09 02:18:47.784102+00 849 165 165
2025-12-09 02:18:47.785049+00 2025-12-09 02:18:47.785053+00 850 TC TC
2025-12-09 02:18:47.786006+00 2025-12-09 02:18:47.786011+00 851
2025-12-09 02:18:47.786932+00 2025-12-09 02:18:47.786936+00 852 18075D双层四面弹 18075D双层四面弹
2025-12-09 02:18:47.787753+00 2025-12-09 02:18:47.787757+00 853 200 200
2025-12-09 02:18:47.788525+00 2025-12-09 02:18:47.788529+00 854 140 140
2025-12-09 02:18:47.789314+00 2025-12-09 02:18:47.789317+00 855 210 210
2025-12-09 02:18:47.790072+00 2025-12-09 02:18:47.790076+00 856 100D130克四面弹 100D130克四面弹
2025-12-09 02:18:47.79083+00 2025-12-09 02:18:47.790834+00 857 170 170
2025-12-09 02:18:47.791606+00 2025-12-09 02:18:47.79161+00 858 170 170
2025-12-09 02:18:47.792384+00 2025-12-09 02:18:47.792387+00 859
2025-12-09 02:18:47.793251+00 2025-12-09 02:18:47.793256+00 860
2025-12-09 02:18:47.794074+00 2025-12-09 02:18:47.794079+00 861 亿102-1 亿102-1
2025-12-09 02:18:47.794883+00 2025-12-09 02:18:47.794887+00 862
2025-12-09 02:18:47.795666+00 2025-12-09 02:18:47.79567+00 863 250 250
2025-12-09 02:18:47.796491+00 2025-12-09 02:18:47.796494+00 864 100D110克四面弹 100D110克四面弹
2025-12-09 02:18:47.797278+00 2025-12-09 02:18:47.797282+00 865
2025-12-09 02:18:47.79809+00 2025-12-09 02:18:47.798093+00 866
2025-12-09 02:18:47.798885+00 2025-12-09 02:18:47.79889+00 867 180 180
2025-12-09 02:18:47.799682+00 2025-12-09 02:18:47.799686+00 868
2025-12-09 02:18:47.800488+00 2025-12-09 02:18:47.800492+00 869 6# 6#
2025-12-09 02:18:47.801288+00 2025-12-09 02:18:47.801292+00 870 21016 21016
2025-12-09 02:18:47.802088+00 2025-12-09 02:18:47.802092+00 871 210 210
2025-12-09 02:18:47.802906+00 2025-12-09 02:18:47.802909+00 872
2025-12-09 02:18:47.803721+00 2025-12-09 02:18:47.803725+00 873 A68 A68
2025-12-09 02:18:47.804511+00 2025-12-09 02:18:47.804515+00 874 75D斜纹缎 75D斜纹缎
2025-12-09 02:18:47.805324+00 2025-12-09 02:18:47.805328+00 875
2025-12-09 02:18:47.806131+00 2025-12-09 02:18:47.806135+00 876 仿 仿
2025-12-09 02:18:47.806927+00 2025-12-09 02:18:47.806931+00 877 1120 1120
2025-12-09 02:18:47.807733+00 2025-12-09 02:18:47.807738+00 878 9×5 9×5
2025-12-09 02:18:47.808517+00 2025-12-09 02:18:47.808521+00 879 120 120
2025-12-09 02:18:47.809321+00 2025-12-09 02:18:47.809325+00 880 1033#-1 1033#-1
2025-12-09 02:18:47.810126+00 2025-12-09 02:18:47.81013+00 881 100d雪纺 100d雪纺
2025-12-09 02:18:47.810929+00 2025-12-09 02:18:47.810933+00 882
2025-12-09 02:18:47.811722+00 2025-12-09 02:18:47.811726+00 883
2025-12-09 02:18:47.812533+00 2025-12-09 02:18:47.812537+00 884 30D金编 30D金编
2025-12-09 02:18:47.813319+00 2025-12-09 02:18:47.813323+00 885 125A 125A
2025-12-09 02:18:47.814117+00 2025-12-09 02:18:47.814121+00 886 50D涤光加厚 50D涤光加厚
2025-12-09 02:18:47.814905+00 2025-12-09 02:18:47.814909+00 887
2025-12-09 02:18:47.815688+00 2025-12-09 02:18:47.815692+00 888 120 120
2025-12-09 02:18:47.816472+00 2025-12-09 02:18:47.816476+00 889
2025-12-09 02:18:47.817297+00 2025-12-09 02:18:47.817301+00 890
2025-12-09 02:18:47.818094+00 2025-12-09 02:18:47.818098+00 891 2*2 2*2
2025-12-09 02:18:47.818894+00 2025-12-09 02:18:47.818897+00 892
2025-12-09 02:18:47.81985+00 2025-12-09 02:18:47.819854+00 893 75D里布 75D里布
2025-12-09 02:18:47.820632+00 2025-12-09 02:18:47.820636+00 894 90 90
2025-12-09 02:18:47.821437+00 2025-12-09 02:18:47.821441+00 895
2025-12-09 02:18:47.822226+00 2025-12-09 02:18:47.822229+00 896 125 125
2025-12-09 02:18:47.823073+00 2025-12-09 02:18:47.823077+00 897 tc破卡 tc破卡
2025-12-09 02:18:47.823878+00 2025-12-09 02:18:47.823882+00 898
2025-12-09 02:18:47.824678+00 2025-12-09 02:18:47.824682+00 899
2025-12-09 02:18:47.825465+00 2025-12-09 02:18:47.825469+00 900
2025-12-09 02:18:47.826257+00 2025-12-09 02:18:47.82626+00 901 220 220
2025-12-09 02:18:47.82705+00 2025-12-09 02:18:47.827054+00 902 200 200
2025-12-09 02:18:47.827848+00 2025-12-09 02:18:47.827852+00 903 120 120
2025-12-09 02:18:47.828643+00 2025-12-09 02:18:47.828647+00 904 75D雪纺皱 75D雪纺皱
2025-12-09 02:18:47.829442+00 2025-12-09 02:18:47.829446+00 905 110g四面弹 110g四面弹
2025-12-09 02:18:47.830237+00 2025-12-09 02:18:47.83024+00 906
2025-12-09 02:18:47.831017+00 2025-12-09 02:18:47.83102+00 907 4*2 4*2
2025-12-09 02:18:47.831808+00 2025-12-09 02:18:47.831811+00 908 170仿 170仿
2025-12-09 02:18:47.832606+00 2025-12-09 02:18:47.832611+00 909 183#21 183#21
2025-12-09 02:18:47.8334+00 2025-12-09 02:18:47.833404+00 910
2025-12-09 02:18:47.834199+00 2025-12-09 02:18:47.834203+00 911 170 170
2025-12-09 02:18:47.834999+00 2025-12-09 02:18:47.835003+00 912 170 170
2025-12-09 02:18:47.835796+00 2025-12-09 02:18:47.8358+00 913
2025-12-09 02:18:47.836579+00 2025-12-09 02:18:47.836583+00 914
2025-12-09 02:18:47.837383+00 2025-12-09 02:18:47.837387+00 915 125 125
2025-12-09 02:18:47.838173+00 2025-12-09 02:18:47.838176+00 916 200 200
2025-12-09 02:18:47.838968+00 2025-12-09 02:18:47.838972+00 917
2025-12-09 02:18:47.83978+00 2025-12-09 02:18:47.839784+00 918 110 110
2025-12-09 02:18:47.840565+00 2025-12-09 02:18:47.840569+00 919 200 200
2025-12-09 02:18:47.842155+00 2025-12-09 02:18:47.842159+00 921 230 230
2025-12-09 02:18:47.842964+00 2025-12-09 02:18:47.842968+00 922
2025-12-09 02:18:47.431485+00 2025-12-09 02:18:47.843723+00 438 180 180
2025-12-09 02:18:47.84458+00 2025-12-09 02:18:47.844584+00 923
2025-12-09 02:18:47.845392+00 2025-12-09 02:18:47.845396+00 924
2025-12-09 02:18:47.846191+00 2025-12-09 02:18:47.846194+00 925
2025-12-09 02:18:47.846996+00 2025-12-09 02:18:47.847+00 926 + +
2025-12-09 02:18:47.847801+00 2025-12-09 02:18:47.847805+00 927
2025-12-09 02:18:47.848588+00 2025-12-09 02:18:47.848592+00 928
2025-12-09 02:18:47.849385+00 2025-12-09 02:18:47.849389+00 929 鹿 鹿
2025-12-09 02:18:47.850182+00 2025-12-09 02:18:47.850186+00 930
2025-12-09 02:18:47.850994+00 2025-12-09 02:18:47.850998+00 931
2025-12-09 02:18:47.851796+00 2025-12-09 02:18:47.851801+00 932
2025-12-09 02:18:47.852639+00 2025-12-09 02:18:47.852642+00 933 320 320
2025-12-09 02:18:47.853449+00 2025-12-09 02:18:47.853453+00 934 200 200
2025-12-09 02:18:47.942816+00 2025-12-09 02:18:47.942821+00 1022
2025-12-09 02:18:47.85425+00 2025-12-09 02:18:47.854253+00 935
2025-12-09 02:18:47.85504+00 2025-12-09 02:18:47.855044+00 936 200 200
2025-12-09 02:18:47.85584+00 2025-12-09 02:18:47.855843+00 937
2025-12-09 02:18:47.85663+00 2025-12-09 02:18:47.856634+00 938
2025-12-09 02:18:47.857426+00 2025-12-09 02:18:47.85743+00 939
2025-12-09 02:18:47.858229+00 2025-12-09 02:18:47.858234+00 940
2025-12-09 02:18:47.859034+00 2025-12-09 02:18:47.859037+00 941 95 95
2025-12-09 02:18:47.859836+00 2025-12-09 02:18:47.859841+00 942
2025-12-09 02:18:47.860634+00 2025-12-09 02:18:47.860637+00 943 220 220
2025-12-09 02:18:47.861581+00 2025-12-09 02:18:47.861586+00 944 140 140
2025-12-09 02:18:47.862579+00 2025-12-09 02:18:47.862583+00 945 2002 x2 2002 x2
2025-12-09 02:18:47.8636+00 2025-12-09 02:18:47.863604+00 946
2025-12-09 02:18:47.864601+00 2025-12-09 02:18:47.864605+00 947 888# 888#
2025-12-09 02:18:47.8656+00 2025-12-09 02:18:47.865604+00 948 S476 S476
2025-12-09 02:18:47.866612+00 2025-12-09 02:18:47.866616+00 949 125 125
2025-12-09 02:18:47.867615+00 2025-12-09 02:18:47.86762+00 950
2025-12-09 02:18:47.868624+00 2025-12-09 02:18:47.868629+00 951 75D复合丝 75D复合丝
2025-12-09 02:18:47.869622+00 2025-12-09 02:18:47.869627+00 952
2025-12-09 02:18:47.87062+00 2025-12-09 02:18:47.870624+00 953
2025-12-09 02:18:47.871625+00 2025-12-09 02:18:47.87163+00 954 40D涤氨弹力网 40D涤氨弹力网
2025-12-09 02:18:47.872625+00 2025-12-09 02:18:47.87263+00 955
2025-12-09 02:18:47.873619+00 2025-12-09 02:18:47.873624+00 956
2025-12-09 02:18:47.874926+00 2025-12-09 02:18:47.87493+00 957
2025-12-09 02:18:47.876237+00 2025-12-09 02:18:47.876241+00 958 70 70
2025-12-09 02:18:47.877536+00 2025-12-09 02:18:47.877541+00 959
2025-12-09 02:18:47.87886+00 2025-12-09 02:18:47.878864+00 960
2025-12-09 02:18:47.880172+00 2025-12-09 02:18:47.880176+00 961
2025-12-09 02:18:47.881484+00 2025-12-09 02:18:47.881488+00 962
2025-12-09 02:18:47.882806+00 2025-12-09 02:18:47.88281+00 963 200 200
2025-12-09 02:18:47.884103+00 2025-12-09 02:18:47.884108+00 964 190 190
2025-12-09 02:18:47.885113+00 2025-12-09 02:18:47.885117+00 965
2025-12-09 02:18:47.886132+00 2025-12-09 02:18:47.886136+00 966 110 110
2025-12-09 02:18:47.887132+00 2025-12-09 02:18:47.887137+00 967
2025-12-09 02:18:47.888194+00 2025-12-09 02:18:47.888199+00 968 330 330
2025-12-09 02:18:47.889199+00 2025-12-09 02:18:47.889203+00 969
2025-12-09 02:18:47.890198+00 2025-12-09 02:18:47.890203+00 970
2025-12-09 02:18:47.891216+00 2025-12-09 02:18:47.891221+00 971 180 180
2025-12-09 02:18:47.892214+00 2025-12-09 02:18:47.892218+00 972 180 180
2025-12-09 02:18:47.893207+00 2025-12-09 02:18:47.893212+00 973 110 110
2025-12-09 02:18:47.894205+00 2025-12-09 02:18:47.89421+00 974 320 320
2025-12-09 02:18:47.89521+00 2025-12-09 02:18:47.895214+00 975 2*2 2*2
2025-12-09 02:18:47.896212+00 2025-12-09 02:18:47.896217+00 976
2025-12-09 02:18:47.897223+00 2025-12-09 02:18:47.897228+00 977
2025-12-09 02:18:47.898223+00 2025-12-09 02:18:47.898228+00 978 170仿 170仿
2025-12-09 02:18:47.899234+00 2025-12-09 02:18:47.899239+00 979 仿 仿
2025-12-09 02:18:47.900247+00 2025-12-09 02:18:47.900252+00 980
2025-12-09 02:18:47.901244+00 2025-12-09 02:18:47.901248+00 981
2025-12-09 02:18:47.902259+00 2025-12-09 02:18:47.902263+00 982 仿 1x1超密罗纹 仿 1x1超密罗纹
2025-12-09 02:18:47.903279+00 2025-12-09 02:18:47.903284+00 983 200G仿棉拉架 200G仿棉拉架
2025-12-09 02:18:47.904287+00 2025-12-09 02:18:47.904292+00 984 190 190
2025-12-09 02:18:47.905282+00 2025-12-09 02:18:47.905286+00 985
2025-12-09 02:18:47.906297+00 2025-12-09 02:18:47.906302+00 986
2025-12-09 02:18:47.907307+00 2025-12-09 02:18:47.907312+00 987
2025-12-09 02:18:47.908395+00 2025-12-09 02:18:47.9084+00 988
2025-12-09 02:18:47.909392+00 2025-12-09 02:18:47.909396+00 989 180 180
2025-12-09 02:18:47.911412+00 2025-12-09 02:18:47.911417+00 991 123 123
2025-12-09 02:18:47.912412+00 2025-12-09 02:18:47.912417+00 992
2025-12-09 02:18:47.913414+00 2025-12-09 02:18:47.913418+00 993
2025-12-09 02:18:47.914424+00 2025-12-09 02:18:47.914429+00 994 120 120
2025-12-09 02:18:47.915448+00 2025-12-09 02:18:47.915453+00 995 130 130
2025-12-09 02:18:47.916455+00 2025-12-09 02:18:47.91646+00 996 220 220
2025-12-09 02:18:47.917457+00 2025-12-09 02:18:47.917461+00 997
2025-12-09 02:18:47.918451+00 2025-12-09 02:18:47.918456+00 998
2025-12-09 02:18:47.919462+00 2025-12-09 02:18:47.919467+00 999
2025-12-09 02:18:47.920501+00 2025-12-09 02:18:47.920506+00 1000 250 250
2025-12-09 02:18:47.92151+00 2025-12-09 02:18:47.921514+00 1001
2025-12-09 02:18:47.923547+00 2025-12-09 02:18:47.923551+00 1003 75D直贡呢 75D直贡呢
2025-12-09 02:18:47.924551+00 2025-12-09 02:18:47.924556+00 1004 仿 仿
2025-12-09 02:18:47.925568+00 2025-12-09 02:18:47.925572+00 1005
2025-12-09 02:18:47.926569+00 2025-12-09 02:18:47.926574+00 1006
2025-12-09 02:18:47.927577+00 2025-12-09 02:18:47.927581+00 1007 130 130
2025-12-09 02:18:47.928585+00 2025-12-09 02:18:47.928589+00 1008
2025-12-09 02:18:47.9296+00 2025-12-09 02:18:47.929604+00 1009 线 线
2025-12-09 02:18:47.930622+00 2025-12-09 02:18:47.930627+00 1010
2025-12-09 02:18:47.931637+00 2025-12-09 02:18:47.931642+00 1011
2025-12-09 02:18:47.932649+00 2025-12-09 02:18:47.932654+00 1012
2025-12-09 02:18:47.933672+00 2025-12-09 02:18:47.933676+00 1013
2025-12-09 02:18:47.934686+00 2025-12-09 02:18:47.93469+00 1014 50D超柔四面弹 50D超柔四面弹
2025-12-09 02:18:47.935701+00 2025-12-09 02:18:47.935709+00 1015 9x5大白坑条 9x5大白坑条
2025-12-09 02:18:47.936733+00 2025-12-09 02:18:47.936738+00 1016 200 200
2025-12-09 02:18:47.937746+00 2025-12-09 02:18:47.937751+00 1017 160 160
2025-12-09 02:18:47.93875+00 2025-12-09 02:18:47.938755+00 1018 250 250
2025-12-09 02:18:47.939759+00 2025-12-09 02:18:47.939764+00 1019 200 200
2025-12-09 02:18:47.940754+00 2025-12-09 02:18:47.940758+00 1020 205g蚕丝灯芯绒16坑 205g蚕丝灯芯绒16坑
2025-12-09 02:18:47.941773+00 2025-12-09 02:18:47.941777+00 1021 190 190
2025-12-09 02:18:47.943823+00 2025-12-09 02:18:47.943828+00 1023 210 210
2025-12-09 02:18:48.718964+00 2025-12-09 02:18:48.71897+00 1025
2025-12-09 02:18:48.719908+00 2025-12-09 02:18:48.719912+00 1026
2025-12-09 02:18:48.720791+00 2025-12-09 02:18:48.720795+00 1027
2025-12-09 02:18:48.721709+00 2025-12-09 02:18:48.721713+00 1028
2025-12-09 02:18:48.722599+00 2025-12-09 02:18:48.722603+00 1029
2025-12-09 02:18:48.723525+00 2025-12-09 02:18:48.723529+00 1030
2025-12-09 02:18:48.725371+00 2025-12-09 02:18:48.725375+00 1031 3\\3 3\\3
2025-12-09 02:18:48.726234+00 2025-12-09 02:18:48.726237+00 1032 320仿 320仿
2025-12-09 02:18:48.727104+00 2025-12-09 02:18:48.727108+00 1033 250 250
2025-12-09 02:18:48.727966+00 2025-12-09 02:18:48.72797+00 1034
2025-12-09 02:18:48.72897+00 2025-12-09 02:18:48.728975+00 1035 250 250
2025-12-09 02:18:48.729943+00 2025-12-09 02:18:48.729947+00 1036 160 160
2025-12-09 02:18:48.730905+00 2025-12-09 02:18:48.73091+00 1037
2025-12-09 02:18:48.731871+00 2025-12-09 02:18:48.731875+00 1038 仿 仿
2025-12-09 02:18:48.732832+00 2025-12-09 02:18:48.732837+00 1039 250 250
2025-12-09 02:18:48.734736+00 2025-12-09 02:18:48.73474+00 1041 110 110
2025-12-09 02:18:48.735701+00 2025-12-09 02:18:48.735709+00 1042 2*2 2*2
2025-12-09 02:18:48.736646+00 2025-12-09 02:18:48.73665+00 1043
2025-12-09 02:18:48.737596+00 2025-12-09 02:18:48.737601+00 1044 170 170
2025-12-09 02:18:48.738554+00 2025-12-09 02:18:48.738558+00 1045
2025-12-09 02:18:48.73951+00 2025-12-09 02:18:48.739513+00 1046
2025-12-09 02:18:48.740475+00 2025-12-09 02:18:48.740479+00 1047 250 250
2025-12-09 02:18:48.741426+00 2025-12-09 02:18:48.741431+00 1048
2025-12-09 02:18:48.742365+00 2025-12-09 02:18:48.742369+00 1049
2025-12-09 02:18:48.743322+00 2025-12-09 02:18:48.743327+00 1050
2025-12-09 02:18:48.744264+00 2025-12-09 02:18:48.744268+00 1051 230 230
2025-12-09 02:18:48.745217+00 2025-12-09 02:18:48.745221+00 1052 90 90
2025-12-09 02:18:48.746173+00 2025-12-09 02:18:48.746177+00 1053 200 200
2025-12-09 02:18:48.747173+00 2025-12-09 02:18:48.747177+00 1054 200仿 200仿
2025-12-09 02:18:48.748181+00 2025-12-09 02:18:48.748186+00 1055 230 230
2025-12-09 02:18:48.749475+00 2025-12-09 02:18:48.74948+00 1056 16 16
2025-12-09 02:18:48.752143+00 2025-12-09 02:18:48.752148+00 1058 250 250
2025-12-09 02:18:48.753688+00 2025-12-09 02:18:48.753694+00 1059 2*2 2*2
2025-12-09 02:18:48.75493+00 2025-12-09 02:18:48.754936+00 1060
2025-12-09 02:18:48.756136+00 2025-12-09 02:18:48.756142+00 1061 75D加厚双层四面弹170g 75D加厚双层四面弹170g
2025-12-09 02:18:48.757367+00 2025-12-09 02:18:48.757372+00 1062 150 150
2025-12-09 02:18:48.758591+00 2025-12-09 02:18:48.758596+00 1063
2025-12-09 02:18:48.760016+00 2025-12-09 02:18:48.760025+00 1064
2025-12-09 02:18:48.761424+00 2025-12-09 02:18:48.761431+00 1065
2025-12-09 02:18:48.762794+00 2025-12-09 02:18:48.762801+00 1066
2025-12-09 02:18:48.764101+00 2025-12-09 02:18:48.764108+00 1067 95仿 95仿
2025-12-09 02:18:48.765334+00 2025-12-09 02:18:48.76534+00 1068 230 230
2025-12-09 02:18:48.766542+00 2025-12-09 02:18:48.766547+00 1069
2025-12-09 02:18:48.767945+00 2025-12-09 02:18:48.767952+00 1070
2025-12-09 02:18:48.770257+00 2025-12-09 02:18:48.770261+00 1071 180 180
2025-12-09 02:18:48.771394+00 2025-12-09 02:18:48.771399+00 1072
2025-12-09 02:18:48.772606+00 2025-12-09 02:18:48.772611+00 1073
2025-12-09 02:18:48.773755+00 2025-12-09 02:18:48.773759+00 1074 50D超柔 50D超柔
2025-12-09 02:18:48.7749+00 2025-12-09 02:18:48.774904+00 1075
2025-12-09 02:18:48.775995+00 2025-12-09 02:18:48.775998+00 1076 140 140
2025-12-09 02:18:48.777078+00 2025-12-09 02:18:48.777083+00 1077
2025-12-09 02:18:48.778149+00 2025-12-09 02:18:48.778152+00 1078 B B
2025-12-09 02:18:48.779139+00 2025-12-09 02:18:48.779142+00 1079 40仿 40仿
2025-12-09 02:18:48.780156+00 2025-12-09 02:18:48.780159+00 1080 170 170
2025-12-09 02:18:48.781161+00 2025-12-09 02:18:48.781164+00 1081
2025-12-09 02:18:48.782816+00 2025-12-09 02:18:48.782821+00 1082 528 528
2025-12-09 02:18:48.784064+00 2025-12-09 02:18:48.784068+00 1083
2025-12-09 02:18:48.750847+00 2025-12-09 02:18:49.40158+00 1057 170 170
2025-12-09 02:18:48.733786+00 2025-12-09 02:18:50.350732+00 1040
2025-12-09 02:18:48.717538+00 2025-12-09 02:18:50.357472+00 1024
2025-12-09 02:18:48.78654+00 2025-12-09 02:18:48.786544+00 1085 30D高弹牛奶丝拉架 30D高弹牛奶丝拉架
2025-12-09 02:18:48.787785+00 2025-12-09 02:18:48.787789+00 1086
2025-12-09 02:18:48.790259+00 2025-12-09 02:18:48.790263+00 1088 150D双层四面弹 150D双层四面弹
2025-12-09 02:18:48.791463+00 2025-12-09 02:18:48.791466+00 1089 220 220
2025-12-09 02:18:48.7926+00 2025-12-09 02:18:48.792606+00 1090
2025-12-09 02:18:48.793655+00 2025-12-09 02:18:48.79366+00 1091 180g双磨牛奶丝米白 180g双磨牛奶丝米白
2025-12-09 02:18:48.794627+00 2025-12-09 02:18:48.794631+00 1092 150 150
2025-12-09 02:18:48.795609+00 2025-12-09 02:18:48.795614+00 1093 2X2罗纹 2X2罗纹
2025-12-09 02:18:48.796569+00 2025-12-09 02:18:48.796573+00 1094 200D单斜 200D单斜
2025-12-09 02:18:48.797529+00 2025-12-09 02:18:48.797533+00 1095
2025-12-09 02:18:48.798575+00 2025-12-09 02:18:48.798579+00 1096 170仿 170仿
2025-12-09 02:18:48.799566+00 2025-12-09 02:18:48.79957+00 1097 2*2 2*2
2025-12-09 02:18:48.800652+00 2025-12-09 02:18:48.800656+00 1098 120 120
2025-12-09 02:18:48.801626+00 2025-12-09 02:18:48.80163+00 1099
2025-12-09 02:18:48.8026+00 2025-12-09 02:18:48.802604+00 1100
2025-12-09 02:18:48.803575+00 2025-12-09 02:18:48.803579+00 1101
2025-12-09 02:18:48.804539+00 2025-12-09 02:18:48.804542+00 1102 140 140
2025-12-09 02:18:48.805486+00 2025-12-09 02:18:48.80549+00 1103
2025-12-09 02:18:48.80646+00 2025-12-09 02:18:48.806464+00 1104
2025-12-09 02:18:48.807508+00 2025-12-09 02:18:48.807512+00 1105
2025-12-09 02:18:48.80847+00 2025-12-09 02:18:48.808473+00 1106 180 180
2025-12-09 02:18:48.810376+00 2025-12-09 02:18:48.81038+00 1108
2025-12-09 02:18:48.811311+00 2025-12-09 02:18:48.811314+00 1109 180 180
2025-12-09 02:18:48.812271+00 2025-12-09 02:18:48.812275+00 1110
2025-12-09 02:18:48.813219+00 2025-12-09 02:18:48.813223+00 1111 140g四面弹 140g四面弹
2025-12-09 02:18:48.814158+00 2025-12-09 02:18:48.814161+00 1112
2025-12-09 02:18:48.815111+00 2025-12-09 02:18:48.815116+00 1113
2025-12-09 02:18:48.816066+00 2025-12-09 02:18:48.816069+00 1114
2025-12-09 02:18:48.817029+00 2025-12-09 02:18:48.817033+00 1115 180 180
2025-12-09 02:18:48.817868+00 2025-12-09 02:18:48.817872+00 1116 180 180
2025-12-09 02:18:48.818657+00 2025-12-09 02:18:48.81866+00 1117
2025-12-09 02:18:48.819457+00 2025-12-09 02:18:48.819461+00 1118 140 140
2025-12-09 02:18:48.820237+00 2025-12-09 02:18:48.820241+00 1119
2025-12-09 02:18:48.821028+00 2025-12-09 02:18:48.821032+00 1120
2025-12-09 02:18:48.821799+00 2025-12-09 02:18:48.821803+00 1121 230 230
2025-12-09 02:18:48.822546+00 2025-12-09 02:18:48.822549+00 1122 250 250
2025-12-09 02:18:48.823329+00 2025-12-09 02:18:48.823333+00 1123 120 120
2025-12-09 02:18:48.824093+00 2025-12-09 02:18:48.824096+00 1124
2025-12-09 02:18:48.824845+00 2025-12-09 02:18:48.824848+00 1125 仿 仿
2025-12-09 02:18:48.825612+00 2025-12-09 02:18:48.825616+00 1126
2025-12-09 02:18:48.82638+00 2025-12-09 02:18:48.826384+00 1127
2025-12-09 02:18:48.827141+00 2025-12-09 02:18:48.827144+00 1128 250G小卫衣 250G小卫衣
2025-12-09 02:18:48.828145+00 2025-12-09 02:18:48.828149+00 1129
2025-12-09 02:18:48.828908+00 2025-12-09 02:18:48.828911+00 1130
2025-12-09 02:18:48.829686+00 2025-12-09 02:18:48.82969+00 1131
2025-12-09 02:18:48.830464+00 2025-12-09 02:18:48.830467+00 1132 线 线
2025-12-09 02:18:48.831232+00 2025-12-09 02:18:48.831236+00 1133
2025-12-09 02:18:48.832003+00 2025-12-09 02:18:48.832007+00 1134 200仿 200仿
2025-12-09 02:18:48.832775+00 2025-12-09 02:18:48.832779+00 1135
2025-12-09 02:18:48.833541+00 2025-12-09 02:18:48.833544+00 1136 120 120
2025-12-09 02:18:48.834285+00 2025-12-09 02:18:48.834289+00 1137
2025-12-09 02:18:48.835057+00 2025-12-09 02:18:48.835061+00 1138
2025-12-09 02:18:48.83581+00 2025-12-09 02:18:48.835814+00 1139 200g 200g
2025-12-09 02:18:48.838212+00 2025-12-09 02:18:48.838216+00 1141
2025-12-09 02:18:48.838997+00 2025-12-09 02:18:48.839001+00 1142
2025-12-09 02:18:48.839763+00 2025-12-09 02:18:48.839767+00 1143 140 140
2025-12-09 02:18:48.84054+00 2025-12-09 02:18:48.840543+00 1144
2025-12-09 02:18:48.841286+00 2025-12-09 02:18:48.841289+00 1145
2025-12-09 02:18:48.842052+00 2025-12-09 02:18:48.842056+00 1146 2X2坑条蓝光白 2X2坑条蓝光白
2025-12-09 02:18:48.842822+00 2025-12-09 02:18:48.842825+00 1147 210 210
2025-12-09 02:18:48.843571+00 2025-12-09 02:18:48.843574+00 1148
2025-12-09 02:18:48.844355+00 2025-12-09 02:18:48.844359+00 1149
2025-12-09 02:18:48.845119+00 2025-12-09 02:18:48.845123+00 1150
2025-12-09 02:18:48.845868+00 2025-12-09 02:18:48.845871+00 1151
2025-12-09 02:18:48.846939+00 2025-12-09 02:18:48.846942+00 1152 8047 8047
2025-12-09 02:18:48.847692+00 2025-12-09 02:18:48.847695+00 1153 210 210
2025-12-09 02:18:48.848469+00 2025-12-09 02:18:48.848473+00 1154 220 220
2025-12-09 02:18:48.849225+00 2025-12-09 02:18:48.849229+00 1155
2025-12-09 02:18:48.850093+00 2025-12-09 02:18:48.850098+00 1156 190 190
2025-12-09 02:18:48.850861+00 2025-12-09 02:18:48.850865+00 1157
2025-12-09 02:18:48.851612+00 2025-12-09 02:18:48.851615+00 1158 180仿 180仿
2025-12-09 02:18:48.85238+00 2025-12-09 02:18:48.852384+00 1159 170 170
2025-12-09 02:18:48.853138+00 2025-12-09 02:18:48.853141+00 1160
2025-12-09 02:18:48.853891+00 2025-12-09 02:18:48.853895+00 1161 仿 仿
2025-12-09 02:18:48.854665+00 2025-12-09 02:18:48.854669+00 1162
2025-12-09 02:18:48.855422+00 2025-12-09 02:18:48.855426+00 1163
2025-12-09 02:18:48.85619+00 2025-12-09 02:18:48.856194+00 1164
2025-12-09 02:18:48.856955+00 2025-12-09 02:18:48.856959+00 1165
2025-12-09 02:18:48.809422+00 2025-12-09 02:18:49.244228+00 1107 120 120
2025-12-09 02:18:48.789019+00 2025-12-09 02:18:49.539865+00 1087
2025-12-09 02:18:48.857715+00 2025-12-09 02:18:48.857719+00 1166
2025-12-09 02:18:48.858708+00 2025-12-09 02:18:48.858713+00 1167
2025-12-09 02:18:48.859522+00 2025-12-09 02:18:48.859526+00 1168 180 180
2025-12-09 02:18:48.895627+00 2025-12-09 02:18:49.09924+00 1206 250 250
2025-12-09 02:18:48.861895+00 2025-12-09 02:18:48.861899+00 1170 105 105
2025-12-09 02:18:48.862707+00 2025-12-09 02:18:48.86271+00 1171 150D有光缎 150D有光缎
2025-12-09 02:18:48.863475+00 2025-12-09 02:18:48.863478+00 1172
2025-12-09 02:18:48.86425+00 2025-12-09 02:18:48.864254+00 1173
2025-12-09 02:18:48.865216+00 2025-12-09 02:18:48.86522+00 1174
2025-12-09 02:18:48.866546+00 2025-12-09 02:18:48.866549+00 1175 15666446 15666446
2025-12-09 02:18:48.86847+00 2025-12-09 02:18:48.868474+00 1176
2025-12-09 02:18:48.869426+00 2025-12-09 02:18:48.869429+00 1177 200 200
2025-12-09 02:18:48.87039+00 2025-12-09 02:18:48.870393+00 1178 190 190
2025-12-09 02:18:48.871335+00 2025-12-09 02:18:48.871339+00 1179
2025-12-09 02:18:48.872283+00 2025-12-09 02:18:48.872287+00 1180 48仿 48仿
2025-12-09 02:18:48.87324+00 2025-12-09 02:18:48.873244+00 1181
2025-12-09 02:18:48.874203+00 2025-12-09 02:18:48.874206+00 1182 75D尼龙四面弹 75D尼龙四面弹
2025-12-09 02:18:48.875159+00 2025-12-09 02:18:48.875162+00 1183 130 130
2025-12-09 02:18:48.876107+00 2025-12-09 02:18:48.87611+00 1184
2025-12-09 02:18:48.878005+00 2025-12-09 02:18:48.878009+00 1186 100D90克纬弹 100D90克纬弹
2025-12-09 02:18:48.878941+00 2025-12-09 02:18:48.878945+00 1187 105 105
2025-12-09 02:18:48.880089+00 2025-12-09 02:18:48.880093+00 1188
2025-12-09 02:18:48.881013+00 2025-12-09 02:18:48.881016+00 1189
2025-12-09 02:18:48.8818+00 2025-12-09 02:18:48.881803+00 1190
2025-12-09 02:18:48.882584+00 2025-12-09 02:18:48.882588+00 1191
2025-12-09 02:18:48.883365+00 2025-12-09 02:18:48.883368+00 1192 230g金钻绒 230g金钻绒
2025-12-09 02:18:48.884123+00 2025-12-09 02:18:48.884127+00 1193
2025-12-09 02:18:48.884911+00 2025-12-09 02:18:48.884914+00 1194 仿 仿
2025-12-09 02:18:48.886431+00 2025-12-09 02:18:48.886435+00 1196
2025-12-09 02:18:48.8872+00 2025-12-09 02:18:48.887204+00 1197
2025-12-09 02:18:48.887948+00 2025-12-09 02:18:48.887951+00 1198 170 170
2025-12-09 02:18:48.889882+00 2025-12-09 02:18:48.889887+00 1200 240T春亚纺 240T春亚纺
2025-12-09 02:18:48.890797+00 2025-12-09 02:18:48.890801+00 1201
2025-12-09 02:18:48.891572+00 2025-12-09 02:18:48.891575+00 1202 180 180
2025-12-09 02:18:48.893122+00 2025-12-09 02:18:48.893125+00 1203
2025-12-09 02:18:48.893897+00 2025-12-09 02:18:48.893901+00 1204
2025-12-09 02:18:48.894665+00 2025-12-09 02:18:48.894668+00 1205 200 200
2025-12-09 02:18:48.896602+00 2025-12-09 02:18:48.896606+00 1207
2025-12-09 02:18:48.897573+00 2025-12-09 02:18:48.897576+00 1208 50D 50D
2025-12-09 02:18:48.898527+00 2025-12-09 02:18:48.898531+00 1209
2025-12-09 02:18:48.899497+00 2025-12-09 02:18:48.899501+00 1210 170 170
2025-12-09 02:18:48.900457+00 2025-12-09 02:18:48.900461+00 1211
2025-12-09 02:18:48.901418+00 2025-12-09 02:18:48.901422+00 1212
2025-12-09 02:18:48.903138+00 2025-12-09 02:18:48.903876+00 1214
2025-12-09 02:18:48.904679+00 2025-12-09 02:18:48.904683+00 1215 110 110
2025-12-09 02:18:48.906242+00 2025-12-09 02:18:48.906246+00 1217
2025-12-09 02:18:48.907034+00 2025-12-09 02:18:48.907038+00 1218 200 200
2025-12-09 02:18:48.907796+00 2025-12-09 02:18:48.907799+00 1219
2025-12-09 02:18:48.908559+00 2025-12-09 02:18:48.908563+00 1220 120 120
2025-12-09 02:18:48.909335+00 2025-12-09 02:18:48.909339+00 1221 170仿 170仿
2025-12-09 02:18:48.910108+00 2025-12-09 02:18:48.910112+00 1222
2025-12-09 02:18:48.911651+00 2025-12-09 02:18:48.911654+00 1224 170g牛奶丝单面磨毛 170g牛奶丝单面磨毛
2025-12-09 02:18:48.912425+00 2025-12-09 02:18:48.912428+00 1225
2025-12-09 02:18:48.91319+00 2025-12-09 02:18:48.913193+00 1226 200 200
2025-12-09 02:18:48.913965+00 2025-12-09 02:18:48.913969+00 1227 230仿 230仿
2025-12-09 02:18:48.914735+00 2025-12-09 02:18:48.914739+00 1228
2025-12-09 02:18:48.915499+00 2025-12-09 02:18:48.915503+00 1229 Cvc羊毛绒 220 Cvc羊毛绒 220
2025-12-09 02:18:48.916273+00 2025-12-09 02:18:48.916277+00 1230
2025-12-09 02:18:48.917028+00 2025-12-09 02:18:48.917031+00 1231
2025-12-09 02:18:48.917791+00 2025-12-09 02:18:48.917794+00 1232
2025-12-09 02:18:48.918567+00 2025-12-09 02:18:48.91857+00 1233 230 230
2025-12-09 02:18:48.919321+00 2025-12-09 02:18:48.919324+00 1234
2025-12-09 02:18:48.885668+00 2025-12-09 02:18:48.920066+00 1195 仿 仿
2025-12-09 02:18:48.920852+00 2025-12-09 02:18:48.920856+00 1235
2025-12-09 02:18:48.921611+00 2025-12-09 02:18:48.921615+00 1236 140 140
2025-12-09 02:18:48.922846+00 2025-12-09 02:18:48.92285+00 1237
2025-12-09 02:18:48.923966+00 2025-12-09 02:18:48.92397+00 1238
2025-12-09 02:18:48.925077+00 2025-12-09 02:18:48.925081+00 1239
2025-12-09 02:18:48.926138+00 2025-12-09 02:18:48.926141+00 1240 200仿 200仿
2025-12-09 02:18:48.9282+00 2025-12-09 02:18:48.928204+00 1242 250 250
2025-12-09 02:18:48.929198+00 2025-12-09 02:18:48.929202+00 1243
2025-12-09 02:18:48.930165+00 2025-12-09 02:18:48.930168+00 1244 220仿 220仿
2025-12-09 02:18:48.931115+00 2025-12-09 02:18:48.931119+00 1245
2025-12-09 02:18:48.93209+00 2025-12-09 02:18:48.932094+00 1246
2025-12-09 02:18:48.933058+00 2025-12-09 02:18:48.933061+00 1247
2025-12-09 02:18:48.860316+00 2025-12-09 02:18:50.237009+00 1169
2025-12-09 02:18:48.888713+00 2025-12-09 02:18:50.258695+00 1199 30D真丝皱 30D真丝皱
2025-12-09 02:18:48.87705+00 2025-12-09 02:18:49.2365+00 1185
2025-12-09 02:18:48.902364+00 2025-12-09 02:18:49.410966+00 1213 180 180
2025-12-09 02:18:48.910896+00 2025-12-09 02:18:49.413317+00 1223 160 160
2025-12-09 02:18:48.927175+00 2025-12-09 02:18:49.46646+00 1241
2025-12-09 02:18:48.905457+00 2025-12-09 02:18:50.298582+00 1216
2025-12-09 02:18:48.935025+00 2025-12-09 02:18:48.935029+00 1249
2025-12-09 02:18:48.935971+00 2025-12-09 02:18:48.935974+00 1250
2025-12-09 02:18:48.937888+00 2025-12-09 02:18:48.937892+00 1252
2025-12-09 02:18:48.938841+00 2025-12-09 02:18:48.938845+00 1253 230 230
2025-12-09 02:18:48.939813+00 2025-12-09 02:18:48.939817+00 1254 180 180
2025-12-09 02:18:48.94169+00 2025-12-09 02:18:48.941694+00 1255 230 230
2025-12-09 02:18:48.942646+00 2025-12-09 02:18:48.942649+00 1256
2025-12-09 02:18:48.943604+00 2025-12-09 02:18:48.943607+00 1257
2025-12-09 02:18:48.944576+00 2025-12-09 02:18:48.944579+00 1258 40 40
2025-12-09 02:18:48.980595+00 2025-12-09 02:18:49.178781+00 1293 250 250
2025-12-09 02:18:48.947395+00 2025-12-09 02:18:48.947399+00 1260
2025-12-09 02:18:48.948336+00 2025-12-09 02:18:48.94834+00 1261 150D长丝四面弹米白 150D长丝四面弹米白
2025-12-09 02:18:48.949288+00 2025-12-09 02:18:48.949292+00 1262
2025-12-09 02:18:48.93403+00 2025-12-09 02:18:48.950206+00 1248
2025-12-09 02:18:48.951144+00 2025-12-09 02:18:48.951147+00 1263 仿 仿
2025-12-09 02:18:48.952201+00 2025-12-09 02:18:48.952204+00 1264
2025-12-09 02:18:48.953145+00 2025-12-09 02:18:48.953148+00 1265 75D加厚四面弹 75D加厚四面弹
2025-12-09 02:18:48.954095+00 2025-12-09 02:18:48.954099+00 1266
2025-12-09 02:18:48.95506+00 2025-12-09 02:18:48.955063+00 1267
2025-12-09 02:18:48.956937+00 2025-12-09 02:18:48.956941+00 1269
2025-12-09 02:18:48.957894+00 2025-12-09 02:18:48.957897+00 1270 TC竹节 TC竹节
2025-12-09 02:18:48.958845+00 2025-12-09 02:18:48.958848+00 1271 410D涤氨弹力网 410D涤氨弹力网
2025-12-09 02:18:48.9598+00 2025-12-09 02:18:48.959804+00 1272 30D经编 30D经编
2025-12-09 02:18:48.960751+00 2025-12-09 02:18:48.960755+00 1273 仿9088 仿9088
2025-12-09 02:18:48.961681+00 2025-12-09 02:18:48.961685+00 1274 200g罗马布 200g罗马布
2025-12-09 02:18:48.963899+00 2025-12-09 02:18:48.963903+00 1275
2025-12-09 02:18:48.964687+00 2025-12-09 02:18:48.96469+00 1276 110 110
2025-12-09 02:18:48.966286+00 2025-12-09 02:18:48.966289+00 1278
2025-12-09 02:18:48.967048+00 2025-12-09 02:18:48.967052+00 1279
2025-12-09 02:18:48.967993+00 2025-12-09 02:18:48.967997+00 1280
2025-12-09 02:18:48.968964+00 2025-12-09 02:18:48.968968+00 1281 T400 T400
2025-12-09 02:18:48.96991+00 2025-12-09 02:18:48.969915+00 1282
2025-12-09 02:18:48.970885+00 2025-12-09 02:18:48.970889+00 1283
2025-12-09 02:18:48.97183+00 2025-12-09 02:18:48.971834+00 1284
2025-12-09 02:18:48.972771+00 2025-12-09 02:18:48.972775+00 1285
2025-12-09 02:18:48.97372+00 2025-12-09 02:18:48.973724+00 1286
2025-12-09 02:18:48.974831+00 2025-12-09 02:18:48.974836+00 1287 170 170
2025-12-09 02:18:48.975778+00 2025-12-09 02:18:48.975782+00 1288
2025-12-09 02:18:48.976758+00 2025-12-09 02:18:48.976763+00 1289 仿 仿
2025-12-09 02:18:48.977728+00 2025-12-09 02:18:48.977733+00 1290
2025-12-09 02:18:48.978688+00 2025-12-09 02:18:48.978693+00 1291
2025-12-09 02:18:48.979649+00 2025-12-09 02:18:48.979653+00 1292 110 110
2025-12-09 02:18:48.981557+00 2025-12-09 02:18:48.981561+00 1294 仿9088 仿9088
2025-12-09 02:18:48.982523+00 2025-12-09 02:18:48.982528+00 1295
2025-12-09 02:18:48.983868+00 2025-12-09 02:18:48.983872+00 1296
2025-12-09 02:18:48.984832+00 2025-12-09 02:18:48.984837+00 1297
2025-12-09 02:18:48.985794+00 2025-12-09 02:18:48.985798+00 1298 210 210
2025-12-09 02:18:48.986753+00 2025-12-09 02:18:48.986756+00 1299
2025-12-09 02:18:48.987695+00 2025-12-09 02:18:48.9877+00 1300 120 120
2025-12-09 02:18:48.988647+00 2025-12-09 02:18:48.988651+00 1301 150 150
2025-12-09 02:18:48.989601+00 2025-12-09 02:18:48.989605+00 1302
2025-12-09 02:18:48.990552+00 2025-12-09 02:18:48.990557+00 1303 140 140
2025-12-09 02:18:48.991509+00 2025-12-09 02:18:48.991514+00 1304 180 180
2025-12-09 02:18:48.992455+00 2025-12-09 02:18:48.992459+00 1305
2025-12-09 02:18:48.993402+00 2025-12-09 02:18:48.993406+00 1306
2025-12-09 02:18:48.994356+00 2025-12-09 02:18:48.994361+00 1307
2025-12-09 02:18:48.995306+00 2025-12-09 02:18:48.99531+00 1308
2025-12-09 02:18:48.996252+00 2025-12-09 02:18:48.996256+00 1309
2025-12-09 02:18:48.997192+00 2025-12-09 02:18:48.997196+00 1310
2025-12-09 02:18:48.998308+00 2025-12-09 02:18:48.998313+00 1311
2025-12-09 02:18:48.99925+00 2025-12-09 02:18:48.999254+00 1312
2025-12-09 02:18:49.000187+00 2025-12-09 02:18:49.000191+00 1313
2025-12-09 02:18:49.001142+00 2025-12-09 02:18:49.001146+00 1314
2025-12-09 02:18:49.002092+00 2025-12-09 02:18:49.002096+00 1315
2025-12-09 02:18:49.003036+00 2025-12-09 02:18:49.003041+00 1316
2025-12-09 02:18:49.003996+00 2025-12-09 02:18:49.004+00 1317
2025-12-09 02:18:49.004954+00 2025-12-09 02:18:49.004958+00 1318
2025-12-09 02:18:49.005916+00 2025-12-09 02:18:49.005921+00 1319 50D荧光里布 50D荧光里布
2025-12-09 02:18:49.006859+00 2025-12-09 02:18:49.006863+00 1320 300D斜纹 300D斜纹
2025-12-09 02:18:49.007831+00 2025-12-09 02:18:49.007835+00 1321
2025-12-09 02:18:49.008802+00 2025-12-09 02:18:49.008807+00 1322
2025-12-09 02:18:49.010697+00 2025-12-09 02:18:49.010701+00 1324 280 280
2025-12-09 02:18:49.011648+00 2025-12-09 02:18:49.011653+00 1325
2025-12-09 02:18:49.01259+00 2025-12-09 02:18:49.012594+00 1326
2025-12-09 02:18:49.013551+00 2025-12-09 02:18:49.013556+00 1327 140g牛奶丝磨毛 140g牛奶丝磨毛
2025-12-09 02:18:49.014686+00 2025-12-09 02:18:49.01469+00 1328
2025-12-09 02:18:49.015845+00 2025-12-09 02:18:49.015849+00 1329
2025-12-09 02:18:49.017015+00 2025-12-09 02:18:49.017019+00 1330
2025-12-09 02:18:49.01816+00 2025-12-09 02:18:49.018164+00 1331
2025-12-09 02:18:49.019304+00 2025-12-09 02:18:49.019309+00 1332
2025-12-09 02:18:48.936918+00 2025-12-09 02:18:49.022917+00 1251 50D全光 50D全光
2025-12-09 02:18:48.945519+00 2025-12-09 02:18:49.076676+00 1259
2025-12-09 02:18:48.965501+00 2025-12-09 02:18:49.283808+00 1277
2025-12-09 02:18:49.009742+00 2025-12-09 02:18:49.452103+00 1323
2025-12-09 02:18:48.955998+00 2025-12-09 02:18:49.533994+00 1268
2025-12-09 02:18:49.02045+00 2025-12-09 02:18:49.020455+00 1333
2025-12-09 02:18:49.025731+00 2025-12-09 02:18:49.025736+00 1337
2025-12-09 02:18:49.026686+00 2025-12-09 02:18:49.02669+00 1338
2025-12-09 02:18:49.024763+00 2025-12-09 02:18:49.027596+00 1336
2025-12-09 02:18:49.028656+00 2025-12-09 02:18:49.028661+00 1339
2025-12-09 02:18:49.029855+00 2025-12-09 02:18:49.029859+00 1340 40D涤氨杏色 40D涤氨杏色
2025-12-09 02:18:49.03097+00 2025-12-09 02:18:49.030974+00 1341 250 250
2025-12-09 02:18:49.031856+00 2025-12-09 02:18:49.03186+00 1342
2025-12-09 02:18:49.032679+00 2025-12-09 02:18:49.032683+00 1343
2025-12-09 02:18:49.033504+00 2025-12-09 02:18:49.033508+00 1344
2025-12-09 02:18:49.034394+00 2025-12-09 02:18:49.034397+00 1345 220 220
2025-12-09 02:18:49.035219+00 2025-12-09 02:18:49.035223+00 1346 75D本白双层四面弹 75D本白双层四面弹
2025-12-09 02:18:49.036031+00 2025-12-09 02:18:49.036035+00 1347 9088 9088
2025-12-09 02:18:49.036843+00 2025-12-09 02:18:49.036847+00 1348 仿 仿
2025-12-09 02:18:49.037619+00 2025-12-09 02:18:49.037623+00 1349
2025-12-09 02:18:49.038407+00 2025-12-09 02:18:49.038411+00 1350
2025-12-09 02:18:49.03918+00 2025-12-09 02:18:49.039183+00 1351
2025-12-09 02:18:49.03996+00 2025-12-09 02:18:49.039964+00 1352
2025-12-09 02:18:49.040744+00 2025-12-09 02:18:49.040748+00 1353
2025-12-09 02:18:49.04151+00 2025-12-09 02:18:49.041513+00 1354
2025-12-09 02:18:49.042278+00 2025-12-09 02:18:49.042282+00 1355
2025-12-09 02:18:49.043057+00 2025-12-09 02:18:49.043944+00 1356
2025-12-09 02:18:49.044769+00 2025-12-09 02:18:49.044773+00 1357 190 190
2025-12-09 02:18:49.046358+00 2025-12-09 02:18:49.046362+00 1359 20D皱 20D皱
2025-12-09 02:18:49.047887+00 2025-12-09 02:18:49.04789+00 1361
2025-12-09 02:18:49.048673+00 2025-12-09 02:18:49.048676+00 1362
2025-12-09 02:18:49.049438+00 2025-12-09 02:18:49.049442+00 1363
2025-12-09 02:18:49.050202+00 2025-12-09 02:18:49.050206+00 1364 TC TC
2025-12-09 02:18:49.050971+00 2025-12-09 02:18:49.050975+00 1365 150D双斜 150D双斜
2025-12-09 02:18:49.051735+00 2025-12-09 02:18:49.051739+00 1366
2025-12-09 02:18:49.052509+00 2025-12-09 02:18:49.052513+00 1367
2025-12-09 02:18:49.053275+00 2025-12-09 02:18:49.053278+00 1368
2025-12-09 02:18:49.054059+00 2025-12-09 02:18:49.054063+00 1369
2025-12-09 02:18:49.054841+00 2025-12-09 02:18:49.054845+00 1370
2025-12-09 02:18:49.055618+00 2025-12-09 02:18:49.055621+00 1371
2025-12-09 02:18:49.056373+00 2025-12-09 02:18:49.056377+00 1372
2025-12-09 02:18:49.057146+00 2025-12-09 02:18:49.05715+00 1373
2025-12-09 02:18:49.05791+00 2025-12-09 02:18:49.057913+00 1374
2025-12-09 02:18:49.058679+00 2025-12-09 02:18:49.058683+00 1375 110 110
2025-12-09 02:18:49.059466+00 2025-12-09 02:18:49.059469+00 1376
2025-12-09 02:18:49.060237+00 2025-12-09 02:18:49.060241+00 1377
2025-12-09 02:18:49.061015+00 2025-12-09 02:18:49.061018+00 1378
2025-12-09 02:18:49.061779+00 2025-12-09 02:18:49.061782+00 1379
2025-12-09 02:18:49.062609+00 2025-12-09 02:18:49.062613+00 1380
2025-12-09 02:18:49.0634+00 2025-12-09 02:18:49.063404+00 1381
2025-12-09 02:18:49.06438+00 2025-12-09 02:18:49.064385+00 1382
2025-12-09 02:18:49.06525+00 2025-12-09 02:18:49.065253+00 1383
2025-12-09 02:18:49.066158+00 2025-12-09 02:18:49.066162+00 1384
2025-12-09 02:18:49.067064+00 2025-12-09 02:18:49.067067+00 1385
2025-12-09 02:18:49.067895+00 2025-12-09 02:18:49.067899+00 1386
2025-12-09 02:18:49.068714+00 2025-12-09 02:18:49.068717+00 1387 50D全光 50D全光
2025-12-09 02:18:49.069499+00 2025-12-09 02:18:49.069503+00 1388
2025-12-09 02:18:49.070321+00 2025-12-09 02:18:49.070324+00 1389 120D弹力四面弹 120D弹力四面弹
2025-12-09 02:18:49.071116+00 2025-12-09 02:18:49.071119+00 1390
2025-12-09 02:18:49.071917+00 2025-12-09 02:18:49.071921+00 1391 75D牛奶丝双磨 75D牛奶丝双磨
2025-12-09 02:18:49.072719+00 2025-12-09 02:18:49.072722+00 1392
2025-12-09 02:18:49.073498+00 2025-12-09 02:18:49.073502+00 1393 线 线
2025-12-09 02:18:49.074289+00 2025-12-09 02:18:49.074292+00 1394
2025-12-09 02:18:49.07509+00 2025-12-09 02:18:49.075093+00 1395 106 106
2025-12-09 02:18:49.075897+00 2025-12-09 02:18:49.0759+00 1396 50D雪纺 50D雪纺
2025-12-09 02:18:49.077538+00 2025-12-09 02:18:49.077543+00 1397
2025-12-09 02:18:49.078374+00 2025-12-09 02:18:49.078378+00 1398
2025-12-09 02:18:49.079974+00 2025-12-09 02:18:49.079977+00 1400 250 250
2025-12-09 02:18:49.080768+00 2025-12-09 02:18:49.080771+00 1401 180仿 180仿
2025-12-09 02:18:49.081562+00 2025-12-09 02:18:49.081566+00 1402
2025-12-09 02:18:49.082853+00 2025-12-09 02:18:49.082857+00 1403
2025-12-09 02:18:49.083636+00 2025-12-09 02:18:49.08364+00 1404
2025-12-09 02:18:49.084448+00 2025-12-09 02:18:49.084452+00 1405 170 170
2025-12-09 02:18:49.08522+00 2025-12-09 02:18:49.085224+00 1406
2025-12-09 02:18:49.08601+00 2025-12-09 02:18:49.086014+00 1407
2025-12-09 02:18:49.086809+00 2025-12-09 02:18:49.086812+00 1408 110 110
2025-12-09 02:18:49.087586+00 2025-12-09 02:18:49.087589+00 1409
2025-12-09 02:18:49.088385+00 2025-12-09 02:18:49.088389+00 1410
2025-12-09 02:18:49.089177+00 2025-12-09 02:18:49.089181+00 1411
2025-12-09 02:18:49.090765+00 2025-12-09 02:18:49.090768+00 1413 110 110
2025-12-09 02:18:49.091545+00 2025-12-09 02:18:49.091548+00 1414
2025-12-09 02:18:49.092343+00 2025-12-09 02:18:49.092347+00 1415
2025-12-09 02:18:49.093128+00 2025-12-09 02:18:49.093132+00 1416
2025-12-09 02:18:49.093908+00 2025-12-09 02:18:49.093911+00 1417
2025-12-09 02:18:49.094682+00 2025-12-09 02:18:49.094685+00 1418
2025-12-09 02:18:49.079167+00 2025-12-09 02:18:49.152901+00 1399
2025-12-09 02:18:49.045554+00 2025-12-09 02:18:49.495149+00 1358
2025-12-09 02:18:49.047127+00 2025-12-09 02:18:50.206484+00 1360
2025-12-09 02:18:49.021629+00 2025-12-09 02:18:50.291037+00 1334
2025-12-09 02:18:49.089955+00 2025-12-09 02:18:50.295252+00 1412 100D四面弹 100D四面弹
2025-12-09 02:18:49.023865+00 2025-12-09 02:18:50.336217+00 1335
2025-12-09 02:18:49.095483+00 2025-12-09 02:18:49.095486+00 1419
2025-12-09 02:18:49.097105+00 2025-12-09 02:18:49.097109+00 1420
2025-12-09 02:18:49.09821+00 2025-12-09 02:18:49.098215+00 1421
2025-12-09 02:18:49.100088+00 2025-12-09 02:18:49.100092+00 1422 180 180
2025-12-09 02:18:49.100896+00 2025-12-09 02:18:49.1009+00 1423
2025-12-09 02:18:49.10171+00 2025-12-09 02:18:49.101714+00 1424
2025-12-09 02:18:49.102497+00 2025-12-09 02:18:49.1025+00 1425 100D超柔四面弹 100D超柔四面弹
2025-12-09 02:18:49.103292+00 2025-12-09 02:18:49.103296+00 1426 仿 仿
2025-12-09 02:18:49.104093+00 2025-12-09 02:18:49.104097+00 1427 T400牛津布 T400牛津布
2025-12-09 02:18:49.104944+00 2025-12-09 02:18:49.104948+00 1428 1802*2 1802*2
2025-12-09 02:18:49.105758+00 2025-12-09 02:18:49.105762+00 1429 250g复合破卡 250g复合破卡
2025-12-09 02:18:49.106534+00 2025-12-09 02:18:49.106537+00 1430
2025-12-09 02:18:49.107326+00 2025-12-09 02:18:49.107329+00 1431 D153# () D153# ()
2025-12-09 02:18:49.1081+00 2025-12-09 02:18:49.108103+00 1432 100 100
2025-12-09 02:18:49.108877+00 2025-12-09 02:18:49.108881+00 1433
2025-12-09 02:18:49.109639+00 2025-12-09 02:18:49.109643+00 1434
2025-12-09 02:18:49.110443+00 2025-12-09 02:18:49.110448+00 1435 160 160
2025-12-09 02:18:49.111323+00 2025-12-09 02:18:49.111327+00 1436
2025-12-09 02:18:49.112117+00 2025-12-09 02:18:49.112121+00 1437
2025-12-09 02:18:49.112913+00 2025-12-09 02:18:49.112917+00 1438 T400破卡大白色 T400破卡大白色
2025-12-09 02:18:49.113692+00 2025-12-09 02:18:49.113695+00 1439 75D仿记忆 75D仿记忆
2025-12-09 02:18:49.114489+00 2025-12-09 02:18:49.114493+00 1440 仿 仿
2025-12-09 02:18:49.115275+00 2025-12-09 02:18:49.115278+00 1441 30D天丝竹节 30D天丝竹节
2025-12-09 02:18:49.116037+00 2025-12-09 02:18:49.11604+00 1442
2025-12-09 02:18:49.116812+00 2025-12-09 02:18:49.116816+00 1443
2025-12-09 02:18:49.117587+00 2025-12-09 02:18:49.117591+00 1444 170 170
2025-12-09 02:18:49.118369+00 2025-12-09 02:18:49.118373+00 1445
2025-12-09 02:18:49.119154+00 2025-12-09 02:18:49.119158+00 1446
2025-12-09 02:18:49.119915+00 2025-12-09 02:18:49.119918+00 1447
2025-12-09 02:18:49.120693+00 2025-12-09 02:18:49.120697+00 1448 200仿 200仿
2025-12-09 02:18:49.121662+00 2025-12-09 02:18:49.121666+00 1449
2025-12-09 02:18:49.122623+00 2025-12-09 02:18:49.122626+00 1450
2025-12-09 02:18:49.123618+00 2025-12-09 02:18:49.123622+00 1451 仿1.51 仿1.51
2025-12-09 02:18:49.124588+00 2025-12-09 02:18:49.124592+00 1452
2025-12-09 02:18:49.125557+00 2025-12-09 02:18:49.125561+00 1453 250 250
2025-12-09 02:18:49.126536+00 2025-12-09 02:18:49.12654+00 1454
2025-12-09 02:18:49.127488+00 2025-12-09 02:18:49.127491+00 1455
2025-12-09 02:18:49.129442+00 2025-12-09 02:18:49.129446+00 1457 100D加厚四面弹 100D加厚四面弹
2025-12-09 02:18:49.130229+00 2025-12-09 02:18:49.130233+00 1458
2025-12-09 02:18:49.131014+00 2025-12-09 02:18:49.131017+00 1459
2025-12-09 02:18:49.131783+00 2025-12-09 02:18:49.131787+00 1460
2025-12-09 02:18:49.132568+00 2025-12-09 02:18:49.132572+00 1461 75D全光加厚 75D全光加厚
2025-12-09 02:18:49.13334+00 2025-12-09 02:18:49.133344+00 1462 12 12
2025-12-09 02:18:49.134098+00 2025-12-09 02:18:49.134101+00 1463
2025-12-09 02:18:49.134885+00 2025-12-09 02:18:49.134888+00 1464 仿 仿
2025-12-09 02:18:49.135643+00 2025-12-09 02:18:49.135647+00 1465
2025-12-09 02:18:49.136416+00 2025-12-09 02:18:49.13642+00 1466
2025-12-09 02:18:49.137193+00 2025-12-09 02:18:49.137197+00 1467
2025-12-09 02:18:49.137957+00 2025-12-09 02:18:49.13796+00 1468
2025-12-09 02:18:49.139646+00 2025-12-09 02:18:49.13965+00 1470 140 140
2025-12-09 02:18:49.14042+00 2025-12-09 02:18:49.140423+00 1471 92 92
2025-12-09 02:18:49.141193+00 2025-12-09 02:18:49.141196+00 1472
2025-12-09 02:18:49.142151+00 2025-12-09 02:18:49.142154+00 1473 75D牛奶丝 75D牛奶丝
2025-12-09 02:18:49.142934+00 2025-12-09 02:18:49.142938+00 1474
2025-12-09 02:18:49.14371+00 2025-12-09 02:18:49.143713+00 1475 200D平纹四面弹 200D平纹四面弹
2025-12-09 02:18:49.144464+00 2025-12-09 02:18:49.144468+00 1476 180 180
2025-12-09 02:18:49.145249+00 2025-12-09 02:18:49.145252+00 1477 线 线
2025-12-09 02:18:49.146013+00 2025-12-09 02:18:49.146017+00 1478
2025-12-09 02:18:49.146801+00 2025-12-09 02:18:49.146805+00 1479 11 11
2025-12-09 02:18:49.147565+00 2025-12-09 02:18:49.147568+00 1480
2025-12-09 02:18:49.148332+00 2025-12-09 02:18:49.148336+00 1481 50D米白四面弹 50D米白四面弹
2025-12-09 02:18:49.149086+00 2025-12-09 02:18:49.149089+00 1482
2025-12-09 02:18:49.14986+00 2025-12-09 02:18:49.149864+00 1483 仿 仿
2025-12-09 02:18:49.15063+00 2025-12-09 02:18:49.150633+00 1484 2502X2坑条 2502X2坑条
2025-12-09 02:18:49.151388+00 2025-12-09 02:18:49.151391+00 1485
2025-12-09 02:18:49.153724+00 2025-12-09 02:18:49.153728+00 1487 16 16
2025-12-09 02:18:49.154511+00 2025-12-09 02:18:49.154515+00 1488 50 50
2025-12-09 02:18:49.155274+00 2025-12-09 02:18:49.155277+00 1489
2025-12-09 02:18:49.156052+00 2025-12-09 02:18:49.156056+00 1490
2025-12-09 02:18:49.156824+00 2025-12-09 02:18:49.156827+00 1491 120 120
2025-12-09 02:18:49.157588+00 2025-12-09 02:18:49.157591+00 1492
2025-12-09 02:18:49.158371+00 2025-12-09 02:18:49.158375+00 1493
2025-12-09 02:18:49.159136+00 2025-12-09 02:18:49.159139+00 1494 250 250
2025-12-09 02:18:49.160678+00 2025-12-09 02:18:49.160681+00 1496
2025-12-09 02:18:49.161451+00 2025-12-09 02:18:49.161455+00 1497
2025-12-09 02:18:49.162223+00 2025-12-09 02:18:49.162226+00 1498
2025-12-09 02:18:49.162978+00 2025-12-09 02:18:49.162981+00 1499
2025-12-09 02:18:49.163759+00 2025-12-09 02:18:49.163763+00 1500 仿 仿
2025-12-09 02:18:49.164525+00 2025-12-09 02:18:49.164528+00 1501 . .
2025-12-09 02:18:49.16614+00 2025-12-09 02:18:49.166145+00 1503 110. 110.
2025-12-09 02:18:49.138741+00 2025-12-09 02:18:49.265485+00 1469 8 8
2025-12-09 02:18:49.152143+00 2025-12-09 02:18:50.332383+00 1486
2025-12-09 02:18:49.165279+00 2025-12-09 02:18:49.425799+00 1502
2025-12-09 02:18:49.159908+00 2025-12-09 02:18:50.250192+00 1495
2025-12-09 02:18:49.128472+00 2025-12-09 02:18:49.535028+00 1456 线 线
2025-12-09 02:18:49.166936+00 2025-12-09 02:18:50.220906+00 1504
2025-12-09 02:18:49.169291+00 2025-12-09 02:18:49.169294+00 1505
2025-12-09 02:18:49.170092+00 2025-12-09 02:18:49.170096+00 1506
2025-12-09 02:18:49.171716+00 2025-12-09 02:18:49.17172+00 1508
2025-12-09 02:18:49.174054+00 2025-12-09 02:18:49.174058+00 1510
2025-12-09 02:18:49.174838+00 2025-12-09 02:18:49.174842+00 1511
2025-12-09 02:18:49.175611+00 2025-12-09 02:18:49.176366+00 1512
2025-12-09 02:18:49.177168+00 2025-12-09 02:18:49.177172+00 1513
2025-12-09 02:18:49.180059+00 2025-12-09 02:18:49.180063+00 1515
2025-12-09 02:18:49.183613+00 2025-12-09 02:18:49.183617+00 1518
2025-12-09 02:18:49.184417+00 2025-12-09 02:18:49.185173+00 1519 100D单斜 100D单斜
2025-12-09 02:18:49.186011+00 2025-12-09 02:18:49.186014+00 1520 170 170
2025-12-09 02:18:49.186795+00 2025-12-09 02:18:49.186798+00 1521
2025-12-09 02:18:49.187585+00 2025-12-09 02:18:49.187589+00 1522
2025-12-09 02:18:49.188365+00 2025-12-09 02:18:49.188369+00 1523
2025-12-09 02:18:49.18914+00 2025-12-09 02:18:49.189144+00 1524
2025-12-09 02:18:49.189921+00 2025-12-09 02:18:49.189925+00 1525 170 170
2025-12-09 02:18:49.191466+00 2025-12-09 02:18:49.19147+00 1527 230 230
2025-12-09 02:18:49.193021+00 2025-12-09 02:18:49.193025+00 1528
2025-12-09 02:18:49.1938+00 2025-12-09 02:18:49.193803+00 1529 . .
2025-12-09 02:18:49.194576+00 2025-12-09 02:18:49.194579+00 1530
2025-12-09 02:18:49.195367+00 2025-12-09 02:18:49.195371+00 1531
2025-12-09 02:18:49.19614+00 2025-12-09 02:18:49.196144+00 1532 200 200
2025-12-09 02:18:49.196924+00 2025-12-09 02:18:49.196928+00 1533 120. 120.
2025-12-09 02:18:49.197693+00 2025-12-09 02:18:49.197696+00 1534 260 260
2025-12-09 02:18:49.198469+00 2025-12-09 02:18:49.198473+00 1535 仿 仿
2025-12-09 02:18:49.199245+00 2025-12-09 02:18:49.199248+00 1536 180 180
2025-12-09 02:18:49.200007+00 2025-12-09 02:18:49.20001+00 1537
2025-12-09 02:18:49.20079+00 2025-12-09 02:18:49.200794+00 1538
2025-12-09 02:18:49.201549+00 2025-12-09 02:18:49.201552+00 1539 220 220
2025-12-09 02:18:49.202304+00 2025-12-09 02:18:49.202308+00 1540 150D长丝 150D长丝
2025-12-09 02:18:49.203084+00 2025-12-09 02:18:49.203088+00 1541 240 240
2025-12-09 02:18:49.203873+00 2025-12-09 02:18:49.203876+00 1542 . .
2025-12-09 02:18:49.204667+00 2025-12-09 02:18:49.204671+00 1543 200 200
2025-12-09 02:18:49.205458+00 2025-12-09 02:18:49.205461+00 1544 120 120
2025-12-09 02:18:49.20622+00 2025-12-09 02:18:49.206223+00 1545
2025-12-09 02:18:49.207005+00 2025-12-09 02:18:49.207009+00 1546 210. 210.
2025-12-09 02:18:49.207773+00 2025-12-09 02:18:49.207777+00 1547 160 160
2025-12-09 02:18:49.208563+00 2025-12-09 02:18:49.208566+00 1548
2025-12-09 02:18:49.209331+00 2025-12-09 02:18:49.209334+00 1549 . .
2025-12-09 02:18:49.210102+00 2025-12-09 02:18:49.210106+00 1550 100D四面弹120g 100D四面弹120g
2025-12-09 02:18:49.210882+00 2025-12-09 02:18:49.210886+00 1551 250G坑条 250G坑条
2025-12-09 02:18:49.211631+00 2025-12-09 02:18:49.211634+00 1552 120. 120.
2025-12-09 02:18:49.212409+00 2025-12-09 02:18:49.212413+00 1553 . .
2025-12-09 02:18:49.213191+00 2025-12-09 02:18:49.213195+00 1554
2025-12-09 02:18:49.213964+00 2025-12-09 02:18:49.213968+00 1555 120D精品四面弹 120D精品四面弹
2025-12-09 02:18:49.296366+00 2025-12-09 02:18:49.296371+00 1634 250 250
2025-12-09 02:18:49.214738+00 2025-12-09 02:18:49.214742+00 1556 170. 170.
2025-12-09 02:18:49.215515+00 2025-12-09 02:18:49.215519+00 1557
2025-12-09 02:18:49.216298+00 2025-12-09 02:18:49.216302+00 1558 . .
2025-12-09 02:18:49.21708+00 2025-12-09 02:18:49.217084+00 1559 . .
2025-12-09 02:18:49.21785+00 2025-12-09 02:18:49.217854+00 1560 30D天丝米白 30D天丝米白
2025-12-09 02:18:49.218635+00 2025-12-09 02:18:49.218639+00 1561
2025-12-09 02:18:49.21955+00 2025-12-09 02:18:49.219554+00 1562
2025-12-09 02:18:49.220501+00 2025-12-09 02:18:49.220505+00 1563 仿 仿
2025-12-09 02:18:49.22145+00 2025-12-09 02:18:49.221455+00 1564
2025-12-09 02:18:49.22241+00 2025-12-09 02:18:49.222415+00 1565 170. 170.
2025-12-09 02:18:49.223358+00 2025-12-09 02:18:49.223363+00 1566
2025-12-09 02:18:49.224305+00 2025-12-09 02:18:49.224309+00 1567
2025-12-09 02:18:49.225257+00 2025-12-09 02:18:49.225261+00 1568 110 110
2025-12-09 02:18:49.226408+00 2025-12-09 02:18:49.226412+00 1569
2025-12-09 02:18:49.227555+00 2025-12-09 02:18:49.227559+00 1570 200 200
2025-12-09 02:18:49.228721+00 2025-12-09 02:18:49.228725+00 1571
2025-12-09 02:18:49.229874+00 2025-12-09 02:18:49.229879+00 1572 110 110
2025-12-09 02:18:49.231101+00 2025-12-09 02:18:49.231106+00 1573 170 170
2025-12-09 02:18:49.232326+00 2025-12-09 02:18:49.23233+00 1574 . .
2025-12-09 02:18:49.233483+00 2025-12-09 02:18:49.233488+00 1575 120. 120.
2025-12-09 02:18:49.234635+00 2025-12-09 02:18:49.234639+00 1576 120 120
2025-12-09 02:18:49.235585+00 2025-12-09 02:18:49.23559+00 1577 50D全光 . 50D全光 .
2025-12-09 02:18:49.237529+00 2025-12-09 02:18:49.237534+00 1578 170仿 170仿
2025-12-09 02:18:49.238501+00 2025-12-09 02:18:49.238506+00 1579 110 110
2025-12-09 02:18:49.239468+00 2025-12-09 02:18:49.239473+00 1580 . .
2025-12-09 02:18:49.240427+00 2025-12-09 02:18:49.240431+00 1581
2025-12-09 02:18:49.241397+00 2025-12-09 02:18:49.241402+00 1582 1802X2 1802X2
2025-12-09 02:18:49.242364+00 2025-12-09 02:18:49.242369+00 1583
2025-12-09 02:18:49.243314+00 2025-12-09 02:18:49.243319+00 1584 170 170
2025-12-09 02:18:49.245223+00 2025-12-09 02:18:49.245227+00 1585 鹿 鹿
2025-12-09 02:18:49.190676+00 2025-12-09 02:18:49.393946+00 1526 250 250
2025-12-09 02:18:49.177967+00 2025-12-09 02:18:49.47573+00 1514
2025-12-09 02:18:49.173277+00 2025-12-09 02:18:49.488406+00 1509
2025-12-09 02:18:49.17094+00 2025-12-09 02:18:49.526304+00 1507 A A
2025-12-09 02:18:49.182783+00 2025-12-09 02:18:50.196914+00 1517
2025-12-09 02:18:47.566059+00 2025-12-09 02:18:50.359389+00 594
2025-12-09 02:18:49.180914+00 2025-12-09 02:18:50.367206+00 1516 50D全光 50D全光
2025-12-09 02:18:49.24619+00 2025-12-09 02:18:49.246195+00 1586 仿 仿
2025-12-09 02:18:49.247175+00 2025-12-09 02:18:49.24718+00 1587 170 170
2025-12-09 02:18:49.24812+00 2025-12-09 02:18:49.248124+00 1588
2025-12-09 02:18:49.249099+00 2025-12-09 02:18:49.249103+00 1589 110 110
2025-12-09 02:18:49.250059+00 2025-12-09 02:18:49.250064+00 1590 140 140
2025-12-09 02:18:49.251016+00 2025-12-09 02:18:49.251021+00 1591 150 150
2025-12-09 02:18:49.251977+00 2025-12-09 02:18:49.251982+00 1592
2025-12-09 02:18:49.252958+00 2025-12-09 02:18:49.252962+00 1593 200 200
2025-12-09 02:18:49.253955+00 2025-12-09 02:18:49.253959+00 1594
2025-12-09 02:18:49.25492+00 2025-12-09 02:18:49.254924+00 1595 200 200
2025-12-09 02:18:49.255884+00 2025-12-09 02:18:49.255888+00 1596
2025-12-09 02:18:49.25686+00 2025-12-09 02:18:49.256864+00 1597 230 230
2025-12-09 02:18:49.257816+00 2025-12-09 02:18:49.25782+00 1598
2025-12-09 02:18:49.258773+00 2025-12-09 02:18:49.258777+00 1599
2025-12-09 02:18:49.259723+00 2025-12-09 02:18:49.259727+00 1600 160 160
2025-12-09 02:18:49.260689+00 2025-12-09 02:18:49.260693+00 1601 180 180
2025-12-09 02:18:49.261668+00 2025-12-09 02:18:49.261672+00 1602
2025-12-09 02:18:49.262627+00 2025-12-09 02:18:49.262632+00 1603
2025-12-09 02:18:49.263591+00 2025-12-09 02:18:49.263596+00 1604 260 260
2025-12-09 02:18:49.26455+00 2025-12-09 02:18:49.264554+00 1605
2025-12-09 02:18:49.266496+00 2025-12-09 02:18:49.2665+00 1606 180 180
2025-12-09 02:18:49.267466+00 2025-12-09 02:18:49.267471+00 1607 200 200
2025-12-09 02:18:49.268432+00 2025-12-09 02:18:49.268437+00 1608 200 200
2025-12-09 02:18:49.269385+00 2025-12-09 02:18:49.269389+00 1609 170 170
2025-12-09 02:18:49.270331+00 2025-12-09 02:18:49.270335+00 1610
2025-12-09 02:18:49.271296+00 2025-12-09 02:18:49.271301+00 1611 140 140
2025-12-09 02:18:49.27319+00 2025-12-09 02:18:49.273194+00 1612
2025-12-09 02:18:49.274157+00 2025-12-09 02:18:49.274162+00 1613 210仿 210仿
2025-12-09 02:18:49.275128+00 2025-12-09 02:18:49.275133+00 1614
2025-12-09 02:18:49.276085+00 2025-12-09 02:18:49.27609+00 1615
2025-12-09 02:18:49.277055+00 2025-12-09 02:18:49.277059+00 1616 120 120
2025-12-09 02:18:49.27805+00 2025-12-09 02:18:49.278055+00 1617
2025-12-09 02:18:49.279024+00 2025-12-09 02:18:49.279029+00 1618 140 140
2025-12-09 02:18:49.280003+00 2025-12-09 02:18:49.280008+00 1619 2302x2坑条 2302x2坑条
2025-12-09 02:18:49.280961+00 2025-12-09 02:18:49.280966+00 1620
2025-12-09 02:18:49.281922+00 2025-12-09 02:18:49.281927+00 1621
2025-12-09 02:18:49.282882+00 2025-12-09 02:18:49.282886+00 1622 8867# 8867#
2025-12-09 02:18:49.284806+00 2025-12-09 02:18:49.284811+00 1623 180 180
2025-12-09 02:18:49.285773+00 2025-12-09 02:18:49.286682+00 1624
2025-12-09 02:18:49.287687+00 2025-12-09 02:18:49.287691+00 1625
2025-12-09 02:18:49.288652+00 2025-12-09 02:18:49.288657+00 1626 200 200
2025-12-09 02:18:49.28962+00 2025-12-09 02:18:49.289625+00 1627 92 92
2025-12-09 02:18:49.290582+00 2025-12-09 02:18:49.290587+00 1628 绿 绿
2025-12-09 02:18:49.291531+00 2025-12-09 02:18:49.291535+00 1629
2025-12-09 02:18:49.292505+00 2025-12-09 02:18:49.29251+00 1630 140 140
2025-12-09 02:18:49.293475+00 2025-12-09 02:18:49.29348+00 1631
2025-12-09 02:18:49.294454+00 2025-12-09 02:18:49.294459+00 1632 92 92
2025-12-09 02:18:49.295403+00 2025-12-09 02:18:49.295407+00 1633 230 230
2025-12-09 02:18:49.297322+00 2025-12-09 02:18:49.297327+00 1635 180 180
2025-12-09 02:18:49.298273+00 2025-12-09 02:18:49.298277+00 1636 2202*2 2202*2
2025-12-09 02:18:49.300202+00 2025-12-09 02:18:49.300207+00 1638 230 230
2025-12-09 02:18:49.30115+00 2025-12-09 02:18:49.301154+00 1639 仿 仿
2025-12-09 02:18:49.303071+00 2025-12-09 02:18:49.303075+00 1641
2025-12-09 02:18:49.305287+00 2025-12-09 02:18:49.305292+00 1643 200 200
2025-12-09 02:18:49.306254+00 2025-12-09 02:18:49.306259+00 1644 250 250
2025-12-09 02:18:49.307207+00 2025-12-09 02:18:49.307212+00 1645 160 160
2025-12-09 02:18:49.30816+00 2025-12-09 02:18:49.308164+00 1646
2025-12-09 02:18:49.309131+00 2025-12-09 02:18:49.309136+00 1647
2025-12-09 02:18:49.3101+00 2025-12-09 02:18:49.310104+00 1648 75D横条 75D横条
2025-12-09 02:18:49.311062+00 2025-12-09 02:18:49.311067+00 1649 230 230
2025-12-09 02:18:49.312029+00 2025-12-09 02:18:49.312033+00 1650
2025-12-09 02:18:49.313953+00 2025-12-09 02:18:49.313957+00 1651
2025-12-09 02:18:49.314931+00 2025-12-09 02:18:49.314936+00 1652 200 200
2025-12-09 02:18:49.315914+00 2025-12-09 02:18:49.315919+00 1653 180 180
2025-12-09 02:18:49.316888+00 2025-12-09 02:18:49.316892+00 1654
2025-12-09 02:18:49.304321+00 2025-12-09 02:18:49.317816+00 1642
2025-12-09 02:18:49.318804+00 2025-12-09 02:18:49.318808+00 1655
2025-12-09 02:18:49.319763+00 2025-12-09 02:18:49.319768+00 1656 50D银光 50D银光
2025-12-09 02:18:49.320729+00 2025-12-09 02:18:49.320733+00 1657 190 190
2025-12-09 02:18:49.321683+00 2025-12-09 02:18:49.321688+00 1658
2025-12-09 02:18:49.322642+00 2025-12-09 02:18:49.322647+00 1659 仿 仿
2025-12-09 02:18:49.323611+00 2025-12-09 02:18:49.323616+00 1660
2025-12-09 02:18:49.324574+00 2025-12-09 02:18:49.324578+00 1661
2025-12-09 02:18:49.32553+00 2025-12-09 02:18:49.325535+00 1662 200 200
2025-12-09 02:18:49.326507+00 2025-12-09 02:18:49.326511+00 1663 180仿 180仿
2025-12-09 02:18:49.327465+00 2025-12-09 02:18:49.32747+00 1664 210 210
2025-12-09 02:18:49.328418+00 2025-12-09 02:18:49.328423+00 1665
2025-12-09 02:18:49.299238+00 2025-12-09 02:18:50.315912+00 1637
2025-12-09 02:18:49.302107+00 2025-12-09 02:18:50.3459+00 1640
2025-12-09 02:18:49.32937+00 2025-12-09 02:18:49.329375+00 1666
2025-12-09 02:18:49.330344+00 2025-12-09 02:18:49.330348+00 1667 808 808
2025-12-09 02:18:49.33131+00 2025-12-09 02:18:49.331313+00 1668 170仿 170仿
2025-12-09 02:18:49.332271+00 2025-12-09 02:18:49.332276+00 1669
2025-12-09 02:18:49.333235+00 2025-12-09 02:18:49.33324+00 1670 Tc棉 Tc棉
2025-12-09 02:18:49.334194+00 2025-12-09 02:18:49.334199+00 1671 110 110
2025-12-09 02:18:49.335163+00 2025-12-09 02:18:49.335168+00 1672 200 200
2025-12-09 02:18:49.336128+00 2025-12-09 02:18:49.336132+00 1673 75D雪纺 75D雪纺
2025-12-09 02:18:49.337096+00 2025-12-09 02:18:49.337101+00 1674
2025-12-09 02:18:49.339063+00 2025-12-09 02:18:49.339068+00 1676 120A 120A
2025-12-09 02:18:49.340021+00 2025-12-09 02:18:49.340026+00 1677 110 110
2025-12-09 02:18:49.340981+00 2025-12-09 02:18:49.340985+00 1678 200D四面弹 200D四面弹
2025-12-09 02:18:49.341944+00 2025-12-09 02:18:49.341948+00 1679
2025-12-09 02:18:49.342928+00 2025-12-09 02:18:49.342933+00 1680
2025-12-09 02:18:49.343897+00 2025-12-09 02:18:49.343902+00 1681 仿170 仿170
2025-12-09 02:18:49.344869+00 2025-12-09 02:18:49.344873+00 1682 180 180
2025-12-09 02:18:49.345831+00 2025-12-09 02:18:49.345835+00 1683
2025-12-09 02:18:49.347805+00 2025-12-09 02:18:49.34781+00 1685 90 90
2025-12-09 02:18:49.348776+00 2025-12-09 02:18:49.348781+00 1686
2025-12-09 02:18:49.349742+00 2025-12-09 02:18:49.349747+00 1687 9088 9088
2025-12-09 02:18:49.351858+00 2025-12-09 02:18:49.351862+00 1689
2025-12-09 02:18:49.353021+00 2025-12-09 02:18:49.353026+00 1690 5D数码条 5D数码条
2025-12-09 02:18:49.35418+00 2025-12-09 02:18:49.354185+00 1691 120 120
2025-12-09 02:18:49.356565+00 2025-12-09 02:18:49.356569+00 1692 75D双层四面弹 75D双层四面弹
2025-12-09 02:18:49.357837+00 2025-12-09 02:18:49.357841+00 1693
2025-12-09 02:18:49.359011+00 2025-12-09 02:18:49.359016+00 1694 120 120
2025-12-09 02:18:49.360178+00 2025-12-09 02:18:49.360183+00 1695
2025-12-09 02:18:49.362098+00 2025-12-09 02:18:49.362102+00 1697 170 170
2025-12-09 02:18:49.364036+00 2025-12-09 02:18:49.364041+00 1699
2025-12-09 02:18:49.364998+00 2025-12-09 02:18:49.365003+00 1700 2*2 2*2
2025-12-09 02:18:49.36596+00 2025-12-09 02:18:49.365964+00 1701 75D低粘雪纺 75D低粘雪纺
2025-12-09 02:18:49.367899+00 2025-12-09 02:18:49.367903+00 1703
2025-12-09 02:18:49.36886+00 2025-12-09 02:18:49.368865+00 1704 150D四面弹 150D四面弹
2025-12-09 02:18:49.369826+00 2025-12-09 02:18:49.369831+00 1705 75D四面弹 75D四面弹
2025-12-09 02:18:49.370803+00 2025-12-09 02:18:49.370807+00 1706 250 250
2025-12-09 02:18:49.372726+00 2025-12-09 02:18:49.37273+00 1708 仿 仿
2025-12-09 02:18:49.374708+00 2025-12-09 02:18:49.374712+00 1710 110B 110B
2025-12-09 02:18:49.375671+00 2025-12-09 02:18:49.375675+00 1711 仿 仿
2025-12-09 02:18:49.376634+00 2025-12-09 02:18:49.376639+00 1712
2025-12-09 02:18:49.377598+00 2025-12-09 02:18:49.377603+00 1713
2025-12-09 02:18:49.378565+00 2025-12-09 02:18:49.37857+00 1714
2025-12-09 02:18:49.379536+00 2025-12-09 02:18:49.379541+00 1715
2025-12-09 02:18:49.380499+00 2025-12-09 02:18:49.380504+00 1716
2025-12-09 02:18:49.381455+00 2025-12-09 02:18:49.381459+00 1717
2025-12-09 02:18:49.382428+00 2025-12-09 02:18:49.382432+00 1718
2025-12-09 02:18:49.383381+00 2025-12-09 02:18:49.383386+00 1719 100 100
2025-12-09 02:18:49.384348+00 2025-12-09 02:18:49.384353+00 1720 120 120
2025-12-09 02:18:49.385306+00 2025-12-09 02:18:49.38531+00 1721
2025-12-09 02:18:49.386264+00 2025-12-09 02:18:49.386268+00 1722 仿 仿
2025-12-09 02:18:49.387234+00 2025-12-09 02:18:49.387239+00 1723
2025-12-09 02:18:49.388192+00 2025-12-09 02:18:49.388197+00 1724 280 280
2025-12-09 02:18:49.389148+00 2025-12-09 02:18:49.389153+00 1725
2025-12-09 02:18:49.390111+00 2025-12-09 02:18:49.390115+00 1726 140 140
2025-12-09 02:18:49.391079+00 2025-12-09 02:18:49.391084+00 1727 100D斜纹四面弹 100D斜纹四面弹
2025-12-09 02:18:49.392043+00 2025-12-09 02:18:49.392048+00 1728 100D米白四面弹 100D米白四面弹
2025-12-09 02:18:49.393007+00 2025-12-09 02:18:49.393012+00 1729
2025-12-09 02:18:49.394946+00 2025-12-09 02:18:49.39495+00 1730 200 200
2025-12-09 02:18:49.395982+00 2025-12-09 02:18:49.395987+00 1731 130g四面弹 130g四面弹
2025-12-09 02:18:49.396848+00 2025-12-09 02:18:49.396852+00 1732 70D涤氨 70D涤氨
2025-12-09 02:18:49.397651+00 2025-12-09 02:18:49.397654+00 1733
2025-12-09 02:18:49.398451+00 2025-12-09 02:18:49.398455+00 1734
2025-12-09 02:18:49.399244+00 2025-12-09 02:18:49.399248+00 1735
2025-12-09 02:18:49.400043+00 2025-12-09 02:18:49.400047+00 1736
2025-12-09 02:18:49.400837+00 2025-12-09 02:18:49.400841+00 1737
2025-12-09 02:18:49.402402+00 2025-12-09 02:18:49.402406+00 1738
2025-12-09 02:18:49.403994+00 2025-12-09 02:18:49.403999+00 1740 160 160
2025-12-09 02:18:49.4048+00 2025-12-09 02:18:49.404803+00 1741
2025-12-09 02:18:49.405572+00 2025-12-09 02:18:49.405576+00 1742 170 170
2025-12-09 02:18:49.406362+00 2025-12-09 02:18:49.406365+00 1743 (170-180) (170-180)
2025-12-09 02:18:49.407125+00 2025-12-09 02:18:49.407128+00 1744
2025-12-09 02:18:49.407899+00 2025-12-09 02:18:49.407903+00 1745
2025-12-09 02:18:49.408673+00 2025-12-09 02:18:49.408676+00 1746
2025-12-09 02:18:49.338104+00 2025-12-09 02:18:49.410208+00 1675
2025-12-09 02:18:49.41175+00 2025-12-09 02:18:49.411754+00 1747
2025-12-09 02:18:49.412563+00 2025-12-09 02:18:49.412567+00 1748 170-180g大白坑条布 170-180g大白坑条布
2025-12-09 02:18:49.414135+00 2025-12-09 02:18:49.414139+00 1749
2025-12-09 02:18:49.403193+00 2025-12-09 02:18:49.421959+00 1739
2025-12-09 02:18:49.371766+00 2025-12-09 02:18:49.612794+00 1707
2025-12-09 02:18:49.37374+00 2025-12-09 02:18:49.530152+00 1709
2025-12-09 02:18:49.346835+00 2025-12-09 02:18:50.263323+00 1684
2025-12-09 02:18:49.350691+00 2025-12-09 02:18:50.272576+00 1688
2025-12-09 02:18:49.363065+00 2025-12-09 02:18:50.302444+00 1698
2025-12-09 02:18:49.361134+00 2025-12-09 02:18:50.316858+00 1696
2025-12-09 02:18:49.414919+00 2025-12-09 02:18:49.414923+00 1750
2025-12-09 02:18:49.415723+00 2025-12-09 02:18:49.415727+00 1751
2025-12-09 02:18:49.416503+00 2025-12-09 02:18:49.416506+00 1752
2025-12-09 02:18:49.417274+00 2025-12-09 02:18:49.417278+00 1753
2025-12-09 02:18:49.418067+00 2025-12-09 02:18:49.418071+00 1754 180 180
2025-12-09 02:18:49.418854+00 2025-12-09 02:18:49.418857+00 1755 105 105
2025-12-09 02:18:49.419637+00 2025-12-09 02:18:49.419641+00 1756 TC布 TC布
2025-12-09 02:18:49.420416+00 2025-12-09 02:18:49.42042+00 1757 250 250
2025-12-09 02:18:49.421206+00 2025-12-09 02:18:49.42121+00 1758
2025-12-09 02:18:49.422761+00 2025-12-09 02:18:49.422765+00 1759
2025-12-09 02:18:49.423534+00 2025-12-09 02:18:49.423537+00 1760 110 110
2025-12-09 02:18:49.424285+00 2025-12-09 02:18:49.424289+00 1761
2025-12-09 02:18:49.427387+00 2025-12-09 02:18:49.42739+00 1764 220g羊毛绒 220g羊毛绒
2025-12-09 02:18:49.428168+00 2025-12-09 02:18:49.428172+00 1765 40A网布 40A网布
2025-12-09 02:18:49.428943+00 2025-12-09 02:18:49.428947+00 1766 270 270
2025-12-09 02:18:49.430492+00 2025-12-09 02:18:49.430495+00 1768
2025-12-09 02:18:49.431262+00 2025-12-09 02:18:49.431266+00 1769 220 220
2025-12-09 02:18:49.432041+00 2025-12-09 02:18:49.432045+00 1770 200 200
2025-12-09 02:18:49.432804+00 2025-12-09 02:18:49.432807+00 1771 220 220
2025-12-09 02:18:49.43358+00 2025-12-09 02:18:49.433584+00 1772 270 270
2025-12-09 02:18:49.434373+00 2025-12-09 02:18:49.434376+00 1773 仿 仿
2025-12-09 02:18:49.435148+00 2025-12-09 02:18:49.435152+00 1774
2025-12-09 02:18:49.435925+00 2025-12-09 02:18:49.435929+00 1775 170 170
2025-12-09 02:18:49.436694+00 2025-12-09 02:18:49.436698+00 1776 200 200
2025-12-09 02:18:49.437496+00 2025-12-09 02:18:49.4375+00 1777
2025-12-09 02:18:49.438257+00 2025-12-09 02:18:49.43826+00 1778 120 120
2025-12-09 02:18:49.439023+00 2025-12-09 02:18:49.439027+00 1779
2025-12-09 02:18:49.440557+00 2025-12-09 02:18:49.44056+00 1780
2025-12-09 02:18:49.441359+00 2025-12-09 02:18:49.441363+00 1781 300 300
2025-12-09 02:18:49.442124+00 2025-12-09 02:18:49.442128+00 1782
2025-12-09 02:18:49.4429+00 2025-12-09 02:18:49.442904+00 1783
2025-12-09 02:18:49.443678+00 2025-12-09 02:18:49.443682+00 1784 180 180
2025-12-09 02:18:49.444452+00 2025-12-09 02:18:49.444455+00 1785
2025-12-09 02:18:49.445229+00 2025-12-09 02:18:49.445233+00 1786 150仿 150仿
2025-12-09 02:18:49.446006+00 2025-12-09 02:18:49.44601+00 1787
2025-12-09 02:18:49.446763+00 2025-12-09 02:18:49.446767+00 1788
2025-12-09 02:18:49.447539+00 2025-12-09 02:18:49.447543+00 1789
2025-12-09 02:18:49.448298+00 2025-12-09 02:18:49.448302+00 1790 180 180
2025-12-09 02:18:49.449045+00 2025-12-09 02:18:49.449049+00 1791 110A 110A
2025-12-09 02:18:49.449832+00 2025-12-09 02:18:49.449836+00 1792 230 230
2025-12-09 02:18:49.450588+00 2025-12-09 02:18:49.450591+00 1793
2025-12-09 02:18:49.451361+00 2025-12-09 02:18:49.451365+00 1794
2025-12-09 02:18:49.452904+00 2025-12-09 02:18:49.452907+00 1795 170 170
2025-12-09 02:18:49.453905+00 2025-12-09 02:18:49.45391+00 1796
2025-12-09 02:18:49.454891+00 2025-12-09 02:18:49.454896+00 1797 200 200
2025-12-09 02:18:49.455867+00 2025-12-09 02:18:49.455871+00 1798 170g米白仿棉 170g米白仿棉
2025-12-09 02:18:49.456852+00 2025-12-09 02:18:49.456856+00 1799
2025-12-09 02:18:49.459792+00 2025-12-09 02:18:49.459797+00 1801
2025-12-09 02:18:49.460767+00 2025-12-09 02:18:49.460772+00 1802 160 160
2025-12-09 02:18:49.461752+00 2025-12-09 02:18:49.461756+00 1803
2025-12-09 02:18:49.462725+00 2025-12-09 02:18:49.462729+00 1804
2025-12-09 02:18:49.463975+00 2025-12-09 02:18:49.463979+00 1805 350g罗马布 350g罗马布
2025-12-09 02:18:49.465237+00 2025-12-09 02:18:49.465241+00 1806 110g四面弹B 110g四面弹B
2025-12-09 02:18:49.46775+00 2025-12-09 02:18:49.467755+00 1807 仿 仿
2025-12-09 02:18:49.469013+00 2025-12-09 02:18:49.469018+00 1808
2025-12-09 02:18:49.470263+00 2025-12-09 02:18:49.470268+00 1809
2025-12-09 02:18:49.471519+00 2025-12-09 02:18:49.471524+00 1810
2025-12-09 02:18:49.472783+00 2025-12-09 02:18:49.472787+00 1811
2025-12-09 02:18:49.473754+00 2025-12-09 02:18:49.473758+00 1812
2025-12-09 02:18:49.474785+00 2025-12-09 02:18:49.474789+00 1813 仿 仿
2025-12-09 02:18:49.476737+00 2025-12-09 02:18:49.476742+00 1814 200D双层四面弹 200D双层四面弹
2025-12-09 02:18:49.477715+00 2025-12-09 02:18:49.47772+00 1815
2025-12-09 02:18:49.478682+00 2025-12-09 02:18:49.478686+00 1816
2025-12-09 02:18:49.479668+00 2025-12-09 02:18:49.479672+00 1817
2025-12-09 02:18:49.480646+00 2025-12-09 02:18:49.48065+00 1818 仿 仿
2025-12-09 02:18:49.481618+00 2025-12-09 02:18:49.481622+00 1819 140 140
2025-12-09 02:18:49.482602+00 2025-12-09 02:18:49.482607+00 1820
2025-12-09 02:18:49.483573+00 2025-12-09 02:18:49.483577+00 1821 75D平板布 75D平板布
2025-12-09 02:18:49.484553+00 2025-12-09 02:18:49.484558+00 1822
2025-12-09 02:18:49.485518+00 2025-12-09 02:18:49.485522+00 1823 120 120
2025-12-09 02:18:49.425065+00 2025-12-09 02:18:49.537919+00 1762 200 200
2025-12-09 02:18:49.487473+00 2025-12-09 02:18:49.487478+00 1824
2025-12-09 02:18:49.489378+00 2025-12-09 02:18:49.489382+00 1825
2025-12-09 02:18:49.490356+00 2025-12-09 02:18:49.49036+00 1826 23040D拉架 23040D拉架
2025-12-09 02:18:49.491326+00 2025-12-09 02:18:49.491331+00 1827
2025-12-09 02:18:49.492295+00 2025-12-09 02:18:49.4923+00 1828
2025-12-09 02:18:49.493255+00 2025-12-09 02:18:49.49326+00 1829
2025-12-09 02:18:49.494222+00 2025-12-09 02:18:49.494226+00 1830 线 线
2025-12-09 02:18:49.496148+00 2025-12-09 02:18:49.496153+00 1831 250 250
2025-12-09 02:18:49.49712+00 2025-12-09 02:18:49.497125+00 1832 100D大白细斜 100D大白细斜
2025-12-09 02:18:49.426601+00 2025-12-09 02:18:50.307149+00 1763
2025-12-09 02:18:49.498083+00 2025-12-09 02:18:49.498087+00 1833 160 160
2025-12-09 02:18:49.49909+00 2025-12-09 02:18:49.499094+00 1834
2025-12-09 02:18:49.501005+00 2025-12-09 02:18:49.501009+00 1835 30D金边 30D金边
2025-12-09 02:18:49.501987+00 2025-12-09 02:18:49.501992+00 1836
2025-12-09 02:18:49.502965+00 2025-12-09 02:18:49.502969+00 1837
2025-12-09 02:18:49.503947+00 2025-12-09 02:18:49.503951+00 1838
2025-12-09 02:18:49.504943+00 2025-12-09 02:18:49.504948+00 1839
2025-12-09 02:18:49.505919+00 2025-12-09 02:18:49.505923+00 1840 A3-23 A3-23
2025-12-09 02:18:49.506888+00 2025-12-09 02:18:49.506893+00 1841
2025-12-09 02:18:49.458801+00 2025-12-09 02:18:49.507831+00 1800
2025-12-09 02:18:49.508831+00 2025-12-09 02:18:49.508836+00 1842 200 200
2025-12-09 02:18:49.509809+00 2025-12-09 02:18:49.509814+00 1843 180-200g大白坑条 180-200g大白坑条
2025-12-09 02:18:49.510778+00 2025-12-09 02:18:49.510783+00 1844
2025-12-09 02:18:49.511744+00 2025-12-09 02:18:49.511748+00 1845 10GB 10GB
2025-12-09 02:18:49.512716+00 2025-12-09 02:18:49.512721+00 1846 170 170
2025-12-09 02:18:49.513694+00 2025-12-09 02:18:49.513698+00 1847
2025-12-09 02:18:49.514661+00 2025-12-09 02:18:49.514666+00 1848
2025-12-09 02:18:49.515634+00 2025-12-09 02:18:49.515638+00 1849 230g大白坑条 230g大白坑条
2025-12-09 02:18:49.516604+00 2025-12-09 02:18:49.516609+00 1850 200g大白卫衣 200g大白卫衣
2025-12-09 02:18:49.517572+00 2025-12-09 02:18:49.517577+00 1851
2025-12-09 02:18:49.518554+00 2025-12-09 02:18:49.518558+00 1852
2025-12-09 02:18:49.519519+00 2025-12-09 02:18:49.519524+00 1853
2025-12-09 02:18:49.520489+00 2025-12-09 02:18:49.520494+00 1854 140 140
2025-12-09 02:18:49.522467+00 2025-12-09 02:18:49.522471+00 1856 110B 110B
2025-12-09 02:18:49.523451+00 2025-12-09 02:18:49.523455+00 1857 150 150
2025-12-09 02:18:49.524413+00 2025-12-09 02:18:49.524418+00 1858 220 220
2025-12-09 02:18:49.525377+00 2025-12-09 02:18:49.525382+00 1859 LMJ-0909 LMJ-0909
2025-12-09 02:18:49.527287+00 2025-12-09 02:18:49.527292+00 1860
2025-12-09 02:18:49.52826+00 2025-12-09 02:18:49.528264+00 1861 75D双层四面弹180 75D双层四面弹180
2025-12-09 02:18:49.529225+00 2025-12-09 02:18:49.52923+00 1862 100 100
2025-12-09 02:18:49.531131+00 2025-12-09 02:18:49.531136+00 1863 110A 110A
2025-12-09 02:18:49.532102+00 2025-12-09 02:18:49.532106+00 1864 338 338
2025-12-09 02:18:49.533072+00 2025-12-09 02:18:49.533077+00 1865 230 230
2025-12-09 02:18:49.536022+00 2025-12-09 02:18:49.536027+00 1866 仿 仿
2025-12-09 02:18:49.536992+00 2025-12-09 02:18:49.536997+00 1867
2025-12-09 02:18:49.538933+00 2025-12-09 02:18:49.538938+00 1868 200g牛奶丝 200g牛奶丝
2025-12-09 02:18:49.540849+00 2025-12-09 02:18:49.540853+00 1869 75D假念四面弹 75D假念四面弹
2025-12-09 02:18:49.542785+00 2025-12-09 02:18:49.54279+00 1870
2025-12-09 02:18:49.543766+00 2025-12-09 02:18:49.543771+00 1871 170 170
2025-12-09 02:18:49.544791+00 2025-12-09 02:18:49.544796+00 1872
2025-12-09 02:18:49.545748+00 2025-12-09 02:18:49.545752+00 1873
2025-12-09 02:18:49.546732+00 2025-12-09 02:18:49.546736+00 1874
2025-12-09 02:18:49.547699+00 2025-12-09 02:18:49.547709+00 1875
2025-12-09 02:18:49.548672+00 2025-12-09 02:18:49.548677+00 1876 40D网布 40D网布
2025-12-09 02:18:49.549634+00 2025-12-09 02:18:49.549639+00 1877
2025-12-09 02:18:49.550617+00 2025-12-09 02:18:49.550621+00 1878
2025-12-09 02:18:49.551595+00 2025-12-09 02:18:49.5516+00 1879 125 125
2025-12-09 02:18:49.552566+00 2025-12-09 02:18:49.552571+00 1880 818仿 818仿
2025-12-09 02:18:49.55354+00 2025-12-09 02:18:49.553544+00 1881
2025-12-09 02:18:49.554506+00 2025-12-09 02:18:49.554511+00 1882
2025-12-09 02:18:49.555474+00 2025-12-09 02:18:49.555478+00 1883
2025-12-09 02:18:49.556441+00 2025-12-09 02:18:49.556446+00 1884 103 103
2025-12-09 02:18:49.557408+00 2025-12-09 02:18:49.557413+00 1885
2025-12-09 02:18:49.558373+00 2025-12-09 02:18:49.558378+00 1886 280 280
2025-12-09 02:18:49.559336+00 2025-12-09 02:18:49.559341+00 1887 16 16
2025-12-09 02:18:49.560305+00 2025-12-09 02:18:49.560309+00 1888
2025-12-09 02:18:49.56128+00 2025-12-09 02:18:49.561285+00 1889
2025-12-09 02:18:49.562254+00 2025-12-09 02:18:49.562258+00 1890 仿 仿
2025-12-09 02:18:49.563215+00 2025-12-09 02:18:49.563219+00 1891 75D加厚双层 75D加厚双层
2025-12-09 02:18:49.564185+00 2025-12-09 02:18:49.564189+00 1892
2025-12-09 02:18:49.565153+00 2025-12-09 02:18:49.565157+00 1893 2X2坑条 2X2坑条
2025-12-09 02:18:49.566123+00 2025-12-09 02:18:49.566127+00 1894
2025-12-09 02:18:49.567093+00 2025-12-09 02:18:49.567098+00 1895 仿 仿
2025-12-09 02:18:49.568077+00 2025-12-09 02:18:49.568082+00 1896
2025-12-09 02:18:49.569052+00 2025-12-09 02:18:49.569057+00 1897
2025-12-09 02:18:49.570025+00 2025-12-09 02:18:49.57003+00 1898
2025-12-09 02:18:49.570987+00 2025-12-09 02:18:49.570991+00 1899
2025-12-09 02:18:49.571964+00 2025-12-09 02:18:49.571969+00 1900
2025-12-09 02:18:49.572946+00 2025-12-09 02:18:49.572951+00 1901
2025-12-09 02:18:49.573921+00 2025-12-09 02:18:49.573926+00 1902
2025-12-09 02:18:49.574891+00 2025-12-09 02:18:49.574896+00 1903 100D精品四面弹 100D精品四面弹
2025-12-09 02:18:49.575865+00 2025-12-09 02:18:49.575869+00 1904 250 250
2025-12-09 02:18:49.576849+00 2025-12-09 02:18:49.576854+00 1905
2025-12-09 02:18:49.577827+00 2025-12-09 02:18:49.577831+00 1906 808 808
2025-12-09 02:18:49.5788+00 2025-12-09 02:18:49.578804+00 1907
2025-12-09 02:18:49.579768+00 2025-12-09 02:18:49.579772+00 1908
2025-12-09 02:18:49.580739+00 2025-12-09 02:18:49.580744+00 1909
2025-12-09 02:18:49.581706+00 2025-12-09 02:18:49.581711+00 1910
2025-12-09 02:18:49.582671+00 2025-12-09 02:18:49.582676+00 1911
2025-12-09 02:18:49.583638+00 2025-12-09 02:18:49.583643+00 1912
2025-12-09 02:18:49.584614+00 2025-12-09 02:18:49.584619+00 1913
2025-12-09 02:18:49.585598+00 2025-12-09 02:18:49.585602+00 1914 160 160
2025-12-09 02:18:49.586583+00 2025-12-09 02:18:49.586588+00 1915
2025-12-09 02:18:49.587553+00 2025-12-09 02:18:49.587558+00 1916
2025-12-09 02:18:49.588516+00 2025-12-09 02:18:49.588521+00 1917 仿 仿
2025-12-09 02:18:49.589479+00 2025-12-09 02:18:49.589483+00 1918
2025-12-09 02:18:49.590738+00 2025-12-09 02:18:49.590745+00 1919
2025-12-09 02:18:49.59201+00 2025-12-09 02:18:49.592015+00 1920 16 16
2025-12-09 02:18:49.59326+00 2025-12-09 02:18:49.593264+00 1921 亿120 亿120
2025-12-09 02:18:49.594507+00 2025-12-09 02:18:49.594512+00 1922
2025-12-09 02:18:49.595781+00 2025-12-09 02:18:49.595786+00 1923 8*5 8*5
2025-12-09 02:18:49.597378+00 2025-12-09 02:18:49.597383+00 1924
2025-12-09 02:18:49.599168+00 2025-12-09 02:18:49.599173+00 1925 40D尼龙 40D尼龙
2025-12-09 02:18:49.600285+00 2025-12-09 02:18:49.600289+00 1926
2025-12-09 02:18:49.601081+00 2025-12-09 02:18:49.601085+00 1927
2025-12-09 02:18:49.601896+00 2025-12-09 02:18:49.6019+00 1928 110仿 110仿
2025-12-09 02:18:49.60269+00 2025-12-09 02:18:49.602694+00 1929 仿 仿
2025-12-09 02:18:49.603465+00 2025-12-09 02:18:49.603469+00 1930 2×2 2×2
2025-12-09 02:18:49.604257+00 2025-12-09 02:18:49.604261+00 1931 2×2 2×2
2025-12-09 02:18:49.605061+00 2025-12-09 02:18:49.605065+00 1932 200D加厚平纹 200D加厚平纹
2025-12-09 02:18:49.605864+00 2025-12-09 02:18:49.605868+00 1933 110 110
2025-12-09 02:18:49.606634+00 2025-12-09 02:18:49.606638+00 1934
2025-12-09 02:18:49.607404+00 2025-12-09 02:18:49.607408+00 1935
2025-12-09 02:18:49.608184+00 2025-12-09 02:18:49.608187+00 1936 CS洗水绉 CS洗水绉
2025-12-09 02:18:49.608945+00 2025-12-09 02:18:49.608948+00 1937 135 135
2025-12-09 02:18:49.609723+00 2025-12-09 02:18:49.609727+00 1938 807仿 807仿
2025-12-09 02:18:49.610508+00 2025-12-09 02:18:49.610511+00 1939
2025-12-09 02:18:49.611269+00 2025-12-09 02:18:49.611272+00 1940
2025-12-09 02:18:49.61206+00 2025-12-09 02:18:49.612063+00 1941 G34布料 G34布料
2025-12-09 02:18:49.6136+00 2025-12-09 02:18:49.613603+00 1942 仿 仿
2025-12-09 02:18:49.614432+00 2025-12-09 02:18:49.614435+00 1943
2025-12-09 02:18:49.615195+00 2025-12-09 02:18:49.615198+00 1944
2025-12-09 02:18:49.61598+00 2025-12-09 02:18:49.615984+00 1945
2025-12-09 02:18:49.616762+00 2025-12-09 02:18:49.616765+00 1946 60 60
2025-12-09 02:18:49.617563+00 2025-12-09 02:18:49.617566+00 1947 90 90
2025-12-09 02:18:49.618337+00 2025-12-09 02:18:49.61834+00 1948
2025-12-09 02:18:49.61911+00 2025-12-09 02:18:49.619114+00 1949
2025-12-09 02:18:49.619885+00 2025-12-09 02:18:49.619889+00 1950 仿 仿
2025-12-09 02:18:49.620663+00 2025-12-09 02:18:49.620666+00 1951 90G纬弹 90G纬弹
2025-12-09 02:18:49.621456+00 2025-12-09 02:18:49.62146+00 1952
2025-12-09 02:18:49.622217+00 2025-12-09 02:18:49.62222+00 1953 9088 9088
2025-12-09 02:18:49.623076+00 2025-12-09 02:18:49.623079+00 1954 75D全光 75D全光
2025-12-09 02:18:49.623875+00 2025-12-09 02:18:49.623878+00 1955 75D高弹牛奶丝 75D高弹牛奶丝
2025-12-09 02:18:49.624666+00 2025-12-09 02:18:49.62467+00 1956 30D雪纺 30D雪纺
2025-12-09 02:18:49.625443+00 2025-12-09 02:18:49.625446+00 1957
2025-12-09 02:18:49.626202+00 2025-12-09 02:18:49.626205+00 1958
2025-12-09 02:18:49.627+00 2025-12-09 02:18:49.627003+00 1959
2025-12-09 02:18:49.62776+00 2025-12-09 02:18:49.627763+00 1960
2025-12-09 02:18:49.628534+00 2025-12-09 02:18:49.628538+00 1961
2025-12-09 02:18:50.115341+00 2025-12-09 02:18:50.11535+00 1962 20D涤氨 20D涤氨
2025-12-09 02:18:50.116403+00 2025-12-09 02:18:50.116407+00 1963 240 240
2025-12-09 02:18:50.117495+00 2025-12-09 02:18:50.117504+00 1964
2025-12-09 02:18:50.11838+00 2025-12-09 02:18:50.118384+00 1965
2025-12-09 02:18:50.119191+00 2025-12-09 02:18:50.119196+00 1966 仿 仿
2025-12-09 02:18:50.120016+00 2025-12-09 02:18:50.12002+00 1967
2025-12-09 02:18:50.120796+00 2025-12-09 02:18:50.1208+00 1968
2025-12-09 02:18:50.121588+00 2025-12-09 02:18:50.121592+00 1969
2025-12-09 02:18:50.122368+00 2025-12-09 02:18:50.122371+00 1970
2025-12-09 02:18:50.123135+00 2025-12-09 02:18:50.123138+00 1971 仿 仿
2025-12-09 02:18:50.123932+00 2025-12-09 02:18:50.123936+00 1972
2025-12-09 02:18:50.124685+00 2025-12-09 02:18:50.124688+00 1973
2025-12-09 02:18:50.125454+00 2025-12-09 02:18:50.125458+00 1974
2025-12-09 02:18:50.126226+00 2025-12-09 02:18:50.12623+00 1975
2025-12-09 02:18:50.126988+00 2025-12-09 02:18:50.126992+00 1976
2025-12-09 02:18:50.127782+00 2025-12-09 02:18:50.127786+00 1977
2025-12-09 02:18:50.128552+00 2025-12-09 02:18:50.128555+00 1978
2025-12-09 02:18:50.129455+00 2025-12-09 02:18:50.129459+00 1979
2025-12-09 02:18:50.130284+00 2025-12-09 02:18:50.130287+00 1980
2025-12-09 02:18:50.131073+00 2025-12-09 02:18:50.131076+00 1981
2025-12-09 02:18:50.131883+00 2025-12-09 02:18:50.131886+00 1982
2025-12-09 02:18:50.132658+00 2025-12-09 02:18:50.132661+00 1983
2025-12-09 02:18:50.133439+00 2025-12-09 02:18:50.133443+00 1984 线 线
2025-12-09 02:18:50.134219+00 2025-12-09 02:18:50.134222+00 1985 100D120克四面弹 100D120克四面弹
2025-12-09 02:18:50.135029+00 2025-12-09 02:18:50.135032+00 1986 130 130
2025-12-09 02:18:50.135825+00 2025-12-09 02:18:50.135829+00 1987 仿 仿
2025-12-09 02:18:50.13661+00 2025-12-09 02:18:50.136614+00 1988
2025-12-09 02:18:50.137378+00 2025-12-09 02:18:50.137381+00 1989 210 210
2025-12-09 02:18:50.138171+00 2025-12-09 02:18:50.138175+00 1990
2025-12-09 02:18:50.138952+00 2025-12-09 02:18:50.138955+00 1991 200 200
2025-12-09 02:18:50.139737+00 2025-12-09 02:18:50.139741+00 1992 仿 仿
2025-12-09 02:18:50.140523+00 2025-12-09 02:18:50.140527+00 1993 100D纬弹米白 100D纬弹米白
2025-12-09 02:18:50.141288+00 2025-12-09 02:18:50.141292+00 1994
2025-12-09 02:18:50.14233+00 2025-12-09 02:18:50.142334+00 1995
2025-12-09 02:18:50.143105+00 2025-12-09 02:18:50.143108+00 1996
2025-12-09 02:18:50.14387+00 2025-12-09 02:18:50.143874+00 1997
2025-12-09 02:18:50.14465+00 2025-12-09 02:18:50.144653+00 1998 200 200
2025-12-09 02:18:50.145415+00 2025-12-09 02:18:50.145419+00 1999 仿 仿
2025-12-09 02:18:50.146195+00 2025-12-09 02:18:50.146199+00 2000 150 150
2025-12-09 02:18:50.14697+00 2025-12-09 02:18:50.146973+00 2001
2025-12-09 02:18:47.6797+00 2025-12-09 02:18:50.147706+00 723 230 230
2025-12-09 02:18:47.910404+00 2025-12-09 02:18:50.148532+00 990 130 130
2025-12-09 02:18:50.14934+00 2025-12-09 02:18:50.149343+00 2002
2025-12-09 02:18:50.150132+00 2025-12-09 02:18:50.150136+00 2003
2025-12-09 02:18:50.150932+00 2025-12-09 02:18:50.150936+00 2004 180 180
2025-12-09 02:18:50.151794+00 2025-12-09 02:18:50.151798+00 2005
2025-12-09 02:18:50.152593+00 2025-12-09 02:18:50.152597+00 2006 180 180
2025-12-09 02:18:50.153408+00 2025-12-09 02:18:50.153412+00 2007 250仿 250仿
2025-12-09 02:18:50.154192+00 2025-12-09 02:18:50.154196+00 2008
2025-12-09 02:18:50.154959+00 2025-12-09 02:18:50.154962+00 2009
2025-12-09 02:18:50.155743+00 2025-12-09 02:18:50.155746+00 2010
2025-12-09 02:18:50.156535+00 2025-12-09 02:18:50.156538+00 2011
2025-12-09 02:18:50.157294+00 2025-12-09 02:18:50.157297+00 2012
2025-12-09 02:18:50.158054+00 2025-12-09 02:18:50.158057+00 2013 355 355
2025-12-09 02:18:50.158837+00 2025-12-09 02:18:50.158841+00 2014
2025-12-09 02:18:50.15961+00 2025-12-09 02:18:50.159613+00 2015 170仿 170仿
2025-12-09 02:18:50.160394+00 2025-12-09 02:18:50.160398+00 2016 A25水波纹和A148 A25水波纹和A148
2025-12-09 02:18:50.161164+00 2025-12-09 02:18:50.161167+00 2017 仿 仿
2025-12-09 02:18:50.161932+00 2025-12-09 02:18:50.161935+00 2018
2025-12-09 02:18:50.162716+00 2025-12-09 02:18:50.16272+00 2019
2025-12-09 02:18:50.163483+00 2025-12-09 02:18:50.163486+00 2020
2025-12-09 02:18:50.164251+00 2025-12-09 02:18:50.164255+00 2021
2025-12-09 02:18:50.165031+00 2025-12-09 02:18:50.165035+00 2022
2025-12-09 02:18:50.165798+00 2025-12-09 02:18:50.165801+00 2023
2025-12-09 02:18:50.166581+00 2025-12-09 02:18:50.166585+00 2024 200 200
2025-12-09 02:18:50.167345+00 2025-12-09 02:18:50.167348+00 2025
2025-12-09 02:18:50.168144+00 2025-12-09 02:18:50.168148+00 2026 230 230
2025-12-09 02:18:50.168935+00 2025-12-09 02:18:50.168939+00 2027
2025-12-09 02:18:50.169696+00 2025-12-09 02:18:50.169699+00 2028 200 200
2025-12-09 02:18:50.170487+00 2025-12-09 02:18:50.17049+00 2029
2025-12-09 02:18:50.171252+00 2025-12-09 02:18:50.171255+00 2030
2025-12-09 02:18:50.172032+00 2025-12-09 02:18:50.172036+00 2031
2025-12-09 02:18:50.172812+00 2025-12-09 02:18:50.172816+00 2032 105 105
2025-12-09 02:18:50.173589+00 2025-12-09 02:18:50.173593+00 2033
2025-12-09 02:18:50.174378+00 2025-12-09 02:18:50.174381+00 2034 170仿 170仿
2025-12-09 02:18:50.175137+00 2025-12-09 02:18:50.17514+00 2035
2025-12-09 02:18:50.175914+00 2025-12-09 02:18:50.175918+00 2036
2025-12-09 02:18:50.176692+00 2025-12-09 02:18:50.176695+00 2037 100D四面弹 100D四面弹
2025-12-09 02:18:50.179053+00 2025-12-09 02:18:50.179056+00 2039
2025-12-09 02:18:50.179858+00 2025-12-09 02:18:50.179862+00 2040
2025-12-09 02:18:50.180627+00 2025-12-09 02:18:50.180631+00 2041 200 200
2025-12-09 02:18:50.181389+00 2025-12-09 02:18:50.181392+00 2042
2025-12-09 02:18:50.182454+00 2025-12-09 02:18:50.182458+00 2043 30D真丝 30D真丝
2025-12-09 02:18:50.183498+00 2025-12-09 02:18:50.184522+00 2044
2025-12-09 02:18:50.18563+00 2025-12-09 02:18:50.185633+00 2045 220 220
2025-12-09 02:18:50.186714+00 2025-12-09 02:18:50.186718+00 2046
2025-12-09 02:18:50.187811+00 2025-12-09 02:18:50.187815+00 2047 140g牛奶丝 140g牛奶丝
2025-12-09 02:18:50.18887+00 2025-12-09 02:18:50.188873+00 2048
2025-12-09 02:18:50.189938+00 2025-12-09 02:18:50.189941+00 2049 仿 仿
2025-12-09 02:18:50.190702+00 2025-12-09 02:18:50.190708+00 2050
2025-12-09 02:18:50.191469+00 2025-12-09 02:18:50.191472+00 2051
2025-12-09 02:18:50.192246+00 2025-12-09 02:18:50.19225+00 2052 90 90
2025-12-09 02:18:50.193025+00 2025-12-09 02:18:50.193028+00 2053 220g大白卫衣 220g大白卫衣
2025-12-09 02:18:50.193794+00 2025-12-09 02:18:50.193797+00 2054 75D双面 75D双面
2025-12-09 02:18:50.194573+00 2025-12-09 02:18:50.194576+00 2055
2025-12-09 02:18:50.195339+00 2025-12-09 02:18:50.195342+00 2056
2025-12-09 02:18:50.196107+00 2025-12-09 02:18:50.196111+00 2057 658 658
2025-12-09 02:18:50.198513+00 2025-12-09 02:18:50.198517+00 2059 680 680
2025-12-09 02:18:50.199297+00 2025-12-09 02:18:50.1993+00 2060 100 100
2025-12-09 02:18:50.200078+00 2025-12-09 02:18:50.200082+00 2061
2025-12-09 02:18:50.200864+00 2025-12-09 02:18:50.200867+00 2062
2025-12-09 02:18:50.201626+00 2025-12-09 02:18:50.201629+00 2063 350 350
2025-12-09 02:18:50.202618+00 2025-12-09 02:18:50.202623+00 2064 230 230
2025-12-09 02:18:50.203601+00 2025-12-09 02:18:50.203605+00 2065
2025-12-09 02:18:50.204569+00 2025-12-09 02:18:50.204573+00 2066 200 200
2025-12-09 02:18:50.205555+00 2025-12-09 02:18:50.205559+00 2067
2025-12-09 02:18:50.207466+00 2025-12-09 02:18:50.207471+00 2068
2025-12-09 02:18:50.208427+00 2025-12-09 02:18:50.208431+00 2069
2025-12-09 02:18:50.2094+00 2025-12-09 02:18:50.209404+00 2070 180 180
2025-12-09 02:18:50.211283+00 2025-12-09 02:18:50.211288+00 2071
2025-12-09 02:18:50.21226+00 2025-12-09 02:18:50.212264+00 2072
2025-12-09 02:18:50.213224+00 2025-12-09 02:18:50.213228+00 2073 50D四面弹 50D四面弹
2025-12-09 02:18:50.214194+00 2025-12-09 02:18:50.214199+00 2074
2025-12-09 02:18:49.36693+00 2025-12-09 02:18:50.215116+00 1702 T400破卡 T400破卡
2025-12-09 02:18:50.216111+00 2025-12-09 02:18:50.216116+00 2075
2025-12-09 02:18:50.217076+00 2025-12-09 02:18:50.21708+00 2076
2025-12-09 02:18:50.21805+00 2025-12-09 02:18:50.218055+00 2077
2025-12-09 02:18:50.219016+00 2025-12-09 02:18:50.219021+00 2078 170g牛奶丝 170g牛奶丝
2025-12-09 02:18:50.219988+00 2025-12-09 02:18:50.219992+00 2079
2025-12-09 02:18:50.2219+00 2025-12-09 02:18:50.221905+00 2080
2025-12-09 02:18:50.222866+00 2025-12-09 02:18:50.222871+00 2081 240 240
2025-12-09 02:18:50.223832+00 2025-12-09 02:18:50.223836+00 2082 150仿 150仿
2025-12-09 02:18:50.224788+00 2025-12-09 02:18:50.224793+00 2083
2025-12-09 02:18:50.22576+00 2025-12-09 02:18:50.225764+00 2084
2025-12-09 02:18:50.226786+00 2025-12-09 02:18:50.226791+00 2085 40D涤氨网布 40D涤氨网布
2025-12-09 02:18:50.227644+00 2025-12-09 02:18:50.227648+00 2086 605 605
2025-12-09 02:18:50.228467+00 2025-12-09 02:18:50.22847+00 2087 200 200
2025-12-09 02:18:50.229268+00 2025-12-09 02:18:50.229272+00 2088
2025-12-09 02:18:50.230058+00 2025-12-09 02:18:50.230061+00 2089
2025-12-09 02:18:50.230837+00 2025-12-09 02:18:50.230841+00 2090 120D雪纺 120D雪纺
2025-12-09 02:18:50.197708+00 2025-12-09 02:18:50.274123+00 2058
2025-12-09 02:18:50.178262+00 2025-12-09 02:18:50.287846+00 2038
2025-12-09 02:18:50.231633+00 2025-12-09 02:18:50.231636+00 2091
2025-12-09 02:18:50.232412+00 2025-12-09 02:18:50.232415+00 2092
2025-12-09 02:18:50.233179+00 2025-12-09 02:18:50.233183+00 2093 110 110
2025-12-09 02:18:50.233959+00 2025-12-09 02:18:50.233962+00 2094 160g牛奶丝 160g牛奶丝
2025-12-09 02:18:50.234718+00 2025-12-09 02:18:50.234721+00 2095
2025-12-09 02:18:50.235496+00 2025-12-09 02:18:50.2355+00 2096
2025-12-09 02:18:50.236264+00 2025-12-09 02:18:50.236267+00 2097
2025-12-09 02:18:50.237846+00 2025-12-09 02:18:50.23785+00 2098
2025-12-09 02:18:50.23863+00 2025-12-09 02:18:50.238633+00 2099 30D天丝 30D天丝
2025-12-09 02:18:50.239421+00 2025-12-09 02:18:50.239425+00 2100 200 200
2025-12-09 02:18:50.240186+00 2025-12-09 02:18:50.24019+00 2101
2025-12-09 02:18:50.240951+00 2025-12-09 02:18:50.240955+00 2102
2025-12-09 02:18:50.241733+00 2025-12-09 02:18:50.241736+00 2103
2025-12-09 02:18:50.24249+00 2025-12-09 02:18:50.242494+00 2104 170仿 170仿
2025-12-09 02:18:50.243268+00 2025-12-09 02:18:50.243272+00 2105 200仿 200仿
2025-12-09 02:18:50.244038+00 2025-12-09 02:18:50.244042+00 2106 230 230
2025-12-09 02:18:50.244814+00 2025-12-09 02:18:50.244818+00 2107
2025-12-09 02:18:50.245577+00 2025-12-09 02:18:50.245581+00 2108 仿 仿
2025-12-09 02:18:50.246333+00 2025-12-09 02:18:50.246336+00 2109
2025-12-09 02:18:50.24712+00 2025-12-09 02:18:50.247123+00 2110
2025-12-09 02:18:50.247895+00 2025-12-09 02:18:50.247898+00 2111
2025-12-09 02:18:50.249447+00 2025-12-09 02:18:50.249451+00 2112
2025-12-09 02:18:50.251003+00 2025-12-09 02:18:50.251007+00 2113 200g罗马 200g罗马
2025-12-09 02:18:50.251793+00 2025-12-09 02:18:50.251797+00 2114 618 618
2025-12-09 02:18:50.252564+00 2025-12-09 02:18:50.252568+00 2115 75D双层 75D双层
2025-12-09 02:18:50.25332+00 2025-12-09 02:18:50.253323+00 2116
2025-12-09 02:18:50.254102+00 2025-12-09 02:18:50.254105+00 2117
2025-12-09 02:18:50.254865+00 2025-12-09 02:18:50.254868+00 2118
2025-12-09 02:18:50.255622+00 2025-12-09 02:18:50.255626+00 2119 200g双磨 200g双磨
2025-12-09 02:18:50.256418+00 2025-12-09 02:18:50.256422+00 2120 170 170
2025-12-09 02:18:50.257173+00 2025-12-09 02:18:50.257176+00 2121 618 618
2025-12-09 02:18:50.257951+00 2025-12-09 02:18:50.257954+00 2122
2025-12-09 02:18:50.259501+00 2025-12-09 02:18:50.259505+00 2123 40D涤氨 40D涤氨
2025-12-09 02:18:50.260264+00 2025-12-09 02:18:50.260268+00 2124
2025-12-09 02:18:50.261048+00 2025-12-09 02:18:50.261051+00 2125 仿 180 仿 180
2025-12-09 02:18:50.26181+00 2025-12-09 02:18:50.261813+00 2126
2025-12-09 02:18:50.262577+00 2025-12-09 02:18:50.262581+00 2127 170g牛奶丝 170g牛奶丝
2025-12-09 02:18:50.264097+00 2025-12-09 02:18:50.2641+00 2128
2025-12-09 02:18:50.26486+00 2025-12-09 02:18:50.264863+00 2129 160 160
2025-12-09 02:18:50.265629+00 2025-12-09 02:18:50.265632+00 2130 230 230
2025-12-09 02:18:50.266407+00 2025-12-09 02:18:50.26641+00 2131
2025-12-09 02:18:50.2672+00 2025-12-09 02:18:50.267203+00 2132 280 280
2025-12-09 02:18:50.267978+00 2025-12-09 02:18:50.267981+00 2133
2025-12-09 02:18:50.268762+00 2025-12-09 02:18:50.268765+00 2134 180仿 180仿
2025-12-09 02:18:50.269516+00 2025-12-09 02:18:50.269519+00 2135 100D细斜 100D细斜
2025-12-09 02:18:50.270282+00 2025-12-09 02:18:50.270286+00 2136 仿 仿
2025-12-09 02:18:50.271054+00 2025-12-09 02:18:50.271058+00 2137 250 250
2025-12-09 02:18:50.271833+00 2025-12-09 02:18:50.271837+00 2138
2025-12-09 02:18:50.273361+00 2025-12-09 02:18:50.273364+00 2139
2025-12-09 02:18:50.274906+00 2025-12-09 02:18:50.274909+00 2140 90g纬弹 90g纬弹
2025-12-09 02:18:50.275685+00 2025-12-09 02:18:50.275689+00 2141
2025-12-09 02:18:50.276459+00 2025-12-09 02:18:50.276463+00 2142 230 230
2025-12-09 02:18:50.27721+00 2025-12-09 02:18:50.277213+00 2143
2025-12-09 02:18:50.277984+00 2025-12-09 02:18:50.277988+00 2144
2025-12-09 02:18:50.278742+00 2025-12-09 02:18:50.278745+00 2145
2025-12-09 02:18:50.279524+00 2025-12-09 02:18:50.279527+00 2146 170 170
2025-12-09 02:18:50.280279+00 2025-12-09 02:18:50.280283+00 2147 165 165
2025-12-09 02:18:50.281036+00 2025-12-09 02:18:50.28104+00 2148
2025-12-09 02:18:50.2818+00 2025-12-09 02:18:50.281803+00 2149 100D大白 100D大白
2025-12-09 02:18:50.282546+00 2025-12-09 02:18:50.282549+00 2150
2025-12-09 02:18:50.283315+00 2025-12-09 02:18:50.283319+00 2151 120 120
2025-12-09 02:18:50.284078+00 2025-12-09 02:18:50.284081+00 2152
2025-12-09 02:18:50.284823+00 2025-12-09 02:18:50.284826+00 2153
2025-12-09 02:18:50.28559+00 2025-12-09 02:18:50.285594+00 2154
2025-12-09 02:18:50.286351+00 2025-12-09 02:18:50.286354+00 2155 仿 仿
2025-12-09 02:18:50.28711+00 2025-12-09 02:18:50.287113+00 2156 200仿 200仿
2025-12-09 02:18:50.288927+00 2025-12-09 02:18:50.28893+00 2157
2025-12-09 02:18:50.290007+00 2025-12-09 02:18:50.290011+00 2158
2025-12-09 02:18:50.292125+00 2025-12-09 02:18:50.292129+00 2159
2025-12-09 02:18:50.293178+00 2025-12-09 02:18:50.293181+00 2160
2025-12-09 02:18:50.294236+00 2025-12-09 02:18:50.29424+00 2161
2025-12-09 02:18:50.296305+00 2025-12-09 02:18:50.296309+00 2162
2025-12-09 02:18:50.297079+00 2025-12-09 02:18:50.297083+00 2163
2025-12-09 02:18:50.297838+00 2025-12-09 02:18:50.297842+00 2164
2025-12-09 02:18:50.299372+00 2025-12-09 02:18:50.299376+00 2165 120D四面弹 120D四面弹
2025-12-09 02:18:49.521499+00 2025-12-09 02:18:50.300106+00 1855
2025-12-09 02:18:50.300923+00 2025-12-09 02:18:50.300926+00 2166
2025-12-09 02:18:50.301696+00 2025-12-09 02:18:50.301699+00 2167 200 200
2025-12-09 02:18:50.303218+00 2025-12-09 02:18:50.303221+00 2168 110 110
2025-12-09 02:18:50.303988+00 2025-12-09 02:18:50.303992+00 2169
2025-12-09 02:18:47.496685+00 2025-12-09 02:18:50.304737+00 511
2025-12-09 02:18:50.305529+00 2025-12-09 02:18:50.305533+00 2170 140 140
2025-12-09 02:18:50.306306+00 2025-12-09 02:18:50.306309+00 2171
2025-12-09 02:18:50.308161+00 2025-12-09 02:18:50.308165+00 2172
2025-12-09 02:18:50.309141+00 2025-12-09 02:18:50.309145+00 2173
2025-12-09 02:18:50.310114+00 2025-12-09 02:18:50.310119+00 2174
2025-12-09 02:18:50.311097+00 2025-12-09 02:18:50.311101+00 2175
2025-12-09 02:18:50.312067+00 2025-12-09 02:18:50.312071+00 2176 170 170
2025-12-09 02:18:50.313046+00 2025-12-09 02:18:50.313051+00 2177
2025-12-09 02:18:50.314011+00 2025-12-09 02:18:50.314015+00 2178 180G牛奶丝 180G牛奶丝
2025-12-09 02:18:50.317833+00 2025-12-09 02:18:50.317837+00 2180 300g罗马 300g罗马
2025-12-09 02:18:50.318808+00 2025-12-09 02:18:50.318812+00 2181 180g大白罗马 180g大白罗马
2025-12-09 02:18:50.319777+00 2025-12-09 02:18:50.319781+00 2182 220 220
2025-12-09 02:18:50.320754+00 2025-12-09 02:18:50.320758+00 2183 100D超柔 100D超柔
2025-12-09 02:18:50.321725+00 2025-12-09 02:18:50.321729+00 2184
2025-12-09 02:18:50.32269+00 2025-12-09 02:18:50.322694+00 2185 仿 仿
2025-12-09 02:18:50.323656+00 2025-12-09 02:18:50.32366+00 2186 9088 9088
2025-12-09 02:18:50.324633+00 2025-12-09 02:18:50.324637+00 2187 仿 仿
2025-12-09 02:18:50.325601+00 2025-12-09 02:18:50.325605+00 2188 190 190
2025-12-09 02:18:50.326577+00 2025-12-09 02:18:50.326581+00 2189
2025-12-09 02:18:50.327549+00 2025-12-09 02:18:50.327554+00 2190 仿 仿
2025-12-09 02:18:50.328511+00 2025-12-09 02:18:50.328516+00 2191
2025-12-09 02:18:50.329483+00 2025-12-09 02:18:50.329487+00 2192
2025-12-09 02:18:50.330473+00 2025-12-09 02:18:50.330478+00 2193 TC棉 TC棉
2025-12-09 02:18:50.331451+00 2025-12-09 02:18:50.331455+00 2194
2025-12-09 02:18:50.333373+00 2025-12-09 02:18:50.333378+00 2195 300 300
2025-12-09 02:18:50.334342+00 2025-12-09 02:18:50.334347+00 2196
2025-12-09 02:18:50.335295+00 2025-12-09 02:18:50.3353+00 2197
2025-12-09 02:18:50.337225+00 2025-12-09 02:18:50.337229+00 2198
2025-12-09 02:18:50.338197+00 2025-12-09 02:18:50.338201+00 2199 仿 仿
2025-12-09 02:18:50.339159+00 2025-12-09 02:18:50.339163+00 2200 36A网眼布 36A网眼布
2025-12-09 02:18:50.340125+00 2025-12-09 02:18:50.34013+00 2201
2025-12-09 02:18:50.341088+00 2025-12-09 02:18:50.341092+00 2202
2025-12-09 02:18:50.342063+00 2025-12-09 02:18:50.342067+00 2203
2025-12-09 02:18:50.343033+00 2025-12-09 02:18:50.343037+00 2204
2025-12-09 02:18:50.344004+00 2025-12-09 02:18:50.344008+00 2205
2025-12-09 02:18:50.344962+00 2025-12-09 02:18:50.344966+00 2206
2025-12-09 02:18:50.346898+00 2025-12-09 02:18:50.346902+00 2207 100D 100D
2025-12-09 02:18:50.347861+00 2025-12-09 02:18:50.347866+00 2208
2025-12-09 02:18:50.348824+00 2025-12-09 02:18:50.348828+00 2209 75D双层四面弹 75D双层四面弹
2025-12-09 02:18:50.349795+00 2025-12-09 02:18:50.349799+00 2210 100d四面弹 100d四面弹
2025-12-09 02:18:50.351725+00 2025-12-09 02:18:50.35173+00 2211
2025-12-09 02:18:50.352691+00 2025-12-09 02:18:50.352695+00 2212
2025-12-09 02:18:50.353655+00 2025-12-09 02:18:50.35366+00 2213
2025-12-09 02:18:50.354615+00 2025-12-09 02:18:50.354619+00 2214
2025-12-09 02:18:50.35558+00 2025-12-09 02:18:50.355584+00 2215
2025-12-09 02:18:50.356548+00 2025-12-09 02:18:50.356553+00 2216 仿 仿
2025-12-09 02:18:50.358445+00 2025-12-09 02:18:50.35845+00 2217 110 110
2025-12-09 02:18:50.360405+00 2025-12-09 02:18:50.360409+00 2218 仿 仿
2025-12-09 02:18:50.361388+00 2025-12-09 02:18:50.361393+00 2219
2025-12-09 02:18:50.362366+00 2025-12-09 02:18:50.36237+00 2220
2025-12-09 02:18:50.363363+00 2025-12-09 02:18:50.363368+00 2221 165 165
2025-12-09 02:18:50.36434+00 2025-12-09 02:18:50.364345+00 2222 170g牛奶丝大白 170g牛奶丝大白
2025-12-09 02:18:50.365309+00 2025-12-09 02:18:50.365313+00 2223 170仿 170仿
2025-12-09 02:18:50.366276+00 2025-12-09 02:18:50.366281+00 2224 170 170
2025-12-09 02:18:50.368227+00 2025-12-09 02:18:50.368232+00 2225
2025-12-09 02:18:50.369198+00 2025-12-09 02:18:50.369202+00 2226 190 190
2025-12-09 02:18:50.370165+00 2025-12-09 02:18:50.37017+00 2227 110 110
2025-12-09 02:18:50.371133+00 2025-12-09 02:18:50.371137+00 2228 95 95
\.
--
-- Data for Name: basic_info_supplier; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_supplier (created_at, updated_at, id, name, area, email, mobile, contact, description, merchant_id) FROM stdin;
2025-11-26 03:14:51.868499+00 2025-11-26 03:14:51.868508+00 1 123 \N \N \N \N 1
2025-12-01 09:04:05.64032+00 2025-12-01 09:04:05.640329+00 2 123 \N \N \N \N \N 1
\.
--
-- Data for Name: basic_info_userprofile; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_userprofile (created_at, updated_at, id, description, merchant_id, user_id) FROM stdin;
2025-11-24 03:12:45.2506+00 2025-11-24 03:12:45.250611+00 1 1 2
2025-11-24 05:45:22.720006+00 2025-11-24 05:45:22.720012+00 3 1 5
2025-11-24 06:08:19.191142+00 2025-11-24 06:08:19.191149+00 4 supersuper111 1 6
2025-11-24 06:16:49.714832+00 2025-11-24 06:16:49.714838+00 5 supersuper111 1 7
\.
--
-- Data for Name: basic_info_vehicletransportrecord; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_vehicletransportrecord (created_at, updated_at, id, driver_name, contact_number, license_plate, delivery_date, merchant_id, vehicle_type_id) FROM stdin;
\.
--
-- Data for Name: basic_info_vehicletype; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_vehicletype (created_at, updated_at, id, name, description, merchant_id) FROM stdin;
\.
--
-- Data for Name: basic_info_warehouse; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.basic_info_warehouse (created_at, updated_at, id, name, location, contact, mobile, area, description, merchant_id, mode, type) FROM stdin;
2025-11-20 06:43:01.759659+00 2025-11-20 06:43:01.75967+00 3 2 13310001999 \N 1 1 2
2025-11-25 09:11:29.252782+00 2025-11-25 09:11:29.252792+00 4 \N \N \N \N \N 1 2 1
2025-11-20 06:42:36.740923+00 2025-11-25 10:18:01.333513+00 2 1 13310001999 \N 1 2 1
2025-12-01 09:17:21.481482+00 2025-12-01 09:17:21.481491+00 5 \N \N \N \N \N 1 3 1
\.
--
-- Data for Name: business_balancechangerecord; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_balancechangerecord (id, created_at, updated_at, target_type, source_type, source_id, delta, direction, balance_before, balance_after, request_id, remarks, extra_meta, offset_to, offset_at, offset_id, cancelled, cancelled_at, customer_id, merchant_id, supplier_id) FROM stdin;
1 2025-12-01 07:14:23.861513+00 2025-12-01 07:14:23.861518+00 2 2 2 500.00 1 -44.00 456.00 \N {} \N \N \N f \N 3 1 \N
2 2025-12-01 09:18:06.954809+00 2025-12-01 09:18:06.954817+00 1 5 1 -100.00 2 -50.00 -150.00 \N {} \N \N \N f \N \N 1 1
3 2025-12-01 09:32:33.706005+00 2025-12-01 09:32:33.70601+00 1 5 3 -200.00 2 -150.00 -350.00 \N {} \N \N \N f \N \N 1 1
4 2025-12-01 09:42:14.235539+00 2025-12-01 09:42:14.235547+00 2 6 1 -624.00 2 456.00 -168.00 \N {} \N \N \N f \N 3 1 \N
5 2025-12-01 09:43:48.630763+00 2025-12-01 09:43:48.630768+00 2 6 2 0.00 1 -168.00 -168.00 \N {} \N \N \N f \N 3 1 \N
6 2025-12-01 09:44:17.41201+00 2025-12-01 09:44:17.412015+00 2 6 3 0.00 1 -168.00 -168.00 \N {} \N \N \N f \N 3 1 \N
7 2025-12-01 09:45:03.243761+00 2025-12-01 09:45:03.243765+00 1 5 4 0.00 1 0.00 0.00 \N {} \N \N \N f \N \N 1 2
8 2025-12-01 09:48:45.339355+00 2025-12-01 09:48:45.339359+00 2 6 4 -390.00 2 -168.00 -558.00 \N {} \N \N \N f \N 3 1 \N
9 2025-12-01 09:57:08.746485+00 2025-12-01 09:57:08.746489+00 2 6 5 0.00 1 -558.00 -558.00 \N {} \N \N \N f \N 3 1 \N
10 2025-12-01 09:59:47.267842+00 2025-12-01 09:59:47.267846+00 2 6 6 0.00 1 -558.00 -558.00 \N {} \N \N \N f \N 3 1 \N
11 2025-12-01 10:11:13.484938+00 2025-12-01 10:11:13.484943+00 2 6 7 0.00 1 0.00 0.00 \N {} \N \N \N f \N 6 1 \N
12 2025-12-01 10:12:21.017421+00 2025-12-01 10:12:21.017426+00 2 6 8 0.00 1 0.00 0.00 \N {} \N \N \N f \N 6 1 \N
13 2025-12-03 09:49:17.730177+00 2025-12-03 09:49:17.730183+00 2 4 2 -558.00 2 -558.00 -1116.00 \N {} \N \N \N f \N 3 1 \N
14 2025-12-10 05:58:53.449106+00 2025-12-10 05:58:53.44911+00 2 2 3 0.00 1 0.00 0.00 \N {} \N \N \N f \N 809 1 \N
15 2025-12-11 08:57:07.668206+00 2025-12-11 08:57:07.668211+00 2 2 4 0.00 1 0.00 0.00 \N {} \N \N \N f \N 809 1 \N
16 2025-12-11 08:57:53.289522+00 2025-12-11 08:57:53.28953+00 2 2 5 0.00 1 0.00 0.00 \N {} \N \N \N f \N 809 1 \N
17 2025-12-11 08:59:03.254113+00 2025-12-11 08:59:03.254118+00 2 2 6 0.00 1 0.00 0.00 \N {} \N \N \N f \N 809 1 \N
18 2025-12-11 09:00:28.098438+00 2025-12-11 09:00:28.098443+00 2 2 7 0.00 1 0.00 0.00 \N {} \N \N \N f \N 809 1 \N
19 2025-12-11 09:09:08.750184+00 2025-12-11 09:09:08.750189+00 2 2 8 0.00 1 0.00 0.00 \N {} \N \N \N f \N 809 1 \N
20 2025-12-11 10:10:00.363937+00 2025-12-11 10:10:00.363942+00 2 2 9 2116.00 1 -1116.00 1000.00 \N {} \N \N \N f \N 3 1 \N
21 2025-12-11 10:14:46.572697+00 2025-12-11 10:14:46.572702+00 2 4 3 500.00 1 1000.00 1500.00 \N {} \N \N \N f \N 3 1 \N
22 2025-12-12 06:58:04.375534+00 2025-12-12 06:58:04.37554+00 2 2 11 41040.00 1 0.00 41040.00 \N {} \N \N \N f \N 809 1 \N
23 2025-12-12 07:03:40.978466+00 2025-12-12 07:03:40.97847+00 2 2 12 6400.00 1 41040.00 47440.00 \N {} \N \N \N f \N 809 1 \N
24 2025-12-12 07:54:13.448427+00 2025-12-12 07:54:13.448433+00 2 2 10 0.00 1 47440.00 47440.00 \N {} \N \N \N f \N 809 1 \N
25 2025-12-12 07:56:07.193209+00 2025-12-12 07:56:07.193217+00 2 2 13 5000.00 1 47440.00 52440.00 \N {} \N \N \N f \N 809 1 \N
26 2025-12-12 09:36:45.757006+00 2025-12-12 09:36:45.757011+00 2 4 4 -5000.00 2 52440.00 47440.00 \N {} \N \N \N f \N 809 1 \N
27 2025-12-12 12:26:32.473284+00 2025-12-12 12:26:32.473289+00 2 2 15 912.00 1 47440.00 48352.00 \N {} \N \N \N f \N 809 1 \N
\.
--
-- Data for Name: business_customerbalance; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_customerbalance (id, created_at, updated_at, balance, customer_id, merchant_id) FROM stdin;
2 2025-12-01 10:11:13.484115+00 2025-12-01 10:12:21.017087+00 0.00 6 1
1 2025-12-01 05:16:19.216069+00 2025-12-11 10:14:46.572318+00 1500.00 3 1
3 2025-12-10 05:58:53.448291+00 2025-12-12 12:26:32.472881+00 48352.00 809 1
\.
--
-- Data for Name: business_object; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_object (id, created_at, updated_at, name, description, process_id, content_type_id, object_id) FROM stdin;
1 2025-11-18 09:55:35.336835+00 2025-11-18 09:55:35.336842+00 1 \N \N
2 2025-11-18 09:58:01.451306+00 2025-11-18 09:58:01.451311+00 1 \N \N
3 2025-11-18 09:58:20.381316+00 2025-11-18 09:58:20.38132+00 1 \N \N
4 2025-11-18 10:03:03.629943+00 2025-11-18 10:03:03.629948+00 PrintingJob-1 1 1 \N \N
5 2025-11-18 10:09:47.339798+00 2025-11-18 10:09:47.339803+00 2 \N \N
6 2025-11-18 10:10:04.823874+00 2025-11-18 10:10:04.823879+00 2 \N \N
7 2025-11-18 10:10:55.526526+00 2025-11-18 10:10:55.526533+00 2 \N \N
8 2025-11-18 10:15:58.290203+00 2025-11-18 10:15:58.290207+00 PrintingJob-2 2 1 \N \N
9 2025-11-18 10:35:25.880305+00 2025-11-18 10:35:25.880312+00 2 \N \N
10 2025-11-18 10:42:48.817571+00 2025-11-18 10:42:48.817579+00 PrintingJob-3 3 1 \N \N
11 2025-11-18 10:42:48.848235+00 2025-11-18 10:42:48.84824+00 PrintingJob-4 4 1 \N \N
12 2025-11-19 01:44:43.687468+00 2025-11-19 01:44:43.687472+00 2 \N \N
13 2025-11-19 02:00:49.486776+00 2025-11-19 02:00:49.486782+00 2 \N \N
14 2025-11-19 02:00:59.586971+00 2025-11-19 02:00:59.586976+00 2 \N \N
15 2025-11-19 02:04:48.934697+00 2025-11-19 02:04:48.934703+00 2 \N \N
16 2025-11-19 05:10:28.186858+00 2025-11-19 05:10:28.186863+00 PrintingJob-5 5 1 \N \N
17 2025-11-19 06:16:00.259932+00 2025-11-19 06:16:00.259937+00 PrintingJob-6 6 1 \N \N
18 2025-11-19 08:21:50.459601+00 2025-11-19 08:21:50.459608+00 PrintingJob-7 7 1 \N \N
19 2025-11-19 09:28:09.461746+00 2025-11-19 09:28:09.461752+00 2 \N \N
20 2025-11-19 09:28:40.842389+00 2025-11-19 09:28:40.842394+00 2 \N \N
21 2025-11-20 01:52:49.286921+00 2025-11-20 01:52:49.286927+00 2 \N \N
22 2025-11-20 03:48:01.385016+00 2025-11-20 03:48:01.385022+00 2 \N \N
23 2025-11-20 03:49:28.254688+00 2025-11-20 03:49:28.254694+00 2 \N \N
24 2025-11-20 03:49:37.951494+00 2025-11-20 03:49:37.951499+00 1 \N \N
25 2025-11-20 06:55:48.528541+00 2025-11-20 06:55:48.528548+00 2 \N \N
26 2025-11-21 03:10:15.020199+00 2025-11-21 03:10:15.020203+00 PrintingJob-8 8 1 \N \N
27 2025-11-21 08:45:33.732267+00 2025-11-21 08:45:33.732274+00 2 \N \N
28 2025-11-22 02:39:05.939841+00 2025-11-22 02:39:05.939847+00 2 \N \N
29 2025-11-23 13:11:03.642075+00 2025-11-23 13:11:03.642082+00 2 \N \N
30 2025-11-24 11:33:15.711916+00 2025-11-24 11:33:15.711922+00 2 \N \N
31 2025-11-27 07:23:06.022961+00 2025-11-27 07:23:06.022966+00 2 \N \N
32 2025-11-27 08:08:49.410063+00 2025-11-27 08:08:49.41007+00 2 \N \N
33 2025-11-27 08:09:00.364914+00 2025-11-27 08:09:00.364921+00 2 \N \N
34 2025-11-27 09:01:25.14368+00 2025-11-27 09:01:25.143685+00 2 \N \N
35 2025-11-27 09:04:52.038687+00 2025-11-27 09:04:52.038695+00 2 \N \N
36 2025-11-28 01:32:58.420878+00 2025-11-28 01:32:58.420883+00 2 \N \N
37 2025-11-28 01:33:14.216478+00 2025-11-28 01:33:14.216483+00 2 \N \N
38 2025-11-28 01:43:59.359293+00 2025-11-28 01:43:59.359298+00 2 \N \N
39 2025-11-28 02:39:41.390748+00 2025-11-28 02:39:41.390755+00 2 \N \N
40 2025-11-28 02:57:18.735261+00 2025-11-28 02:57:18.735268+00 2 \N \N
41 2025-11-28 02:58:57.702444+00 2025-11-28 02:58:57.70245+00 2 \N \N
42 2025-11-28 07:03:43.810301+00 2025-11-28 07:03:43.810307+00 PrintingJob-9 9 1 \N \N
43 2025-11-28 07:03:53.866789+00 2025-11-28 07:03:53.866794+00 PrintingJob-10 10 1 \N \N
44 2025-12-01 02:54:14.237815+00 2025-12-01 02:54:14.23782+00 PrintingJob-11 11 1 \N \N
45 2025-12-03 03:52:58.983019+00 2025-12-03 03:52:58.983023+00 2 \N \N
46 2025-12-03 05:27:06.576434+00 2025-12-03 05:27:06.576439+00 2 \N \N
47 2025-12-04 05:45:26.825263+00 2025-12-04 05:45:26.825268+00 1 \N \N
48 2025-12-04 06:58:03.927422+00 2025-12-04 06:58:03.927427+00 2 \N \N
49 2025-12-04 09:22:03.034241+00 2025-12-04 09:22:03.034245+00 2 \N \N
50 2025-12-05 08:10:13.513895+00 2025-12-05 08:10:13.513899+00 2 \N \N
51 2025-12-05 08:58:42.07426+00 2025-12-05 08:58:42.074264+00 2 \N \N
52 2025-12-05 09:08:57.211508+00 2025-12-05 09:08:57.211515+00 PrintingJob-12 12 1 \N \N
53 2025-12-05 09:13:01.435639+00 2025-12-05 09:13:01.435645+00 2 \N \N
54 2025-12-05 10:36:45.72919+00 2025-12-05 10:36:45.729194+00 2 \N \N
55 2025-12-06 02:51:26.682163+00 2025-12-06 02:51:26.682171+00 PrintingJob-13 13 1 \N \N
56 2025-12-06 07:41:26.895247+00 2025-12-06 07:41:26.895251+00 9 \N \N
57 2025-12-08 05:02:11.853092+00 2025-12-08 05:02:11.853098+00 9 \N \N
58 2025-12-08 05:25:59.941691+00 2025-12-08 05:25:59.941695+00 2 \N \N
59 2025-12-08 05:29:21.259039+00 2025-12-08 05:29:21.259044+00 PrintingJob-14 14 1 \N \N
60 2025-12-08 06:18:14.446528+00 2025-12-08 06:18:14.446534+00 2 \N \N
61 2025-12-08 06:47:33.624101+00 2025-12-08 06:47:33.624106+00 2 \N \N
62 2025-12-08 06:51:25.850485+00 2025-12-08 06:51:25.850489+00 7 \N \N
63 2025-12-08 09:47:29.905244+00 2025-12-08 09:47:29.905252+00 2 \N \N
64 2025-12-09 06:56:38.561974+00 2025-12-09 06:56:38.56198+00 2 \N \N
65 2025-12-09 07:04:50.761741+00 2025-12-09 07:04:50.761748+00 PrintingJob-15 15 1 \N \N
66 2025-12-10 05:57:57.813923+00 2025-12-10 05:57:57.813928+00 PrintingJob-16 16 1 \N \N
67 2025-12-11 05:52:04.475247+00 2025-12-11 05:52:04.475254+00 PrintingJob-17 17 1 \N \N
68 2025-12-11 07:49:04.299103+00 2025-12-11 07:49:04.299108+00 PrintingJob-18 18 1 \N \N
69 2025-12-12 10:01:20.184168+00 2025-12-12 10:01:20.184173+00 PrintingJob-19 19 1 \N \N
70 2025-12-12 10:01:20.266117+00 2025-12-12 10:01:20.266122+00 PrintingJob-20 20 1 \N \N
71 2025-12-12 10:01:20.338055+00 2025-12-12 10:01:20.33806+00 PrintingJob-21 21 1 \N \N
72 2025-12-13 08:28:44.023288+00 2025-12-13 08:28:44.023292+00 PrintingJob-22 22 1 \N \N
73 2025-12-13 09:20:53.509309+00 2025-12-13 09:20:53.509314+00 PrintingJob-23 23 1 \N \N
74 2025-12-13 09:20:53.547294+00 2025-12-13 09:20:53.547299+00 PrintingJob-24 24 1 \N \N
75 2025-12-13 09:23:11.98986+00 2025-12-13 09:23:11.989865+00 PrintingJob-25 25 1 \N \N
\.
--
-- Data for Name: business_paymentorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_paymentorder (created_at, updated_at, id, payment_date, amount, status, remarks, merchant_id, operator_id, supplier_id, bank_account_id, markup, discount_amount) FROM stdin;
2025-12-01 01:55:13.639087+00 2025-12-01 01:55:25.06472+00 1 2025-12-01 50.00 2 1 1 1 \N \N 0.00
\.
--
-- Data for Name: business_purchaseorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_purchaseorder (created_at, updated_at, id, remarks, merchant_id, supplier_id, kind, operator_id, purchase_date, status, warehouse_id) FROM stdin;
2025-11-27 08:13:33.430682+00 2025-11-27 08:13:33.430691+00 4 1 1 1 1 2025-11-27 2 2
2025-11-27 08:32:59.523809+00 2025-11-27 08:32:59.523816+00 5 1 1 1 1 2025-11-27 1 4
2025-11-28 03:45:15.401776+00 2025-11-28 03:45:15.401787+00 6 1 1 1 1 2025-11-28 1 2
2025-11-28 03:47:11.102159+00 2025-11-28 03:47:11.102166+00 7 1 1 1 1 2025-11-28 1 3
2025-11-28 03:48:02.675851+00 2025-11-28 03:48:02.675859+00 8 oooo 1 1 1 1 2025-11-28 1 4
2025-11-28 03:49:04.580215+00 2025-11-28 03:49:04.580224+00 9 1 1 1 1 2025-11-28 1 2
2025-11-28 06:18:30.813402+00 2025-11-28 06:18:30.813413+00 10 1 1 1 1 2025-11-28 1 3
2025-11-28 06:18:54.718044+00 2025-11-28 06:18:54.718052+00 11 1 1 1 1 2025-11-28 1 4
2025-11-28 06:20:58.855488+00 2025-11-28 06:20:58.855501+00 12 1 1 1 1 2025-11-28 1 2
2025-11-28 09:36:44.065913+00 2025-11-28 09:36:44.065931+00 13 1 1 1 1 2025-11-28 1 3
2025-11-28 09:46:59.206833+00 2025-11-28 10:01:26.242631+00 16 321 1 1 1 1 2025-11-28 2 2
2025-11-28 09:46:58.480885+00 2025-11-28 10:01:33.033156+00 15 321 1 1 1 1 2025-11-28 3 2
2025-11-28 09:43:18.385595+00 2025-11-28 10:01:37.03266+00 14 1 1 1 1 2025-11-28 2 3
2025-11-28 10:04:13.493174+00 2025-11-28 10:04:16.4849+00 17 1 1 1 1 2025-11-28 2 2
2025-11-28 10:07:18.063985+00 2025-11-28 10:07:47.233846+00 18 1 1 1 1 2025-11-28 3 3
2025-11-28 10:13:43.146475+00 2025-11-28 10:13:49.907567+00 19 1 1 1 1 2025-11-28 2 3
2025-11-29 03:45:48.453773+00 2025-11-29 03:45:48.453783+00 20 1 1 1 1 2025-11-29 1 2
2025-12-02 12:36:48.126532+00 2025-12-02 12:36:48.126543+00 21 1 1 1 1 2025-12-02 1 2
2025-12-03 03:56:11.087112+00 2025-12-03 03:56:11.087125+00 54 1 1 1 1 2025-12-03 1 2
2025-12-03 03:56:19.690904+00 2025-12-03 03:56:19.690918+00 55 1 1 1 1 2025-12-03 1 2
2025-12-03 03:56:28.601528+00 2025-12-03 03:56:28.601541+00 56 1 1 1 1 2025-12-03 1 2
2025-12-03 03:56:30.867937+00 2025-12-03 03:56:30.867946+00 57 1 1 1 1 2025-12-03 1 2
2025-12-03 06:13:55.769266+00 2025-12-03 06:13:55.769275+00 58 1 2 1 1 2025-12-03 1 2
\.
--
-- Data for Name: business_purchaseorderitem; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_purchaseorderitem (created_at, updated_at, id, price, color, quantity, unit, empty_diff_percent, quantity_of_rolls, num_of_rolls, batch_number, remarks, product_id, purchase_order_id, spec) FROM stdin;
2025-11-27 08:14:29.091796+00 2025-11-27 08:14:29.091805+00 1 555.00 25.00 3.34 200 1 1 1 4 \N
2025-11-27 08:35:24.029424+00 2025-11-27 08:48:57.608408+00 2 25.00 \N 100.00 5.00 \N 1 WWOODDP1 1 5 \N
2025-11-28 03:45:15.402492+00 2025-11-28 03:45:15.402496+00 3 0.00 \N 195.00 0.00 97,98 2 \N \N 1 6 \N
2025-11-28 03:47:11.102785+00 2025-11-28 03:47:11.10279+00 4 0.00 \N 195.00 0.00 97,98 2 \N \N 1 7 \N
2025-11-28 03:49:04.580819+00 2025-11-28 03:49:04.580824+00 5 0.00 \N 195.00 0.00 97,98 2 \N \N 1 9 \N
2025-11-28 06:18:30.814105+00 2025-11-28 06:18:30.814109+00 6 0.00 \N 195.00 0.00 97,98 2 \N \N 1 10 \N
2025-11-28 06:18:54.718646+00 2025-11-28 06:18:54.71865+00 7 0.00 \N 386.00 0.00 97,98,97,94 4 \N \N 1 11 \N
2025-11-28 06:20:58.85678+00 2025-11-28 06:20:58.856787+00 8 0.00 \N 195.00 0.00 97,98 2 \N \N 2 12 \N
2025-11-28 09:36:44.067188+00 2025-11-28 09:36:44.067196+00 9 0.50 123 195.00 123.00 97,98 2 123 123 1 13 \N
2025-11-28 09:43:18.386305+00 2025-11-28 09:43:18.386309+00 10 123.00 12312 123.00 123 3123.00 123 1 123 \N 1 14 \N
2025-11-28 09:46:58.48212+00 2025-11-28 09:46:58.482127+00 11 1.00 123 195.00 123.00 97,98 2 123 \N 1 15 \N
2025-11-28 09:46:59.207447+00 2025-11-28 09:46:59.207451+00 12 1.00 123 195.00 123.00 97,98 2 123 \N 1 16 \N
2025-11-28 10:04:13.493873+00 2025-11-28 10:04:13.493876+00 13 0.50 123 195.00 0.00 97,98 2 001 \N 3 17 123
2025-11-28 10:07:18.065014+00 2025-11-28 10:07:18.065022+00 14 0.50 123 390.00 0.00 97,98,97,98 4 123 \N 3 18 123
2025-11-28 10:13:43.147164+00 2025-11-28 10:13:43.147168+00 15 5.00 7 100.00 5.00 100 1 10 \N 3 19 123
2025-11-29 03:45:48.45446+00 2025-11-29 03:45:48.454465+00 16 123.00 123 195.00 3.00 97,98 2 3 \N 3 20 123
2025-12-02 12:36:48.127342+00 2025-12-02 12:36:48.127348+00 17 2.00 8 100.00 10.00 100 1 \N \N 3 21 \N
2025-12-03 03:56:11.089051+00 2025-12-03 03:56:11.089058+00 50 0.00 400.00 0.00 400 1 3 54
2025-12-03 03:56:19.692096+00 2025-12-03 03:56:19.692103+00 51 0.00 400.00 0.00 400 1 3 55
2025-12-03 03:56:28.602647+00 2025-12-03 03:56:28.602655+00 52 5.00 400.00 0.00 400 1 3 56
2025-12-03 03:56:30.86854+00 2025-12-03 03:56:30.868544+00 53 5.00 400.00 0.00 400 1 3 57
2025-12-03 06:13:55.769947+00 2025-12-03 06:13:55.769951+00 54 0.00 456.00 0.00 456 1 3 58
\.
--
-- Data for Name: business_purchasereturnorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_purchasereturnorder (created_at, updated_at, id, return_date, status, remarks, merchant_id, operator_id, purchase_order_id, supplier_id, warehouse_id) FROM stdin;
2025-12-01 09:20:04.438924+00 2025-12-01 09:20:04.438931+00 2 2025-12-01 1 1 1 \N 1 5
2025-12-01 09:32:27.47594+00 2025-12-01 09:32:33.704544+00 3 2025-12-01 2 1 1 \N 1 5
2025-12-01 09:44:59.206254+00 2025-12-01 09:45:03.241983+00 4 2025-12-01 2 1 1 \N 2 5
\.
--
-- Data for Name: business_purchasereturnorderitem; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_purchasereturnorderitem (created_at, updated_at, id, price, color, quantity, unit, spec, empty_diff_percent, quantity_of_rolls, num_of_rolls, consume_detail_ids, batch_number, remarks, product_id, purchase_return_order_id) FROM stdin;
2025-12-01 09:20:04.439567+00 2025-12-01 09:20:04.439571+00 2 2.00 \N 97.00 87 0.00 \N 78 \N \N \N 1 2
2025-12-01 09:32:27.476649+00 2025-12-01 09:32:27.476654+00 3 5.00 \N 40.00 5 5 0.00 \N 4 \N \N \N 3 3
2025-12-01 09:44:59.207496+00 2025-12-01 09:44:59.207503+00 4 0.00 \N 100.00 \N 0.00 \N 7 \N \N \N 3 4
\.
--
-- Data for Name: business_receiptorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_receiptorder (created_at, updated_at, id, receipt_date, amount, status, remarks, customer_id, merchant_id, operator_id, bank_account_id, markup, discount_amount) FROM stdin;
2025-12-01 05:25:23.458021+00 2025-12-01 05:25:28.550379+00 1 2025-12-01 50.00 2 3 1 1 \N \N 0.00
2025-12-03 09:49:12.497967+00 2025-12-03 09:49:17.728628+00 2 2025-12-03 500.00 2 3 1 1 \N \N 58.00
2025-12-11 10:14:43.528993+00 2025-12-11 10:14:46.570884+00 3 2025-12-11 -500.00 2 3 1 1 1 \N 0.00
2025-12-12 09:36:41.749645+00 2025-12-12 09:36:45.755613+00 4 2025-12-12 5000.00 2 809 1 1 \N \N 0.00
\.
--
-- Data for Name: business_salesorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_salesorder (created_at, updated_at, id, sales_date, kind, status, remarks, customer_id, merchant_id, operator_id, warehouse_id) FROM stdin;
2025-12-01 05:16:10.813394+00 2025-12-01 05:16:19.214771+00 1 2025-12-01 1 2 3 1 1 2
2025-12-01 07:14:19.694409+00 2025-12-01 07:14:23.860083+00 2 2025-12-01 1 2 3 1 1 2
2025-12-10 05:58:49.958159+00 2025-12-10 05:58:53.447169+00 3 2025-12-10 1 2 809 1 1 5
2025-12-11 08:57:03.857553+00 2025-12-11 08:57:07.666735+00 4 2025-12-11 1 2 809 1 1 5
2025-12-11 08:57:50.283486+00 2025-12-11 08:57:53.287179+00 5 2025-12-11 1 2 809 1 1 5
2025-12-11 08:58:55.930842+00 2025-12-11 08:59:03.252747+00 6 2025-12-11 1 2 809 1 1 5
2025-12-11 09:00:18.466629+00 2025-12-11 09:00:28.096865+00 7 2025-12-11 1 2 809 1 1 3
2025-12-11 09:01:42.911895+00 2025-12-11 09:09:08.748837+00 8 2025-12-11 1 2 809 1 1 3
2025-12-11 10:09:37.883441+00 2025-12-11 10:10:00.362479+00 9 2025-12-11 1 2 3 1 1 3
2025-12-12 05:16:02.505742+00 2025-12-12 06:58:04.373784+00 11 2025-12-12 1 2 809 1 1 3
2025-12-12 07:03:26.729519+00 2025-12-12 07:03:40.977113+00 12 2025-12-12 1 2 809 1 1 3
2025-12-11 10:35:17.885678+00 2025-12-12 07:54:13.446977+00 10 2025-12-11 1 2 809 1 1 5
2025-12-12 07:55:46.673554+00 2025-12-12 07:56:07.19091+00 13 2025-12-12 1 2 809 1 1 3
2025-12-12 12:22:17.289661+00 2025-12-12 12:22:17.289669+00 14 2025-12-12 1 1 809 1 1 5
2025-12-12 12:24:38.29782+00 2025-12-12 12:26:32.471842+00 15 2025-12-12 1 2 809 1 1 3
\.
--
-- Data for Name: business_salesorderitem; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_salesorderitem (created_at, updated_at, id, price, color, quantity, unit, spec, empty_diff_percent, quantity_of_rolls, num_of_rolls, consume_detail_ids, batch_number, remarks, product_id, sales_order_id, printing_job_id) FROM stdin;
2025-12-01 05:16:10.814184+00 2025-12-01 05:16:10.814191+00 1 2.00 \N 3.00 2 \N 0.00 \N 1 32 \N \N 1 1 \N
2025-12-01 07:14:19.695088+00 2025-12-01 07:14:19.695092+00 2 500.00 \N 1.00 \N 0.00 \N 1 32 \N \N 3 2 \N
2025-12-10 05:58:49.958859+00 2025-12-10 05:58:49.958863+00 3 0.00 457.00 0.00 \N 1 \N 2799 3 \N
2025-12-11 08:57:03.858266+00 2025-12-11 08:57:03.858271+00 4 0.00 95 50.00 1.5 0.00 \N 1 \N PO-22 : PO-22 2800 4 18
2025-12-11 08:57:50.28413+00 2025-12-11 08:57:50.284134+00 5 0.00 95 80.00 1.5 0.00 \N 3 \N PO-22 : PO-22 2800 5 18
2025-12-11 08:58:55.93148+00 2025-12-11 08:58:55.931484+00 6 0.00 95 80.00 1.5 0.00 \N 3 \N PO-22 : PO-22 2800 6 18
2025-12-11 09:00:18.467241+00 2025-12-11 09:00:18.467245+00 7 0.00 95 60.00 1.5 0.00 10,50 2 \N PO-22 : PO-22 2800 7 18
2025-12-11 09:01:42.912542+00 2025-12-11 09:01:42.912546+00 8 0.00 95 20.00 1.5 0.00 10,10 2 \N PO-22 : PO-22 2800 8 18
2025-12-11 10:09:37.884699+00 2025-12-11 10:09:37.884709+00 9 2116.00 1.00 0.00 1 1 \N 2800 9 \N
2025-12-11 10:35:17.886857+00 2025-12-11 10:35:17.886863+00 10 0.00 95 15.00 1.5 0.00 \N 1 \N PO-22 : PO-22 2800 10 18
2025-12-12 05:32:50.280964+00 2025-12-12 05:32:50.280969+00 15 10.00 95 1368.00 1.5 0.00 456,456,456 3 \N PO-22 : PO-22 2800 11 \N
2025-12-12 05:32:50.280992+00 2025-12-12 05:32:50.280994+00 16 20.00 . 1368.00 1.5 0.00 456,456,456 3 \N PO-20 : PO-20 2799 11 \N
2025-12-12 07:03:26.730162+00 2025-12-12 07:03:26.730165+00 17 20.00 220.00 0.00 100,120 2 \N 2800 12 \N
2025-12-12 07:03:26.730186+00 2025-12-12 07:03:26.730188+00 18 10.00 200.00 0.00 200 1 \N 2799 12 \N
2025-12-12 07:56:03.136839+00 2025-12-12 07:56:03.136845+00 20 20.00 95 250.00 1.5 0.00 100,150 2 \N PO-22 : PO-22 2800 13 \N
2025-12-12 12:22:17.290341+00 2025-12-12 12:22:17.290346+00 21 0.00 95 912.00 1.5 0.00 \N 2 \N PO-22 : PO-22: -5 2800 14 18
2025-12-12 12:26:13.220846+00 2025-12-12 12:26:13.220851+00 23 2.00 95 456.00 1.5 0.00 456 1 \N PO-22 : PO-22: -917 2800 15 \N
\.
--
-- Data for Name: business_salesreturnorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_salesreturnorder (created_at, updated_at, id, return_date, status, remarks, customer_id, merchant_id, operator_id, sales_order_id, warehouse_id) FROM stdin;
2025-12-01 09:42:09.295062+00 2025-12-01 09:42:14.233208+00 1 2025-12-01 2 3 1 1 \N 5
2025-12-01 09:43:44.526305+00 2025-12-01 09:43:48.629461+00 2 2025-12-01 2 3 1 1 \N 5
2025-12-01 09:44:14.505321+00 2025-12-01 09:44:17.410631+00 3 2025-12-01 2 3 1 1 \N 5
2025-12-01 09:48:42.289556+00 2025-12-01 09:48:45.337907+00 4 2025-12-01 2 3 1 1 \N 4
2025-12-01 09:57:05.046178+00 2025-12-01 09:57:08.745026+00 5 2025-12-01 2 3 1 1 \N 5
2025-12-01 09:59:42.737084+00 2025-12-01 09:59:47.266487+00 6 2025-12-01 2 3 1 1 \N 5
2025-12-01 10:11:10.400379+00 2025-12-01 10:11:13.482943+00 7 2025-12-01 2 6 1 1 \N 5
2025-12-01 10:12:18.232395+00 2025-12-01 10:12:21.016059+00 8 2025-12-01 2 6 1 1 \N 5
2025-12-12 03:08:41.514772+00 2025-12-12 03:08:41.514781+00 9 2025-12-12 1 809 1 1 \N 3
2025-12-12 03:08:56.374493+00 2025-12-12 03:08:56.374506+00 10 2025-12-12 1 809 1 1 \N 3
\.
--
-- Data for Name: business_salesreturnorderitem; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_salesreturnorderitem (created_at, updated_at, id, price, color, quantity, unit, spec, empty_diff_percent, quantity_of_rolls, num_of_rolls, consume_detail_ids, batch_number, remarks, product_id, sales_return_order_id) FROM stdin;
2025-12-01 09:42:09.295958+00 2025-12-01 09:42:09.295963+00 1 8.00 \N 78.00 78 8 0.00 \N 1 \N \N \N 1 1
2025-12-01 09:43:44.526941+00 2025-12-01 09:43:44.526945+00 2 0.00 \N 78.00 \N 0.00 \N 1 \N \N \N 3 2
2025-12-01 09:44:14.505971+00 2025-12-01 09:44:14.505975+00 3 0.00 \N 100.00 \N 0.00 \N 1 \N \N \N 3 3
2025-12-01 09:48:42.290288+00 2025-12-01 09:48:42.290294+00 4 2.00 \N 195.00 \N 0.00 97,98 2 \N \N \N 3 4
2025-12-01 09:57:05.046891+00 2025-12-01 09:57:05.046896+00 5 0.00 \N 100.00 \N 0.00 \N 3 \N \N \N 3 5
2025-12-01 09:59:42.737733+00 2025-12-01 09:59:42.737738+00 6 0.00 \N 100.00 \N 0.00 \N 1 \N \N \N 3 6
2025-12-01 10:11:10.401108+00 2025-12-01 10:11:10.401113+00 7 0.00 \N 100.00 \N 0.00 \N 3 \N \N \N 2 7
2025-12-01 10:12:18.233066+00 2025-12-01 10:12:18.23307+00 8 0.00 \N 100.00 \N 0.00 \N 3 \N \N \N 3 8
2025-12-12 03:08:41.515763+00 2025-12-12 03:08:41.515769+00 9 0.00 50.00 1 0.00 50 1 \N 2800 9
2025-12-12 03:08:56.375707+00 2025-12-12 03:08:56.375715+00 10 0.00 55.00 1 0.00 23,32 2 \N 2800 10
\.
--
-- Data for Name: business_supplierbalance; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.business_supplierbalance (id, created_at, updated_at, balance, merchant_id, supplier_id) FROM stdin;
1 2025-12-01 01:55:25.065867+00 2025-12-01 09:32:33.705617+00 -350.00 1 1
2 2025-12-01 09:45:03.243057+00 2025-12-01 09:45:03.243439+00 0.00 1 2
\.
--
-- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin;
1 2025-11-18 05:59:33.764516+00 2 jimi 1 [{"added": {}}] 4 1
2 2025-11-18 05:59:53.386691+00 2 jimi 2 [{"changed": {"fields": ["User permissions"]}}] 4 1
3 2025-11-18 06:00:31.466055+00 1 1 [{"added": {}}] 7 1
4 2025-11-18 06:00:44.202936+00 1 1 [{"added": {}}] 8 1
5 2025-11-18 06:15:00.809879+00 1 () 1 [{"added": {}}] 31 1
6 2025-11-18 06:17:56.054095+00 2 () 1 [{"added": {}}] 31 1
7 2025-11-18 06:18:26.252531+00 3 () 1 [{"added": {}}] 31 1
8 2025-11-18 06:18:36.506619+00 4 () 1 [{"added": {}}] 31 1
9 2025-11-18 06:18:51.697773+00 5 () 1 [{"added": {}}] 31 1
10 2025-11-18 06:36:14.719914+00 6 () 1 [{"added": {}}] 31 1
11 2025-11-18 06:37:41.608909+00 7 () 1 [{"added": {}}] 31 1
12 2025-11-18 06:37:53.386955+00 8 () 1 [{"added": {}}] 31 1
13 2025-11-18 06:38:45.857424+00 9 () 1 [{"added": {}}] 31 1
14 2025-11-18 06:39:07.772669+00 10 () 1 [{"added": {}}] 31 1
15 2025-11-18 06:41:38.316225+00 11 () 1 [{"added": {}}] 31 1
16 2025-11-18 06:41:46.718822+00 12 () 1 [{"added": {}}] 31 1
17 2025-11-18 06:41:52.441714+00 13 () 1 [{"added": {}}] 31 1
18 2025-11-18 06:42:24.13544+00 1 1 [{"added": {}}] 29 1
19 2025-11-18 06:42:40.876823+00 2 1 [{"added": {}}] 29 1
20 2025-11-18 06:42:51.439077+00 3 1 [{"added": {}}] 29 1
21 2025-11-18 06:43:03.132987+00 4 1 [{"added": {}}] 29 1
22 2025-11-18 06:43:09.832876+00 5 1 [{"added": {}}] 29 1
23 2025-11-18 06:43:24.578356+00 6 1 [{"added": {}}] 29 1
24 2025-11-18 06:44:18.308781+00 1 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u5f85\\u6253\\u7eb8 (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u5f85\\u6eda\\u7b52 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u5f85\\u9001\\u8d27 (3)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u9001\\u8d27\\u5b8c\\u6210 (4)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u5f85\\u5f00\\u5355 (5)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u8ba2\\u5355\\u5b8c\\u7ed3 (6)"}}] 30 1
25 2025-11-18 07:03:18.962392+00 14 () 1 [{"added": {}}] 31 1
26 2025-11-18 07:04:21.326366+00 15 () 1 [{"added": {}}] 31 1
27 2025-11-18 07:04:40.367528+00 16 () 1 [{"added": {}}] 31 1
28 2025-11-18 07:04:50.258605+00 17 1 [{"added": {}}] 31 1
29 2025-11-18 07:05:16.159648+00 17 () 2 [{"changed": {"fields": ["\\u53c2\\u6570\\u952e", "\\u53c2\\u6570\\u503c"]}}] 31 1
30 2025-11-18 07:06:26.838863+00 18 () 1 [{"added": {}}] 31 1
31 2025-11-18 07:06:40.088982+00 19 () 1 [{"added": {}}] 31 1
32 2025-11-18 07:07:20.127062+00 20 () 1 [{"added": {}}] 31 1
33 2025-11-18 07:07:31.519147+00 21 () 1 [{"added": {}}] 31 1
34 2025-11-18 07:09:18.686085+00 15 () 2 [{"changed": {"fields": ["\\u53c2\\u6570\\u952e", "\\u53c2\\u6570\\u503c"]}}] 31 1
35 2025-11-18 07:10:11.825565+00 22 () 1 [{"added": {}}] 31 1
36 2025-11-18 07:33:51.375829+00 23 test_param_001 3 31 1
37 2025-11-18 07:58:28.856338+00 24 test_param_002 3 31 1
38 2025-11-18 08:05:17.209889+00 51 (, , ) 3 31 1
39 2025-11-18 08:05:17.20991+00 50 (, , ) 3 31 1
40 2025-11-18 08:05:17.209918+00 49 (, , ) 3 31 1
41 2025-11-18 08:05:17.209925+00 48 (, , ) 3 31 1
42 2025-11-18 08:05:17.209931+00 47 (, , ) 3 31 1
43 2025-11-18 08:05:17.209937+00 46 (, , ) 3 31 1
44 2025-11-18 08:05:17.209943+00 45 (, , ) 3 31 1
45 2025-11-18 08:05:17.209949+00 44 (, , ) 3 31 1
46 2025-11-18 08:05:17.209955+00 43 (, , ) 3 31 1
47 2025-11-18 08:08:01.156317+00 27 () 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1
48 2025-11-18 08:08:06.425919+00 36 () 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1
49 2025-11-18 08:08:10.055754+00 54 () 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1
50 2025-11-18 08:08:14.833679+00 63 () 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1
51 2025-11-18 08:08:18.605846+00 72 () 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1
52 2025-11-18 08:08:51.909492+00 81 (P图) 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1
53 2025-11-18 08:12:38.122506+00 7 1 [{"added": {}}] 29 1
54 2025-11-18 08:12:47.851618+00 8 1 [{"added": {}}] 29 1
55 2025-11-18 08:13:08.01894+00 9 1 [{"added": {}}] 29 1
56 2025-11-18 08:13:23.681664+00 10 1 [{"added": {}}] 29 1
57 2025-11-18 08:13:31.884636+00 11 P图 1 [{"added": {}}] 29 1
58 2025-11-18 08:13:40.578384+00 12 1 [{"added": {}}] 29 1
59 2025-11-18 08:13:49.183222+00 13 1 [{"added": {}}] 29 1
60 2025-11-18 08:14:45.362321+00 12 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
61 2025-11-18 08:15:12.813968+00 13 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
62 2025-11-18 10:09:07.215232+00 2 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248 -> \\u753b\\u56fe (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248 -> \\u8c03\\u8272 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248 -> \\u5957\\u6837 (3)"}}] 30 1
63 2025-11-18 10:13:04.721271+00 2 2 [] 30 1
64 2025-11-18 10:13:23.903652+00 2 2 [{"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248 -> \\u627e\\u56fe (4)"}}] 30 1
65 2025-11-19 01:45:36.045179+00 8 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0"]}}] 29 1
66 2025-11-19 01:45:39.684091+00 2 2 [] 30 1
67 2025-11-19 02:13:50.033205+00 14 1 [{"added": {}}] 29 1
68 2025-11-19 02:14:21.623907+00 2 2 [{"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248 -> \\u4efb\\u52a1\\u5b8c\\u6210 (5)"}}] 30 1
69 2025-11-19 08:12:47.374521+00 3 1 [{"added": {}}] 4 1
70 2025-11-19 08:14:04.719762+00 3 2 [{"changed": {"fields": ["User permissions"]}}] 4 1
71 2025-11-19 08:14:37.879969+00 2 1 [{"added": {}}] 8 1
72 2025-11-20 05:39:43.3355+00 1 1 [{"added": {}}] 3 1
73 2025-11-20 06:06:12.752762+00 1 3 3 1
74 2025-11-20 06:10:02.468122+00 2 1 [{"added": {}}] 36 1
75 2025-11-20 06:10:09.964149+00 1 2 [{"changed": {"fields": ["\\u804c\\u4f4d"]}}] 8 1
76 2025-11-20 06:10:14.372307+00 2 2 [{"changed": {"fields": ["\\u804c\\u4f4d"]}}] 8 1
77 2025-11-20 06:42:36.741573+00 2 1 [{"added": {}}] 17 1
78 2025-11-20 06:43:01.760474+00 3 1 [{"added": {}}] 17 1
79 2025-11-20 07:53:27.081642+00 1 1 - 1 [{"added": {}}] 20 1
80 2025-11-20 07:53:51.401153+00 1 1 - 3 20 1
81 2025-11-20 07:54:03.431107+00 2 2 - 1 [{"added": {}}] 20 1
82 2025-11-20 07:54:28.235099+00 1 1 - ID: 2 1 [{"added": {}}] 21 1
83 2025-11-20 08:00:58.976268+00 3 3 - 1 [{"added": {}}] 20 1
84 2025-11-20 08:01:23.823488+00 2 2 - ID: 3 1 [{"added": {}}] 21 1
85 2025-11-20 08:02:18.095284+00 4 4 - 1 [{"added": {}}] 20 1
86 2025-11-20 08:02:47.394849+00 3 3 - ID: 4 1 [{"added": {}}] 21 1
87 2025-11-24 03:12:45.251366+00 1 jimi's Profile 1 [{"added": {}}] 37 1
88 2025-11-24 03:13:33.181153+00 2 映雪's Profile 1 [{"added": {}}] 37 1
89 2025-11-24 03:16:35.368619+00 2 's Profile 3 37 1
90 2025-11-24 06:15:31.40043+00 2 jimi 2 [{"changed": {"fields": ["User permissions", "Last login"]}}] 4 1
91 2025-11-24 09:16:10.732374+00 2 jimi 2 [{"changed": {"fields": ["User permissions"]}}] 4 1
92 2025-11-25 06:12:23.660069+00 2 jimi 2 [{"changed": {"fields": ["User permissions"]}}] 4 1
93 2025-11-25 09:20:41.470473+00 9 出入库记录 9 - 仓库:中大 1 [{"added": {}}] 20 1
94 2025-11-25 09:21:02.981897+00 25 库存变动明细 25 - 记录ID: 9 1 [{"added": {}}] 21 1
95 2025-11-25 09:28:40.652361+00 10 出入库记录 10 - 仓库:中大 1 [{"added": {}}] 20 1
96 2025-11-25 09:28:55.964661+00 26 库存变动明细 26 - 记录ID: 10 1 [{"added": {}}] 21 1
97 2025-11-25 10:12:01.371549+00 11 出入库记录 11 - 仓库:中大 1 [{"added": {}}] 20 1
98 2025-11-25 10:12:41.75256+00 27 库存变动明细 27 - 记录ID: 11 1 [{"added": {}}] 21 1
99 2025-11-25 10:12:59.643169+00 27 库存变动明细 27 - 记录ID: 11 2 [{"changed": {"fields": ["\\u6240\\u6d88\\u8017\\u7684\\u5165\\u5e93\\u660e\\u7ec6"]}}] 21 1
100 2025-11-27 08:08:36.5688+00 13 出入库记录 13 - 仓库:中大 3 20 1
101 2025-11-27 08:09:43.222937+00 3 采购订单 3 - 测试 3 38 1
102 2025-11-27 08:09:43.222962+00 2 采购订单 2 - 测试 3 38 1
103 2025-11-27 08:09:43.222973+00 1 采购订单 1 - 测试 3 38 1
104 2025-11-27 08:13:33.431382+00 4 采购订单 4 - 测试 1 [{"added": {}}] 38 1
105 2025-11-27 08:14:29.09261+00 1 PurchaseOrderItem object (1) 1 [{"added": {}}] 39 1
106 2025-11-27 08:32:59.524449+00 5 采购订单 5 - 测试 1 [{"added": {}}] 38 1
107 2025-11-27 08:35:24.030068+00 2 PurchaseOrderItem object (2) 1 [{"added": {}}] 39 1
108 2025-11-27 08:35:32.980517+00 2 PurchaseOrderItem object (2) 2 [{"changed": {"fields": ["\\u7a7a\\u5dee\\u767e\\u5206\\u6bd4"]}}] 39 1
109 2025-11-27 08:48:57.608904+00 2 PurchaseOrderItem object (2) 2 [{"changed": {"fields": ["\\u6279\\u6b21\\u53f7"]}}] 39 1
110 2025-11-28 03:48:02.676475+00 8 采购订单 8 - 测试 1 [{"added": {}}] 38 1
111 2025-11-28 06:03:02.925051+00 1 瑞彩印花 - auto_create_stock_tasks 1 [{"added": {}}] 40 1
112 2025-11-28 06:03:10.044445+00 1 瑞彩印花 - auto_create_stock_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u503c"]}}] 40 1
113 2025-11-28 06:04:43.402849+00 1 瑞彩印花 - auto_create_stock_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u503c(\\u5e03\\u5c14\\u503c)"]}}] 40 1
114 2025-11-28 06:09:27.417148+00 1 瑞彩印花 - auto_create_stock_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u7c7b\\u578b"]}}] 40 1
115 2025-11-28 06:12:01.751881+00 1 瑞彩印花 - auto_create_stock_change_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u9879"]}}] 40 1
116 2025-11-28 06:20:38.986097+00 1 瑞彩印花 - auto_create_stock_change_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u503c(\\u5e03\\u5c14\\u503c)"]}}] 40 1
117 2025-11-28 08:30:04.435918+00 1 瑞彩印花 - auto_create_stock_change_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u503c(\\u5e03\\u5c14\\u503c)"]}}] 40 1
118 2025-12-01 09:19:58.758174+00 1 采购退货 1 - 测试 3 48 1
119 2025-12-03 05:16:57.767071+00 80019 PlateOrder-80019 2 [{"changed": {"fields": ["\\u4e0b\\u7248\\u65f6\\u95f4", "\\u5f00\\u7248\\u56fe", "\\u5b8c\\u6210\\u65f6\\u95f4"]}}] 28 1
120 2025-12-03 05:17:18.085335+00 80018 PlateOrder-80018 2 [{"changed": {"fields": ["\\u4e0b\\u7248\\u65f6\\u95f4", "\\u5f00\\u7248\\u56fe", "\\u8981\\u6c42\\u5b8c\\u6210\\u65f6\\u95f4", "\\u5b8c\\u6210\\u65f6\\u95f4"]}}] 28 1
121 2025-12-03 05:17:32.438309+00 80017 PlateOrder-80017 2 [{"changed": {"fields": ["\\u4e0b\\u7248\\u65f6\\u95f4", "\\u5f00\\u7248\\u56fe", "\\u5b8c\\u6210\\u65f6\\u95f4"]}}] 28 1
122 2025-12-03 05:17:47.71918+00 80014 PlateOrder-80014 2 [{"changed": {"fields": ["\\u5f00\\u7248\\u56fe"]}}] 28 1
123 2025-12-03 05:18:07.777373+00 80013 PlateOrder-80013 2 [{"changed": {"fields": ["\\u5f00\\u7248\\u56fe"]}}] 28 1
124 2025-12-04 05:58:04.805118+00 14 StateFlowRecord object (14) 3 34 1
125 2025-12-04 05:58:04.805141+00 15 StateFlowRecord object (15) 3 34 1
126 2025-12-04 05:58:04.805155+00 16 StateFlowRecord object (16) 3 34 1
127 2025-12-04 05:58:04.805164+00 17 StateFlowRecord object (17) 3 34 1
128 2025-12-04 05:58:04.805173+00 18 StateFlowRecord object (18) 3 34 1
129 2025-12-04 05:58:04.805181+00 19 StateFlowRecord object (19) 3 34 1
130 2025-12-04 05:58:04.805189+00 20 StateFlowRecord object (20) 3 34 1
131 2025-12-04 05:58:51.397979+00 27 StateFlowRecord object (27) 3 34 1
132 2025-12-04 05:58:51.398+00 29 StateFlowRecord object (29) 3 34 1
133 2025-12-04 05:58:51.39801+00 30 StateFlowRecord object (30) 3 34 1
134 2025-12-04 05:58:51.398019+00 31 StateFlowRecord object (31) 3 34 1
135 2025-12-04 05:58:51.398028+00 32 StateFlowRecord object (32) 3 34 1
136 2025-12-04 05:58:51.398036+00 33 StateFlowRecord object (33) 3 34 1
137 2025-12-04 05:58:51.398044+00 34 StateFlowRecord object (34) 3 34 1
138 2025-12-04 05:58:51.398052+00 35 StateFlowRecord object (35) 3 34 1
139 2025-12-04 05:58:51.398059+00 36 StateFlowRecord object (36) 3 34 1
140 2025-12-04 05:58:51.398067+00 37 StateFlowRecord object (37) 3 34 1
141 2025-12-04 05:59:00.98459+00 43 StateFlowRecord object (43) 3 34 1
142 2025-12-04 05:59:00.984609+00 44 StateFlowRecord object (44) 3 34 1
143 2025-12-04 05:59:00.984619+00 45 StateFlowRecord object (45) 3 34 1
144 2025-12-04 05:59:00.984627+00 46 StateFlowRecord object (46) 3 34 1
145 2025-12-04 05:59:00.984635+00 47 StateFlowRecord object (47) 3 34 1
146 2025-12-04 05:59:00.984643+00 48 StateFlowRecord object (48) 3 34 1
147 2025-12-04 05:59:00.984651+00 49 StateFlowRecord object (49) 3 34 1
148 2025-12-04 05:59:00.984659+00 50 StateFlowRecord object (50) 3 34 1
149 2025-12-04 05:59:00.984668+00 51 StateFlowRecord object (51) 3 34 1
150 2025-12-04 05:59:00.984677+00 52 StateFlowRecord object (52) 3 34 1
151 2025-12-04 05:59:00.984685+00 53 StateFlowRecord object (53) 3 34 1
152 2025-12-04 05:59:00.984692+00 54 StateFlowRecord object (54) 3 34 1
153 2025-12-04 05:59:08.461159+00 13 StateFlowRecord object (13) 3 34 1
154 2025-12-04 06:00:00.766402+00 14 PlateOrder-14 3 28 1
155 2025-12-04 06:00:00.766438+00 13 PlateOrder-13 3 28 1
156 2025-12-04 06:00:00.766459+00 12 PlateOrder-12 3 28 1
157 2025-12-04 06:00:00.766478+00 11 PlateOrder-11 3 28 1
158 2025-12-04 06:00:00.766495+00 10 PlateOrder-10 3 28 1
159 2025-12-04 06:00:00.766512+00 9 PlateOrder-9 3 28 1
160 2025-12-04 06:00:00.766528+00 8 PlateOrder-8 3 28 1
161 2025-12-04 06:00:00.766545+00 7 PlateOrder-7 3 28 1
162 2025-12-04 06:00:00.766561+00 6 PlateOrder-6 3 28 1
163 2025-12-04 06:00:00.766577+00 5 PlateOrder-5 3 28 1
164 2025-12-04 06:00:00.766594+00 4 PlateOrder-4 3 28 1
165 2025-12-04 06:00:00.76661+00 3 PlateOrder-3 3 28 1
166 2025-12-04 06:00:00.766626+00 2 PlateOrder-2 3 28 1
167 2025-12-04 06:00:00.766642+00 1 PlateOrder-1 3 28 1
168 2025-12-04 06:00:07.792671+00 80021 PlateOrder-80021 3 28 1
169 2025-12-04 06:00:07.792692+00 80020 PlateOrder-80020 3 28 1
170 2025-12-04 06:00:07.792702+00 80019 PlateOrder-80019 3 28 1
171 2025-12-04 06:00:07.792711+00 80018 PlateOrder-80018 3 28 1
172 2025-12-04 06:00:07.792719+00 80017 PlateOrder-80017 3 28 1
173 2025-12-04 06:00:07.792727+00 80016 PlateOrder-80016 3 28 1
174 2025-12-04 06:00:07.792734+00 80015 PlateOrder-80015 3 28 1
175 2025-12-04 06:00:07.792742+00 80014 PlateOrder-80014 3 28 1
176 2025-12-04 06:00:07.792753+00 80013 PlateOrder-80013 3 28 1
177 2025-12-04 06:00:07.792761+00 80012 PlateOrder-80012 3 28 1
178 2025-12-04 06:00:07.792768+00 80011 PlateOrder-80011 3 28 1
179 2025-12-04 06:00:07.792777+00 80010 PlateOrder-80010 3 28 1
180 2025-12-04 06:00:07.792784+00 80009 PlateOrder-80009 3 28 1
181 2025-12-04 06:00:07.792794+00 80008 PlateOrder-80008 3 28 1
182 2025-12-04 06:00:07.792801+00 80007 PlateOrder-80007 3 28 1
183 2025-12-04 06:00:07.792808+00 80006 PlateOrder-80006 3 28 1
184 2025-12-04 06:00:07.792815+00 80005 PlateOrder-80005 3 28 1
185 2025-12-04 06:00:07.792823+00 80004 PlateOrder-80004 3 28 1
186 2025-12-04 06:00:07.79283+00 80003 PlateOrder-80003 3 28 1
187 2025-12-04 06:00:07.792838+00 80002 PlateOrder-80002 3 28 1
188 2025-12-04 06:00:07.792845+00 80001 PlateOrder-80001 3 28 1
189 2025-12-04 06:00:07.792852+00 80000 PlateOrder-80000 3 28 1
190 2025-12-04 06:03:10.813607+00 8 文华 1 [{"added": {}}] 4 1
191 2025-12-04 06:04:24.664673+00 2 跟单组 1 [{"added": {}}] 3 1
192 2025-12-04 06:04:46.38668+00 8 文华 2 [{"changed": {"fields": ["password"]}}] 4 1
193 2025-12-04 06:05:00.947287+00 8 文华 2 [{"changed": {"fields": ["Groups"]}}] 4 1
194 2025-12-04 06:05:26.803499+00 9 丹红 1 [{"added": {}}] 4 1
195 2025-12-04 06:06:13.059226+00 10 杨淑滢 1 [{"added": {}}] 4 1
196 2025-12-04 06:09:42.479841+00 11 翟中灿 1 [{"added": {}}] 4 1
197 2025-12-04 06:10:36.946745+00 12 赖晖怡 1 [{"added": {}}] 4 1
198 2025-12-04 06:11:08.588869+00 13 陈珍 1 [{"added": {}}] 4 1
199 2025-12-04 06:11:40.986802+00 14 陈紫莹 1 [{"added": {}}] 4 1
200 2025-12-04 06:12:00.816439+00 15 静云 1 [{"added": {}}] 4 1
201 2025-12-04 06:12:32.529988+00 3 下单组 1 [{"added": {}}] 3 1
202 2025-12-04 06:13:02.471908+00 16 蕙婷 1 [{"added": {}}] 4 1
203 2025-12-04 06:13:30.205956+00 17 丽容 1 [{"added": {}}] 4 1
204 2025-12-04 06:13:48.637582+00 18 春香 1 [{"added": {}}] 4 1
205 2025-12-04 06:14:51.277542+00 9 丹红 2 [{"changed": {"fields": ["Groups"]}}] 4 1
206 2025-12-04 06:15:27.905908+00 17 丽容 2 [{"changed": {"fields": ["Groups"]}}] 4 1
207 2025-12-04 06:15:54.180065+00 3 映雪 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1
208 2025-12-04 06:16:02.790159+00 18 春香 2 [{"changed": {"fields": ["Groups"]}}] 4 1
209 2025-12-04 06:16:10.327917+00 3 映雪 2 [{"changed": {"fields": ["Groups"]}}] 4 1
210 2025-12-04 06:16:24.469866+00 10 杨淑滢 2 [{"changed": {"fields": ["Groups"]}}] 4 1
211 2025-12-04 06:16:36.368117+00 11 翟中灿 2 [{"changed": {"fields": ["Groups"]}}] 4 1
212 2025-12-04 06:16:45.469882+00 16 蕙婷 2 [{"changed": {"fields": ["Groups"]}}] 4 1
213 2025-12-04 06:16:52.139717+00 12 赖晖怡 2 [{"changed": {"fields": ["Groups"]}}] 4 1
214 2025-12-04 06:17:06.104218+00 13 陈珍 2 [{"changed": {"fields": ["Groups"]}}] 4 1
215 2025-12-04 06:17:33.163198+00 14 陈紫莹 2 [{"changed": {"fields": ["Groups"]}}] 4 1
216 2025-12-04 06:17:53.370956+00 15 静云 2 [{"changed": {"fields": ["Groups"]}}] 4 1
217 2025-12-04 06:20:29.465374+00 7 丹红 1 [{"added": {}}] 8 1
218 2025-12-04 06:20:54.860085+00 8 丽容 1 [{"added": {}}] 8 1
219 2025-12-04 06:21:06.867101+00 8 下单员 1 [{"added": {}}] 36 1
220 2025-12-04 06:22:16.679552+00 8 丽容 2 [{"changed": {"fields": ["\\u804c\\u4f4d"]}}] 8 1
221 2025-12-04 06:22:59.122471+00 9 文华 1 [{"added": {}}] 8 1
222 2025-12-04 06:23:18.893544+00 10 春香 1 [{"added": {}}] 8 1
223 2025-12-04 06:27:04.006256+00 11 杨淑滢 1 [{"added": {}}] 8 1
224 2025-12-04 06:27:36.45504+00 12 翟中灿 1 [{"added": {}}] 8 1
225 2025-12-04 06:28:11.770886+00 13 蕙婷 1 [{"added": {}}] 8 1
226 2025-12-04 06:28:36.096217+00 14 赖晖怡 1 [{"added": {}}] 8 1
227 2025-12-04 06:28:57.226881+00 15 陈珍 1 [{"added": {}}] 8 1
228 2025-12-04 06:29:22.663647+00 16 陈紫莹 1 [{"added": {}}] 8 1
229 2025-12-04 06:29:45.849846+00 17 静云 1 [{"added": {}}] 8 1
230 2025-12-04 06:54:45.095545+00 7 画图完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u72b6\\u6001\\u63cf\\u8ff0"]}}] 29 1
231 2025-12-04 06:55:42.049402+00 15 画图中 1 [{"added": {}}] 29 1
232 2025-12-04 06:55:54.341624+00 7 画图完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
233 2025-12-04 06:56:14.655015+00 8 调色完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
234 2025-12-04 06:56:50.978761+00 16 调色中 1 [{"added": {}}] 29 1
235 2025-12-04 06:57:31.013443+00 2 开版() 2 [{"changed": {"fields": ["\\u6d41\\u7a0b\\u540d\\u79f0"]}}, {"changed": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248() -> \\u753b\\u56fe\\u4e2d (1)", "fields": ["\\u8282\\u70b9"]}}, {"changed": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248() -> \\u753b\\u56fe\\u5b8c\\u6210 (2)", "fields": ["\\u8282\\u70b9"]}}, {"changed": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248() -> \\u8c03\\u8272\\u4e2d (3)", "fields": ["\\u8282\\u70b9"]}}, {"changed": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248() -> \\u8c03\\u8272\\u5b8c\\u6210 (4)", "fields": ["\\u8282\\u70b9"]}}] 30 1
236 2025-12-04 06:57:43.402147+00 2 开版(画图调色) 2 [{"changed": {"fields": ["\\u6d41\\u7a0b\\u540d\\u79f0"]}}] 30 1
237 2025-12-04 07:02:16.913261+00 9 套样完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u72b6\\u6001\\u63cf\\u8ff0", "\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
238 2025-12-04 07:02:44.451281+00 17 套样中 1 [{"added": {}}] 29 1
239 2025-12-04 07:03:57.280047+00 3 开版(画图调色套样) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u753b\\u56fe\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u753b\\u56fe\\u5b8c\\u6210 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u8c03\\u8272\\u4e2d (3)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u8c03\\u8272\\u5b8c\\u6210 (4)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u5957\\u6837\\u4e2d (5)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u5957\\u6837\\u5b8c\\u6210 (6)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u4efb\\u52a1\\u5b8c\\u6210 (7)"}}] 30 1
240 2025-12-04 07:04:19.375715+00 2 开版(画图调色) 2 [{"changed": {"fields": ["\\u6d41\\u7a0b\\u63cf\\u8ff0"]}}] 30 1
241 2025-12-04 07:06:31.844288+00 4 套大货 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5957\\u5927\\u8d27 -> \\u5957\\u6837\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5957\\u5927\\u8d27 -> \\u5957\\u6837\\u5b8c\\u6210 (2)"}}] 30 1
242 2025-12-04 07:06:50.509983+00 4 开版(套大货) 2 [{"changed": {"fields": ["\\u6d41\\u7a0b\\u540d\\u79f0"]}}] 30 1
243 2025-12-04 07:07:54.028581+00 12 配色完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
244 2025-12-04 07:08:06.629038+00 18 配色中 1 [{"added": {}}] 29 1
245 2025-12-04 07:08:56.169378+00 5 开版(配色) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u914d\\u8272) -> \\u914d\\u8272\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u914d\\u8272) -> \\u914d\\u8272\\u5b8c\\u6210 (2)"}}] 30 1
246 2025-12-04 07:09:50.710113+00 13 找图开发完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0"]}}] 29 1
247 2025-12-04 07:10:17.792083+00 19 找图开发中 1 [{"added": {}}] 29 1
248 2025-12-04 07:10:26.257681+00 13 找图开发完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
249 2025-12-04 07:11:36.335277+00 6 开版(找图开发) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u627e\\u56fe\\u5f00\\u53d1) -> \\u627e\\u56fe\\u5f00\\u53d1\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u627e\\u56fe\\u5f00\\u53d1) -> \\u627e\\u56fe\\u5f00\\u53d1\\u5b8c\\u6210 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u627e\\u56fe\\u5f00\\u53d1) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1
250 2025-12-04 07:12:17.228521+00 11 P图完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
251 2025-12-04 07:12:27.675944+00 20 P图中 1 [{"added": {}}] 29 1
252 2025-12-04 07:12:48.401405+00 7 开版(P图) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(P\\u56fe) -> P\\u56fe\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(P\\u56fe) -> P\\u56fe\\u5b8c\\u6210 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(P\\u56fe) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1
253 2025-12-04 07:13:02.229634+00 5 开版(配色) 2 [{"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u914d\\u8272) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1
254 2025-12-04 07:13:14.232849+00 4 开版(套大货) 2 [{"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u5957\\u5927\\u8d27) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1
255 2025-12-04 07:14:24.47286+00 10 改图完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1
256 2025-12-04 07:14:41.009372+00 21 改图中 1 [{"added": {}}] 29 1
257 2025-12-04 07:14:54.109794+00 7 开版(P图) 2 [] 30 1
258 2025-12-04 07:15:22.636805+00 8 开版(改图) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u6539\\u56fe) -> \\u6539\\u56fe\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u6539\\u56fe) -> \\u6539\\u56fe\\u5b8c\\u6210 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u6539\\u56fe) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1
259 2025-12-04 07:16:27.533182+00 9 开版(套米样) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u5957\\u7c73\\u6837) -> \\u5957\\u6837\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u5957\\u7c73\\u6837) -> \\u5957\\u6837\\u5b8c\\u6210 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u5957\\u7c73\\u6837) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1
260 2025-12-04 07:17:26.866112+00 80022 PlateOrder-80022 3 28 1
261 2025-12-06 06:54:04.877873+00 1 打纸完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u72b6\\u6001\\u63cf\\u8ff0"]}}] 29 1
262 2025-12-06 06:54:12.772317+00 2 滚筒完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0"]}}] 29 1
263 2025-12-06 06:55:31.851207+00 4 (印染厂生产)设备 2 [{"changed": {"fields": ["\\u53c2\\u6570\\u503c"]}}] 31 1
264 2025-12-06 06:55:51.373601+00 11 (印染厂滚筒)设备 2 [{"changed": {"fields": ["\\u53c2\\u6570\\u503c"]}}] 31 1
265 2025-12-08 13:28:06.193584+00 1 product @ 2025-12-08 13:15:03 3 54 1
266 2025-12-08 13:32:25.927941+00 3 product @ 2025-12-08 13:32:03 3 54 1
267 2025-12-08 13:32:25.927977+00 2 product @ 2025-12-08 13:30:03 3 54 1
268 2025-12-08 14:15:42.813801+00 51 customer @ 2025-12-08 14:12:01 3 54 1
269 2025-12-08 14:15:42.813831+00 50 product @ 2025-12-08 14:12:00 3 54 1
270 2025-12-08 14:15:42.813845+00 49 product @ 2025-12-08 14:11:01 3 54 1
271 2025-12-08 14:15:42.813857+00 48 customer @ 2025-12-08 14:11:00 3 54 1
272 2025-12-08 14:15:42.813868+00 47 customer @ 2025-12-08 14:10:01 3 54 1
273 2025-12-08 14:15:42.813878+00 46 product @ 2025-12-08 14:10:00 3 54 1
274 2025-12-08 14:15:42.813888+00 45 product @ 2025-12-08 14:09:01 3 54 1
275 2025-12-08 14:15:42.813897+00 44 customer @ 2025-12-08 14:09:00 3 54 1
276 2025-12-08 14:15:42.813906+00 43 customer @ 2025-12-08 14:08:01 3 54 1
277 2025-12-08 14:15:42.813915+00 42 product @ 2025-12-08 14:08:00 3 54 1
278 2025-12-08 14:15:42.813924+00 41 product @ 2025-12-08 14:07:01 3 54 1
279 2025-12-08 14:15:42.813933+00 40 customer @ 2025-12-08 14:07:00 3 54 1
280 2025-12-08 14:15:42.813942+00 39 customer @ 2025-12-08 14:06:01 3 54 1
281 2025-12-08 14:15:42.81395+00 38 product @ 2025-12-08 14:06:00 3 54 1
282 2025-12-08 14:15:42.81396+00 37 product @ 2025-12-08 14:05:01 3 54 1
283 2025-12-08 14:15:42.813973+00 36 customer @ 2025-12-08 14:05:01 3 54 1
284 2025-12-08 14:15:42.813981+00 35 product @ 2025-12-08 14:04:01 3 54 1
285 2025-12-08 14:15:42.81399+00 34 product @ 2025-12-08 14:03:00 3 54 1
286 2025-12-08 14:15:42.813999+00 33 product @ 2025-12-08 14:02:00 3 54 1
287 2025-12-08 14:15:42.814008+00 32 product @ 2025-12-08 14:01:00 3 54 1
288 2025-12-08 14:15:42.81402+00 31 product @ 2025-12-08 14:00:00 3 54 1
289 2025-12-08 14:15:42.814028+00 30 product @ 2025-12-08 13:59:00 3 54 1
290 2025-12-08 14:15:42.814037+00 29 product @ 2025-12-08 13:58:00 3 54 1
291 2025-12-08 14:15:42.814045+00 28 product @ 2025-12-08 13:57:00 3 54 1
292 2025-12-08 14:15:42.814054+00 27 product @ 2025-12-08 13:56:00 3 54 1
293 2025-12-08 14:15:42.814062+00 26 product @ 2025-12-08 13:55:00 3 54 1
294 2025-12-08 14:15:42.814073+00 25 product @ 2025-12-08 13:54:00 3 54 1
295 2025-12-08 14:15:42.814082+00 24 product @ 2025-12-08 13:53:00 3 54 1
296 2025-12-08 14:15:42.814091+00 23 product @ 2025-12-08 13:52:00 3 54 1
297 2025-12-08 14:15:42.8141+00 22 product @ 2025-12-08 13:51:00 3 54 1
298 2025-12-08 14:15:42.814108+00 21 product @ 2025-12-08 13:50:00 3 54 1
299 2025-12-08 14:15:42.814117+00 20 product @ 2025-12-08 13:49:00 3 54 1
300 2025-12-08 14:15:42.814126+00 19 product @ 2025-12-08 13:48:00 3 54 1
301 2025-12-08 14:15:42.814134+00 18 product @ 2025-12-08 13:47:00 3 54 1
302 2025-12-08 14:15:42.814143+00 17 product @ 2025-12-08 13:46:00 3 54 1
303 2025-12-08 14:15:42.814152+00 16 product @ 2025-12-08 13:45:00 3 54 1
304 2025-12-08 14:15:42.814162+00 15 product @ 2025-12-08 13:44:00 3 54 1
305 2025-12-08 14:15:42.814171+00 14 product @ 2025-12-08 13:43:00 3 54 1
306 2025-12-08 14:15:42.814179+00 13 product @ 2025-12-08 13:42:00 3 54 1
307 2025-12-08 14:15:42.814188+00 12 product @ 2025-12-08 13:41:00 3 54 1
308 2025-12-08 14:15:42.814197+00 11 product @ 2025-12-08 13:40:00 3 54 1
309 2025-12-08 14:15:42.814205+00 10 product @ 2025-12-08 13:39:00 3 54 1
310 2025-12-08 14:15:42.814214+00 9 product @ 2025-12-08 13:38:00 3 54 1
311 2025-12-08 14:15:42.814223+00 8 product @ 2025-12-08 13:37:00 3 54 1
312 2025-12-08 14:15:42.814231+00 7 product @ 2025-12-08 13:36:00 3 54 1
313 2025-12-08 14:15:42.81424+00 6 product @ 2025-12-08 13:35:00 3 54 1
314 2025-12-08 14:15:42.814248+00 5 product @ 2025-12-08 13:34:00 3 54 1
315 2025-12-08 14:15:42.814257+00 4 product @ 2025-12-08 13:33:01 3 54 1
316 2025-12-08 14:20:31.584043+00 67 product @ 2025-12-08 14:20:01 3 54 1
317 2025-12-08 14:20:31.584072+00 66 customer @ 2025-12-08 14:20:00 3 54 1
318 2025-12-08 14:20:31.584086+00 65 customer @ 2025-12-08 14:19:01 3 54 1
319 2025-12-08 14:20:31.584097+00 64 product @ 2025-12-08 14:19:00 3 54 1
320 2025-12-08 14:20:31.584109+00 63 product @ 2025-12-08 14:18:02 3 54 1
321 2025-12-08 14:20:31.584119+00 62 customer @ 2025-12-08 14:18:01 3 54 1
322 2025-12-08 14:20:31.584129+00 61 product @ 2025-12-08 14:17:00 3 54 1
323 2025-12-08 14:20:31.584139+00 60 customer @ 2025-12-08 14:17:00 3 54 1
324 2025-12-08 14:20:31.584148+00 59 customer @ 2025-12-08 14:16:00 3 54 1
325 2025-12-08 14:20:31.584158+00 58 product @ 2025-12-08 14:16:00 3 54 1
326 2025-12-08 14:20:31.584167+00 57 product @ 2025-12-08 14:15:01 3 54 1
327 2025-12-08 14:20:31.584177+00 56 customer @ 2025-12-08 14:15:01 3 54 1
328 2025-12-08 14:20:31.584186+00 55 customer @ 2025-12-08 14:14:01 3 54 1
329 2025-12-08 14:20:31.584195+00 54 product @ 2025-12-08 14:14:00 3 54 1
330 2025-12-08 14:20:31.584204+00 53 product @ 2025-12-08 14:13:01 3 54 1
331 2025-12-08 14:20:31.584214+00 52 customer @ 2025-12-08 14:13:00 3 54 1
332 2025-12-09 02:28:21.654948+00 1 布料-四面弹 3 18 1
333 2025-12-09 02:28:38.728497+00 3 布料-牛奶丝 3 18 1
334 2025-12-09 02:28:58.28926+00 9 布料-测试 3 18 1
335 2025-12-09 06:09:36.885337+00 99 customer @ 2025-12-09 06:00:01 3 54 1
336 2025-12-09 06:09:36.885367+00 98 product @ 2025-12-09 06:00:00 3 54 1
337 2025-12-09 06:09:36.885381+00 97 product @ 2025-12-09 05:00:01 3 54 1
338 2025-12-09 06:09:36.885392+00 96 customer @ 2025-12-09 05:00:00 3 54 1
339 2025-12-09 06:09:36.885404+00 95 customer @ 2025-12-09 04:00:01 3 54 1
340 2025-12-09 06:09:36.885415+00 94 product @ 2025-12-09 04:00:01 3 54 1
341 2025-12-09 06:09:36.885424+00 93 product @ 2025-12-09 03:00:01 3 54 1
342 2025-12-09 06:09:36.885434+00 92 customer @ 2025-12-09 03:00:00 3 54 1
343 2025-12-09 06:09:36.885444+00 91 customer @ 2025-12-09 02:00:01 3 54 1
344 2025-12-09 06:09:36.885454+00 90 product @ 2025-12-09 02:00:00 3 54 1
345 2025-12-09 06:09:36.885464+00 89 product @ 2025-12-09 01:00:01 3 54 1
346 2025-12-09 06:09:36.885474+00 88 customer @ 2025-12-09 01:00:00 3 54 1
347 2025-12-09 06:09:36.885483+00 87 customer @ 2025-12-09 00:00:01 3 54 1
348 2025-12-09 06:09:36.885493+00 86 product @ 2025-12-09 00:00:00 3 54 1
349 2025-12-09 06:09:36.885502+00 85 product @ 2025-12-08 23:00:01 3 54 1
350 2025-12-09 06:09:36.885511+00 84 customer @ 2025-12-08 23:00:00 3 54 1
351 2025-12-09 06:09:36.88552+00 83 customer @ 2025-12-08 22:00:01 3 54 1
352 2025-12-09 06:09:36.885529+00 82 product @ 2025-12-08 22:00:00 3 54 1
353 2025-12-09 06:09:36.885538+00 81 product @ 2025-12-08 21:00:01 3 54 1
354 2025-12-09 06:09:36.885548+00 80 customer @ 2025-12-08 21:00:00 3 54 1
355 2025-12-09 06:09:36.885557+00 79 customer @ 2025-12-08 20:00:02 3 54 1
356 2025-12-09 06:09:36.885566+00 78 product @ 2025-12-08 20:00:01 3 54 1
357 2025-12-09 06:09:36.885574+00 77 product @ 2025-12-08 19:00:01 3 54 1
358 2025-12-09 06:09:36.885584+00 76 customer @ 2025-12-08 19:00:00 3 54 1
359 2025-12-09 06:09:36.885593+00 75 customer @ 2025-12-08 18:00:01 3 54 1
360 2025-12-09 06:09:36.885602+00 74 product @ 2025-12-08 18:00:00 3 54 1
361 2025-12-09 06:09:36.885611+00 73 product @ 2025-12-08 17:00:01 3 54 1
362 2025-12-09 06:09:36.88562+00 72 customer @ 2025-12-08 17:00:00 3 54 1
363 2025-12-09 06:09:36.885629+00 71 customer @ 2025-12-08 16:00:02 3 54 1
364 2025-12-09 06:09:36.885638+00 70 product @ 2025-12-08 16:00:01 3 54 1
365 2025-12-09 06:09:36.885646+00 69 product @ 2025-12-08 15:00:02 3 54 1
366 2025-12-09 06:09:36.88566+00 68 customer @ 2025-12-08 15:00:01 3 54 1
367 2025-12-09 08:16:09.958074+00 103 customer @ 2025-12-09 08:00:01 3 54 1
368 2025-12-09 08:16:09.958107+00 102 product @ 2025-12-09 08:00:00 3 54 1
369 2025-12-09 08:16:09.95812+00 101 product @ 2025-12-09 07:00:02 3 54 1
370 2025-12-09 08:16:09.958131+00 100 customer @ 2025-12-09 07:00:00 3 54 1
371 2025-12-09 08:23:16.419138+00 1 StateFlowRecord object (21) - 6 个参数 (2025-11-18 10:14:30.398822+00:00) 3 35 1
372 2025-12-09 08:23:16.419162+00 2 StateFlowRecord object (25) - 1 个参数 (2025-11-18 10:24:33.487439+00:00) 3 35 1
373 2025-12-09 08:23:16.419175+00 3 StateFlowRecord object (39) - 6 个参数 (2025-11-18 15:34:46.837366+00:00) 3 35 1
374 2025-12-09 08:23:16.419185+00 4 StateFlowRecord object (40) - 2 个参数 (2025-11-18 15:35:08.178013+00:00) 3 35 1
375 2025-12-09 08:23:16.419195+00 5 StateFlowRecord object (42) - 6 个参数 (2025-11-19 01:43:35.226252+00:00) 3 35 1
376 2025-12-09 08:23:16.419204+00 13 StateFlowRecord object (55) - 2 个参数 (2025-12-05 08:56:58.295611+00:00) 3 35 1
377 2025-12-09 08:23:16.419214+00 14 StateFlowRecord object (56) - 2 个参数 (2025-12-05 08:57:36.374859+00:00) 3 35 1
378 2025-12-09 08:23:16.419223+00 15 StateFlowRecord object (57) - 2 个参数 (2025-12-05 09:03:19.150563+00:00) 3 35 1
379 2025-12-09 08:23:16.419232+00 16 StateFlowRecord object (58) - 2 个参数 (2025-12-05 09:03:35.002555+00:00) 3 35 1
380 2025-12-09 08:23:16.419241+00 17 StateFlowRecord object (59) - 2 个参数 (2025-12-05 09:04:11.512787+00:00) 3 35 1
381 2025-12-09 08:23:16.419251+00 18 StateFlowRecord object (60) - 1 个参数 (2025-12-05 09:04:26.358712+00:00) 3 35 1
382 2025-12-09 08:23:16.41926+00 19 StateFlowRecord object (61) - 2 个参数 (2025-12-05 09:04:40.449255+00:00) 3 35 1
383 2025-12-09 08:23:16.419269+00 20 StateFlowRecord object (62) - 5 个参数 (2025-12-05 09:05:22.256594+00:00) 3 35 1
384 2025-12-09 08:23:16.419278+00 21 StateFlowRecord object (63) - 6 个参数 (2025-12-05 09:31:42.686942+00:00) 3 35 1
385 2025-12-09 08:23:16.419287+00 22 StateFlowRecord object (64) - 1 个参数 (2025-12-05 10:26:54.877702+00:00) 3 35 1
386 2025-12-09 08:23:16.419295+00 23 StateFlowRecord object (67) - 2 个参数 (2025-12-05 10:34:49.203883+00:00) 3 35 1
387 2025-12-09 08:23:16.419304+00 24 StateFlowRecord object (68) - 2 个参数 (2025-12-08 03:51:02.319158+00:00) 3 35 1
388 2025-12-09 08:23:16.419313+00 25 StateFlowRecord object (69) - 2 个参数 (2025-12-08 03:52:08.830258+00:00) 3 35 1
389 2025-12-09 08:23:16.419322+00 26 StateFlowRecord object (70) - 1 个参数 (2025-12-08 03:52:23.456653+00:00) 3 35 1
390 2025-12-09 08:23:16.419331+00 27 StateFlowRecord object (73) - 2 个参数 (2025-12-08 05:26:55.955282+00:00) 3 35 1
391 2025-12-09 08:23:16.41934+00 28 StateFlowRecord object (74) - 1 个参数 (2025-12-08 05:29:38.153245+00:00) 3 35 1
392 2025-12-09 08:23:16.419349+00 29 StateFlowRecord object (75) - 2 个参数 (2025-12-08 06:41:47.910500+00:00) 3 35 1
393 2025-12-09 08:23:16.419359+00 30 StateFlowRecord object (76) - 2 个参数 (2025-12-08 06:43:50.475055+00:00) 3 35 1
394 2025-12-09 08:23:16.419368+00 31 StateFlowRecord object (77) - 3 个参数 (2025-12-08 06:46:51.421915+00:00) 3 35 1
395 2025-12-09 08:23:16.419377+00 32 StateFlowRecord object (78) - 2 个参数 (2025-12-08 06:46:56.534156+00:00) 3 35 1
396 2025-12-09 08:23:16.419386+00 33 StateFlowRecord object (79) - 2 个参数 (2025-12-08 06:51:06.112247+00:00) 3 35 1
397 2025-12-09 08:23:16.419395+00 34 StateFlowRecord object (80) - 2 个参数 (2025-12-08 06:51:39.575310+00:00) 3 35 1
398 2025-12-09 08:23:16.419404+00 35 StateFlowRecord object (81) - 1 个参数 (2025-12-08 06:54:28.918639+00:00) 3 35 1
399 2025-12-09 08:23:16.419412+00 36 StateFlowRecord object (82) - 2 个参数 (2025-12-08 06:55:02.476710+00:00) 3 35 1
400 2025-12-09 08:23:16.419421+00 37 StateFlowRecord object (83) - 1 个参数 (2025-12-08 06:55:07.370408+00:00) 3 35 1
401 2025-12-09 08:23:16.41943+00 38 StateFlowRecord object (84) - 2 个参数 (2025-12-08 06:55:12.160907+00:00) 3 35 1
402 2025-12-09 08:23:16.419439+00 39 StateFlowRecord object (85) - 1 个参数 (2025-12-08 06:55:15.541374+00:00) 3 35 1
403 2025-12-09 08:23:16.419447+00 40 StateFlowRecord object (87) - 2 个参数 (2025-12-08 09:00:32.460872+00:00) 3 35 1
404 2025-12-09 08:23:16.419456+00 41 StateFlowRecord object (88) - 2 个参数 (2025-12-08 09:31:51.845092+00:00) 3 35 1
405 2025-12-09 08:23:16.419465+00 42 StateFlowRecord object (89) - 1 个参数 (2025-12-08 09:32:10.617212+00:00) 3 35 1
406 2025-12-09 08:23:16.419474+00 43 StateFlowRecord object (90) - 2 个参数 (2025-12-09 06:56:48.322722+00:00) 3 35 1
407 2025-12-09 08:23:16.419483+00 44 StateFlowRecord object (91) - 2 个参数 (2025-12-09 06:56:57.852352+00:00) 3 35 1
408 2025-12-09 08:23:22.920443+00 1 StateFlowRecord object (1) 3 34 1
409 2025-12-09 08:23:22.920463+00 2 StateFlowRecord object (2) 3 34 1
410 2025-12-09 08:23:22.920473+00 3 StateFlowRecord object (3) 3 34 1
411 2025-12-09 08:23:22.920481+00 4 StateFlowRecord object (4) 3 34 1
412 2025-12-09 08:23:22.920489+00 5 StateFlowRecord object (5) 3 34 1
413 2025-12-09 08:23:22.920497+00 6 StateFlowRecord object (6) 3 34 1
414 2025-12-09 08:23:22.920504+00 7 StateFlowRecord object (7) 3 34 1
415 2025-12-09 08:23:22.920512+00 8 StateFlowRecord object (8) 3 34 1
416 2025-12-09 08:23:22.920519+00 9 StateFlowRecord object (9) 3 34 1
417 2025-12-09 08:23:22.920527+00 10 StateFlowRecord object (10) 3 34 1
418 2025-12-09 08:23:22.920534+00 11 StateFlowRecord object (11) 3 34 1
419 2025-12-09 08:23:22.920542+00 12 StateFlowRecord object (12) 3 34 1
420 2025-12-09 08:23:22.92055+00 21 StateFlowRecord object (21) 3 34 1
421 2025-12-09 08:23:22.920557+00 22 StateFlowRecord object (22) 3 34 1
422 2025-12-09 08:23:22.920565+00 23 StateFlowRecord object (23) 3 34 1
423 2025-12-09 08:23:22.920573+00 24 StateFlowRecord object (24) 3 34 1
424 2025-12-09 08:23:22.920581+00 25 StateFlowRecord object (25) 3 34 1
425 2025-12-09 08:23:22.920589+00 26 StateFlowRecord object (26) 3 34 1
426 2025-12-09 08:23:22.920596+00 28 StateFlowRecord object (28) 3 34 1
427 2025-12-09 08:23:22.920604+00 38 StateFlowRecord object (38) 3 34 1
428 2025-12-09 08:23:22.920612+00 39 StateFlowRecord object (39) 3 34 1
429 2025-12-09 08:23:22.92062+00 40 StateFlowRecord object (40) 3 34 1
430 2025-12-09 08:23:22.920627+00 41 StateFlowRecord object (41) 3 34 1
431 2025-12-09 08:23:22.920634+00 42 StateFlowRecord object (42) 3 34 1
432 2025-12-09 08:23:22.920642+00 55 StateFlowRecord object (55) 3 34 1
433 2025-12-09 08:23:22.920649+00 56 StateFlowRecord object (56) 3 34 1
434 2025-12-09 08:23:22.920657+00 57 StateFlowRecord object (57) 3 34 1
435 2025-12-09 08:23:22.920664+00 58 StateFlowRecord object (58) 3 34 1
436 2025-12-09 08:23:22.920671+00 59 StateFlowRecord object (59) 3 34 1
437 2025-12-09 08:23:22.920679+00 60 StateFlowRecord object (60) 3 34 1
438 2025-12-09 08:23:22.920686+00 61 StateFlowRecord object (61) 3 34 1
439 2025-12-09 08:23:22.920693+00 62 StateFlowRecord object (62) 3 34 1
440 2025-12-09 08:23:22.9207+00 63 StateFlowRecord object (63) 3 34 1
441 2025-12-09 08:23:22.92071+00 64 StateFlowRecord object (64) 3 34 1
442 2025-12-09 08:23:22.920718+00 65 StateFlowRecord object (65) 3 34 1
443 2025-12-09 08:23:22.92073+00 66 StateFlowRecord object (66) 3 34 1
444 2025-12-09 08:23:22.920737+00 67 StateFlowRecord object (67) 3 34 1
445 2025-12-09 08:23:22.920745+00 68 StateFlowRecord object (68) 3 34 1
446 2025-12-09 08:23:22.920752+00 69 StateFlowRecord object (69) 3 34 1
447 2025-12-09 08:23:22.92076+00 70 StateFlowRecord object (70) 3 34 1
448 2025-12-09 08:23:22.920767+00 71 StateFlowRecord object (71) 3 34 1
449 2025-12-09 08:23:22.920775+00 72 StateFlowRecord object (72) 3 34 1
450 2025-12-09 08:23:22.920783+00 73 StateFlowRecord object (73) 3 34 1
451 2025-12-09 08:23:22.920791+00 74 StateFlowRecord object (74) 3 34 1
452 2025-12-09 08:23:22.920798+00 75 StateFlowRecord object (75) 3 34 1
453 2025-12-09 08:23:22.920806+00 76 StateFlowRecord object (76) 3 34 1
454 2025-12-09 08:23:22.920814+00 77 StateFlowRecord object (77) 3 34 1
455 2025-12-09 08:23:22.920821+00 78 StateFlowRecord object (78) 3 34 1
456 2025-12-09 08:23:22.920829+00 79 StateFlowRecord object (79) 3 34 1
457 2025-12-09 08:23:22.920836+00 80 StateFlowRecord object (80) 3 34 1
458 2025-12-09 08:23:22.920843+00 81 StateFlowRecord object (81) 3 34 1
459 2025-12-09 08:23:22.920851+00 82 StateFlowRecord object (82) 3 34 1
460 2025-12-09 08:23:22.920858+00 83 StateFlowRecord object (83) 3 34 1
461 2025-12-09 08:23:22.920866+00 84 StateFlowRecord object (84) 3 34 1
462 2025-12-09 08:23:22.920873+00 85 StateFlowRecord object (85) 3 34 1
463 2025-12-09 08:23:22.92088+00 86 StateFlowRecord object (86) 3 34 1
464 2025-12-09 08:23:22.920888+00 87 StateFlowRecord object (87) 3 34 1
465 2025-12-09 08:23:22.920895+00 88 StateFlowRecord object (88) 3 34 1
466 2025-12-09 08:23:22.920902+00 89 StateFlowRecord object (89) 3 34 1
467 2025-12-09 08:23:22.92091+00 90 StateFlowRecord object (90) 3 34 1
468 2025-12-09 08:23:22.920917+00 91 StateFlowRecord object (91) 3 34 1
\.
--
-- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.django_content_type (id, app_label, model) FROM stdin;
1 admin logentry
2 auth permission
3 auth group
4 auth user
5 contenttypes contenttype
6 sessions session
7 basic_info merchant
8 basic_info employee
9 basic_info deviceinfo
10 basic_info customer
11 basic_info bankaccount
12 basic_info productcategory
13 basic_info product
14 basic_info supplier
15 basic_info vehicletype
16 basic_info vehicletransportrecord
17 basic_info warehouse
18 basic_info quickinput
19 stock purchaseorder
20 stock stockchangerecord
21 stock stockchangedetail
22 stock stocksnapshot
23 stock inventory
24 stock stockfreeze
25 api_v1 uploadedfile
26 printing printingorder
27 printing printingjob
28 printing plateorder
29 stateflow state
30 stateflow process
31 stateflow stateparameter
32 stateflow processnode
33 stateflow businessobject
34 stateflow stateflowrecord
35 stateflow statelogparameterrecord
36 basic_info employeetype
37 basic_info userprofile
38 business purchaseorder
39 business purchaseorderitem
40 basic_info merchantsetting
41 business salesorder
42 business supplierbalance
43 business receiptorder
44 business customerbalance
45 business paymentorder
46 business salesorderitem
47 business balancechangerecord
48 business purchasereturnorder
49 business purchasereturnorderitem
50 business salesreturnorder
51 business salesreturnorderitem
52 stock transferorder
53 stock transferorderitem
54 api_v1 datasync
55 printing salesorderprintingjobrelation
56 printing printingjobbatchadvancerecord
\.
--
-- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.django_migrations (id, app, name, applied) FROM stdin;
1 contenttypes 0001_initial 2025-11-18 05:57:57.606096+00
2 auth 0001_initial 2025-11-18 05:57:57.649887+00
3 admin 0001_initial 2025-11-18 05:57:57.661912+00
4 admin 0002_logentry_remove_auto_add 2025-11-18 05:57:57.665247+00
5 admin 0003_logentry_add_action_flag_choices 2025-11-18 05:57:57.668422+00
6 api_v1 0001_initial 2025-11-18 05:57:57.678425+00
7 contenttypes 0002_remove_content_type_name 2025-11-18 05:57:57.685116+00
8 auth 0002_alter_permission_name_max_length 2025-11-18 05:57:57.688996+00
9 auth 0003_alter_user_email_max_length 2025-11-18 05:57:57.692915+00
10 auth 0004_alter_user_username_opts 2025-11-18 05:57:57.696222+00
11 auth 0005_alter_user_last_login_null 2025-11-18 05:57:57.700191+00
12 auth 0006_require_contenttypes_0002 2025-11-18 05:57:57.701563+00
13 auth 0007_alter_validators_add_error_messages 2025-11-18 05:57:57.705386+00
14 auth 0008_alter_user_username_max_length 2025-11-18 05:57:57.713231+00
15 auth 0009_alter_user_last_name_max_length 2025-11-18 05:57:57.718913+00
16 auth 0010_alter_group_name_max_length 2025-11-18 05:57:57.724371+00
17 auth 0011_update_proxy_permissions 2025-11-18 05:57:57.728075+00
18 auth 0012_alter_user_first_name_max_length 2025-11-18 05:57:57.731791+00
19 basic_info 0001_initial 2025-11-18 05:57:57.853129+00
20 basic_info 0002_quickinput 2025-11-18 05:57:57.858206+00
21 basic_info 0003_alter_quickinput_unique_together 2025-11-18 05:57:57.861506+00
22 basic_info 0004_customer_visible_employees 2025-11-18 05:57:57.878024+00
23 basic_info 0005_customer_created_by 2025-11-18 05:57:57.887911+00
24 basic_info 0006_alter_product_merchant 2025-11-18 05:57:57.895034+00
25 basic_info 0007_warehouse_mode 2025-11-18 05:57:57.901277+00
26 basic_info 0008_merchant_auto_complete_stock_change 2025-11-18 05:57:57.90704+00
27 basic_info 0009_product_minimum_quantity 2025-11-18 05:57:57.912464+00
28 stateflow 0001_initial 2025-11-18 05:57:57.926089+00
29 stateflow 0002_remove_state_data_stateparameter 2025-11-18 05:57:57.9356+00
30 stateflow 0003_alter_process_options_alter_state_options_and_more 2025-11-18 05:57:57.951752+00
31 stateflow 0004_remove_state_previous 2025-11-18 05:57:57.9565+00
32 stateflow 0005_alter_state_description_and_more 2025-11-18 05:57:57.967543+00
33 stateflow 0006_remove_process_state_nodes_processnode_and_more 2025-11-18 05:57:57.983497+00
34 stateflow 0007_alter_process_current_state 2025-11-18 05:57:57.989058+00
35 stateflow 0008_remove_process_current_state_order 2025-11-18 05:57:58.005641+00
36 stateflow 0009_remove_order_current_state_orderstatelog 2025-11-18 05:57:58.032921+00
37 stateflow 0010_remove_orderstatelog_notes_and_more 2025-11-18 05:57:58.069827+00
38 stateflow 0011_rename_order_to_business_object 2025-11-18 05:57:58.150215+00
39 stateflow 0012_alter_businessobject_content_type_and_more 2025-11-18 05:57:58.17801+00
40 stateflow 0013_alter_stateflowrecord_unique_together 2025-11-18 05:57:58.187343+00
41 stateflow 0014_alter_process_options 2025-11-18 05:57:58.190803+00
42 stateflow 0015_stateparameter_attachment 2025-11-18 05:57:58.193874+00
43 printing 0001_initial 2025-11-18 05:57:58.231485+00
44 printing 0002_alter_printingorder_craft_and_more 2025-11-18 05:57:58.237799+00
45 printing 0003_remove_printingjob_status 2025-11-18 05:57:58.248458+00
46 printing 0004_printingorder_is_invalid 2025-11-18 05:57:58.252566+00
47 printing 0005_alter_printingorder_options 2025-11-18 05:57:58.256683+00
48 printing 0006_printingjob_business_object_printingorder_process 2025-11-18 05:57:58.282396+00
49 printing 0007_alter_printingjob_description_and_more 2025-11-18 05:57:58.295621+00
50 printing 0008_plateorder 2025-11-18 05:57:58.324365+00
51 printing 0009_remove_plateorder_development_status 2025-11-18 05:57:58.331238+00
52 printing 0010_remove_plateorder_plate_code 2025-11-18 05:57:58.338116+00
53 printing 0011_alter_plateorder_options_plateorder_is_invalid 2025-11-18 05:57:58.350452+00
54 printing 0012_plateorder_process 2025-11-18 05:57:58.357239+00
55 sessions 0001_initial 2025-11-18 05:57:58.365556+00
56 stateflow 0016_alter_stateparameter_key_alter_stateparameter_value 2025-11-18 05:57:58.370806+00
57 stateflow 0017_state_parameter_many_to_many 2025-11-18 05:57:58.427689+00
58 stateflow 0018_remove_stateparameter_name 2025-11-18 05:57:58.430207+00
59 stateflow 0019_stateparameter_is_required 2025-11-18 05:57:58.433063+00
60 stateflow 0020_stateparameter_is_image_path 2025-11-18 05:57:58.435565+00
61 stateflow 0021_statelogparameterrecord 2025-11-18 05:57:58.454384+00
62 stock 0001_initial 2025-11-18 05:57:58.565539+00
63 stock 0002_stockfreeze 2025-11-18 05:57:58.605245+00
64 stock 0003_remove_inventory_minimum_quantity 2025-11-18 05:57:58.614748+00
65 printing 0013_plateorder_fabric_source_alter_plateorder_process 2025-11-20 03:24:40.935777+00
66 printing 0014_auto_20251120_1144 2025-11-20 03:47:32.344205+00
67 basic_info 0010_warehouse_type 2025-11-20 05:11:33.321558+00
68 basic_info 0011_remove_employee_job_type_employeetype_and_more 2025-11-20 05:56:35.088569+00
69 printing 0015_plateorder_designer 2025-11-20 06:48:57.234756+00
70 api_v1 0002_alter_uploadedfile_path 2025-11-24 03:07:15.613802+00
71 basic_info 0012_userprofile 2025-11-24 03:07:15.640816+00
72 stock 0004_alter_stockchangerecord_source_type 2025-11-24 03:07:15.658993+00
73 basic_info 0013_alter_customer_options 2025-11-24 09:06:44.27194+00
74 stock 0005_stockchangedetail_consume_fields 2025-11-24 09:06:44.307805+00
75 business 0001_initial 2025-11-25 06:08:12.742536+00
76 stock 0006_remove_purchaseorder 2025-11-25 06:08:12.745336+00
77 printing 0016_plateorder_image_name 2025-11-27 06:53:13.195655+00
78 business 0002_remove_purchaseorder_order_date_purchaseorder_kind_and_more 2025-11-27 07:29:19.575686+00
79 printing 0017_alter_plateorder_image_name 2025-11-27 07:29:19.582348+00
80 business 0003_purchaseorder_status 2025-11-27 07:34:05.728213+00
81 business 0004_remove_purchaseorder_total_amount_and_more 2025-11-27 08:08:14.545561+00
82 business 0005_alter_purchaseorder_operator_and_more 2025-11-27 08:10:45.002847+00
83 business 0006_remove_purchaseorderitem_total_amount 2025-11-27 08:18:28.948263+00
84 business 0007_alter_purchaseorderitem_batch_number 2025-11-27 08:45:44.548428+00
85 printing 0018_plateorder_plate_image_to_jsonfield 2025-11-28 01:31:22.225727+00
86 printing 0019_alter_plateorder_plate_image 2025-11-28 01:31:22.259774+00
87 printing 0020_alter_plateorder_required_completion_date 2025-11-28 02:57:43.677396+00
88 printing 0021_plateorder_print_count_printingorder_print_count 2025-11-28 03:29:26.824386+00
89 basic_info 0014_merchantsetting 2025-11-28 06:00:48.6332+00
90 basic_info 0015_remove_merchantsetting_val_merchantsetting_val_bool_and_more 2025-11-28 06:04:30.020931+00
91 basic_info 0016_merchantsetting_type 2025-11-28 06:06:20.05325+00
92 business 0008_alter_purchaseorderitem_quantity 2025-11-28 09:27:18.505876+00
93 business 0009_purchaseorderitem_spec 2025-11-28 09:32:22.794473+00
94 business 0010_salesorder_salesorderitem 2025-11-30 14:17:50.013527+00
95 business 0011_paymentorder_receiptorder 2025-11-30 14:17:50.058623+00
96 business 0012_customerbalance_supplierbalance 2025-11-30 14:17:50.100554+00
97 business 0013_balancechangerecord 2025-12-01 06:49:56.024129+00
98 business 0014_alter_balancechangerecord_source_type_and_more 2025-12-01 09:15:19.861344+00
99 business 0015_payment_receipt_bank_and_markup 2025-12-03 06:43:26.49912+00
100 stock 0007_transferorder 2025-12-03 06:43:26.593432+00
101 business 0016_payment_receipt_discount 2025-12-03 08:05:46.351422+00
102 basic_info 0017_alter_customer_mobile 2025-12-08 10:35:53.761423+00
103 stock 0008_alter_stockchangerecord_source_type 2025-12-08 10:35:53.776033+00
104 api_v1 0003_datasync 2025-12-08 13:01:15.59395+00
105 basic_info 0018_product_from_mdy 2025-12-08 13:01:15.609827+00
106 basic_info 0019_customer_mdy_fields 2025-12-08 14:04:35.885183+00
107 basic_info 0020_product_mdy_image_url 2025-12-09 06:34:08.937873+00
108 basic_info 0021_alter_product_unit 2025-12-09 07:51:47.175277+00
109 stock 0009_alter_stockchangedetail_unit_alter_stockfreeze_unit_and_more 2025-12-09 07:51:47.238667+00
110 basic_info 0022_product_pieces_product_segment_size 2025-12-09 07:56:00.952585+00
112 business 0017_salesorderitem_printing_job 2025-12-11 04:49:33.669602+00
113 printing 0022_printingjob_work_state 2025-12-11 04:49:33.679727+00
114 business 0018_alter_salesorderitem_printing_job 2025-12-11 04:51:19.507695+00
115 printing 0023_alter_printingjob_work_state 2025-12-11 05:17:08.055078+00
116 business 0019_alter_salesorderitem_quantity_of_rolls 2025-12-11 09:13:45.119221+00
117 printing 0024_printingjobbatchadvancerecord 2025-12-12 10:04:20.098548+00
\.
--
-- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.django_session (session_key, session_data, expire_date) FROM stdin;
pbsoimfkt3qhp2caalbpzzfmnoia4ary .eJzNmktz4ygQgP9Kyuck1guB5rj3Pe5pPZXiaSuRJa0emcpO5b8vIMeRCbER8pZ8CQ40DXzNoxv0e_WE-2731Le8ecrZ6scqXN2P8wimL7xUBewZl9vqkVZl1-TkUYk8Hkrbxz8rxos_DrInCna43cnaHKU0RSlJeUqzFDJEMIwTIHic0jATUZwBGCNA05hEGZQp53EcZDhFAWdhBJTSPS_7Vur6-_dmVeI936x-3G1Wm02fcEFkAiIcyiRliUogDshmdS8lctnnQVbg5k7gB5o3tOBD4V71vFXFFrUh_lQLiMhkgmgaOqjtm2IoW2O2z8t12-GOi6L6tSZ9m5e8bSvyzGm3HsQxY3-51pCyh1qk4ZjRpt-T7wbgx-X9_u5aLN5_qmKeM1UaBkFk0Q0YB0pbBHUTMY1UbwEMZnHWv2rcyJY63rhwNmoswtmXhck5tuged0wmIkxVZpxFszjXTUXl5HQB_CG6CFnf0Ztkk4u6UYSU1WBAsvkz2Hni3gJV95GbVMEk3bLvIYxVZgCSa8zeUp4CE2awFr8x3lOYmPRTS0swInqFBMGo00ik1NiXZCYhKgECgPnzvai2xy244bRqmPMKsFRdxEb_BznTYnBiu1e1kfo10TajKjdnE38rIDMjtB3psba1dHrV6oREDwYmQTrPOz1Vm5KY6zEEQv2XBuo_yKlLI6a16yYvu7zcHn88V-R7Q1ul3W3sS-ciaF8ihknD4GJLMpaJdKbX2vrCT66Rc_7qN_I3QNydg8nYumxEEOiFm6ArMi7kXuQM-FN4GbqeBEy6kblLZbbGoFARB0SJPphYkuhjKnNxYc_G0Bgq7QnVHCgcNvTIJTQ3rUhwm9OnvBSV8sNYTzsqDSTn_9v3xjxTZ4JNPdlY42g_HqZNbVHIqe5pJrzMegrjW2A7QZXB1haLJFyvZ8Cz-Jpsf-GG76q-PRN8WKUX4uvHwORrizYSkZFBt1IKQOLjuIxQtX1dF_m5bd4mvAzWqUM3edpiARALpI-hGA-OrvZ-SeRzdzki9cp3uZTrGly2ddV0l6KAy1UXQe5LxySPbLoToHR_XORda6fg-7qo3rjbRnEUXoauJwGTrtVNUctDaotieE26e97QHS7dDrmj8DJ0PQkYdCNrXDP4mNemS_u2q_aOm_FReBm6ngRMuvaIhquNPo2h1i30MQrC1CeiGQH7p8_pS17WvdvsHYkvQ9iTgknY9pKECNExfxZcdf4y_ppTrn-6EB6JL0LYl4JJ2PaGdDgrkUDpKH6BaGY89-EcvNVuB9xYfhnGnhxMxrY4LkuE1o0SfTvJouN-P4sxweULprTqHY-5sfwijH05mIyB6VjYJvYhqgFE-y4w1Q6iflGZd0sbahx6f_sMnWZexlf0Zfir3JAtv3wVb68wwaiecGyc5wExbWuNfUa99cWbl6-87M5eLZmCy-B0HqtJzhq7nHQMhEQ_lauwf9Y0FQ3n_559XzVFF2c5ZfQmWWvccqo7ZjqJsA5DZ73WfFndjHc4LyZsB4cKt8Dck4thgdga25y2NHihMEx9TtURwrbEdburvh6pZV8Uy8J0HqKJzxa8ZCEdvMmIbbzfYQZuda_i5_bSO4xNeJE5OnnoJk_zASay3YAighOd6NtrkCCqoyQ0XFQlln63qs12l_OCPeCiu-iLQBCh8x6U-mLTbjn1QedaFX9vr08RdytdYdC2x37HgZp2sjnjcvexfE3TfihpH2i1PYNs21R9fYHZILM4NKeBmshM3zq2B40IDNu6_kwpytSLPAoEm_u2GChXMhGRfnEFCOpM4XOK4jp_eg3XfV1UmHEm8uKMv2ITnmA-TxrWFxk_AqbRoJmRvv9cvf8He7uCiw:1vLuTn:9mpos00LpzQqh1_HZUVfRUBLxHwEHsQ2fAFkpQ7KweM 2025-12-04 02:33:03.066594+00
8gc0uchw3x0wjvymx47gub7tzic41m65 .eJzNnEtzozgQx7_KlM8zCS89mOPe97inzVZKCClmgoHlkans1nz3RcJ2QGnbQrCFL4Njt1ro16KlvyTm390z69r9c9eI-jlLd993_u7r-LuE8VdRqB_SH6x4KR94WbR1ljwok4fjr83D72Uq8t-OthMHe9bs-9KCYo4pTrDAPMYkpQkjYYSkCDH3YxmEMSIhRRyHSRCT_ipEGHoxw9QTqR8g5fQgiq7pff3579OuYAfxtPv-5Wn39NRFwmf9BQXM7y-YBeqCCCJPu6-9Rdbf82ArWf1Fsm88q3kuhh8P6s4b9TPgNqXKXxIK5S9EyMJfV-fDb48sPWTFY9I1WSGa5rFi730D2rJORf042LI0_cPKvDc8FklqwVJed4fk0j27ofj19cvi5v_6S_0sslT96nteADmVKO4vMY1T7VRX0d-tutAk8dRfchnohOWs4ILv-_4qasF7hBa8oVLbYF-FkBmLEKwpTpQ3EUfqgiJsVL8gCE1XVXkm6iNWiwCYJTaCvwiJST0CqkAJC9RtBiFZDzfvmrY8zMFtltgEtysLkzMCfGMU4vWyd58RRFZZZ--J-SZoZzffZIoBp7HPVaBoGqRrjIhd3afbRlgPiRP7TajOBmBSJXZO-9vEngocERyvxjhrxWEuZ13mXljPwWKSpzeriD3PG_4iK_buWrRdXczt4-NSd0B_NhqTfjyzipW7_wjnzIfALHl3wXB-InwPqglp3wgFa4yaDctFY9v1R8bbQJ7bdJOnb-d0tc79AcyyTxsF7oXykj4MacxpFetmdY1wXkr_VOQOuC_N5z6kJ69VsWaXn5_MwWJ3Fwb3pyAyh1soFUVCJqNWpJG6EOYlS1fJxnBQIpWGoxz7DnFuWtYKmZc_z6Erkx-Ct5dDfLHEnOi6cQERu7Ew4wlpL5QKlSppQHQVIdfKGRFvEWf9qWJ1X1N7LZtdLLEJZ1cWJmdIjY1vrL9IX8voMA4Wca7qkqtMZAH4ZLoJWdfWm2QhtTX1TQOqoka8JF7eg6077j1QtW-5SRVSUZd99_fuk1B96aFojd5b9KPAjB6sze-M9xwmBv0A0kskSPQT0g-5H_VSibmRl5bubhjdOC9fzin41hbH7aKbxOj_IGdGDJoGXat31RipTzNjMypydzFxj0JgpjFouR6FOtaYpOrpJIluDIk8G7lwZXY6dXtaDZeeXKxJqjor2qx4OX_4USaXAw1a28fYlc5N0K5EzBiDO12Tmuiw1-MowD_xu6G-L9jfAXF7DiZj8LGRWkGSIKIrMs77XGQN-MN4G7qOBEy62PwCWuJARCrFQWg06PYo0sNUbDOFvaqhmV6HibjmwMmQ0AMbaf5prYQ1GX_OClmqeVja8Zb3Aer7__uVhZLLZWbE1JENqKPdeJghhFTI1Pe8EN5mPYfxPbCd4cpgC2mRSOjnGYk4XJPtT1aLfdk11841QNYb8XVjYPANIbUBHE9ZBPZ05saK69l4G6xzm27yhLQACqU-4kZCNkx0hyMTgcva5YjUm9hnvV1bs6Kpyrq9eQjtZtFNkLvSMclDezQoQvpc23Ehz4u4jnGUjvI9oQvHP3Go8vJdiPa9sksdkwLbMF-FixkBcCozrWmtXH1COIv3XbB2ztSg9hmODh5PtvXaWesqicUyugehTiUUbSNaPfm2gWyW2Ya1Iw-TNaiBpr7X6sknbrMg3wVd554M7jtNzmiuRvd0_tSK7tl4G7qOBEy60G4TkkLldBwS7VvqSSPysdMhhQ9gf3cZf82KqrPrvSPzbQg7UjAJQ3qPoIDC0VNfYr0lwN0OhXwAVK-69KpOZrndwDe234T4OlRM_pAmPOZ6FHur5o9UvGVc6I82wEfmm_B2pWAQjiBVeJyZU0nxmrPnkxSxnTyP7bdh7MjBZAye44uk9k31hJymwXm8XcQ4YcUr47zsLKcZY_tNGLtyMBmbe0IBODgOaygo0fN0grUc1fu3y_aEfI1Djy8fCzULt_5K_jr8a_fe2aUCM4LqCAfivAyIGVtQD43u1hVvVrzpNyKvLGSbhtvgtG6rSQ5UN5MbQ36iD-aoRcZF3VTWQvxz9TSHabo5yzmtN8mCymbqe_Km5bK94U9PdypaluUz0sGxwD0wd-RiRuB2gj-qAOJjl1F1hLApWNXsy89DatHl-bYwrZto4qPmF9CaHk1YpC96bwdFlGtVRYdl3Ai4_UbV2ewzkaffWN7eHDvHugFugJI2cITUfwqglc_l5-DDxL7nr9DoGwLpWkONsCDwkJjgwFmz5uSk-cbLlyvIXuqyq24wG2w2h2bVUBOZb3ZtUEZKioY0pLVpEKvzKtSTNq9NX91599TUJ5KBPo-AqH4RWUiXrM-q7PnNf-yqvGSpSK8vBkDGM8LnSAPcr3QjYEYRykfHA3w4xFr8Rp7uZYmeZi6bcB_xpaxlzXvBb3I-G27CeB0OJnHzrQ_Ui6rdr_8AMtsFIg:1vTDE6:bCqF6RnjPsWjrCJt6HMOTLVa7J4KKyQxD9Zs1Ku6NyY 2025-12-24 05:59:02.587491+00
7yutj5xzsu9xicbn3bi2ziy5zzoamenm .eJzNnE1zozgQhv_KlM8zCV9CYo573-OeNlspIaSYCQaWj0xlt-a_ryTsGJS2LQRb-DI4ptVCT4uWXkmef3fPtO_2z33Lm-c8233f-buv4-9Syl55qW5kP2j5Uj2wquyaPH1QJg_Hu-3D71XGi9-OthMHe9ruZWlOYhaTOI15zJIYZySlOIyQ4GHM_EQEYYJwSBCLwzRIsLxyHoZeQmPi8cwPkHJ64GXfSl9__vu0K-mBP-2-f3naPT31EfepvKCA-vIS00BdEEb4afdVWuTymQdbQZsvgn5jecMKPtw8qCdv1W3AbUaUvzTkyl-IkIW_vimGe480O-TlY9q3ecnb9rGm77IBXdVkvHkcbGmW_WFlLg2PRdKG04w1_SG99MxuKH59_bK4-b_-Urd5nqm7vucFkFOBEnlJSJJpp7oK-bTqQtLUU3-JZaBTWtCScbaX_ZU3nEmEFryhUttgX4WQGYsQrClJlTeeROqCotiofkEQ2r6ui5w3R6wWATBLbAR_ERKTegRUgVIaqMcMQrwebta3XXWYg9sssQluVxYmZwT4jlEYr5e9ZUbgeW2dvSfmm6Cd3XyTaQw4TXymAkWyIFtjROwbmW5bbj0kTuw3oTobgEkV2zmVjxl7KnCYs3g1xnnHD3M56zL3wnoOFpM8uVlF4nne8BdesXc3vOubcm4fH5e6A_qz0Zj0k5lVrNz9RzhnvgRmybsLhvMb4XtQTUj7RihYY9RsacFb264_Mt4G8tymmzx9O6erde4zMMs-bRS4F8pL-jCkMadVrJvVNcJ5Kf1TkTvgvjSf-5CevFbFml1-fjIHi91dGNzfgsgcbqFUFHGRjlqRReqCqZcuXSUbw0GpUBqOsNh3iHPb0Y6Lovr5Eboq_cFZdznEF0vMia4bFxCxGwsznpD2QhlXqZIEWFcRMq2cEfYWcdafatrImrpr2exiiU04u7IwOUNqbPxg8iJ8LaPDJFjEuW4qpjKRBeCT6SZkXVtvkoXU1tQ3CYiKGvbSZHkPtu6490DVvuUmVUhFXfYtn93HofrSQ9EavbeUo8CMHqzN74z3HCYG_QDSSzhI9Rsih9xzvUTEzMhLS3c3jG5cVC8fKfjWFsftopvE6P8gZ0YMmgZdq3fVGKlPM2MzKnJ3MXGPQmCmMWi5HoU61jHO1NuJU90YHHk2cuHK7HTq9rQaLjyxWJPUTV52efny8eFHlV4ONGhtH2NXOjdBuxIxYwzudE1qIsNej6MA_8Tvhvq-YH8HxO05mIzB10ZoBYmDiKzIuJC5yBrw2Xgbuo4ETLqx-QW0xIGwUIoDk2jQ7VGkh6nEZgp7VUNTvQ4TMc2B4SGhBzbS_NNaCW1z9pyXolLzsKxnHZMBkv3__cpCyeUyM2LqyAbU0W48zBBCKmTqe14Ib7Oew_ge2M5wZbCFtEjE9fuMeBKuyfYnbfi-6ttr5xog6434ujEw-IaQ2gCOpywCezpzY8X1w3gbrHObbvKEtAAKhT7ihkM6THSHIxOBy9rliNQb3-fSrmto2dZV0908hHaz6CbIXemY5KE9GhQhfa7tuJDnRUzHOMpG-R6TheMfP9RF9c55917bpY5JgW2Yr8LFjAA4lZnWtFauPiGcxfsuWDtnalD7DEcHjyfbpHbWukrEfBndA1enEsqu5Z2efNtANstsw9qRh8ka1EBT32v15BO3WZDvgq5zTwb3nSZnNFejezp_akX3w3gbuo4ETLrQbhMSXOX0OMTat9CTRuTHTocUzsD-7nP2mpd1b9d7R-bbEHakYBKG9B5GAYGjp76M9ZYAczsUcgaofuoiVZ3IC7uBb2y_CfF1qJj8IU14zPUo8VbNHxl_yxnXH22Aj8w34e1KwSAcQarwODMngsRrzp5PUsR28jy234axIweTMXiOLxLaN9ETcpIFH-PtIsYpLV8pY1VvOc0Y22_C2JWDydjcEwrAwXFYQ0GpnqfjWMtRvX-7bE_I1zj0-HJeqFm49Vex1-Ffu9-dXSowI6iOcCDOy4CYsQX10OhpXfHm5Zv-ReSVhWzTcBuc1m01yYHqZvJgyE_1wRy1yLiom4qG83-unuYwTTdnOaf1JllQ2Ux9T35puWxv-NPbnfGO5sWMdHAscA_MHbmYEbid4I8qAPuxy6g6QtiWtG731echteyLYluY1k008RHzC2hNj6Q00he9t4MiwrSqIsMybgQ8fqvqbPc5L7JvtOhujp1j3QA3QEkbOELqPwXQyufye3A2se_5KzT6hkC61lAjLAg8JMYZcNasPTlpv7Hq5Qqyl6bq6xvMBpvNoVk11ETmm10blJGCoCENaW0aJOq8CvGEzc-mr-68e2rqE4lAn0dARP8QmQuXrE_r_PnNf-zroqIZz64vBkDGM8LnSAPcr3QjYEYxNL-QU_zdr_8AQkCSCw:1vR2cF:ALiU6I7qk7sa_bZ2x4j_a1UrNTFVr0u4Sud5wJYQB1M 2025-12-18 06:14:59.242571+00
0qv1nnfydmil7knzisuz8cbfc9a92fqv .eJzNnEtzozgQx7_KlM8zCS89mOPe97inzVZKCClmgoHlkans1nz3RcJ2QGnbQrCFL4Njt1ro16KlvyTm390z69r9c9eI-jlLd993_u7r-LuE8VdRqB_SH6x4KR94WbR1ljwok4fjr83D72Uq8t-OthMHe9bs-9KCYo4pTrDAPMYkpQkjYYSkCDH3YxmEMSIhRRyHSRCT_ipEGHoxw9QTqR8g5fQgiq7pff3579OuYAfxtPv-5Wn39NRFwmf9BQXM7y-YBeqCCCJPu6-9Rdbf82ArWf1Fsm88q3kuhh8P6s4b9TPgNqXKXxIK5S9EyMJfV-fDb48sPWTFY9I1WSGa5rFi730D2rJORf042LI0_cPKvDc8FklqwVJed4fk0j27ofj19cvi5v_6S_0sslT96nteADmVKO4vMY1T7VRX0d-tutAk8dRfchnohOWs4ILv-_4qasF7hBa8oVLbYF-FkBmLEKwpTpQ3EUfqgiJsVL8gCE1XVXkm6iNWiwCYJTaCvwiJST0CqkAJC9RtBiFZDzfvmrY8zMFtltgEtysLkzMCfGMU4vWyd58RRFZZZ--J-SZoZzffZIoBp7HPVaBoGqRrjIhd3afbRlgPiRP7TajOBmBSJXZO-9vEngocERyvxjhrxWEuZ13mXljPwWKSpzeriD3PG_4iK_buWrRdXczt4-NSd0B_NhqTfjyzipW7_wjnzIfALHl3wXB-InwPqglp3wgFa4yaDctFY9v1R8bbQJ7bdJOnb-d0tc79AcyyTxsF7oXykj4MacxpFetmdY1wXkr_VOQOuC_N5z6kJ69VsWaXn5_MwWJ3Fwb3pyAyh1soFUVCJqNWpJG6EOYlS1fJxnBQIpWGoxz7DnFuWtYKmZc_z6Erkx-Ct5dDfLHEnOi6cQERu7Ew4wlpL5QKlSppQHQVIdfKGRFvEWf9qWJ1X1N7LZtdLLEJZ1cWJmdIjY1vrL9IX8voMA4Wca7qkqtMZAH4ZLoJWdfWm2QhtTX1TQOqoka8JF7eg6077j1QtW-5SRVSUZd99_fuk1B96aFojd5b9KPAjB6sze-M9xwmBv0A0kskSPQT0g-5H_VSibmRl5bubhjdOC9fzin41hbH7aKbxOj_IGdGDJoGXat31RipTzNjMypydzFxj0JgpjFouR6FOtaYpOrpJIluDIk8G7lwZXY6dXtaDZeeXKxJqjor2qx4OX_4USaXAw1a28fYlc5N0K5EzBiDO12Tmuiw1-MowD_xu6G-L9jfAXF7DiZj8LGRWkGSIKIrMs77XGQN-MN4G7qOBEy62PwCWuJARCrFQWg06PYo0sNUbDOFvaqhmV6HibjmwMmQ0AMbaf5prYQ1GX_OClmqeVja8Zb3Aer7__uVhZLLZWbE1JENqKPdeJghhFTI1Pe8EN5mPYfxPbCd4cpgC2mRSOjnGYk4XJPtT1aLfdk11841QNYb8XVjYPANIbUBHE9ZBPZ05saK69l4G6xzm27yhLQACqU-4kZCNkx0hyMTgcva5YjUm9hnvV1bs6Kpyrq9eQjtZtFNkLvSMclDezQoQvpc23Ehz4u4jnGUjvI9oQvHP3Go8vJdiPa9sksdkwLbMF-FixkBcCozrWmtXH1COIv3XbB2ztSg9hmODh5PtvXaWesqicUyugehTiUUbSNaPfm2gWyW2Ya1Iw-TNaiBpr7X6sknbrMg3wVd554M7jtNzmiuRvd0_tSK7tl4G7qOBEy60G4TkkLldBwS7VvqSSPysdMhhQ9gf3cZf82KqrPrvSPzbQg7UjAJQ3qPoIDC0VNfYr0lwN0OhXwAVK-69KpOZrndwDe234T4OlRM_pAmPOZ6FHur5o9UvGVc6I82wEfmm_B2pWAQjiBVeJyZU0nxmrPnkxSxnTyP7bdh7MjBZAye44uk9k31hJymwXm8XcQ4YcUr47zsLKcZY_tNGLtyMBmbe0IBODgOaygo0fN0grUc1fu3y_aEfI1Djy8fCzULt_5K_jr8a_fe2aUCM4LqCAfivAyIGVtQD43u1hVvVrzpNyKvLGSbhtvgtG6rSQ5UN5MbQ36iD-aoRcZF3VTWQvxz9TSHabo5yzmtN8mCymbqe_Km5bK94U9PdypaluUz0sGxwD0wd-RiRuB2gj-qAOJjl1F1hLApWNXsy89DatHl-bYwrZto4qPmF9CaHk1YpC96bwdFlGtVRYdl3Ai4_UbV2ewzkaffWN7eHDvHugFugJI2cITUfwqglc_l5-DDxL7nr9DoGwLpWkONsCDwkJjgwFmz5uSk-cbLlyvIXuqyq24wG2w2h2bVUBOZb3ZtUEZKioY0pLVpEKvzKtSTNq9NX91599TUJ5KBPo-AqH4RWUiXrM-q7PnNf-yqvGSpSK8vBkDGM8LnSAPcr3QjYEYRykfHA3w4xFr8Rp7uZYmeZi6bcB_xpaxlzXvBb3I-G27CeB0OJnHzrQ_Ui6rdr_8AMtsFIg:1vTy0Y:Zq2F6-PesqhUAssGhFddMRaYQBYO_TUdmxQuEQbkacU 2025-12-26 07:56:10.117032+00
busil84fm9qlr5gqtynnzy9dwm9wwyke .eJzNnE1zozgQhv_KlM8zCV9CYo573-OeNlspIaSYCQaWj0xlt-a_ryTsGJS2LQRb-DI4ptVCT4uWXkmef3fPtO_2z33Lm-c8233f-buv4-9Syl55qW5kP2j5Uj2wquyaPH1QJg_Hu-3D71XGi9-OthMHe9ruZWlOYhaTOI15zJIYZySlOIyQ4GHM_EQEYYJwSBCLwzRIsLxyHoZeQmPi8cwPkHJ64GXfSl9__vu0K-mBP-2-f3naPT31EfepvKCA-vIS00BdEEb4afdVWuTymQdbQZsvgn5jecMKPtw8qCdv1W3AbUaUvzTkyl-IkIW_vimGe480O-TlY9q3ecnb9rGm77IBXdVkvHkcbGmW_WFlLg2PRdKG04w1_SG99MxuKH59_bK4-b_-Urd5nqm7vucFkFOBEnlJSJJpp7oK-bTqQtLUU3-JZaBTWtCScbaX_ZU3nEmEFryhUttgX4WQGYsQrClJlTeeROqCotiofkEQ2r6ui5w3R6wWATBLbAR_ERKTegRUgVIaqMcMQrwebta3XXWYg9sssQluVxYmZwT4jlEYr5e9ZUbgeW2dvSfmm6Cd3XyTaQw4TXymAkWyIFtjROwbmW5bbj0kTuw3oTobgEkV2zmVjxl7KnCYs3g1xnnHD3M56zL3wnoOFpM8uVlF4nne8BdesXc3vOubcm4fH5e6A_qz0Zj0k5lVrNz9RzhnvgRmybsLhvMb4XtQTUj7RihYY9RsacFb264_Mt4G8tymmzx9O6erde4zMMs-bRS4F8pL-jCkMadVrJvVNcJ5Kf1TkTvgvjSf-5CevFbFml1-fjIHi91dGNzfgsgcbqFUFHGRjlqRReqCqZcuXSUbw0GpUBqOsNh3iHPb0Y6Lovr5Eboq_cFZdznEF0vMia4bFxCxGwsznpD2QhlXqZIEWFcRMq2cEfYWcdafatrImrpr2exiiU04u7IwOUNqbPxg8iJ8LaPDJFjEuW4qpjKRBeCT6SZkXVtvkoXU1tQ3CYiKGvbSZHkPtu6490DVvuUmVUhFXfYtn93HofrSQ9EavbeUo8CMHqzN74z3HCYG_QDSSzhI9Rsih9xzvUTEzMhLS3c3jG5cVC8fKfjWFsftopvE6P8gZ0YMmgZdq3fVGKlPM2MzKnJ3MXGPQmCmMWi5HoU61jHO1NuJU90YHHk2cuHK7HTq9rQaLjyxWJPUTV52efny8eFHlV4ONGhtH2NXOjdBuxIxYwzudE1qIsNej6MA_8Tvhvq-YH8HxO05mIzB10ZoBYmDiKzIuJC5yBrw2Xgbuo4ETLqx-QW0xIGwUIoDk2jQ7VGkh6nEZgp7VUNTvQ4TMc2B4SGhBzbS_NNaCW1z9pyXolLzsKxnHZMBkv3__cpCyeUyM2LqyAbU0W48zBBCKmTqe14Ib7Oew_ge2M5wZbCFtEjE9fuMeBKuyfYnbfi-6ttr5xog6434ujEw-IaQ2gCOpywCezpzY8X1w3gbrHObbvKEtAAKhT7ihkM6THSHIxOBy9rliNQb3-fSrmto2dZV0908hHaz6CbIXemY5KE9GhQhfa7tuJDnRUzHOMpG-R6TheMfP9RF9c55917bpY5JgW2Yr8LFjAA4lZnWtFauPiGcxfsuWDtnalD7DEcHjyfbpHbWukrEfBndA1enEsqu5Z2efNtANstsw9qRh8ka1EBT32v15BO3WZDvgq5zTwb3nSZnNFejezp_akX3w3gbuo4ETLrQbhMSXOX0OMTat9CTRuTHTocUzsD-7nP2mpd1b9d7R-bbEHakYBKG9B5GAYGjp76M9ZYAczsUcgaofuoiVZ3IC7uBb2y_CfF1qJj8IU14zPUo8VbNHxl_yxnXH22Aj8w34e1KwSAcQarwODMngsRrzp5PUsR28jy234axIweTMXiOLxLaN9ETcpIFH-PtIsYpLV8pY1VvOc0Y22_C2JWDydjcEwrAwXFYQ0GpnqfjWMtRvX-7bE_I1zj0-HJeqFm49Vex1-Ffu9-dXSowI6iOcCDOy4CYsQX10OhpXfHm5Zv-ReSVhWzTcBuc1m01yYHqZvJgyE_1wRy1yLiom4qG83-unuYwTTdnOaf1JllQ2Ux9T35puWxv-NPbnfGO5sWMdHAscA_MHbmYEbid4I8qAPuxy6g6QtiWtG731echteyLYluY1k008RHzC2hNj6Q00he9t4MiwrSqIsMybgQ8fqvqbPc5L7JvtOhujp1j3QA3QEkbOELqPwXQyufye3A2se_5KzT6hkC61lAjLAg8JMYZcNasPTlpv7Hq5Qqyl6bq6xvMBpvNoVk11ETmm10blJGCoCENaW0aJOq8CvGEzc-mr-68e2rqE4lAn0dARP8QmQuXrE_r_PnNf-zroqIZz64vBkDGM8LnSAPcr3QjYEYxNL-QU_zdr_8AQkCSCw:1vRmAj:ZVsbUx7fYZAk8tZnV3X1zfGnquZAf9k6Sg3Nz4s-vHI 2025-12-20 06:53:37.989407+00
nie1ws9ihz1c2tlxhfbz47rmvgtv4p6c .eJzNmklz6ygQgP9KyucsWkCgd5z7HOc0mUqxxkpkSaMlrzKv8t8HUBaZYBshv5IvwUFNA1-Lphv0a_NAhn77MHSifSj45scm3lxP6yhhz6LSD_gTqR7rW1ZXfVvQWy1y-_60u_2z5qL84112T8GWdFvVWuCMZTijmchYniGOKUEpgFKkGYtzmaQ5RCmGLEtpkiNVCpGmUU4yHAkeJ1Ar3Ylq6JSuv3_dbyqyE_ebH1f3m_v7AYiYqAImJFZFRhJdQATR_eZaSRRqzKOsJO2VJDesaFkpxoc7PfJOP_6mNo8ZUgXmCdf6Ugg99A1tOT67I3xXVHd06IpKdN1dM7RMwRB1y0V7NwoTzv_yk1eS721oKwhn7bCj7lGHwni7vloM4O0f_VgUXD-NoyixK2JHL0BIOhkwB7pAJKLLrLfPAVKZ66mwLA4wYteTXsiy_vlpnpo-CdYfNuPBFnMMGcbFiTiMhW0-4NANuYBaW4JMFylL9GghihZxNr8a0qqe-mPL5WCLVTiHsrA5Q4fu6cBUIeNMV6Z5sohz09ZMexsPwB-iq5ANnb1NNjupGydYWw1FNF_-Bnu_uJdA1X_mNlU0S7cae4xSXRlBcI63t1K7wIw32IhfGO85TGz62NETSqhZIWrL_eoXy4xZfklVUqoLKIPCG-s1LuvHTxfcCqZiF-8V4Gi6io1-BznbYvnMfs9qI_1rpm0mTS7OJsFWiCPbLKlrS0-NrVXKolcnomYyCETZsuh0X21GU2HmEEn9Xxbp_5BgPp3Y1m7aouqL6vHzx1NNDxvaKe1v41A6J0GHErFtnJzsSWWiiV9240X7RHp3QP4CiPtzsBk7l42MIrNwAT4j41L5Im_AX8Lr0A0kYNMFdoUrh4ZI6owDYWA2Jg6A2aZynxD2aA5N9AEABMxwYGh06IlPav7tIIR0BXsoKlnrOIwPrGfKQOr9fz1yGHK4zQybBrJx5tFhPGwTurKQfd3zTHia9RzGl8B2hiqLrSsXAcKsZyjy9Jxsf5JWbOuhO5J8OKVX4hvGwObryjaAzOmoWyuFEIQELhNU3dA0ZXH0mNQhvA7WuVO3ebpyAZhKbLahlIyBrol-aRJydjkh9SK2hZLrW1J1Td32p7KA001XQR5KxyKfRC7dAGrdHwd5EWDGxoBP_D3CC_c_sWvK-lWI_rXxcx17DdZhfhYutgWcocx-T-fy1R8IZ_G-CNahnjpx5j7aQSltSYrOSXcn9GVV5RdmfAqvQzeQgE3XmfWMUf656bKh6-ud53b4KbwO3UACNl3nTZMU2s9kKTK6pQlkYJwFXct-Aft3KNhzUTWD39s7EV-HcCAFm7DrjgnBBLutpyszc0zNwq7BvwDqzwJUpiGL0s8ZT-VXIX4eKjZ_Vw6IKTWnXnl0Vv_BxUvBhPnpA3wivgrvUAo2YVcm-B4tYomzc0Z0H-Gxb0A3lV-HcSAHm7ErG8yBNLqxCRIxTz7320WMKameCWP14BlmTOVXYRzKwWac2ymjy3W_5_WQmtgRZSZFMneKy-4pYoPD7C9fhwcLr6Nq9jz-1WHgozh9GeVuMMOogXBcnJcBsUyZOjOgyWhD8RbVi6j6o4ertuA6OL3napNzZjd7A4MxNR-L6IOvRa-pbIX47-gXBrbo6iznzN4m68xs9nWn3BQJMYHRovvKb6ubi54U5Qx38N7gEpgHcrEt4Mx-9nsaswAUZyG76gRhV5Gm29bft9RqKMt1YXpP0cYH7QrXSR-mBJjC3DdAgJnJqvB4tAgcw-90n922ECW_IWV_cu-c5g3uCejUxm0h_QG1yXwOr4MvEf83_wyTPpEgHZuobRZXgK5Wi-P7p-5DSXfD6scjyB7bemhOMBtlVofmNVEbGbYrnGmkxHB0QyY3TXL9DQWOJF8WCwIR6dAHyMTckUOMTKUM8fqkKR5e4ruhKWvCBT9-GOASnmG-QBrOO7QwApbRgP3lUapC_M3b_4NBlrY:1vNnsc:A97uezglXSc0c9SooQ51Ya2whoGFmD_LkLGlbrTqyKk 2025-12-09 07:54:30.634534+00
ntf30dd3of18gsyba1risn3yscoj0t6y .eJzNmktz4ygQgP9Kyuck1guB5rj3Pe5pPZXiaSuRJa0emcpO5b8vIMeRCbER8pZ8CQ40DXzNoxv0e_WE-2731Le8ecrZ6scqXN2P8wimL7xUBewZl9vqkVZl1-TkUYk8Hkrbxz8rxos_DrInCna43cnaHKU0RSlJeUqzFDJEMIwTIHic0jATUZwBGCNA05hEGZQp53EcZDhFAWdhBJTSPS_7Vur6-_dmVeI936x-3G1Wm02fcEFkAiIcyiRliUogDshmdS8lctnnQVbg5k7gB5o3tOBD4V71vFXFFrUh_lQLiMhkgmgaOqjtm2IoW2O2z8t12-GOi6L6tSZ9m5e8bSvyzGm3HsQxY3-51pCyh1qk4ZjRpt-T7wbgx-X9_u5aLN5_qmKeM1UaBkFk0Q0YB0pbBHUTMY1UbwEMZnHWv2rcyJY63rhwNmoswtmXhck5tuged0wmIkxVZpxFszjXTUXl5HQB_CG6CFnf0Ztkk4u6UYSU1WBAsvkz2Hni3gJV95GbVMEk3bLvIYxVZgCSa8zeUp4CE2awFr8x3lOYmPRTS0swInqFBMGo00ik1NiXZCYhKgECgPnzvai2xy244bRqmPMKsFRdxEb_BznTYnBiu1e1kfo10TajKjdnE38rIDMjtB3psba1dHrV6oREDwYmQTrPOz1Vm5KY6zEEQv2XBuo_yKlLI6a16yYvu7zcHn88V-R7Q1ul3W3sS-ciaF8ihknD4GJLMpaJdKbX2vrCT66Rc_7qN_I3QNydg8nYumxEEOiFm6ArMi7kXuQM-FN4GbqeBEy6kblLZbbGoFARB0SJPphYkuhjKnNxYc_G0Bgq7QnVHCgcNvTIJTQ3rUhwm9OnvBSV8sNYTzsqDSTn_9v3xjxTZ4JNPdlY42g_HqZNbVHIqe5pJrzMegrjW2A7QZXB1haLJFyvZ8Cz-Jpsf-GG76q-PRN8WKUX4uvHwORrizYSkZFBt1IKQOLjuIxQtX1dF_m5bd4mvAzWqUM3edpiARALpI-hGA-OrvZ-SeRzdzki9cp3uZTrGly2ddV0l6KAy1UXQe5LxySPbLoToHR_XORda6fg-7qo3rjbRnEUXoauJwGTrtVNUctDaotieE26e97QHS7dDrmj8DJ0PQkYdCNrXDP4mNemS_u2q_aOm_FReBm6ngRMuvaIhquNPo2h1i30MQrC1CeiGQH7p8_pS17WvdvsHYkvQ9iTgknY9pKECNExfxZcdf4y_ppTrn-6EB6JL0LYl4JJ2PaGdDgrkUDpKH6BaGY89-EcvNVuB9xYfhnGnhxMxrY4LkuE1o0SfTvJouN-P4sxweULprTqHY-5sfwijH05mIyB6VjYJvYhqgFE-y4w1Q6iflGZd0sbahx6f_sMnWZexlf0Zfir3JAtv3wVb68wwaiecGyc5wExbWuNfUa99cWbl6-87M5eLZmCy-B0HqtJzhq7nHQMhEQ_lauwf9Y0FQ3n_559XzVFF2c5ZfQmWWvccqo7ZjqJsA5DZ73WfFndjHc4LyZsB4cKt8Dck4thgdga25y2NHihMEx9TtURwrbEdburvh6pZV8Uy8J0HqKJzxa8ZCEdvMmIbbzfYQZuda_i5_bSO4xNeJE5OnnoJk_zASay3YAighOd6NtrkCCqoyQ0XFQlln63qs12l_OCPeCiu-iLQBCh8x6U-mLTbjn1QedaFX9vr08RdytdYdC2x37HgZp2sjnjcvexfE3TfihpH2i1PYNs21R9fYHZILM4NKeBmshM3zq2B40IDNu6_kwpytSLPAoEm_u2GChXMhGRfnEFCOpM4XOK4jp_eg3XfV1UmHEm8uKMv2ITnmA-TxrWFxk_AqbRoJmRvv9cvf8He7uCiw:1vLId5:n8_xdalAfSPyiCi7SJPZLr1CI1IGxTC-WpvvN_z9NHQ 2025-12-02 10:08:07.630045+00
8g6qqs5ssg2zi3dlvoj8dmvskek2nues .eJzNmktz4ygQgP9Kyuck1guB5rj3Pe5pPZXiaSuRJa0emcpO5b8vIMeRCbER8pZ8CQ40DXzNoxv0e_WE-2731Le8ecrZ6scqXN2P8wimL7xUBewZl9vqkVZl1-TkUYk8Hkrbxz8rxos_DrInCna43cnaHKU0RSlJeUqzFDJEMIwTIHic0jATUZwBGCNA05hEGZQp53EcZDhFAWdhBJTSPS_7Vur6-_dmVeI936x-3G1Wm02fcEFkAiIcyiRliUogDshmdS8lctnnQVbg5k7gB5o3tOBD4V71vFXFFrUh_lQLiMhkgmgaOqjtm2IoW2O2z8t12-GOi6L6tSZ9m5e8bSvyzGm3HsQxY3-51pCyh1qk4ZjRpt-T7wbgx-X9_u5aLN5_qmKeM1UaBkFk0Q0YB0pbBHUTMY1UbwEMZnHWv2rcyJY63rhwNmoswtmXhck5tuged0wmIkxVZpxFszjXTUXl5HQB_CG6CFnf0Ztkk4u6UYSU1WBAsvkz2Hni3gJV95GbVMEk3bLvIYxVZgCSa8zeUp4CE2awFr8x3lOYmPRTS0swInqFBMGo00ik1NiXZCYhKgECgPnzvai2xy244bRqmPMKsFRdxEb_BznTYnBiu1e1kfo10TajKjdnE38rIDMjtB3psba1dHrV6oREDwYmQTrPOz1Vm5KY6zEEQv2XBuo_yKlLI6a16yYvu7zcHn88V-R7Q1ul3W3sS-ciaF8ihknD4GJLMpaJdKbX2vrCT66Rc_7qN_I3QNydg8nYumxEEOiFm6ArMi7kXuQM-FN4GbqeBEy6kblLZbbGoFARB0SJPphYkuhjKnNxYc_G0Bgq7QnVHCgcNvTIJTQ3rUhwm9OnvBSV8sNYTzsqDSTn_9v3xjxTZ4JNPdlY42g_HqZNbVHIqe5pJrzMegrjW2A7QZXB1haLJFyvZ8Cz-Jpsf-GG76q-PRN8WKUX4uvHwORrizYSkZFBt1IKQOLjuIxQtX1dF_m5bd4mvAzWqUM3edpiARALpI-hGA-OrvZ-SeRzdzki9cp3uZTrGly2ddV0l6KAy1UXQe5LxySPbLoToHR_XORda6fg-7qo3rjbRnEUXoauJwGTrtVNUctDaotieE26e97QHS7dDrmj8DJ0PQkYdCNrXDP4mNemS_u2q_aOm_FReBm6ngRMuvaIhquNPo2h1i30MQrC1CeiGQH7p8_pS17WvdvsHYkvQ9iTgknY9pKECNExfxZcdf4y_ppTrn-6EB6JL0LYl4JJ2PaGdDgrkUDpKH6BaGY89-EcvNVuB9xYfhnGnhxMxrY4LkuE1o0SfTvJouN-P4sxweULprTqHY-5sfwijH05mIyB6VjYJvYhqgFE-y4w1Q6iflGZd0sbahx6f_sMnWZexlf0Zfir3JAtv3wVb68wwaiecGyc5wExbWuNfUa99cWbl6-87M5eLZmCy-B0HqtJzhq7nHQMhEQ_lauwf9Y0FQ3n_559XzVFF2c5ZfQmWWvccqo7ZjqJsA5DZ73WfFndjHc4LyZsB4cKt8Dck4thgdga25y2NHihMEx9TtURwrbEdburvh6pZV8Uy8J0HqKJzxa8ZCEdvMmIbbzfYQZuda_i5_bSO4xNeJE5OnnoJk_zASay3YAighOd6NtrkCCqoyQ0XFQlln63qs12l_OCPeCiu-iLQBCh8x6U-mLTbjn1QedaFX9vr08RdytdYdC2x37HgZp2sjnjcvexfE3TfihpH2i1PYNs21R9fYHZILM4NKeBmshM3zq2B40IDNu6_kwpytSLPAoEm_u2GChXMhGRfnEFCOpM4XOK4jp_eg3XfV1UmHEm8uKMv2ITnmA-TxrWFxk_AqbRoJmRvv9cvf8He7uCiw:1vLYyA:AD0u5F-mNfMwOsOq-xELhPG46cKCAbcOeMXQfrwkvng 2025-12-03 03:34:58.965151+00
\.
--
-- Data for Name: printing_plateorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.printing_plateorder (id, created_at, updated_at, design_code, plate_type, plate_date, plate_method, plate_image, plate_notes, reprint_reason, urgency_level, area, default_address, is_mark_frame, drawing_rating, color_matching_rating, sample_rating, difficulty_rating, required_completion_date, completion_date, fabric, width, style_name, production_method, sample_meter, required_sample_meters, approval_result, is_ordered, customer_feedback, business_object_id, customer_id, merchandiser_id, salesperson_id, is_invalid, process, fabric_source, designer_id, image_name, print_count) FROM stdin;
\.
--
-- Data for Name: printing_printingjob; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.printing_printingjob (id, created_at, updated_at, quantity, unit, size, pieces, description, product_id, printing_order_id, business_object_id, work_state) FROM stdin;
16 2025-12-10 05:57:57.812934+00 2025-12-10 05:57:57.814275+00 24 米 0 \N 2799 20 66 0
17 2025-12-11 05:52:04.474216+00 2025-12-11 05:52:04.475605+00 500 米 0 \N 2797 21 67 0
18 2025-12-11 07:49:04.298075+00 2025-12-11 07:49:04.299454+00 300 米 0 \N 2800 22 68 0
19 2025-12-12 10:01:20.183118+00 2025-12-12 10:01:20.184839+00 32 米 0 \N 2800 23 69 0
20 2025-12-12 10:01:20.265206+00 2025-12-12 10:01:20.266441+00 42 米 0 \N 2797 23 70 0
21 2025-12-12 10:01:20.337169+00 2025-12-12 10:01:20.338373+00 42 米 0 \N 2798 23 71 0
22 2025-12-13 08:28:44.022362+00 2025-12-13 08:28:44.023633+00 45 米 0 \N 2794 24 72 0
23 2025-12-13 09:20:53.508262+00 2025-12-13 09:20:53.509647+00 50 米 0 \N 2735 25 73 0
24 2025-12-13 09:20:53.546384+00 2025-12-13 09:20:53.547613+00 50 米 0 \N 2751 25 74 0
25 2025-12-13 09:23:11.988933+00 2025-12-13 09:23:11.990189+00 100 米 0 \N 2796 26 75 0
\.
--
-- Data for Name: printing_printingjobbatchadvancerecord; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.printing_printingjobbatchadvancerecord (id, created_at, updated_at, parameters, created_by_id, printing_order_id, state_id) FROM stdin;
1 2025-12-12 10:04:25.816856+00 2025-12-12 10:04:25.816866+00 {"(印染厂生产)日期": "104", "(印染厂生产)设备": "106", "(印染厂生产)提交人": "105", "(印染厂生产)打印米数": "103", "(印染厂生产)生产记录": "101", "(印染厂生产)生产订单详情": "102"} 2 23 1
2 2025-12-13 09:48:51.751583+00 2025-12-13 09:48:51.751591+00 {"(印染厂滚筒)日期": "2025-12-13 09:47:59", "(印染厂滚筒)设备": "2", "(印染厂滚筒)提交人": "jimi", "(印染厂滚筒)温度转速": "220。45转速", "(印染厂滚筒)生产单上传": "https://image.yuwen.cloud/uploads/2025/12/13/7a511cbb52894e3eb95c32700c64f318.jpg"} 2 23 2
3 2025-12-13 11:11:51.97199+00 2025-12-13 11:11:51.971998+00 {"(印染厂生产)日期": "2025-12-13 11:11:37", "(印染厂生产)提交人": "ruicai16888", "(印染厂生产)打印米数": "100"} 27 26 1
4 2025-12-13 11:20:49.766479+00 2025-12-13 11:20:49.766486+00 {"(印染厂生产)日期": "2025-12-13 11:20:15", "(印染厂生产)设备": "2", "(印染厂生产)提交人": "ruicai16888", "(印染厂生产)打印米数": "100"} 27 25 1
5 2025-12-13 11:23:57.33414+00 2025-12-13 11:23:57.334147+00 {"(印染厂滚筒)日期": "2025-12-13 11:22:10", "(印染厂滚筒)提交人": "ruicai16888", "(印染厂滚筒)生产单上传": "https://image.yuwen.cloud/uploads/2025/12/13/e0070166832248f9819fc652215fd2fd.jpg"} 27 25 2
\.
--
-- Data for Name: printing_printingjobbatchadvancerecord_printing_jobs; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.printing_printingjobbatchadvancerecord_printing_jobs (id, printingjobbatchadvancerecord_id, printingjob_id) FROM stdin;
1 1 19
2 1 20
3 1 21
4 2 19
5 2 20
6 2 21
7 3 25
8 4 24
9 4 23
10 5 24
11 5 23
\.
--
-- Data for Name: printing_printingorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.printing_printingorder (id, created_at, updated_at, fabric, width, is_urgent, area, address, fabric_source, is_fabric_received, craft, description, outgoing_date, curve, new_curve, "position", printing_warn, rolling_warn, production_warn, customer_id, is_invalid, process_id, print_count) FROM stdin;
20 2025-12-10 05:57:57.642463+00 2025-12-10 05:57:57.642473+00 四面弹. 1.5米 f 周边 客户布 f 批布 \N 2025-12-11 测试 3124123 \N \N \N \N 809 f 1 0
21 2025-12-11 05:52:04.250293+00 2025-12-11 05:52:04.250301+00 95克纬弹 1.5米 f 周边 客户布 f 批布 \N 2025-12-12 测试 3124123 \N \N \N \N 804 f 1 0
22 2025-12-11 07:49:04.087233+00 2025-12-11 07:49:04.087242+00 95克纬弹 1.5米 f 周边 客户布 f 批布 \N 2025-12-12 测试 3124123 电脑位置 打印注意 打印注意 打印注意 809 f 1 0
23 2025-12-12 10:01:19.945422+00 2025-12-13 07:57:13.367278+00 95克纬弹 1.5米 f 周边 客户布 f 批布 \N 2025-12-13 测试 3124123 1 1 1 1 808 f 1 1
24 2025-12-13 08:28:43.909462+00 2025-12-13 08:28:43.90947+00 95克纬弹 1.5米 f 周边 客户布 f 批布 \N 2025-12-14 测试 3124123 \N \N \N \N 806 f 1 0
26 2025-12-13 09:23:11.946849+00 2025-12-13 09:23:11.946857+00 95克纬弹 1.5米 f 周边 客户布 f 批布 \N 2025-12-14 测试 \N 测试 测试123 测试123 测试 806 f 1 2
25 2025-12-13 09:20:53.398055+00 2025-12-13 09:20:53.398063+00 170克仿棉拉架 1.5米 f 周边 客户布 f 批布 \N 2025-12-14 测试 3124123 电脑位置 打印不要刮纸 滚筒要注意 做货也要记住 440 f 1 3
\.
--
-- Data for Name: state_flow_record; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.state_flow_record (id, created_at, updated_at, completed_at, completed_by_id, business_object_id, state_id, cancelled_at, is_cancelled) FROM stdin;
92 2025-12-12 10:04:25.82247+00 2025-12-12 10:04:25.82248+00 2025-12-12 10:04:25.822491+00 2 69 1 \N f
93 2025-12-12 10:04:25.827469+00 2025-12-12 10:04:25.827475+00 2025-12-12 10:04:25.827481+00 2 70 1 \N f
94 2025-12-12 10:04:25.831901+00 2025-12-12 10:04:25.831907+00 2025-12-12 10:04:25.831913+00 2 71 1 \N f
95 2025-12-13 09:48:51.75619+00 2025-12-13 09:48:51.756196+00 2025-12-13 09:48:51.756201+00 2 69 2 \N f
96 2025-12-13 09:48:51.760909+00 2025-12-13 09:48:51.760914+00 2025-12-13 09:48:51.760919+00 2 70 2 \N f
97 2025-12-13 09:48:51.765517+00 2025-12-13 09:48:51.765522+00 2025-12-13 09:48:51.765528+00 2 71 2 \N f
98 2025-12-13 11:11:51.976686+00 2025-12-13 11:11:51.976692+00 2025-12-13 11:11:51.976698+00 27 75 1 \N f
99 2025-12-13 11:20:49.770981+00 2025-12-13 11:20:49.770986+00 2025-12-13 11:20:49.770992+00 27 73 1 \N f
100 2025-12-13 11:20:49.775588+00 2025-12-13 11:20:49.775592+00 2025-12-13 11:20:49.775598+00 27 74 1 \N f
101 2025-12-13 11:23:57.338643+00 2025-12-13 11:23:57.338648+00 2025-12-13 11:23:57.338654+00 27 73 2 \N f
102 2025-12-13 11:23:57.343322+00 2025-12-13 11:23:57.343327+00 2025-12-13 11:23:57.343333+00 27 74 2 \N f
\.
--
-- Data for Name: state_log_parameter_record; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.state_log_parameter_record (id, updated_at, parameters, created_at, remark, state_log_id) FROM stdin;
45 2025-12-12 10:04:25.822969+00 {"(印染厂生产)日期": "104", "(印染厂生产)设备": "106", "(印染厂生产)提交人": "105", "(印染厂生产)打印米数": "103", "(印染厂生产)生产记录": "101", "(印染厂生产)生产订单详情": "102"} 2025-12-12 10:04:25.822982+00 92
46 2025-12-12 10:04:25.827676+00 {"(印染厂生产)日期": "104", "(印染厂生产)设备": "106", "(印染厂生产)提交人": "105", "(印染厂生产)打印米数": "103", "(印染厂生产)生产记录": "101", "(印染厂生产)生产订单详情": "102"} 2025-12-12 10:04:25.827684+00 93
47 2025-12-12 10:04:25.832152+00 {"(印染厂生产)日期": "104", "(印染厂生产)设备": "106", "(印染厂生产)提交人": "105", "(印染厂生产)打印米数": "103", "(印染厂生产)生产记录": "101", "(印染厂生产)生产订单详情": "102"} 2025-12-12 10:04:25.832161+00 94
48 2025-12-13 09:48:51.756459+00 {"(印染厂滚筒)日期": "2025-12-13 09:47:59", "(印染厂滚筒)设备": "2", "(印染厂滚筒)提交人": "jimi", "(印染厂滚筒)温度转速": "220。45转速", "(印染厂滚筒)生产单上传": "https://image.yuwen.cloud/uploads/2025/12/13/7a511cbb52894e3eb95c32700c64f318.jpg"} 2025-12-13 09:48:51.756468+00 95
49 2025-12-13 09:48:51.761116+00 {"(印染厂滚筒)日期": "2025-12-13 09:47:59", "(印染厂滚筒)设备": "2", "(印染厂滚筒)提交人": "jimi", "(印染厂滚筒)温度转速": "220。45转速", "(印染厂滚筒)生产单上传": "https://image.yuwen.cloud/uploads/2025/12/13/7a511cbb52894e3eb95c32700c64f318.jpg"} 2025-12-13 09:48:51.761124+00 96
50 2025-12-13 09:48:51.765745+00 {"(印染厂滚筒)日期": "2025-12-13 09:47:59", "(印染厂滚筒)设备": "2", "(印染厂滚筒)提交人": "jimi", "(印染厂滚筒)温度转速": "220。45转速", "(印染厂滚筒)生产单上传": "https://image.yuwen.cloud/uploads/2025/12/13/7a511cbb52894e3eb95c32700c64f318.jpg"} 2025-12-13 09:48:51.765754+00 97
51 2025-12-13 11:11:51.977013+00 {"(印染厂生产)日期": "2025-12-13 11:11:37", "(印染厂生产)提交人": "ruicai16888", "(印染厂生产)打印米数": "100"} 2025-12-13 11:11:51.977023+00 98
52 2025-12-13 11:20:49.771232+00 {"(印染厂生产)日期": "2025-12-13 11:20:15", "(印染厂生产)设备": "2", "(印染厂生产)提交人": "ruicai16888", "(印染厂生产)打印米数": "100"} 2025-12-13 11:20:49.771241+00 99
53 2025-12-13 11:20:49.775799+00 {"(印染厂生产)日期": "2025-12-13 11:20:15", "(印染厂生产)设备": "2", "(印染厂生产)提交人": "ruicai16888", "(印染厂生产)打印米数": "100"} 2025-12-13 11:20:49.775808+00 100
54 2025-12-13 11:23:57.338903+00 {"(印染厂滚筒)日期": "2025-12-13 11:22:10", "(印染厂滚筒)提交人": "ruicai16888", "(印染厂滚筒)生产单上传": "https://image.yuwen.cloud/uploads/2025/12/13/e0070166832248f9819fc652215fd2fd.jpg"} 2025-12-13 11:23:57.338912+00 101
55 2025-12-13 11:23:57.343528+00 {"(印染厂滚筒)日期": "2025-12-13 11:22:10", "(印染厂滚筒)提交人": "ruicai16888", "(印染厂滚筒)生产单上传": "https://image.yuwen.cloud/uploads/2025/12/13/e0070166832248f9819fc652215fd2fd.jpg"} 2025-12-13 11:23:57.343536+00 102
\.
--
-- 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
2025-12-10 05:58:53.624905+00 2025-12-10 05:58:53.62491+00 369 457.00 1 1 2799 33 f \N
2025-12-11 08:57:07.853192+00 2025-12-11 08:57:07.853197+00 370 50.00 1 1 2800 34 f \N
2025-12-11 08:57:53.31033+00 2025-12-11 08:57:53.310336+00 371 26.67 1 1 2800 35 f \N
2025-12-11 08:57:53.31081+00 2025-12-11 08:57:53.310814+00 372 26.67 1 1 2800 35 f \N
2025-12-11 08:57:53.311+00 2025-12-11 08:57:53.311003+00 373 26.66 1 1 2800 35 f \N
2025-12-11 08:59:03.270135+00 2025-12-11 08:59:03.27014+00 374 26.67 1 1 2800 36 f \N
2025-12-11 08:59:03.270587+00 2025-12-11 08:59:03.27059+00 375 26.67 1 1 2800 36 f \N
2025-12-11 08:59:03.270772+00 2025-12-11 08:59:03.270775+00 376 26.66 1 1 2800 36 f \N
2025-12-11 09:00:28.116581+00 2025-12-11 09:00:28.116586+00 377 10.00 1 1 2800 37 f \N
2025-12-11 09:00:28.117032+00 2025-12-11 09:00:28.117036+00 378 50.00 1 1 2800 37 f \N
2025-12-11 09:09:08.765565+00 2025-12-11 09:09:08.765569+00 379 10.00 1 1 2800 38 f \N
2025-12-11 09:09:08.766045+00 2025-12-11 09:09:08.766049+00 380 10.00 1 1 2800 38 f \N
2025-12-11 10:10:00.537072+00 2025-12-11 10:10:00.537077+00 381 1.00 1 1 2800 39 f \N
2025-12-12 06:58:04.548127+00 2025-12-12 06:58:04.548131+00 382 456.00 1 1 2800 40 f \N
2025-12-12 06:58:04.548598+00 2025-12-12 06:58:04.548601+00 383 456.00 1 1 2800 40 f \N
2025-12-12 06:58:04.548787+00 2025-12-12 06:58:04.548791+00 384 456.00 1 1 2800 40 f \N
2025-12-12 06:58:04.549272+00 2025-12-12 06:58:04.549277+00 385 456.00 1 1 2799 40 f \N
2025-12-12 06:58:04.549452+00 2025-12-12 06:58:04.549455+00 386 456.00 1 1 2799 40 f \N
2025-12-12 06:58:04.549605+00 2025-12-12 06:58:04.549608+00 387 456.00 1 1 2799 40 f \N
2025-12-12 07:03:40.996649+00 2025-12-12 07:03:40.996654+00 388 100.00 1 1 2800 41 f \N
2025-12-12 07:03:40.997122+00 2025-12-12 07:03:40.997125+00 389 120.00 1 1 2800 41 f \N
2025-12-12 07:03:40.997627+00 2025-12-12 07:03:40.997631+00 390 200.00 1 1 2799 41 f \N
2025-12-12 07:54:13.633301+00 2025-12-12 07:54:13.633307+00 391 15.00 1 1 2800 42 f \N
2025-12-12 07:56:07.213271+00 2025-12-12 07:56:07.213278+00 392 100.00 1 1 2800 43 f \N
2025-12-12 07:56:07.213738+00 2025-12-12 07:56:07.213741+00 393 150.00 1 1 2800 43 f \N
2025-12-12 12:26:32.652825+00 2025-12-12 12:26:32.652832+00 394 456.00 1 1 2800 44 f \N
\.
--
-- Data for Name: stock_stockchangerecord; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stock_stockchangerecord (created_at, updated_at, id, type, source_type, source_id, is_finished, finished_at, remarks, created_by_id, merchant_id, warehouse_id) FROM stdin;
2025-11-20 07:54:03.430455+00 2025-11-20 07:54:45.867681+00 2 1 4 \N t 2025-11-20 07:54:45.866469+00 1 1 2
2025-11-20 08:00:58.975687+00 2025-11-20 08:02:59.822363+00 3 2 10 \N t 2025-11-20 08:02:59.82082+00 1 1 2
2025-11-20 08:02:18.094174+00 2025-11-20 08:03:02.172741+00 4 1 3 \N t 2025-11-20 08:03:02.171627+00 1 1 3
2025-11-25 08:23:25.703137+00 2025-11-25 08:26:59.598906+00 5 1 1 \N t 2025-11-25 08:26:59.598104+00 \N 2 1 2
2025-11-25 09:28:40.651817+00 2025-11-25 10:10:43.514322+00 10 1 3 \N t 2025-11-25 10:10:43.513447+00 1 1 2
2025-11-25 09:20:41.469745+00 2025-11-25 10:10:46.644773+00 9 1 4 \N t 2025-11-25 10:10:46.643786+00 1 1 2
2025-11-25 09:10:28.069309+00 2025-11-25 10:10:48.427132+00 8 1 1 \N t 2025-11-25 10:10:48.426187+00 \N 2 1 2
2025-11-25 08:49:45.154243+00 2025-11-25 10:10:50.088642+00 7 2 6 \N t 2025-11-25 10:10:50.087782+00 \N 2 1 2
2025-11-25 08:49:42.446213+00 2025-11-25 10:10:52.770383+00 6 2 6 \N t 2025-11-25 10:10:52.769618+00 \N 2 1 2
2025-11-25 10:12:01.37053+00 2025-11-25 10:13:09.76617+00 11 2 9 \N t 2025-11-25 10:13:09.765158+00 1 1 2
2025-11-28 03:49:04.598896+00 2025-11-28 04:16:58.100963+00 14 1 1 9 t 2025-11-28 04:16:58.099857+00 \N 2 1 2
2025-11-28 06:18:54.73818+00 2025-11-28 06:18:54.73819+00 16 1 1 11 f \N \N 2 1 4
2025-11-28 10:01:26.417334+00 2025-11-28 10:01:26.417345+00 17 1 1 16 f \N \N 2 1 2
2025-11-28 10:01:37.046717+00 2025-11-28 10:01:37.046725+00 18 1 1 14 f \N \N 2 1 3
2025-11-28 10:04:16.500326+00 2025-11-28 10:05:17.994251+00 19 1 1 17 t 2025-11-28 10:05:17.993378+00 \N 2 1 2
2025-11-28 06:18:30.984995+00 2025-11-29 02:07:05.962873+00 15 1 1 10 t 2025-11-29 02:07:05.961912+00 \N 2 1 3
2025-11-28 10:13:50.08242+00 2025-12-01 09:13:19.367796+00 20 1 1 19 t 2025-12-01 09:13:19.366794+00 \N 2 1 3
2025-12-01 09:32:33.887738+00 2025-12-01 09:32:33.88775+00 23 2 7 3 f \N \N 2 1 5
2025-12-01 09:42:14.251174+00 2025-12-01 09:42:14.251182+00 24 1 2 1 f \N \N 2 1 5
2025-12-01 09:43:48.643982+00 2025-12-01 09:43:48.643991+00 25 1 2 2 f \N \N 2 1 5
2025-12-01 09:44:17.426016+00 2025-12-01 09:44:17.426025+00 26 1 2 3 f \N \N 2 1 5
2025-12-01 09:45:03.25759+00 2025-12-01 09:45:03.257598+00 27 2 7 4 f \N \N 2 1 5
2025-12-01 09:48:45.352096+00 2025-12-01 09:52:19.041514+00 28 1 2 4 t 2025-12-01 09:52:19.040714+00 \N 2 1 4
2025-12-01 09:57:08.94116+00 2025-12-01 09:57:08.941169+00 29 1 2 5 f \N \N 2 1 5
2025-12-01 09:59:47.283764+00 2025-12-01 09:59:59.534321+00 30 1 2 6 t 2025-12-01 09:59:59.533528+00 \N 2 1 5
2025-12-01 10:11:13.66633+00 2025-12-01 10:11:13.666338+00 31 1 2 7 f \N \N 2 1 5
2025-12-01 10:12:21.033643+00 2025-12-01 10:12:21.033653+00 32 1 2 8 f \N \N 2 1 5
2025-12-10 05:58:53.623415+00 2025-12-10 05:58:53.623423+00 33 2 6 3 f \N \N 2 1 5
2025-12-11 08:57:07.851842+00 2025-12-11 08:57:07.851851+00 34 2 6 4 f \N \N 2 1 5
2025-12-11 08:57:53.308452+00 2025-12-11 08:57:53.308464+00 35 2 6 5 f \N \N 2 1 5
2025-12-11 08:59:03.268833+00 2025-12-11 08:59:03.268841+00 36 2 6 6 f \N \N 2 1 5
2025-12-11 09:00:28.115395+00 2025-12-11 09:00:28.115404+00 37 2 6 7 f \N \N 2 1 3
2025-12-11 09:09:08.764336+00 2025-12-11 09:09:08.764345+00 38 2 6 8 f \N \N 2 1 3
2025-12-11 10:10:00.53586+00 2025-12-11 10:10:00.535868+00 39 2 6 9 f \N \N 2 1 3
2025-12-12 06:58:04.546867+00 2025-12-12 06:58:04.546875+00 40 2 6 11 f \N \N 2 1 3
2025-12-12 07:03:40.995415+00 2025-12-12 07:03:40.995423+00 41 2 6 12 f \N \N 2 1 3
2025-12-12 07:54:13.631429+00 2025-12-12 07:54:13.631442+00 42 2 6 10 f \N \N 2 1 5
2025-12-12 07:56:07.212043+00 2025-12-12 07:56:07.212051+00 43 2 6 13 f \N \N 2 1 3
2025-12-12 12:26:32.651595+00 2025-12-12 12:26:32.651602+00 44 2 6 15 f \N \N 2 1 3
\.
--
-- Data for Name: stock_stockfreeze; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stock_stockfreeze (created_at, updated_at, id, quantity, unit, status, frozen_with, completed_at, completed_with, cancelled_at, reason, cancelled_by_id, completed_by_id, frozen_by_id, merchant_id, product_id, stock_detail_id, warehouse_id) FROM stdin;
\.
--
-- Data for Name: stock_stocksnapshot; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stock_stocksnapshot (created_at, updated_at, id, delta, quantity_before, quantity_after, unit, num_of_rolls, offset_to, offset_at, cancelled, cancelled_at, offset_id, merchant_id, product_id, stock_change_record_id, warehouse_id) FROM stdin;
2025-11-20 07:54:45.865438+00 2025-11-20 07:54:45.865443+00 1 50.00 0.00 50.00 1 2 \N \N f \N \N 1 1 2 2
2025-11-20 08:02:59.81919+00 2025-11-20 08:02:59.819199+00 2 -25.00 50.00 25.00 1 -1 \N \N f \N \N 1 1 3 2
2025-11-20 08:03:02.170296+00 2025-11-20 08:03:02.170306+00 3 25.00 0.00 25.00 1 2 \N \N f \N \N 1 1 4 3
2025-11-25 08:26:59.585488+00 2025-11-25 08:26:59.585496+00 4 45.00 25.00 70.00 1 2 \N \N f \N \N 1 1 5 2
2025-11-25 08:26:59.589092+00 2025-11-25 08:26:59.589097+00 5 45.00 70.00 115.00 1 3 \N \N f \N \N 1 1 5 2
2025-11-25 08:26:59.59076+00 2025-11-25 08:26:59.590764+00 6 54.00 115.00 169.00 1 4 \N \N f \N \N 1 1 5 2
2025-11-25 08:26:59.592872+00 2025-11-25 08:26:59.592876+00 7 46.00 169.00 215.00 1 5 \N \N f \N \N 1 1 5 2
2025-11-25 08:26:59.595099+00 2025-11-25 08:26:59.595104+00 8 64.00 215.00 279.00 1 6 \N \N f \N \N 1 1 5 2
2025-11-25 08:26:59.597258+00 2025-11-25 08:26:59.597262+00 9 46.00 279.00 325.00 1 7 \N \N f \N \N 1 1 5 2
2025-11-25 10:10:43.512086+00 2025-11-25 10:10:43.512093+00 10 22.00 325.00 347.00 1 8 \N \N f \N \N 1 1 10 2
2025-11-25 10:10:46.642532+00 2025-11-25 10:10:46.642538+00 11 55.00 347.00 402.00 1 9 \N \N f \N \N 1 1 9 2
2025-11-25 10:10:48.421374+00 2025-11-25 10:10:48.421379+00 12 465.00 402.00 867.00 1 10 \N \N f \N \N 1 1 8 2
2025-11-25 10:10:48.423686+00 2025-11-25 10:10:48.42369+00 13 78.00 867.00 945.00 1 11 \N \N f \N \N 1 1 8 2
2025-11-25 10:10:48.425271+00 2025-11-25 10:10:48.425277+00 14 789.00 945.00 1734.00 1 12 \N \N f \N \N 1 1 8 2
2025-11-25 10:10:50.076648+00 2025-11-25 10:10:50.076654+00 15 -45.00 0.00 -45.00 1 -2 \N \N f \N \N 1 2 7 2
2025-11-25 10:10:50.079262+00 2025-11-25 10:10:50.079266+00 16 -456.00 -45.00 -501.00 1 -3 \N \N f \N \N 1 2 7 2
2025-11-25 10:10:50.081387+00 2025-11-25 10:10:50.081391+00 17 -57.00 -501.00 -558.00 1 -4 \N \N f \N \N 1 2 7 2
2025-11-25 10:10:50.083463+00 2025-11-25 10:10:50.083469+00 18 -78.00 -558.00 -636.00 1 -5 \N \N f \N \N 1 2 7 2
2025-11-25 10:10:50.085389+00 2025-11-25 10:10:50.085393+00 19 -78.00 -636.00 -714.00 1 -6 \N \N f \N \N 1 2 7 2
2025-11-25 10:10:50.087157+00 2025-11-25 10:10:50.087163+00 20 -87.00 -714.00 -801.00 1 -7 \N \N f \N \N 1 2 7 2
2025-11-25 10:10:52.760974+00 2025-11-25 10:10:52.760978+00 21 -45.00 -801.00 -846.00 1 -8 \N \N f \N \N 1 2 6 2
2025-11-25 10:10:52.763084+00 2025-11-25 10:10:52.763088+00 22 -456.00 -846.00 -1302.00 1 -9 \N \N f \N \N 1 2 6 2
2025-11-25 10:10:52.764538+00 2025-11-25 10:10:52.764542+00 23 -57.00 -1302.00 -1359.00 1 -10 \N \N f \N \N 1 2 6 2
2025-11-25 10:10:52.765994+00 2025-11-25 10:10:52.765998+00 24 -78.00 -1359.00 -1437.00 1 -11 \N \N f \N \N 1 2 6 2
2025-11-25 10:10:52.76742+00 2025-11-25 10:10:52.767424+00 25 -78.00 -1437.00 -1515.00 1 -12 \N \N f \N \N 1 2 6 2
2025-11-25 10:10:52.769042+00 2025-11-25 10:10:52.769047+00 26 -87.00 -1515.00 -1602.00 1 -13 \N \N f \N \N 1 2 6 2
2025-11-25 10:13:09.763497+00 2025-11-25 10:13:09.763502+00 27 -22.00 1734.00 1712.00 1 9 \N \N f \N \N 1 1 11 2
2025-11-28 04:16:58.096138+00 2025-11-28 04:16:58.096144+00 28 97.00 1712.00 1809.00 1 12 \N \N f \N \N 1 1 14 2
2025-11-28 04:16:58.099209+00 2025-11-28 04:16:58.099214+00 29 98.00 1809.00 1907.00 1 13 \N \N f \N \N 1 1 14 2
2025-11-28 10:05:17.990897+00 2025-11-28 10:05:17.990901+00 30 97.00 0.00 97.00 1 2 \N \N f \N \N 1 3 19 2
2025-11-28 10:05:17.992816+00 2025-11-28 10:05:17.99282+00 31 98.00 97.00 195.00 1 3 \N \N f \N \N 1 3 19 2
2025-11-29 02:07:05.958964+00 2025-11-29 02:07:05.95897+00 32 97.00 25.00 122.00 1 3 \N \N f \N \N 1 1 15 3
2025-11-29 02:07:05.961355+00 2025-11-29 02:07:05.961359+00 33 98.00 122.00 220.00 1 4 \N \N f \N \N 1 1 15 3
2025-12-01 09:13:19.365892+00 2025-12-01 09:13:19.365896+00 34 100.00 0.00 100.00 1 2 \N \N f \N \N 1 3 20 3
2025-12-01 09:52:19.03822+00 2025-12-01 09:52:19.038224+00 35 97.00 0.00 97.00 1 2 \N \N f \N \N 1 3 28 4
2025-12-01 09:52:19.040185+00 2025-12-01 09:52:19.040189+00 36 98.00 97.00 195.00 1 3 \N \N f \N \N 1 3 28 4
2025-12-01 09:59:59.532665+00 2025-12-01 09:59:59.532669+00 37 100.00 0.00 100.00 1 2 \N \N f \N \N 1 3 30 5
\.
--
-- Data for Name: stock_transferorder; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stock_transferorder (created_at, updated_at, id, mode, transfer_date, status, remarks, request_id, created_by_id, from_warehouse_id, incoming_record_id, merchant_id, operator_id, outgoing_record_id, to_warehouse_id) FROM stdin;
\.
--
-- Data for Name: stock_transferorderitem; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.stock_transferorderitem (created_at, updated_at, id, unit, total_quantity, num_of_rolls, product_id, transfer_order_id) FROM stdin;
\.
--
-- Name: api_data_sync_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.api_data_sync_id_seq', 209, true);
--
-- Name: api_uploaded_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.api_uploaded_file_id_seq', 83, 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', 229, 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', 27, true);
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.auth_user_user_permissions_id_seq', 39, true);
--
-- Name: basic_info_bankaccount_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_bankaccount_id_seq', 1, true);
--
-- Name: basic_info_customer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_customer_id_seq', 809, true);
--
-- Name: basic_info_customer_visible_employees_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_customer_visible_employees_id_seq', 6, true);
--
-- Name: basic_info_deviceinfo_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_deviceinfo_id_seq', 2, true);
--
-- Name: basic_info_employee_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_employee_id_seq', 26, true);
--
-- Name: basic_info_employeetype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_employeetype_id_seq', 8, true);
--
-- Name: basic_info_merchant_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_merchant_id_seq', 3, true);
--
-- Name: basic_info_merchantsetting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_merchantsetting_id_seq', 1, true);
--
-- Name: basic_info_product_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_product_id_seq', 22680, true);
--
-- Name: basic_info_productcategory_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_productcategory_id_seq', 1, true);
--
-- Name: basic_info_quickinput_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_quickinput_id_seq', 2228, true);
--
-- Name: basic_info_supplier_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_supplier_id_seq', 2, true);
--
-- Name: basic_info_userprofile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_userprofile_id_seq', 5, true);
--
-- Name: basic_info_vehicletransportrecord_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_vehicletransportrecord_id_seq', 1, false);
--
-- Name: basic_info_vehicletype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_vehicletype_id_seq', 1, false);
--
-- Name: basic_info_warehouse_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.basic_info_warehouse_id_seq', 5, true);
--
-- Name: business_balancechangerecord_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_balancechangerecord_id_seq', 27, true);
--
-- Name: business_customerbalance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_customerbalance_id_seq', 3, true);
--
-- Name: business_paymentorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_paymentorder_id_seq', 1, true);
--
-- Name: business_purchaseorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_purchaseorderitem_id_seq', 54, true);
--
-- Name: business_purchasereturnorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_purchasereturnorder_id_seq', 4, true);
--
-- Name: business_purchasereturnorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_purchasereturnorderitem_id_seq', 4, true);
--
-- Name: business_receiptorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_receiptorder_id_seq', 4, true);
--
-- Name: business_salesorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_salesorder_id_seq', 15, true);
--
-- Name: business_salesorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_salesorderitem_id_seq', 23, true);
--
-- Name: business_salesreturnorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_salesreturnorder_id_seq', 10, true);
--
-- Name: business_salesreturnorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_salesreturnorderitem_id_seq', 10, true);
--
-- Name: business_supplierbalance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.business_supplierbalance_id_seq', 2, true);
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.django_admin_log_id_seq', 468, true);
--
-- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.django_content_type_id_seq', 56, true);
--
-- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.django_migrations_id_seq', 117, true);
--
-- Name: printing_plateorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.printing_plateorder_id_seq', 80035, true);
--
-- Name: printing_printingjob_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.printing_printingjob_id_seq', 25, true);
--
-- Name: printing_printingjobbatchadvancerecord_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.printing_printingjobbatchadvancerecord_id_seq', 5, true);
--
-- Name: printing_printingjobbatchadvancerecord_printing_jobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.printing_printingjobbatchadvancerecord_printing_jobs_id_seq', 11, true);
--
-- Name: printing_printingorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.printing_printingorder_id_seq', 26, true);
--
-- Name: state_log_parameter_record_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.state_log_parameter_record_id_seq', 55, true);
--
-- Name: stateflow_order_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stateflow_order_id_seq', 75, true);
--
-- Name: stateflow_orderstatelog_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stateflow_orderstatelog_id_seq', 102, 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', 394, true);
--
-- Name: stock_stockchangerecord_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stock_stockchangerecord_id_seq', 44, true);
--
-- Name: stock_stockfreeze_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stock_stockfreeze_id_seq', 1, false);
--
-- Name: stock_stocksnapshot_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stock_stocksnapshot_id_seq', 37, true);
--
-- Name: stock_transferorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stock_transferorder_id_seq', 1, false);
--
-- Name: stock_transferorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.stock_transferorderitem_id_seq', 1, false);
--
-- Name: api_data_sync api_data_sync_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.api_data_sync
ADD CONSTRAINT api_data_sync_pkey PRIMARY KEY (id);
--
-- Name: api_uploaded_file api_uploaded_file_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.api_uploaded_file
ADD CONSTRAINT api_uploaded_file_pkey PRIMARY KEY (id);
--
-- Name: auth_group auth_group_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_group
ADD CONSTRAINT auth_group_name_key UNIQUE (name);
--
-- Name: auth_group_permissions auth_group_permissions_group_id_permission_id_0cd325b0_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_group_permissions
ADD CONSTRAINT auth_group_permissions_group_id_permission_id_0cd325b0_uniq UNIQUE (group_id, permission_id);
--
-- Name: auth_group_permissions auth_group_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_group_permissions
ADD CONSTRAINT auth_group_permissions_pkey PRIMARY KEY (id);
--
-- Name: auth_group auth_group_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_group
ADD CONSTRAINT auth_group_pkey PRIMARY KEY (id);
--
-- Name: auth_permission auth_permission_content_type_id_codename_01ab375a_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_permission
ADD CONSTRAINT auth_permission_content_type_id_codename_01ab375a_uniq UNIQUE (content_type_id, codename);
--
-- Name: auth_permission auth_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_permission
ADD CONSTRAINT auth_permission_pkey PRIMARY KEY (id);
--
-- Name: auth_user_groups auth_user_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_groups
ADD CONSTRAINT auth_user_groups_pkey PRIMARY KEY (id);
--
-- Name: auth_user_groups auth_user_groups_user_id_group_id_94350c0c_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_groups
ADD CONSTRAINT auth_user_groups_user_id_group_id_94350c0c_uniq UNIQUE (user_id, group_id);
--
-- Name: auth_user auth_user_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user
ADD CONSTRAINT auth_user_pkey PRIMARY KEY (id);
--
-- Name: auth_user_user_permissions auth_user_user_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_user_permissions
ADD CONSTRAINT auth_user_user_permissions_pkey PRIMARY KEY (id);
--
-- Name: auth_user_user_permissions auth_user_user_permissions_user_id_permission_id_14a6b632_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_user_permissions
ADD CONSTRAINT auth_user_user_permissions_user_id_permission_id_14a6b632_uniq UNIQUE (user_id, permission_id);
--
-- Name: auth_user auth_user_username_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user
ADD CONSTRAINT auth_user_username_key UNIQUE (username);
--
-- Name: basic_info_bankaccount basic_info_bankaccount_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_bankaccount
ADD CONSTRAINT basic_info_bankaccount_pkey PRIMARY KEY (id);
--
-- Name: basic_info_customer basic_info_customer_mdy_uid_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer
ADD CONSTRAINT basic_info_customer_mdy_uid_key UNIQUE (mdy_uid);
--
-- Name: basic_info_customer basic_info_customer_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer
ADD CONSTRAINT basic_info_customer_pkey PRIMARY KEY (id);
--
-- Name: basic_info_customer_visible_employees basic_info_customer_visi_customer_id_employee_id_7be5046b_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer_visible_employees
ADD CONSTRAINT basic_info_customer_visi_customer_id_employee_id_7be5046b_uniq UNIQUE (customer_id, employee_id);
--
-- Name: basic_info_customer_visible_employees basic_info_customer_visible_employees_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer_visible_employees
ADD CONSTRAINT basic_info_customer_visible_employees_pkey PRIMARY KEY (id);
--
-- Name: basic_info_deviceinfo basic_info_deviceinfo_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_deviceinfo
ADD CONSTRAINT basic_info_deviceinfo_pkey PRIMARY KEY (id);
--
-- Name: basic_info_employee basic_info_employee_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employee
ADD CONSTRAINT basic_info_employee_pkey PRIMARY KEY (id);
--
-- Name: basic_info_employee basic_info_employee_sys_user_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employee
ADD CONSTRAINT basic_info_employee_sys_user_id_key UNIQUE (sys_user_id);
--
-- Name: basic_info_employeetype basic_info_employeetype_merchant_id_title_cdb313e8_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employeetype
ADD CONSTRAINT basic_info_employeetype_merchant_id_title_cdb313e8_uniq UNIQUE (merchant_id, title);
--
-- Name: basic_info_employeetype basic_info_employeetype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employeetype
ADD CONSTRAINT basic_info_employeetype_pkey PRIMARY KEY (id);
--
-- Name: basic_info_merchant basic_info_merchant_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_merchant
ADD CONSTRAINT basic_info_merchant_pkey PRIMARY KEY (id);
--
-- Name: basic_info_merchantsetting basic_info_merchantsetting_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_merchantsetting
ADD CONSTRAINT basic_info_merchantsetting_pkey PRIMARY KEY (id);
--
-- Name: basic_info_product basic_info_product_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_product
ADD CONSTRAINT basic_info_product_pkey PRIMARY KEY (id);
--
-- Name: basic_info_productcategory basic_info_productcategory_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_productcategory
ADD CONSTRAINT basic_info_productcategory_pkey PRIMARY KEY (id);
--
-- Name: basic_info_quickinput basic_info_quickinput_name_group_68f4787a_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_quickinput
ADD CONSTRAINT basic_info_quickinput_name_group_68f4787a_uniq UNIQUE (name, "group");
--
-- Name: basic_info_quickinput basic_info_quickinput_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_quickinput
ADD CONSTRAINT basic_info_quickinput_pkey PRIMARY KEY (id);
--
-- Name: basic_info_supplier basic_info_supplier_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_supplier
ADD CONSTRAINT basic_info_supplier_pkey PRIMARY KEY (id);
--
-- Name: basic_info_userprofile basic_info_userprofile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_userprofile
ADD CONSTRAINT basic_info_userprofile_pkey PRIMARY KEY (id);
--
-- Name: basic_info_userprofile basic_info_userprofile_user_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_userprofile
ADD CONSTRAINT basic_info_userprofile_user_id_key UNIQUE (user_id);
--
-- Name: basic_info_vehicletransportrecord basic_info_vehicletransportrecord_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_vehicletransportrecord
ADD CONSTRAINT basic_info_vehicletransportrecord_pkey PRIMARY KEY (id);
--
-- Name: basic_info_vehicletype basic_info_vehicletype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_vehicletype
ADD CONSTRAINT basic_info_vehicletype_pkey PRIMARY KEY (id);
--
-- Name: basic_info_warehouse basic_info_warehouse_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_warehouse
ADD CONSTRAINT basic_info_warehouse_pkey PRIMARY KEY (id);
--
-- Name: business_balancechangerecord business_balancechangerecord_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_balancechangerecord
ADD CONSTRAINT business_balancechangerecord_pkey PRIMARY KEY (id);
--
-- Name: business_customerbalance business_customerbalance_merchant_id_customer_id_2a8343f7_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_customerbalance
ADD CONSTRAINT business_customerbalance_merchant_id_customer_id_2a8343f7_uniq UNIQUE (merchant_id, customer_id);
--
-- Name: business_customerbalance business_customerbalance_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_customerbalance
ADD CONSTRAINT business_customerbalance_pkey PRIMARY KEY (id);
--
-- Name: business_paymentorder business_paymentorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_paymentorder
ADD CONSTRAINT business_paymentorder_pkey PRIMARY KEY (id);
--
-- Name: business_purchaseorderitem business_purchaseorderitem_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorderitem
ADD CONSTRAINT business_purchaseorderitem_pkey PRIMARY KEY (id);
--
-- Name: business_purchasereturnorder business_purchasereturnorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorder
ADD CONSTRAINT business_purchasereturnorder_pkey PRIMARY KEY (id);
--
-- Name: business_purchasereturnorderitem business_purchasereturnorderitem_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorderitem
ADD CONSTRAINT business_purchasereturnorderitem_pkey PRIMARY KEY (id);
--
-- Name: business_receiptorder business_receiptorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_receiptorder
ADD CONSTRAINT business_receiptorder_pkey PRIMARY KEY (id);
--
-- Name: business_salesorder business_salesorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorder
ADD CONSTRAINT business_salesorder_pkey PRIMARY KEY (id);
--
-- Name: business_salesorderitem business_salesorderitem_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorderitem
ADD CONSTRAINT business_salesorderitem_pkey PRIMARY KEY (id);
--
-- Name: business_salesreturnorder business_salesreturnorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorder
ADD CONSTRAINT business_salesreturnorder_pkey PRIMARY KEY (id);
--
-- Name: business_salesreturnorderitem business_salesreturnorderitem_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorderitem
ADD CONSTRAINT business_salesreturnorderitem_pkey PRIMARY KEY (id);
--
-- Name: business_supplierbalance business_supplierbalance_merchant_id_supplier_id_2d9400c1_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_supplierbalance
ADD CONSTRAINT business_supplierbalance_merchant_id_supplier_id_2d9400c1_uniq UNIQUE (merchant_id, supplier_id);
--
-- Name: business_supplierbalance business_supplierbalance_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_supplierbalance
ADD CONSTRAINT business_supplierbalance_pkey PRIMARY KEY (id);
--
-- Name: django_admin_log django_admin_log_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.django_admin_log
ADD CONSTRAINT django_admin_log_pkey PRIMARY KEY (id);
--
-- Name: django_content_type django_content_type_app_label_model_76bd3d3b_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.django_content_type
ADD CONSTRAINT django_content_type_app_label_model_76bd3d3b_uniq UNIQUE (app_label, model);
--
-- Name: django_content_type django_content_type_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.django_content_type
ADD CONSTRAINT django_content_type_pkey PRIMARY KEY (id);
--
-- Name: django_migrations django_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.django_migrations
ADD CONSTRAINT django_migrations_pkey PRIMARY KEY (id);
--
-- Name: django_session django_session_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.django_session
ADD CONSTRAINT django_session_pkey PRIMARY KEY (session_key);
--
-- Name: printing_plateorder printing_plateorder_business_object_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_plateorder
ADD CONSTRAINT printing_plateorder_business_object_id_key UNIQUE (business_object_id);
--
-- Name: printing_plateorder printing_plateorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_plateorder
ADD CONSTRAINT printing_plateorder_pkey PRIMARY KEY (id);
--
-- Name: printing_printingjob printing_printingjob_business_object_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjob
ADD CONSTRAINT printing_printingjob_business_object_id_key UNIQUE (business_object_id);
--
-- Name: printing_printingjob printing_printingjob_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjob
ADD CONSTRAINT printing_printingjob_pkey PRIMARY KEY (id);
--
-- Name: printing_printingjobbatchadvancerecord_printing_jobs printing_printingjobbatc_printingjobbatchadvancer_a6aac755_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord_printing_jobs
ADD CONSTRAINT printing_printingjobbatc_printingjobbatchadvancer_a6aac755_uniq UNIQUE (printingjobbatchadvancerecord_id, printingjob_id);
--
-- Name: printing_printingjobbatchadvancerecord printing_printingjobbatchadvancerecord_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord
ADD CONSTRAINT printing_printingjobbatchadvancerecord_pkey PRIMARY KEY (id);
--
-- Name: printing_printingjobbatchadvancerecord_printing_jobs printing_printingjobbatchadvancerecord_printing_jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord_printing_jobs
ADD CONSTRAINT printing_printingjobbatchadvancerecord_printing_jobs_pkey PRIMARY KEY (id);
--
-- Name: printing_printingorder printing_printingorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingorder
ADD CONSTRAINT printing_printingorder_pkey PRIMARY KEY (id);
--
-- Name: state_log_parameter_record state_log_parameter_record_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.state_log_parameter_record
ADD CONSTRAINT state_log_parameter_record_pkey PRIMARY KEY (id);
--
-- Name: business_object stateflow_order_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_object
ADD CONSTRAINT stateflow_order_pkey PRIMARY KEY (id);
--
-- Name: state_flow_record stateflow_orderstatelog_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.state_flow_record
ADD CONSTRAINT stateflow_orderstatelog_pkey PRIMARY KEY (id);
--
-- Name: stateflow_process stateflow_process_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_process
ADD CONSTRAINT stateflow_process_pkey PRIMARY KEY (id);
--
-- Name: stateflow_processnode stateflow_processnode_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_processnode
ADD CONSTRAINT stateflow_processnode_pkey PRIMARY KEY (id);
--
-- Name: stateflow_processnode stateflow_processnode_process_id_order_d27bc733_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_processnode
ADD CONSTRAINT stateflow_processnode_process_id_order_d27bc733_uniq UNIQUE (process_id, "order");
--
-- Name: stateflow_state_parameters stateflow_state_paramete_state_id_stateparameter__91e23688_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_state_parameters
ADD CONSTRAINT stateflow_state_paramete_state_id_stateparameter__91e23688_uniq UNIQUE (state_id, stateparameter_id);
--
-- Name: stateflow_state_parameters stateflow_state_parameters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_state_parameters
ADD CONSTRAINT stateflow_state_parameters_pkey PRIMARY KEY (id);
--
-- Name: stateflow_state stateflow_state_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_state
ADD CONSTRAINT stateflow_state_pkey PRIMARY KEY (id);
--
-- Name: stateflow_stateparameter stateflow_stateparameter_key_2174542b_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_stateparameter
ADD CONSTRAINT stateflow_stateparameter_key_2174542b_uniq UNIQUE (key);
--
-- Name: stateflow_stateparameter stateflow_stateparameter_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_stateparameter
ADD CONSTRAINT stateflow_stateparameter_pkey PRIMARY KEY (id);
--
-- Name: stock_inventory stock_inventory_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_inventory
ADD CONSTRAINT stock_inventory_pkey PRIMARY KEY (id);
--
-- Name: stock_inventory stock_inventory_product_id_warehouse_id_b146267d_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_inventory
ADD CONSTRAINT stock_inventory_product_id_warehouse_id_b146267d_uniq UNIQUE (product_id, warehouse_id);
--
-- Name: business_purchaseorder stock_purchaseorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorder
ADD CONSTRAINT stock_purchaseorder_pkey PRIMARY KEY (id);
--
-- Name: stock_stockchangedetail stock_stockchangedetail_consume_with_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangedetail
ADD CONSTRAINT stock_stockchangedetail_consume_with_id_key UNIQUE (consume_with_id);
--
-- Name: stock_stockchangedetail stock_stockchangedetail_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangedetail
ADD CONSTRAINT stock_stockchangedetail_pkey PRIMARY KEY (id);
--
-- Name: stock_stockchangerecord stock_stockchangerecord_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangerecord
ADD CONSTRAINT stock_stockchangerecord_pkey PRIMARY KEY (id);
--
-- Name: stock_stockfreeze stock_stockfreeze_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_pkey PRIMARY KEY (id);
--
-- Name: stock_stocksnapshot stock_stocksnapshot_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stocksnapshot
ADD CONSTRAINT stock_stocksnapshot_pkey PRIMARY KEY (id);
--
-- Name: stock_transferorder stock_transferorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_pkey PRIMARY KEY (id);
--
-- Name: stock_transferorderitem stock_transferorderitem_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorderitem
ADD CONSTRAINT stock_transferorderitem_pkey PRIMARY KEY (id);
--
-- Name: api_uploaded_file_owner_id_f2e6fe5c; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX api_uploaded_file_owner_id_f2e6fe5c ON public.api_uploaded_file USING btree (owner_id);
--
-- Name: auth_group_name_a6ea08ec_like; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_group_name_a6ea08ec_like ON public.auth_group USING btree (name varchar_pattern_ops);
--
-- Name: auth_group_permissions_group_id_b120cbf9; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_group_permissions_group_id_b120cbf9 ON public.auth_group_permissions USING btree (group_id);
--
-- Name: auth_group_permissions_permission_id_84c5c92e; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_group_permissions_permission_id_84c5c92e ON public.auth_group_permissions USING btree (permission_id);
--
-- Name: auth_permission_content_type_id_2f476e4b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_permission_content_type_id_2f476e4b ON public.auth_permission USING btree (content_type_id);
--
-- Name: auth_user_groups_group_id_97559544; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_user_groups_group_id_97559544 ON public.auth_user_groups USING btree (group_id);
--
-- Name: auth_user_groups_user_id_6a12ed8b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_user_groups_user_id_6a12ed8b ON public.auth_user_groups USING btree (user_id);
--
-- Name: auth_user_user_permissions_permission_id_1fbb5f2c; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_user_user_permissions_permission_id_1fbb5f2c ON public.auth_user_user_permissions USING btree (permission_id);
--
-- Name: auth_user_user_permissions_user_id_a95ead1b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_user_user_permissions_user_id_a95ead1b ON public.auth_user_user_permissions USING btree (user_id);
--
-- Name: auth_user_username_6821ab7c_like; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX auth_user_username_6821ab7c_like ON public.auth_user USING btree (username varchar_pattern_ops);
--
-- Name: balance_change_source_idx; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX balance_change_source_idx ON public.business_balancechangerecord USING btree (merchant_id, source_type, source_id);
--
-- Name: basic_info_bankaccount_merchant_id_0dc91094; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_bankaccount_merchant_id_0dc91094 ON public.basic_info_bankaccount USING btree (merchant_id);
--
-- Name: basic_info_customer_created_by_id_e4898d6a; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_customer_created_by_id_e4898d6a ON public.basic_info_customer USING btree (created_by_id);
--
-- Name: basic_info_customer_mdy_uid_6364401c_like; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_customer_mdy_uid_6364401c_like ON public.basic_info_customer USING btree (mdy_uid varchar_pattern_ops);
--
-- Name: basic_info_customer_merchant_id_c342572c; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_customer_merchant_id_c342572c ON public.basic_info_customer USING btree (merchant_id);
--
-- Name: basic_info_customer_visible_employees_customer_id_a05ec7e2; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_customer_visible_employees_customer_id_a05ec7e2 ON public.basic_info_customer_visible_employees USING btree (customer_id);
--
-- Name: basic_info_customer_visible_employees_employee_id_fb51a1e0; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_customer_visible_employees_employee_id_fb51a1e0 ON public.basic_info_customer_visible_employees USING btree (employee_id);
--
-- Name: basic_info_deviceinfo_merchant_id_8ba16bd2; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_deviceinfo_merchant_id_8ba16bd2 ON public.basic_info_deviceinfo USING btree (merchant_id);
--
-- Name: basic_info_employee_merchant_id_508e9a14; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_employee_merchant_id_508e9a14 ON public.basic_info_employee USING btree (merchant_id);
--
-- Name: basic_info_employee_position_id_0f790d25; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_employee_position_id_0f790d25 ON public.basic_info_employee USING btree (position_id);
--
-- Name: basic_info_employeetype_merchant_id_cf26fc93; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_employeetype_merchant_id_cf26fc93 ON public.basic_info_employeetype USING btree (merchant_id);
--
-- Name: basic_info_merchantsetting_merchant_id_4ec5ec48; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_merchantsetting_merchant_id_4ec5ec48 ON public.basic_info_merchantsetting USING btree (merchant_id);
--
-- Name: basic_info_product_category_id_2bbbe6be; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_product_category_id_2bbbe6be ON public.basic_info_product USING btree (category_id);
--
-- Name: basic_info_product_merchant_id_16465f25; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_product_merchant_id_16465f25 ON public.basic_info_product USING btree (merchant_id);
--
-- Name: basic_info_productcategory_merchant_id_026ead5b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_productcategory_merchant_id_026ead5b ON public.basic_info_productcategory USING btree (merchant_id);
--
-- Name: basic_info_supplier_merchant_id_7b0fafc0; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_supplier_merchant_id_7b0fafc0 ON public.basic_info_supplier USING btree (merchant_id);
--
-- Name: basic_info_userprofile_merchant_id_4c25789b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_userprofile_merchant_id_4c25789b ON public.basic_info_userprofile USING btree (merchant_id);
--
-- Name: basic_info_vehicletransportrecord_merchant_id_da543289; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_vehicletransportrecord_merchant_id_da543289 ON public.basic_info_vehicletransportrecord USING btree (merchant_id);
--
-- Name: basic_info_vehicletransportrecord_vehicle_type_id_ca9c2c9a; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_vehicletransportrecord_vehicle_type_id_ca9c2c9a ON public.basic_info_vehicletransportrecord USING btree (vehicle_type_id);
--
-- Name: basic_info_vehicletype_merchant_id_834e9500; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_vehicletype_merchant_id_834e9500 ON public.basic_info_vehicletype USING btree (merchant_id);
--
-- Name: basic_info_warehouse_merchant_id_d5bb4b76; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX basic_info_warehouse_merchant_id_d5bb4b76 ON public.basic_info_warehouse USING btree (merchant_id);
--
-- Name: business_balancechangerecord_customer_id_72613c19; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_balancechangerecord_customer_id_72613c19 ON public.business_balancechangerecord USING btree (customer_id);
--
-- Name: business_balancechangerecord_merchant_id_94bc6397; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_balancechangerecord_merchant_id_94bc6397 ON public.business_balancechangerecord USING btree (merchant_id);
--
-- Name: business_balancechangerecord_supplier_id_08930ba0; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_balancechangerecord_supplier_id_08930ba0 ON public.business_balancechangerecord USING btree (supplier_id);
--
-- Name: business_customerbalance_customer_id_f5b3fbca; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_customerbalance_customer_id_f5b3fbca ON public.business_customerbalance USING btree (customer_id);
--
-- Name: business_customerbalance_merchant_id_d6252af9; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_customerbalance_merchant_id_d6252af9 ON public.business_customerbalance USING btree (merchant_id);
--
-- Name: business_object_content_type_id_94dccf29; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_object_content_type_id_94dccf29 ON public.business_object USING btree (content_type_id);
--
-- Name: business_paymentorder_bank_account_id_0de1edcc; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_paymentorder_bank_account_id_0de1edcc ON public.business_paymentorder USING btree (bank_account_id);
--
-- Name: business_paymentorder_merchant_id_d161c5be; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_paymentorder_merchant_id_d161c5be ON public.business_paymentorder USING btree (merchant_id);
--
-- Name: business_paymentorder_operator_id_6922977f; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_paymentorder_operator_id_6922977f ON public.business_paymentorder USING btree (operator_id);
--
-- Name: business_paymentorder_supplier_id_1e5a469f; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_paymentorder_supplier_id_1e5a469f ON public.business_paymentorder USING btree (supplier_id);
--
-- Name: business_purchaseorder_operator_id_759fe141; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchaseorder_operator_id_759fe141 ON public.business_purchaseorder USING btree (operator_id);
--
-- Name: business_purchaseorder_warehouse_id_7aad4bbe; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchaseorder_warehouse_id_7aad4bbe ON public.business_purchaseorder USING btree (warehouse_id);
--
-- Name: business_purchaseorderitem_product_id_1cd637ce; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchaseorderitem_product_id_1cd637ce ON public.business_purchaseorderitem USING btree (product_id);
--
-- Name: business_purchaseorderitem_purchase_order_id_329d998b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchaseorderitem_purchase_order_id_329d998b ON public.business_purchaseorderitem USING btree (purchase_order_id);
--
-- Name: business_purchasereturnord_purchase_return_order_id_7d64b30f; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchasereturnord_purchase_return_order_id_7d64b30f ON public.business_purchasereturnorderitem USING btree (purchase_return_order_id);
--
-- Name: business_purchasereturnorder_merchant_id_374baf57; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchasereturnorder_merchant_id_374baf57 ON public.business_purchasereturnorder USING btree (merchant_id);
--
-- Name: business_purchasereturnorder_operator_id_6f839c67; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchasereturnorder_operator_id_6f839c67 ON public.business_purchasereturnorder USING btree (operator_id);
--
-- Name: business_purchasereturnorder_purchase_order_id_b6f00a8d; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchasereturnorder_purchase_order_id_b6f00a8d ON public.business_purchasereturnorder USING btree (purchase_order_id);
--
-- Name: business_purchasereturnorder_supplier_id_985ce5d0; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchasereturnorder_supplier_id_985ce5d0 ON public.business_purchasereturnorder USING btree (supplier_id);
--
-- Name: business_purchasereturnorder_warehouse_id_c8edb73b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchasereturnorder_warehouse_id_c8edb73b ON public.business_purchasereturnorder USING btree (warehouse_id);
--
-- Name: business_purchasereturnorderitem_product_id_66b5322d; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_purchasereturnorderitem_product_id_66b5322d ON public.business_purchasereturnorderitem USING btree (product_id);
--
-- Name: business_receiptorder_bank_account_id_c29219be; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_receiptorder_bank_account_id_c29219be ON public.business_receiptorder USING btree (bank_account_id);
--
-- Name: business_receiptorder_customer_id_666323a6; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_receiptorder_customer_id_666323a6 ON public.business_receiptorder USING btree (customer_id);
--
-- Name: business_receiptorder_merchant_id_1e7920b7; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_receiptorder_merchant_id_1e7920b7 ON public.business_receiptorder USING btree (merchant_id);
--
-- Name: business_receiptorder_operator_id_72eaad52; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_receiptorder_operator_id_72eaad52 ON public.business_receiptorder USING btree (operator_id);
--
-- Name: business_salesorder_customer_id_165d7e5d; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesorder_customer_id_165d7e5d ON public.business_salesorder USING btree (customer_id);
--
-- Name: business_salesorder_merchant_id_ecffa78c; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesorder_merchant_id_ecffa78c ON public.business_salesorder USING btree (merchant_id);
--
-- Name: business_salesorder_operator_id_cc3385ec; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesorder_operator_id_cc3385ec ON public.business_salesorder USING btree (operator_id);
--
-- Name: business_salesorder_warehouse_id_4a77caf8; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesorder_warehouse_id_4a77caf8 ON public.business_salesorder USING btree (warehouse_id);
--
-- Name: business_salesorderitem_printing_job_id_cadc4cb0; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesorderitem_printing_job_id_cadc4cb0 ON public.business_salesorderitem USING btree (printing_job_id);
--
-- Name: business_salesorderitem_product_id_d843ccd4; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesorderitem_product_id_d843ccd4 ON public.business_salesorderitem USING btree (product_id);
--
-- Name: business_salesorderitem_sales_order_id_931d0c9f; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesorderitem_sales_order_id_931d0c9f ON public.business_salesorderitem USING btree (sales_order_id);
--
-- Name: business_salesreturnorder_customer_id_ce2116fa; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesreturnorder_customer_id_ce2116fa ON public.business_salesreturnorder USING btree (customer_id);
--
-- Name: business_salesreturnorder_merchant_id_4b9f39b4; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesreturnorder_merchant_id_4b9f39b4 ON public.business_salesreturnorder USING btree (merchant_id);
--
-- Name: business_salesreturnorder_operator_id_bc265b54; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesreturnorder_operator_id_bc265b54 ON public.business_salesreturnorder USING btree (operator_id);
--
-- Name: business_salesreturnorder_sales_order_id_7b362aab; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesreturnorder_sales_order_id_7b362aab ON public.business_salesreturnorder USING btree (sales_order_id);
--
-- Name: business_salesreturnorder_warehouse_id_eca0b2ba; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesreturnorder_warehouse_id_eca0b2ba ON public.business_salesreturnorder USING btree (warehouse_id);
--
-- Name: business_salesreturnorderitem_product_id_c5b969ba; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesreturnorderitem_product_id_c5b969ba ON public.business_salesreturnorderitem USING btree (product_id);
--
-- Name: business_salesreturnorderitem_sales_return_order_id_820a6954; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_salesreturnorderitem_sales_return_order_id_820a6954 ON public.business_salesreturnorderitem USING btree (sales_return_order_id);
--
-- Name: business_supplierbalance_merchant_id_8ffc61a3; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_supplierbalance_merchant_id_8ffc61a3 ON public.business_supplierbalance USING btree (merchant_id);
--
-- Name: business_supplierbalance_supplier_id_084f585e; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX business_supplierbalance_supplier_id_084f585e ON public.business_supplierbalance USING btree (supplier_id);
--
-- Name: django_admin_log_content_type_id_c4bce8eb; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX django_admin_log_content_type_id_c4bce8eb ON public.django_admin_log USING btree (content_type_id);
--
-- Name: django_admin_log_user_id_c564eba6; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX django_admin_log_user_id_c564eba6 ON public.django_admin_log USING btree (user_id);
--
-- Name: django_session_expire_date_a5c62663; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX django_session_expire_date_a5c62663 ON public.django_session USING btree (expire_date);
--
-- Name: django_session_session_key_c0390e0f_like; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX django_session_session_key_c0390e0f_like ON public.django_session USING btree (session_key varchar_pattern_ops);
--
-- Name: printing_plateorder_customer_id_920c92fc; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_plateorder_customer_id_920c92fc ON public.printing_plateorder USING btree (customer_id);
--
-- Name: printing_plateorder_designer_id_4f94e8c1; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_plateorder_designer_id_4f94e8c1 ON public.printing_plateorder USING btree (designer_id);
--
-- Name: printing_plateorder_merchandiser_id_f85f2095; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_plateorder_merchandiser_id_f85f2095 ON public.printing_plateorder USING btree (merchandiser_id);
--
-- Name: printing_plateorder_salesperson_id_0d75b741; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_plateorder_salesperson_id_0d75b741 ON public.printing_plateorder USING btree (salesperson_id);
--
-- Name: printing_printingjob_printing_order_id_ca5569e7; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_printingjob_printing_order_id_ca5569e7 ON public.printing_printingjob USING btree (printing_order_id);
--
-- Name: printing_printingjob_product_id_6c4bda82; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_printingjob_product_id_6c4bda82 ON public.printing_printingjob USING btree (product_id);
--
-- Name: printing_printingjobbatcha_printing_order_id_f76a3784; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_printingjobbatcha_printing_order_id_f76a3784 ON public.printing_printingjobbatchadvancerecord USING btree (printing_order_id);
--
-- Name: printing_printingjobbatcha_printingjob_id_fd12a8bc; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_printingjobbatcha_printingjob_id_fd12a8bc ON public.printing_printingjobbatchadvancerecord_printing_jobs USING btree (printingjob_id);
--
-- Name: printing_printingjobbatcha_printingjobbatchadvancerec_304a04ae; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_printingjobbatcha_printingjobbatchadvancerec_304a04ae ON public.printing_printingjobbatchadvancerecord_printing_jobs USING btree (printingjobbatchadvancerecord_id);
--
-- Name: printing_printingjobbatchadvancerecord_created_by_id_835b510e; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_printingjobbatchadvancerecord_created_by_id_835b510e ON public.printing_printingjobbatchadvancerecord USING btree (created_by_id);
--
-- Name: printing_printingjobbatchadvancerecord_state_id_de366c02; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_printingjobbatchadvancerecord_state_id_de366c02 ON public.printing_printingjobbatchadvancerecord USING btree (state_id);
--
-- Name: printing_printingorder_customer_id_2f5affa4; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_printingorder_customer_id_2f5affa4 ON public.printing_printingorder USING btree (customer_id);
--
-- Name: printing_printingorder_process_id_087e5007; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX printing_printingorder_process_id_087e5007 ON public.printing_printingorder USING btree (process_id);
--
-- Name: state_log_p_state_l_8cc99f_idx; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX state_log_p_state_l_8cc99f_idx ON public.state_log_parameter_record USING btree (state_log_id, created_at);
--
-- Name: state_log_parameter_record_state_log_id_f233799b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX state_log_parameter_record_state_log_id_f233799b ON public.state_log_parameter_record USING btree (state_log_id);
--
-- Name: stateflow_order_process_id_8c0bb6c0; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_order_process_id_8c0bb6c0 ON public.business_object USING btree (process_id);
--
-- Name: stateflow_orderstatelog_completed_by_id_2f822f5b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_orderstatelog_completed_by_id_2f822f5b ON public.state_flow_record USING btree (completed_by_id);
--
-- Name: stateflow_orderstatelog_order_id_4d729f58; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_orderstatelog_order_id_4d729f58 ON public.state_flow_record USING btree (business_object_id);
--
-- Name: stateflow_orderstatelog_state_id_70d1101d; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_orderstatelog_state_id_70d1101d ON public.state_flow_record USING btree (state_id);
--
-- Name: stateflow_processnode_process_id_146d7cc7; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_processnode_process_id_146d7cc7 ON public.stateflow_processnode USING btree (process_id);
--
-- Name: stateflow_processnode_state_id_18e2868e; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_processnode_state_id_18e2868e ON public.stateflow_processnode USING btree (state_id);
--
-- Name: stateflow_state_parameters_state_id_1888c236; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_state_parameters_state_id_1888c236 ON public.stateflow_state_parameters USING btree (state_id);
--
-- Name: stateflow_state_parameters_stateparameter_id_2a4745a3; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_state_parameters_stateparameter_id_2a4745a3 ON public.stateflow_state_parameters USING btree (stateparameter_id);
--
-- Name: stateflow_stateparameter_key_2174542b_like; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stateflow_stateparameter_key_2174542b_like ON public.stateflow_stateparameter USING btree (key varchar_pattern_ops);
--
-- Name: stock_inventory_merchant_id_474e786a; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_inventory_merchant_id_474e786a ON public.stock_inventory USING btree (merchant_id);
--
-- Name: stock_inventory_product_id_87e1d4a4; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_inventory_product_id_87e1d4a4 ON public.stock_inventory USING btree (product_id);
--
-- Name: stock_inventory_warehouse_id_38e88ef3; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_inventory_warehouse_id_38e88ef3 ON public.stock_inventory USING btree (warehouse_id);
--
-- Name: stock_purchaseorder_merchant_id_5175381b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_purchaseorder_merchant_id_5175381b ON public.business_purchaseorder USING btree (merchant_id);
--
-- Name: stock_purchaseorder_supplier_id_bc7a300c; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_purchaseorder_supplier_id_bc7a300c ON public.business_purchaseorder USING btree (supplier_id);
--
-- Name: stock_stockchangedetail_merchant_id_222521fc; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockchangedetail_merchant_id_222521fc ON public.stock_stockchangedetail USING btree (merchant_id);
--
-- Name: stock_stockchangedetail_product_id_a013d432; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockchangedetail_product_id_a013d432 ON public.stock_stockchangedetail USING btree (product_id);
--
-- Name: stock_stockchangedetail_stock_change_record_id_b388d2f0; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockchangedetail_stock_change_record_id_b388d2f0 ON public.stock_stockchangedetail USING btree (stock_change_record_id);
--
-- Name: stock_stockchangerecord_created_by_id_7317d383; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockchangerecord_created_by_id_7317d383 ON public.stock_stockchangerecord USING btree (created_by_id);
--
-- Name: stock_stockchangerecord_merchant_id_777ab07d; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockchangerecord_merchant_id_777ab07d ON public.stock_stockchangerecord USING btree (merchant_id);
--
-- Name: stock_stockchangerecord_warehouse_id_c7a706de; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockchangerecord_warehouse_id_c7a706de ON public.stock_stockchangerecord USING btree (warehouse_id);
--
-- Name: stock_stockfreeze_cancelled_by_id_f36ed57b; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockfreeze_cancelled_by_id_f36ed57b ON public.stock_stockfreeze USING btree (cancelled_by_id);
--
-- Name: stock_stockfreeze_completed_by_id_feb5742a; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockfreeze_completed_by_id_feb5742a ON public.stock_stockfreeze USING btree (completed_by_id);
--
-- Name: stock_stockfreeze_frozen_by_id_747bed1c; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockfreeze_frozen_by_id_747bed1c ON public.stock_stockfreeze USING btree (frozen_by_id);
--
-- Name: stock_stockfreeze_merchant_id_778ecada; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockfreeze_merchant_id_778ecada ON public.stock_stockfreeze USING btree (merchant_id);
--
-- Name: stock_stockfreeze_product_id_0915f126; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockfreeze_product_id_0915f126 ON public.stock_stockfreeze USING btree (product_id);
--
-- Name: stock_stockfreeze_stock_detail_id_3c1f49b0; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockfreeze_stock_detail_id_3c1f49b0 ON public.stock_stockfreeze USING btree (stock_detail_id);
--
-- Name: stock_stockfreeze_warehouse_id_7cd7f629; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stockfreeze_warehouse_id_7cd7f629 ON public.stock_stockfreeze USING btree (warehouse_id);
--
-- Name: stock_stocksnapshot_merchant_id_345af02e; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stocksnapshot_merchant_id_345af02e ON public.stock_stocksnapshot USING btree (merchant_id);
--
-- Name: stock_stocksnapshot_product_id_f6e948d7; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stocksnapshot_product_id_f6e948d7 ON public.stock_stocksnapshot USING btree (product_id);
--
-- Name: stock_stocksnapshot_stock_change_record_id_a12e8dc3; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stocksnapshot_stock_change_record_id_a12e8dc3 ON public.stock_stocksnapshot USING btree (stock_change_record_id);
--
-- Name: stock_stocksnapshot_warehouse_id_469ad069; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_stocksnapshot_warehouse_id_469ad069 ON public.stock_stocksnapshot USING btree (warehouse_id);
--
-- Name: stock_transferorder_created_by_id_8426a804; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorder_created_by_id_8426a804 ON public.stock_transferorder USING btree (created_by_id);
--
-- Name: stock_transferorder_from_warehouse_id_38b8aba4; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorder_from_warehouse_id_38b8aba4 ON public.stock_transferorder USING btree (from_warehouse_id);
--
-- Name: stock_transferorder_incoming_record_id_289d0a0f; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorder_incoming_record_id_289d0a0f ON public.stock_transferorder USING btree (incoming_record_id);
--
-- Name: stock_transferorder_merchant_id_34312a0d; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorder_merchant_id_34312a0d ON public.stock_transferorder USING btree (merchant_id);
--
-- Name: stock_transferorder_operator_id_4e3824e2; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorder_operator_id_4e3824e2 ON public.stock_transferorder USING btree (operator_id);
--
-- Name: stock_transferorder_outgoing_record_id_a6a0dd28; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorder_outgoing_record_id_a6a0dd28 ON public.stock_transferorder USING btree (outgoing_record_id);
--
-- Name: stock_transferorder_to_warehouse_id_e597030e; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorder_to_warehouse_id_e597030e ON public.stock_transferorder USING btree (to_warehouse_id);
--
-- Name: stock_transferorderitem_product_id_7bb0508f; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorderitem_product_id_7bb0508f ON public.stock_transferorderitem USING btree (product_id);
--
-- Name: stock_transferorderitem_transfer_order_id_333e8fab; Type: INDEX; Schema: public; Owner: postgres
--
CREATE INDEX stock_transferorderitem_transfer_order_id_333e8fab ON public.stock_transferorderitem USING btree (transfer_order_id);
--
-- Name: unique_transfer_request_per_merchant; Type: INDEX; Schema: public; Owner: postgres
--
CREATE UNIQUE INDEX unique_transfer_request_per_merchant ON public.stock_transferorder USING btree (merchant_id, request_id) WHERE (request_id IS NOT NULL);
--
-- Name: api_uploaded_file api_uploaded_file_owner_id_f2e6fe5c_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.api_uploaded_file
ADD CONSTRAINT api_uploaded_file_owner_id_f2e6fe5c_fk_auth_user_id FOREIGN KEY (owner_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_group_permissions auth_group_permissio_permission_id_84c5c92e_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_group_permissions
ADD CONSTRAINT auth_group_permissio_permission_id_84c5c92e_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_group_permissions auth_group_permissions_group_id_b120cbf9_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_group_permissions
ADD CONSTRAINT auth_group_permissions_group_id_b120cbf9_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_permission auth_permission_content_type_id_2f476e4b_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_permission
ADD CONSTRAINT auth_permission_content_type_id_2f476e4b_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_user_groups auth_user_groups_group_id_97559544_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_groups
ADD CONSTRAINT auth_user_groups_group_id_97559544_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_user_groups auth_user_groups_user_id_6a12ed8b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_groups
ADD CONSTRAINT auth_user_groups_user_id_6a12ed8b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_user_user_permissions auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_user_permissions
ADD CONSTRAINT auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: auth_user_user_permissions auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.auth_user_user_permissions
ADD CONSTRAINT auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_bankaccount basic_info_bankaccou_merchant_id_0dc91094_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_bankaccount
ADD CONSTRAINT basic_info_bankaccou_merchant_id_0dc91094_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_customer_visible_employees basic_info_customer__customer_id_a05ec7e2_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer_visible_employees
ADD CONSTRAINT basic_info_customer__customer_id_a05ec7e2_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_customer_visible_employees basic_info_customer__employee_id_fb51a1e0_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer_visible_employees
ADD CONSTRAINT basic_info_customer__employee_id_fb51a1e0_fk_basic_inf FOREIGN KEY (employee_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_customer basic_info_customer_created_by_id_e4898d6a_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer
ADD CONSTRAINT basic_info_customer_created_by_id_e4898d6a_fk_basic_inf FOREIGN KEY (created_by_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_customer basic_info_customer_merchant_id_c342572c_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_customer
ADD CONSTRAINT basic_info_customer_merchant_id_c342572c_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_deviceinfo basic_info_deviceinf_merchant_id_8ba16bd2_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_deviceinfo
ADD CONSTRAINT basic_info_deviceinf_merchant_id_8ba16bd2_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_employee basic_info_employee_merchant_id_508e9a14_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employee
ADD CONSTRAINT basic_info_employee_merchant_id_508e9a14_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_employee basic_info_employee_position_id_0f790d25_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employee
ADD CONSTRAINT basic_info_employee_position_id_0f790d25_fk_basic_inf FOREIGN KEY (position_id) REFERENCES public.basic_info_employeetype(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_employee basic_info_employee_sys_user_id_ea7739c5_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employee
ADD CONSTRAINT basic_info_employee_sys_user_id_ea7739c5_fk_auth_user_id FOREIGN KEY (sys_user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_employeetype basic_info_employeet_merchant_id_cf26fc93_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_employeetype
ADD CONSTRAINT basic_info_employeet_merchant_id_cf26fc93_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_merchantsetting basic_info_merchants_merchant_id_4ec5ec48_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_merchantsetting
ADD CONSTRAINT basic_info_merchants_merchant_id_4ec5ec48_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_product basic_info_product_category_id_2bbbe6be_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_product
ADD CONSTRAINT basic_info_product_category_id_2bbbe6be_fk_basic_inf FOREIGN KEY (category_id) REFERENCES public.basic_info_productcategory(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_product basic_info_product_merchant_id_16465f25_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_product
ADD CONSTRAINT basic_info_product_merchant_id_16465f25_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_productcategory basic_info_productca_merchant_id_026ead5b_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_productcategory
ADD CONSTRAINT basic_info_productca_merchant_id_026ead5b_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_supplier basic_info_supplier_merchant_id_7b0fafc0_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_supplier
ADD CONSTRAINT basic_info_supplier_merchant_id_7b0fafc0_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_userprofile basic_info_userprofi_merchant_id_4c25789b_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_userprofile
ADD CONSTRAINT basic_info_userprofi_merchant_id_4c25789b_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_userprofile basic_info_userprofile_user_id_ed5ab8a5_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_userprofile
ADD CONSTRAINT basic_info_userprofile_user_id_ed5ab8a5_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_vehicletransportrecord basic_info_vehicletr_merchant_id_da543289_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_vehicletransportrecord
ADD CONSTRAINT basic_info_vehicletr_merchant_id_da543289_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_vehicletransportrecord basic_info_vehicletr_vehicle_type_id_ca9c2c9a_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_vehicletransportrecord
ADD CONSTRAINT basic_info_vehicletr_vehicle_type_id_ca9c2c9a_fk_basic_inf FOREIGN KEY (vehicle_type_id) REFERENCES public.basic_info_vehicletype(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_vehicletype basic_info_vehiclety_merchant_id_834e9500_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_vehicletype
ADD CONSTRAINT basic_info_vehiclety_merchant_id_834e9500_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: basic_info_warehouse basic_info_warehouse_merchant_id_d5bb4b76_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.basic_info_warehouse
ADD CONSTRAINT basic_info_warehouse_merchant_id_d5bb4b76_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_balancechangerecord business_balancechan_customer_id_72613c19_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_balancechangerecord
ADD CONSTRAINT business_balancechan_customer_id_72613c19_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_balancechangerecord business_balancechan_merchant_id_94bc6397_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_balancechangerecord
ADD CONSTRAINT business_balancechan_merchant_id_94bc6397_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_balancechangerecord business_balancechan_supplier_id_08930ba0_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_balancechangerecord
ADD CONSTRAINT business_balancechan_supplier_id_08930ba0_fk_basic_inf FOREIGN KEY (supplier_id) REFERENCES public.basic_info_supplier(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_customerbalance business_customerbal_customer_id_f5b3fbca_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_customerbalance
ADD CONSTRAINT business_customerbal_customer_id_f5b3fbca_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_customerbalance business_customerbal_merchant_id_d6252af9_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_customerbalance
ADD CONSTRAINT business_customerbal_merchant_id_d6252af9_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_object business_object_content_type_id_94dccf29_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_object
ADD CONSTRAINT business_object_content_type_id_94dccf29_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_paymentorder business_paymentorde_bank_account_id_0de1edcc_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_paymentorder
ADD CONSTRAINT business_paymentorde_bank_account_id_0de1edcc_fk_basic_inf FOREIGN KEY (bank_account_id) REFERENCES public.basic_info_bankaccount(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_paymentorder business_paymentorde_merchant_id_d161c5be_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_paymentorder
ADD CONSTRAINT business_paymentorde_merchant_id_d161c5be_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_paymentorder business_paymentorde_operator_id_6922977f_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_paymentorder
ADD CONSTRAINT business_paymentorde_operator_id_6922977f_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_paymentorder business_paymentorde_supplier_id_1e5a469f_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_paymentorder
ADD CONSTRAINT business_paymentorde_supplier_id_1e5a469f_fk_basic_inf FOREIGN KEY (supplier_id) REFERENCES public.basic_info_supplier(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchaseorder business_purchaseord_operator_id_759fe141_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorder
ADD CONSTRAINT business_purchaseord_operator_id_759fe141_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchaseorderitem business_purchaseord_product_id_1cd637ce_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorderitem
ADD CONSTRAINT business_purchaseord_product_id_1cd637ce_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchaseorderitem business_purchaseord_purchase_order_id_329d998b_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorderitem
ADD CONSTRAINT business_purchaseord_purchase_order_id_329d998b_fk_business_ FOREIGN KEY (purchase_order_id) REFERENCES public.business_purchaseorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchaseorder business_purchaseord_warehouse_id_7aad4bbe_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorder
ADD CONSTRAINT business_purchaseord_warehouse_id_7aad4bbe_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchasereturnorder business_purchaseret_merchant_id_374baf57_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorder
ADD CONSTRAINT business_purchaseret_merchant_id_374baf57_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchasereturnorder business_purchaseret_operator_id_6f839c67_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorder
ADD CONSTRAINT business_purchaseret_operator_id_6f839c67_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchasereturnorderitem business_purchaseret_product_id_66b5322d_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorderitem
ADD CONSTRAINT business_purchaseret_product_id_66b5322d_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchasereturnorder business_purchaseret_purchase_order_id_b6f00a8d_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorder
ADD CONSTRAINT business_purchaseret_purchase_order_id_b6f00a8d_fk_business_ FOREIGN KEY (purchase_order_id) REFERENCES public.business_purchaseorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchasereturnorderitem business_purchaseret_purchase_return_orde_7d64b30f_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorderitem
ADD CONSTRAINT business_purchaseret_purchase_return_orde_7d64b30f_fk_business_ FOREIGN KEY (purchase_return_order_id) REFERENCES public.business_purchasereturnorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchasereturnorder business_purchaseret_supplier_id_985ce5d0_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorder
ADD CONSTRAINT business_purchaseret_supplier_id_985ce5d0_fk_basic_inf FOREIGN KEY (supplier_id) REFERENCES public.basic_info_supplier(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchasereturnorder business_purchaseret_warehouse_id_c8edb73b_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchasereturnorder
ADD CONSTRAINT business_purchaseret_warehouse_id_c8edb73b_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_receiptorder business_receiptorde_bank_account_id_c29219be_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_receiptorder
ADD CONSTRAINT business_receiptorde_bank_account_id_c29219be_fk_basic_inf FOREIGN KEY (bank_account_id) REFERENCES public.basic_info_bankaccount(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_receiptorder business_receiptorde_customer_id_666323a6_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_receiptorder
ADD CONSTRAINT business_receiptorde_customer_id_666323a6_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_receiptorder business_receiptorde_merchant_id_1e7920b7_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_receiptorder
ADD CONSTRAINT business_receiptorde_merchant_id_1e7920b7_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_receiptorder business_receiptorde_operator_id_72eaad52_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_receiptorder
ADD CONSTRAINT business_receiptorde_operator_id_72eaad52_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesorder business_salesorder_customer_id_165d7e5d_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorder
ADD CONSTRAINT business_salesorder_customer_id_165d7e5d_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesorder business_salesorder_merchant_id_ecffa78c_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorder
ADD CONSTRAINT business_salesorder_merchant_id_ecffa78c_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesorder business_salesorder_operator_id_cc3385ec_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorder
ADD CONSTRAINT business_salesorder_operator_id_cc3385ec_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesorder business_salesorder_warehouse_id_4a77caf8_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorder
ADD CONSTRAINT business_salesorder_warehouse_id_4a77caf8_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesorderitem business_salesorderi_printing_job_id_cadc4cb0_fk_printing_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorderitem
ADD CONSTRAINT business_salesorderi_printing_job_id_cadc4cb0_fk_printing_ FOREIGN KEY (printing_job_id) REFERENCES public.printing_printingjob(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesorderitem business_salesorderi_product_id_d843ccd4_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorderitem
ADD CONSTRAINT business_salesorderi_product_id_d843ccd4_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesorderitem business_salesorderi_sales_order_id_931d0c9f_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesorderitem
ADD CONSTRAINT business_salesorderi_sales_order_id_931d0c9f_fk_business_ FOREIGN KEY (sales_order_id) REFERENCES public.business_salesorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesreturnorder business_salesreturn_customer_id_ce2116fa_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorder
ADD CONSTRAINT business_salesreturn_customer_id_ce2116fa_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesreturnorder business_salesreturn_merchant_id_4b9f39b4_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorder
ADD CONSTRAINT business_salesreturn_merchant_id_4b9f39b4_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesreturnorder business_salesreturn_operator_id_bc265b54_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorder
ADD CONSTRAINT business_salesreturn_operator_id_bc265b54_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesreturnorderitem business_salesreturn_product_id_c5b969ba_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorderitem
ADD CONSTRAINT business_salesreturn_product_id_c5b969ba_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesreturnorder business_salesreturn_sales_order_id_7b362aab_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorder
ADD CONSTRAINT business_salesreturn_sales_order_id_7b362aab_fk_business_ FOREIGN KEY (sales_order_id) REFERENCES public.business_salesorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesreturnorderitem business_salesreturn_sales_return_order_i_820a6954_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorderitem
ADD CONSTRAINT business_salesreturn_sales_return_order_i_820a6954_fk_business_ FOREIGN KEY (sales_return_order_id) REFERENCES public.business_salesreturnorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_salesreturnorder business_salesreturn_warehouse_id_eca0b2ba_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_salesreturnorder
ADD CONSTRAINT business_salesreturn_warehouse_id_eca0b2ba_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_supplierbalance business_supplierbal_merchant_id_8ffc61a3_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_supplierbalance
ADD CONSTRAINT business_supplierbal_merchant_id_8ffc61a3_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_supplierbalance business_supplierbal_supplier_id_084f585e_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_supplierbalance
ADD CONSTRAINT business_supplierbal_supplier_id_084f585e_fk_basic_inf FOREIGN KEY (supplier_id) REFERENCES public.basic_info_supplier(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: django_admin_log django_admin_log_content_type_id_c4bce8eb_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.django_admin_log
ADD CONSTRAINT django_admin_log_content_type_id_c4bce8eb_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: django_admin_log django_admin_log_user_id_c564eba6_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.django_admin_log
ADD CONSTRAINT django_admin_log_user_id_c564eba6_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: state_flow_record order_state_log_business_object_id_f642bfbd_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.state_flow_record
ADD CONSTRAINT order_state_log_business_object_id_f642bfbd_fk_business_ FOREIGN KEY (business_object_id) REFERENCES public.business_object(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_plateorder printing_plateorder_business_object_id_303b8c81_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_plateorder
ADD CONSTRAINT printing_plateorder_business_object_id_303b8c81_fk_business_ FOREIGN KEY (business_object_id) REFERENCES public.business_object(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_plateorder printing_plateorder_customer_id_920c92fc_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_plateorder
ADD CONSTRAINT printing_plateorder_customer_id_920c92fc_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_plateorder printing_plateorder_designer_id_4f94e8c1_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_plateorder
ADD CONSTRAINT printing_plateorder_designer_id_4f94e8c1_fk_basic_inf FOREIGN KEY (designer_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_plateorder printing_plateorder_merchandiser_id_f85f2095_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_plateorder
ADD CONSTRAINT printing_plateorder_merchandiser_id_f85f2095_fk_basic_inf FOREIGN KEY (merchandiser_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_plateorder printing_plateorder_salesperson_id_0d75b741_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_plateorder
ADD CONSTRAINT printing_plateorder_salesperson_id_0d75b741_fk_basic_inf FOREIGN KEY (salesperson_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_printingjob printing_printingjob_business_object_id_76a7d2fd_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjob
ADD CONSTRAINT printing_printingjob_business_object_id_76a7d2fd_fk_business_ FOREIGN KEY (business_object_id) REFERENCES public.business_object(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_printingjobbatchadvancerecord printing_printingjob_created_by_id_835b510e_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord
ADD CONSTRAINT printing_printingjob_created_by_id_835b510e_fk_auth_user FOREIGN KEY (created_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_printingjob printing_printingjob_printing_order_id_ca5569e7_fk_printing_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjob
ADD CONSTRAINT printing_printingjob_printing_order_id_ca5569e7_fk_printing_ FOREIGN KEY (printing_order_id) REFERENCES public.printing_printingorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_printingjobbatchadvancerecord printing_printingjob_printing_order_id_f76a3784_fk_printing_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord
ADD CONSTRAINT printing_printingjob_printing_order_id_f76a3784_fk_printing_ FOREIGN KEY (printing_order_id) REFERENCES public.printing_printingorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_printingjobbatchadvancerecord_printing_jobs printing_printingjob_printingjob_id_fd12a8bc_fk_printing_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord_printing_jobs
ADD CONSTRAINT printing_printingjob_printingjob_id_fd12a8bc_fk_printing_ FOREIGN KEY (printingjob_id) REFERENCES public.printing_printingjob(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_printingjobbatchadvancerecord_printing_jobs printing_printingjob_printingjobbatchadva_304a04ae_fk_printing_; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord_printing_jobs
ADD CONSTRAINT printing_printingjob_printingjobbatchadva_304a04ae_fk_printing_ FOREIGN KEY (printingjobbatchadvancerecord_id) REFERENCES public.printing_printingjobbatchadvancerecord(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_printingjob printing_printingjob_product_id_6c4bda82_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjob
ADD CONSTRAINT printing_printingjob_product_id_6c4bda82_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_printingjobbatchadvancerecord printing_printingjob_state_id_de366c02_fk_stateflow; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingjobbatchadvancerecord
ADD CONSTRAINT printing_printingjob_state_id_de366c02_fk_stateflow FOREIGN KEY (state_id) REFERENCES public.stateflow_state(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_printingorder printing_printingord_customer_id_2f5affa4_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingorder
ADD CONSTRAINT printing_printingord_customer_id_2f5affa4_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: printing_printingorder printing_printingord_process_id_087e5007_fk_stateflow; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.printing_printingorder
ADD CONSTRAINT printing_printingord_process_id_087e5007_fk_stateflow FOREIGN KEY (process_id) REFERENCES public.stateflow_process(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: state_log_parameter_record state_log_parameter__state_log_id_f233799b_fk_state_flo; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.state_log_parameter_record
ADD CONSTRAINT state_log_parameter__state_log_id_f233799b_fk_state_flo FOREIGN KEY (state_log_id) REFERENCES public.state_flow_record(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_object stateflow_order_process_id_8c0bb6c0_fk_stateflow_process_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_object
ADD CONSTRAINT stateflow_order_process_id_8c0bb6c0_fk_stateflow_process_id FOREIGN KEY (process_id) REFERENCES public.stateflow_process(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: state_flow_record stateflow_orderstate_completed_by_id_2f822f5b_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.state_flow_record
ADD CONSTRAINT stateflow_orderstate_completed_by_id_2f822f5b_fk_auth_user FOREIGN KEY (completed_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: state_flow_record stateflow_orderstatelog_state_id_70d1101d_fk_stateflow_state_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.state_flow_record
ADD CONSTRAINT stateflow_orderstatelog_state_id_70d1101d_fk_stateflow_state_id FOREIGN KEY (state_id) REFERENCES public.stateflow_state(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stateflow_processnode stateflow_processnod_process_id_146d7cc7_fk_stateflow; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_processnode
ADD CONSTRAINT stateflow_processnod_process_id_146d7cc7_fk_stateflow FOREIGN KEY (process_id) REFERENCES public.stateflow_process(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stateflow_processnode stateflow_processnode_state_id_18e2868e_fk_stateflow_state_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_processnode
ADD CONSTRAINT stateflow_processnode_state_id_18e2868e_fk_stateflow_state_id FOREIGN KEY (state_id) REFERENCES public.stateflow_state(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stateflow_state_parameters stateflow_state_para_state_id_1888c236_fk_stateflow; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_state_parameters
ADD CONSTRAINT stateflow_state_para_state_id_1888c236_fk_stateflow FOREIGN KEY (state_id) REFERENCES public.stateflow_state(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stateflow_state_parameters stateflow_state_para_stateparameter_id_2a4745a3_fk_stateflow; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stateflow_state_parameters
ADD CONSTRAINT stateflow_state_para_stateparameter_id_2a4745a3_fk_stateflow FOREIGN KEY (stateparameter_id) REFERENCES public.stateflow_stateparameter(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_inventory stock_inventory_merchant_id_474e786a_fk_basic_info_merchant_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_inventory
ADD CONSTRAINT stock_inventory_merchant_id_474e786a_fk_basic_info_merchant_id FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_inventory stock_inventory_product_id_87e1d4a4_fk_basic_info_product_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_inventory
ADD CONSTRAINT stock_inventory_product_id_87e1d4a4_fk_basic_info_product_id FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_inventory stock_inventory_warehouse_id_38e88ef3_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_inventory
ADD CONSTRAINT stock_inventory_warehouse_id_38e88ef3_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchaseorder stock_purchaseorder_merchant_id_5175381b_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorder
ADD CONSTRAINT stock_purchaseorder_merchant_id_5175381b_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: business_purchaseorder stock_purchaseorder_supplier_id_bc7a300c_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.business_purchaseorder
ADD CONSTRAINT stock_purchaseorder_supplier_id_bc7a300c_fk_basic_inf FOREIGN KEY (supplier_id) REFERENCES public.basic_info_supplier(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockchangedetail stock_stockchangedet_consume_with_id_3844510b_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangedetail
ADD CONSTRAINT stock_stockchangedet_consume_with_id_3844510b_fk_stock_sto FOREIGN KEY (consume_with_id) REFERENCES public.stock_stockchangedetail(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockchangedetail stock_stockchangedet_merchant_id_222521fc_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangedetail
ADD CONSTRAINT stock_stockchangedet_merchant_id_222521fc_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockchangedetail stock_stockchangedet_product_id_a013d432_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangedetail
ADD CONSTRAINT stock_stockchangedet_product_id_a013d432_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockchangedetail stock_stockchangedet_stock_change_record__b388d2f0_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangedetail
ADD CONSTRAINT stock_stockchangedet_stock_change_record__b388d2f0_fk_stock_sto FOREIGN KEY (stock_change_record_id) REFERENCES public.stock_stockchangerecord(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockchangerecord stock_stockchangerec_merchant_id_777ab07d_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangerecord
ADD CONSTRAINT stock_stockchangerec_merchant_id_777ab07d_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockchangerecord stock_stockchangerec_warehouse_id_c7a706de_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangerecord
ADD CONSTRAINT stock_stockchangerec_warehouse_id_c7a706de_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockchangerecord stock_stockchangerecord_created_by_id_7317d383_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockchangerecord
ADD CONSTRAINT stock_stockchangerecord_created_by_id_7317d383_fk_auth_user_id FOREIGN KEY (created_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockfreeze stock_stockfreeze_cancelled_by_id_f36ed57b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_cancelled_by_id_f36ed57b_fk_auth_user_id FOREIGN KEY (cancelled_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockfreeze stock_stockfreeze_completed_by_id_feb5742a_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_completed_by_id_feb5742a_fk_auth_user_id FOREIGN KEY (completed_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockfreeze stock_stockfreeze_frozen_by_id_747bed1c_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_frozen_by_id_747bed1c_fk_auth_user_id FOREIGN KEY (frozen_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockfreeze stock_stockfreeze_merchant_id_778ecada_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_merchant_id_778ecada_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockfreeze stock_stockfreeze_product_id_0915f126_fk_basic_info_product_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_product_id_0915f126_fk_basic_info_product_id FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockfreeze stock_stockfreeze_stock_detail_id_3c1f49b0_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_stock_detail_id_3c1f49b0_fk_stock_sto FOREIGN KEY (stock_detail_id) REFERENCES public.stock_stockchangedetail(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stockfreeze stock_stockfreeze_warehouse_id_7cd7f629_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stockfreeze
ADD CONSTRAINT stock_stockfreeze_warehouse_id_7cd7f629_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stocksnapshot stock_stocksnapshot_merchant_id_345af02e_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stocksnapshot
ADD CONSTRAINT stock_stocksnapshot_merchant_id_345af02e_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stocksnapshot stock_stocksnapshot_product_id_f6e948d7_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stocksnapshot
ADD CONSTRAINT stock_stocksnapshot_product_id_f6e948d7_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stocksnapshot stock_stocksnapshot_stock_change_record__a12e8dc3_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stocksnapshot
ADD CONSTRAINT stock_stocksnapshot_stock_change_record__a12e8dc3_fk_stock_sto FOREIGN KEY (stock_change_record_id) REFERENCES public.stock_stockchangerecord(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_stocksnapshot stock_stocksnapshot_warehouse_id_469ad069_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_stocksnapshot
ADD CONSTRAINT stock_stocksnapshot_warehouse_id_469ad069_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorder stock_transferorder_created_by_id_8426a804_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_created_by_id_8426a804_fk_auth_user_id FOREIGN KEY (created_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorder stock_transferorder_from_warehouse_id_38b8aba4_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_from_warehouse_id_38b8aba4_fk_basic_inf FOREIGN KEY (from_warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorder stock_transferorder_incoming_record_id_289d0a0f_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_incoming_record_id_289d0a0f_fk_stock_sto FOREIGN KEY (incoming_record_id) REFERENCES public.stock_stockchangerecord(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorder stock_transferorder_merchant_id_34312a0d_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_merchant_id_34312a0d_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorder stock_transferorder_operator_id_4e3824e2_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_operator_id_4e3824e2_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorder stock_transferorder_outgoing_record_id_a6a0dd28_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_outgoing_record_id_a6a0dd28_fk_stock_sto FOREIGN KEY (outgoing_record_id) REFERENCES public.stock_stockchangerecord(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorder stock_transferorder_to_warehouse_id_e597030e_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorder
ADD CONSTRAINT stock_transferorder_to_warehouse_id_e597030e_fk_basic_inf FOREIGN KEY (to_warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorderitem stock_transferorderi_product_id_7bb0508f_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorderitem
ADD CONSTRAINT stock_transferorderi_product_id_7bb0508f_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED;
--
-- Name: stock_transferorderitem stock_transferorderi_transfer_order_id_333e8fab_fk_stock_tra; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.stock_transferorderitem
ADD CONSTRAINT stock_transferorderi_transfer_order_id_333e8fab_fk_stock_tra FOREIGN KEY (transfer_order_id) REFERENCES public.stock_transferorder(id) DEFERRABLE INITIALLY DEFERRED;
--
-- PostgreSQL database dump complete
--
\unrestrict N3RbYjBHvjSxEP4QS0CAevPriQjlxLEz5YNz6U17F0fUwXBLiwGVGRl4Bcxnpz8